@charset "iso-8859-1";
/* This resets elements so that they will appear consistent across browsers.  */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #0066FF;
	line-height: 1.2em;
	font-size: 1em;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
}
body img {
	border: 0px;
	text-decoration: none;
}
/* Commonly used to style page titles. */
h1, h2, h3 {
	color: #69c;
	margin: 0px 0px 0px 0px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: x-large;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #4095df;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for visited links. */
a:visited {
	color: #4870aa;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #039;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid
 the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. 
 IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right 
 margins to center the container 
on the page. */
#outerWrapper {
	background-color: #fff;
	width: 740px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto 0px auto;
}
#outerWrapper #header {
	background-color: #3399FF;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #4b647f;
	height: 100px;
}
#outerWrapper #header .title {
	font-family: "Palatino Linotype";
	font-size: xx-large;
	font-weight: bold;
	font: xx-large/normal serif;
	color: #000000;
	margin-top: 10px;
	margin-left: 25px;
}
#outerWrapper #topNavigation {
	background-color: #99CCFF;
	height: 25px;
	padding: 10px 10px 10px 10px;
	border-bottom: solid 1px #9bb6d2; /* Sets the bottom border properties for an element using shorthand notation */
}
/* Styles for Navigation */
#outerWrapper #topNavigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0;
	padding: 0;
}
#outerWrapper #topNavigation li {
	float: left;
}
#outerWrapper #topNavigation a {
	color: #000;
	text-decoration: none;
	margin: 0 1px;
	padding: 5px;
	display: block;
}
#outerWrapper #topNavigation a:hover {
	background-color: #353C48;
	color: #FFFFFF;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 0px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used 
without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated 
element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
  clear: both;
}


#outerWrapper #footer {
	background-color: #99CCFF;
	border-top: solid 1px #9bb6d2; /* Sets the top border properties for an element using shorthand notation */	
	padding: 10px 10px 10px 10px;
}
/* removes the top and bottom margins*/
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.ctr {
	text-align: center;
}
/* styling small size text*/
.smltxt {
	 font-size:small;
}

/* center image on the page */
.imgctr {
	display: block;
	margin: 0px auto;
}
#column_l {
	float: left;
	overflow: visible;
	padding: 10px;
	width: 325px;
}
#column_r {
	float: right;
	padding: 10px;
	width: 300px;
}
#column_lind {
	float: left;
	overflow: visible;
	padding: 0px;
	width: 430px;
}
#column_rind {
	float: right;
	padding: 0px;
	width: 240px;
}


