/*

Website Screen Styles
Authored by: Jonathan Poh (Sputnik Agency)
Contact: jonathan.poh@sputnikagency.com


Table of Contents:

	Common
		Typography and Colours
		Layout
		Images
		Lists
		Forms
		Image-replacement
		Miscellaneous
		Handmade by Sputnik		
	Sections
		Header
		Sidebar
		Navigation
		Content
		Footer					
	Page-specific
		Homepage


	
	Colour Palette:
	
		Red 	- #990000
		Black   - #000000
		Dk Grey - #666666
		Lt Grey - #999999

*/


/* Typography and Colours
--------------------------------------------- */

body {
	color: #fff;
	background: #000 url(../images/bg_anzea.jpg) no-repeat 50% 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%; /* Resets 1em to 10px */
}

h1, h2, h3, h4 {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.5;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.6em;
}


h3 {
	font-size: 1.4em;

}


h4 {
	font-size: 1em;
}

a:link, 
a:visited {
	color: #b5fb21;
	outline: none;
}

a:hover, 
a:active {
	outline: none;
}

input,
textarea {
}


#outer {
	background-color: transparent;
}



p,
li,
td {
	font-size:1.1em;
	line-height: 1.5;
}
ul.nested_list
{
	font-size:0.9em;	
}

li p {
	font-size:1em;
}

li h3 {
	font-size:1.2em;
}

ol,
ul {
	margin-top: 0;
}


.smallcaps {
	text-transform: uppercase;
	font-size: 8px;
}

hr {
	height: 1px;
	border: none;
	color: #dfdfdf;
	background-color: #dfdfdf;
	margin: 0;
}

/* Layout
--------------------------------------------- */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}
	
body {
	margin: 0 0 50px 0;
	padding: 0;
	width: 100%;
}

#outer {
	margin: 0 auto;
	padding: 0;
	width: 986px;
	border: none;
	clear: both;
}



/* Images
--------------------------------------------- */

img {
	border: none;
	margin: 0;
	padding: 0;
}

p img {
	padding: 0;
}

/*	Using 'class="alignright"' on an image will (who would've
thought?!) align the image to the right. And using 'class="centered',
will of course center the image. This is much better than using
align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
}

/* Lists
--------------------------------------------- */

ol,
ul {
	margin-left: 0;
	padding-left: 0;
}

li {
	margin-left: 1.5em;
	line-height: 1.5;
}


/* Forms
--------------------------------------------- */

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

legend {
	font-size: 1.8em;
	margin: 0;
	padding: 0 0 0.5em 0;
	font-weight: normal;
}

/* Image Replacement
--------------------------------------------- */

/* To replace a HTML text headline with GIF- or PNG-text, 
   assign class="replaced" to the heading tag, and give it a unique ID, eg
   id="h-myheading" and define the image as the background, and set the width
   and height of the image.

   Example:

   [HTML]
   <h1 class="replaced" id="h-heading">This is a Heading</h1>

   [CSS]
	#h-heading {
		background: url(../images/h-heading.gif) no-repeat 100% 100%;
		width: 426px;
		height: 24px;
	}
   

*/

.replaced {
	text-indent: -5000px;
	margin: 0;
	padding: 0;
	display: block;
}

h2.replaced {
	height: 28px;
}

#h-register {
	background: url(../images/h-register.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-processed {
	background: url(../images/h-processed.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-terms {
	background: url(../images/h-terms.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-privacy {
	background: url(../images/h-privacy.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-login {
	background: url(../images/h-login.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-parentszone {
	background: url(../images/h-parentszone.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-attentionagents {
	background: url(../images/h-attentionagents.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#h-teacherszone{
	background: url(../images/h-teacherszone.png) no-repeat 100% 100%;
	width: 892px;
	height: 22px;
	text-transform: uppercase;
	color: #b5fb21;
}

#label-agentname {
	background: url(../images/label-agentname.png) no-repeat 100% 100%;
	width: 143px;
	height: 18px;
	text-transform: uppercase;
	color: #b5fb21;
}

#label-password {
	background: url(../images/label-password.png) no-repeat 100% 100%;
	width: 123px;
	height: 18px;
	text-transform: uppercase;
	color: #b5fb21;
}

/* Miscellaneous
--------------------------------------------- */

.skiplink {display:none}

.clear {
	clear: both;
}


.alignright {
	float: right;
}

.alignleft {
	float: left
}

/* Handmade by Sputnik
--------------------------------------------- */

#handmade {
	float: right;
	margin: 0;
	padding: 0;
	font-size: 10px;
}

#handmade a:link,
#handmade a:visited {
	color: #999999;
	text-decoration: none;
}

#handmade a:hover,
#handmade a:active {
	color: #333333;
}


/* Header
--------------------------------------------- */

.header {
	margin: 0;
	padding: 10px 0;
	height: 100px;
	color: #000;
	background: transparent url(../images/header.png) no-repeat 50% 0;
}

.header h1 {
	margin: 0;
}

.header img {
	display: block;
	float: left;
}

.header h1,
.header h2 {
	text-indent: -5000px;
	margin: 0;
	padding: 0;
	display: block;
}

/* Sidebar
--------------------------------------------- */

#sidebar {
	width: 150px;
	background: #CCC;
	float: left;
}

/* Navigation
--------------------------------------------- */

#navigation ul {
	margin: 0;
}

#navigation li {
	list-style: none;
	margin: 0;
}

#navigation li a:link,
#navigation li a:visited {
	color: #666;
	font-weight: bold;
	display: block;
	padding: 0.5em;
	text-decoration: none;
}

#navigation li a:hover,
#navigation li a:active {
	background: #666;
	color: #FFF;
}

/* Content
--------------------------------------------- */

#content {
	margin: 0;
}



/* Footer
--------------------------------------------- */

#footer {
	padding: 0.5em 50px;
	clear: both;
	color: #555;
}

#footer .nav {
	float: left;
}

#footer .nav a:link,
#footer .nav a:visited {
	color: #555;
	text-decoration: none;
}

#footer .nav a:hover,
#footer .nav a:active {
	text-decoration: underline;
}


#footer .copyright {
	float: right;
	text-align: right;
}

/* Tab Bar
--------------------------------------------- */

#tab-bar {
	height: 43px;
}

#tab-bar li {
	float: right;
	text-indent: -5000px;
	margin: 0;
	padding: 0;
	display: block;
}

#tab-register {
	background: transparent url(../images/tab-register.gif) no-repeat 0 0;
	width: 209px;
	height: 43px;
}

#tab-agents-active {
	background: transparent url(../images/tab-agents-active.gif) no-repeat 0 0;
	width: 242px;
	height: 43px;
}

#tab-agents-inactive a {
	background: transparent url(../images/tab-agents-inactive.gif) no-repeat 0 0;
	width: 140px;
	height: 43px;
	display: block;
}

#tab-agents-inactive-1 a {
	background: transparent url(../images/tab-agents-inactive-1.gif) no-repeat 0 0;
	width: 137px;
	height: 43px;
	display: block;
}

#tab-parents-active {
	background: transparent url(../images/tab-parents-active.gif) no-repeat 0 0;
	width: 242px;
	height: 43px;
}

#tab-parents-inactive a {
	background: transparent url(../images/tab-parents-inactive.gif) no-repeat 0 0;
	width: 137px;
	height: 43px;
	display: block;
}

#tab-teachers-active {
	background: transparent url(../images/tab-teachers-active.gif) no-repeat 0 0;
	width: 242px;
	height: 43px;
	display: block;
}

#tab-teachers-inactive a {
	background: transparent url(../images/tab-teachers-inactive.gif) no-repeat 0 0;
	width: 140px;
	height: 43px;
	display: block;
}


/* Page-specific: Homepage
--------------------------------------------- */

h2.centered {
	text-align: center;
}

#screen-top {
	padding-top:34px;
/*	margin-bottom:56px ;*/
/*	padding-bottom:56px ;*/
	background: transparent url(../images/screen-top.gif) no-repeat 0 0;
/*	overflow: auto;*/
}

#screen-bottom {
/*	overflow: auto;*/
/*	padding-top: 10px;*/
	padding-bottom:56px;
	background: transparent url(../images/screen-bottom.gif) no-repeat 0 100%;
}

#screen-mid {
/*	overflow: auto;*/
/*	padding-top:34px;*/
/*	padding-bottom:56px;*/
	padding-left: 50px;
	padding-right: 50px;
	height:auto;
	padding-bottom:15px;
	background: transparent url(../images/screen-mid.gif) repeat-y 0 0;
}

#parents-bg-top {
/*	padding-left: 50px;*/
/*	padding-right: 50px;*/
	padding-top: 30px;
	background: transparent url(../images/parents-bg-top.gif) no-repeat 0 0;
}

#parents-bg-mid {
	padding: 30px 50px;
	background: transparent url(../images/parents-bg-mid.gif) repeat-y 0 0;
	clear: left;
	position: relative;
}

#parents-bg-bottom {
	padding-bottom: 40px;
	background: transparent url(../images/parents-bg-bottom.gif) no-repeat 0 100%;
}

#parents-tab-bar {
	background: url(../images/parents-bg-tab-bar.jpg) repeat-y 0 0;
	overflow: auto;
}

#parents-tab-bar ul {
	margin: 0;
	padding: 0 45px;
	overflow: auto;
}

#parents-tab-bar li {
	display: block;
	float: left;
/*	background: #fff -webkit-gradient(linear, 0% 80%, 0% 100%, from(#fff), to(#dddede));*/
	background: #fff url(../images/parents-bg-tab-inactive.gif) repeat-x 0 100%;
	padding: 0.5em 1em;
	color: #63821f;
	font-size: 1.8em;
	margin-left: 5px;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
}

#parents-tab-bar li.active {
	background-color: #fff;
	background-image: none;
}

#parents-tab-bar li a:visited,
#parents-tab-bar li a:link {
	display: block;
	color: #a1b479;
	text-decoration: none;
}

#parents-tab-bar li a:hover,
#parents-tab-bar li a:active {
	color: #63821f;
}

/* Forms
--------------------------------------------- */

#form-register {
	margin: 0 0 0 10px;
}

#messages {
	background: transparent url(../images/parents-error-box.gif) no-repeat 0 0;
	height:52px !important;
	padding:3px 10px 3px 40px !important;
	width:559px !important;
}

#messages h3 {
color:#000000 !important;
font-size:18px !important;
font-weight:normal !important;
	margin: 0 !important;
}

#messages p {
	color: #000 !important;
}

#main-error,
.form-editagent div.error,
#form-createagent div.error,
#form-register div.error,
#form-login div.error {
	padding: 0 10px 3px 10px;
	background: transparent url(../images/error-box.gif) no-repeat 0 0;
	display: none;
	
}

#page-parent #form-register {
	margin: 0 0 0 10px;
}



#page-home #form-login div.error {
	background: transparent url(../images/error-box-wide.gif) no-repeat 0 0;
	
}

#main-error,
#page-parent form div.error,
#page-teacher form div.error{
	width: 559px;
	height: 52px;
	padding: 3px 10px 3px 40px;
}

#main-error,
#page-parent form div.error,
#page-teacher form div.error{
	background: transparent url(../images/parents-error-box.gif) no-repeat 0 0;
	
}

#page-parent #main-error h3,
#page-parent .form-editagent div.error h3,
#page-teacher #main-error h3,
#page-teacher .form-editagent div.error h3{
	font-size: 16px;
	margin: 0;
}

#form-createagent div.error h3,
#form-register div.error h3,
#form-login div.error h3 {
	font-size: 16px;
	margin: 0;
	color: #ad0707;
	font-weight: bold;
}

#page-parent #main-error h3,
#page-parent div.error h3,
#page-teacher #main-error h3,
#page-teacher div.error h3 {
	font-size: 18px;
	color: #000;
	font-weight: normal;
}

#main-error span,
.form-editagent div.error span,
#form-createagent div.error span,
#form-register div.error span,
#form-login div.error span {
	color: #000;
}

#form-register td,
#form-login td {
	vertical-align: top;
}

#page-register #form-register label {
	width: 135px;
/*	height: 28px;*/
	border: 1px solid #b5fb21;
	padding: 5px;
	display: block;
	text-align: right;
	color: #b5fb21;
	background-color: #000;
	font-size: 14px;
}

#page-register #form-register input {
	width: 388px;
/*	height: 28px;*/
	border: 1px solid #b5fb21;
	padding: 7px;
	color: #b5fb21;
	background-color: #000;
	font-size: 14px;
}

#page-register #form-register label.error {
	border: none;
	padding: 0;
	background: transparent;
	width: 402px;
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}

#page-parent .form-editagent label.errorLabel,
#page-parent #form-createagent label.errorLabel,
#page-parent #form-login label.errorLabel,
#page-parent #form-register label.errorLabel,
#page-teacher .form-editagent label.errorLabel,
#page-teacher #form-createagent label.errorLabel,
#page-teacher #form-login label.errorLabel,
#page-teacher #form-register label.errorLabel,
#page-register #form-register label.errorLabel {
	color: #ad0707;
}

#page-register #form-register label.checkboxradio,
#page-register #form-register input.checkboxradio {
	border: none;
	width: auto;
	height: auto;
	background: transparent;
	text-align: left;
	display: inline;
}

#page-register #form-register .button {
	width: auto;
	height: auto;
	background: transparent;
	border: none;
	display: block;
}

#page-home #form-login {
	border-top: none;
	border-bottom: none;	
	padding: 0;
}

#form-login {
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	padding: 15px 0;
	
}

#form-login input {
	width: 180px;
	padding: 3px;
}

#form-login label {
	margin-top:5px;
	display: block;
}

#form-login .button {
	width: auto;
	height: auto;
	background: transparent;
	border: none;
	display: block;
}

#form-login tr td.inputbox {
	border: 1px solid #50671f;
	padding: 7px;
	width: 340px;
	
}

#form-login tr td.inputbox label,
#form-login tr td.inputbox input {
	float: left;
}

#form-login tr td.inputbox label {
	margin-top: 5px;
}

#page-home #form-login tr td.inputbox input {
	margin-left: 7px;
	border-width: 0;
	padding: 3px;
	font-size: 16px;
	font-weight: bold;
	font-style: italic;
}


/* Parents section styles
--------------------------------------------- */

#page-parent {
	color: #666;
}

#page-parent a:link,
#page-parent a:visited {
	color: #90b34b;
	text-decoration: none;
}

#page-parent a:hover,
#page-parent a:active {
	text-decoration: underline;
}


#page-parent h2 {
	color: #63821f;
}

#page-parent h3 {
	color: #666;
	font-size: 1.4em;
	font-weight: bold;
	margin: 1em 0;
}

#page-parent p {
	margin: 0 0 1em 0;
	font-size: 1.1em;
}

#page-parent .aside {
	width: 285px;
	float: right;
	margin-left: 20px;
	position: relative;
}

#page-parent .tabcontent {
	width: 610px;
}

#page-parent #originlogo {
	position: absolute;
	top: 0;
	right: 55px;
}

#page-parent .calltoaction {
	position: absolute;
	right: 30px;
	bottom: 0;
}

#page-parent h4.inactive {
	color: #bf4040;
}

/* Offline section styles
--------------------------------------------- */

#page-offline p {
	font-size: 150%;
	color: #b5fb21;
	text-align: center;
	font-weight: bold;
}

#page-offline #footer .copyright {
	text-align: center;
	float: none;
}

/* Teachers section styles
--------------------------------------------- */

#page-teacher {
	color: #666;
}

#page-teacher a:link,
#page-teacher a:visited {
	color: #90b34b;
	text-decoration: none;
}

#page-teacher a:hover,
#page-teacher a:active {
	text-decoration: underline;
}


#page-teacher h2 {
	color: #63821f;
}

#page-teacher h3 {
	color: #666;
	font-size: 1.4em;
	font-weight: bold;
	margin: 1em 0;
}

#page-teacher p {
	margin: 0 0 1em 0;
	font-size: 1.1em;
}

#page-teacher .aside {
	width: 285px;
	float: right;
	margin-left: 20px;
	position: relative;
}

#page-teacher .tabcontent {
	width: 610px;
}

#page-teacher #originlogo {
	position: absolute;
	top: 0;
	right: 55px;
}

#page-teacher .calltoaction {
	position: absolute;
	right: 30px;
	bottom: 0;
}

#page-teacher h4.inactive {
	color: #bf4040;
}

/* Other Styles
--------------------------------------------- */


.backtomain {
	float: right;
	margin: 20px 0 20px 0;
}

.endoftransmission {
	margin: 40px 0 0 0;
}

#flashContent {
	margin: 0;
	height: 340px;
/*	border: 1px solid #fff;*/
}

#animation.swfobject {
	float: right;
	margin-top: 20px;
}


.optiontable{
	border:none;
	background-color: #FAFAFA;
	margin-left:1em;
}

p.error{
	border:1px solid red;
}

