/* stylesheet for structure of the page*/
body {
	margin:0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding:0;
	padding-left:20px;
	padding-right:20px;
	/*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: #FFFFFF;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 85%;
	background:#cccccc;
}

.oneColFixCtr #container {
	width: 740px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin:0px;
	padding:0px;
	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. */
}
.oneColFixCtr #mainContent {
	margin:0px;
	padding:0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*specify page height */
	background:#336666;
}

#header {
	margin:0;
	padding:0;
	background:#e6e2e1;
	background-image:url(../images/header.jpg);
	background-repeat:no-repeat;
	height:478px;
	
}

#menu {
	margin:0;
	padding:0;
	margin-top:225px;
	margin-left:-10px;
	width:763px;
}

.oneColFixCtr #left_content {
	margin:0;
	padding:0;
	padding-left:20px;
	padding-right:20px;
	padding-top:10px;
	padding-bottom:10px;
	width:505px;
	float:left;
	background:#336666;
}

#right_content{
	float:right;
	margin:0;
	padding:0; 
	padding-left:10px;
	padding-right:10px;
	padding-top:10px;
	padding-bottom:10px;
	background:#336666;
	width:175px;
}

/*style right menu*/
#right_content ul{
	margin:0px;
	padding:0px;
	list-style-type:none;
	padding-top:30px;
	padding-left:0px;
}
#right_content a:link { /* unvisited link */
	color:#FFFFFF;
	text-decoration:underline;
}     
#right_content a:visited {  /* visited link */
	color:#FFFFFF;
	text-decoration:line-through;
}
#right_content a:hover {   /* mouse over link */
	color:#FFFFFF;
	text-decoration:underline;
}
#right_content a:active {   /* selected link */
	color:#FFFFFF;
	text-decoration:underline;
}


#additional_info{
	margin:0;
	padding:0;
	clear:both;
	background:#336666;
}

#footer {
	text-align:center;
	top:0;
	left:0;
	margin:0;
	padding:0;
	clear:both;
	background:#336666;
	height:102px;
}

#footer_extended {
	text-align:center;
	top:0;
	left:0;
	margin:0;
	padding:0;
	clear:both;
	background:#cccccc;
	height:50px;
}

/*style left menu*/
#left_content ul{
	margin:0px;
	padding:0px;
	list-style-type:none;
	padding-top:30px;
	padding-left:0px;
}
#left_content a:link { /* unvisited link */
	color:#FFFFFF;
	text-decoration:underline;
}     
#left_content a:visited {  /* visited link */
	color:#FFFFFF;
	text-decoration:underline;
}
#left_content a:hover {   /* mouse over link */
	color:#FFFFFF;
	text-decoration:underline;
}
#left_content a:active {   /* selected link */
	color:#FFFFFF;
	text-decoration:underline;
}

#left_content .red_highlight a:link {  /* visited link */
	color:#ffffcc;
	text-decoration:none;
}
#left_content .red_highlight a:visited {  /* visited link */
	color:#ffffcc;
	text-decoration:none;
}
#left_content .red_highlight a:hover {   /* mouse over link */
	color:#ffffcc;
	text-decoration:underline;
}
#left_content .red_highlight a:active {   /* selected link */
	color:#ffffcc;
	text-decoration:underline;
}

.hidden_text{
	position:absolute;
	top:-10000px;
	left:-10000px;
}

hr {
	color:#cccccc;
	height:1px;
}

p {
	margin:0px;
	padding:0px;
	padding-bottom:10px;
	padding-top:10px;
	margin-left:10px;
	text-align:justify;
}

.goldtext {
	color:#ff9a2d;
}

.greentext {
	color:#bec24a;
}

.beigetext {
	color:ece9d8;
}

.smalltext {
	font-size:95%;
}

.smallbeigetext {
	font-size:75%;
	color:ece9d8;
}

* html img,
* html .png{
    position:relative;
    behavior: expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
        this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
        this.src = "transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
        this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
        this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)
    );
}
