@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
}


body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	background: #666666;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/****** Font Declarations ***/

ul, ol, li {
	list-style:  none;
}

ol, ul {
	font-size: inherit;
}

div#left ul {
/*	font-size: inherit;  */
	font-size: 8.5pt;
}

p, table {
/*	font-size: inherit;  */
	font-size: 8.5pt;
/*	line-height: 1.4;   */
}


a, td {
	font-size: inherit;
	color: #000000;
	text-decoration:  none;
}

a:hover {
	color: #336699;
}

table { width: 99%;  margin: 3px; }
td { padding: 3px;  }


/***********/
/*  Divs   */
/**********/


/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #left is given a 70% font size and #center is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container { 
	width: 860px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*	border: 1px solid #000000;  */
} 

#logo { 
	margin: 20px auto 5px auto;
	width: 516px;
	height: 132px;
/*	background:  url(image/adlslogo.jpg) no-repeat top;  */
/*	border: 1px solid #FFFF00;   */
}


/**************/
/*  Menu Style */
/**************/

		#mainmenu {
			height: 23px;
			white-space: nowrap;
			background: url(image/shadow.gif) repeat-x bottom;
		}
		
		#mainmenu ul {
			text-align:  center;
		}
		
		#mainmenu ul li { display: inline; }
		
		#mainmenu ul li a { 
			padding: 0 12px;
			font-weight:  bold;
		}
		

#underMenuBar {
	height: 15px;
	color:  #FFFFFF;
	background: #336699;
}






/* Tips for left:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the " #left p" rule.
*/

#lrc {
	/* This allows the background color to be this off-white.  Otherwise, the background color supercedes or gets ignored in successive divs */
	background:  #F8FAFB;
	/* This is the outer content border to fill in a border on the left and right side  */
	border: 2px solid #336699;
}


#left {
	float: left;
	width: 175px; /* since this element is floated, a width must be given */
	/*	border: 1px solid #FF0000;  */
}
			/* left-side navigation menu */
			#left ul {
/*				text-align:  center; */
				margin-left: 10px;
				margin-right: 5px;
				margin-top: 15px;
			}
			
			#left ul li { 
				border-bottom: 1px dotted #CCCCCC;
				padding: 2px 0;
				margin-bottom: 3px;
			}
			
			#left ul li a { 
				font-weight:  bolder;
			}
			
			#left ul li a:hover {
				color:  #336699;
			}


#rcContent {
	margin: 15px 0 0 180px;  /* the top margin pushes it off of the undermenubar and the 180px pushes out from under the float */
	/*	padding: 10px 15px; */
}

			#rcContent ul li {
				padding: 10px 0;
				font-size: 8.5pt;
				list-style: disc outside none;
			}
			
			#rcContent ol li {
				font-size: 8.5pt;
				list-style: decimal-leading-zero outside none;
			}

.rcStack {
	float: left;
	width: 310px;
/*	height: 160px; */ /* setting this height gets the floats past the image height if the text is not small enough to surpass it, content will visibly overflow */
	margin: 0 5px 15px 10px;
	/*	border: 1px solid #FF0000; */
}

.rcStack66 {
	float: left;
	width: 425px;
/*	height: 160px; */ /* setting this height gets the floats past the image height if the text is not small enough to surpass it, content will visibly overflow */
	margin: 0 5px 15px 10px;
	/*	border: 1px solid #FF0000; */
}

.rcStack33 {
	float: left;
	width: 200px;
/*	height: 160px; */ /* setting this height gets the floats past the image height if the text is not small enough to surpass it, content will visibly overflow */
	margin: 0 5px 15px 10px;
	/*	border: 1px solid #FF0000; */
}


.rcStackWide {
	float: left;
	width: 640px;
	margin: 0 10px 15px 10px;
/*	border: 1px solid #FF0000; */
}


/* Tips for center:
1. If you give this #center div a font-size value different than the #left div, the margins of the #center div will be based on its font-size and the width of the #left div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the center and left is created with the left margin on the center div.  No matter how much content the left div contains, the column space will remain. You can remove this left margin if you want the #center div's text to fill the #left space when the content in #left ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #center div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the center "hasLayout." This avoids several IE-specific bugs that may occur.
*/


		#footer { 
			font-size: 7pt;
			height: 15px;
			background:#336699;
			color:  #CCCCCC;
		} 
		
		#footer ul {
			text-align:  center;
		}
		
		#footer ul li { display: inline; }
		
		#footer ul li a { 
			color:  #CCCCCC;
			padding: 0 5px;
		}
		
		#footer ul li a:hover {
			color: #FFFFFF;
		}


#copyright {
	font-size: 7pt;
	margin-top: 3px;
	text-align:  center;
	color: #999999;
}

#copyright a {
	color: #999999;
}

#copyright a:hover {
	color: #336699;
}









/***************/
/*  Classes   */
/*************/

.icon {
	float: left;
	width: 12px;
	padding: 0px 6px 0 5px;
}


.bullet {
	float: left;
	width: 8px;
	padding: 3px 8px 0 5px;
}

ul.bullets {
	list-style-type: disc;
}


.imgborder {
	border: 1px solid #999999;
	padding: 3px;
	
}

.header {
	padding-bottom: 4px;
	border-bottom: 1px solid #CCCCCC;
	font-weight: bold;
	/*	letter-spacing: 0.1em;  */
}


.colheader {  background-color: #E0E7EF;  font-weight:  bold;  padding: 2px;  }
.coldate {  vertical-align:  top; }
.colcenter { text-align: center; }
.highlight {  background-color: #E0E7EF; }
.colwider {  width: 33%;  }

.parapad {
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
}


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}


.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}


.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
