/* CSS Template for [Company/Organization] */

/* all sytles should be structured as follows:
******************************************
call (descriptive element names are required) { / comments for what the call is used for if the call doesnt explain enough (eg. .nav p { \* paragraph style for copy in the nav area *\) /
	position: value;
	flaot: value; / if aplicable /
	width: value; / plese use px if possible only use % if under 100%/
	height: value; / please use px if possible and if height is absolutely neccisary please comment behind with IMPORTANT, otherwise omit /
	background: color image repat position;
	color: value;
	font-family: value;
	font-size: value; / please use pt or em if possible or size types like "small", "larger", "x-small", etc. /
	font-whatever: value; / all other font styles /
	margin: top-value right-value bottom-value left-value;
	padding: top-value right-value bottom-value left-value;
	text-whatever: value;
	display: value;
	border: width style color;
	any other styles...
}	
******************************************
if possible please use #hhh; for colors */

html, body {
	background-color: #FFF;
	margin: 0;
	padding: 0;
	text-align: center;
	background : #113851 url(/images/teen_background.gif) repeat-x;
} 
 
#container {
	position: relative;
	width: 761px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: normal;
	color: #000;
} 

#wrapper { /* Background image for left side should go here if needed - will resize to content - OR can put it in the body style */
 	text-align: left; 
	width: 100%;
} 
 
#header {
 	position: relative; 
 	height: 361px; /* IMPORTANT */
	width: 100%;
} 

#header_portal {
 	position: relative; 
 	height: 253px; /* IMPORTANT */
	width: 100%;
}

#search {
	position: absolute;
	right: 10px;
	top: 0px;
} 

#search .sinput {
	width: 250px;
}

#search .ssearch {
	width: 69px;
}

.toptext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #000025;
	margin-top: 10px;
	margin-left: 10px;
} 

.articles{
	width:520px; 
	height:158px; 
	overflow:auto; 
	scrollbar-face-color:#f0f0f0; 
	scrollbar-shadow-color:#b5b5b5; 
	scrollbar-highlight-color:#f8f8f8; 
	scrollbar-3dlight-color:#fdfdea; 
	scrollbar-darkshadow-color:#000040; 
	scrollbar-track-color:#b4b4b4; 
	scrollbar-arrow-color:black;
}
 
#nav {
	position: absolute;
	top: 303px;
	left: 112px;
	width: 550px;
}

#nav_portal {
	position: absolute;
	top: 196px;
	left: 112px;
	width: 550px;
}

.menusep {
	/*padding: 0px 5px 0px 5px;
	color: #B22222;
	font-weight : bold;
	font-family: Arial;
	font-weight: bold;
	font-size: 10pt;*/
	width: 2px;
}

.menuitem {
	white-space: nowrap;
	font-weight : bold;
	font-family: Arial, Helvetica;
	font-size: 8pt;
	padding: 0px 0px 0px 0px;
}

.menuitem a {
	text-decoration: none;
	padding: 0px 5px 0px 5px;
}

.menuitem a:link {
	color: #ffffff;
	background-color: #000033;
	border: 1px solid #990000;
}

.menuitem a:visited {
	color: #ffffff;
	background-color: #000033;
	border: 1px solid #990000;
}

.menuitem a:hover {
	color: #ffffff;
	background-color: #990000;
	border: 1px solid #000033;
}

.menuitem2 {
	white-space: nowrap;
	font-weight : bold;
	font-family: Arial, Helvetica;
	font-size: 8pt;
	padding: 0px 0px 0px 0px;
}

a.homelinks:link {
	color: #ff0000;
}

a.homelinks:visited {
	color: #ff0000;
}

a.homelinks:hover {
	color: #400080;
}

#maincol {
	width: 100%;
}

#content {
	width: 761px;
	position: relative;
	background-image : url(/images/teen_back.gif);
}

#heading {
	position: relative;
	height: 30px;
	width: 714px;
	background-color: #FFDD76;
	margin-left: 12px;
	padding-left: 20px;
	padding-top: 8px;
	color: #800000;
	font-family : Arial, Helvetica, sans-serif;
	font-size : 14pt;
	font-style : italic;
	font-weight : bold;
} 

#heading-portal {
	position: relative;
	height: 30px;
	width: 714px;
	background-color: #FFDD76;
	margin-left: 12px;
	padding-left: 20px;
	padding-top: 8px;
	color: #800000;
	font-family : Arial, Helvetica, sans-serif;
	font-size : 13pt;
	font-style : italic;
	font-weight : bold;
} 

a.links:link {
	color: #000000;
}

a.links:visited {
	color: #000000;
}

.parent_zone_text {
	color : #00008B;
	text-align: left;
}

.teen_zone_text {
	color : #8B0000;
	text-align: left;
}

#footersep{
	width: 761px;
}

#footer{
	text-align: center;
	font-size: 8pt;
	width: 761px;
	height: 78px;
	background : url(/images/teen_footer_back.gif);
}

/* Other style names that may be used include:

1) horiz-nav - if nav needs to be a horizontile navigation
2) base-nav - if nav needs to be text links near the copyright
3) copyright - if the style needs to be different from other elements in the footer - usually used in a span within the footer div
4) something_something where there would be additional styles for sectioned layouts where the peacies fit togeather but are in seperate divs (eg. nav_top, nav_bottom or header_left, header_right etc.)
5) something_something where there would be user defined changes through either navigation or selection (eg. header_0, header_1, header_2)

*/ 

 
/* Float containers fix:
   http://www.csscreator.com/attributes/containedfloat.php */ 
.clearfix:after {
 	content: "."; 
 	display: block; 
	height: 0; 
 	clear: both; 
 	visibility: hidden;
 }
 
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */  

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}