/* CSS Document */

 
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;
	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: #333;
	background-image: url(images/layout/pagebg.gif);
	background-repeat: repeat-x;
	background-position: top;
	font: 13px/20px Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #container {
	width: 802px;
	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. */
	background-color: #FFFFFF;
} 
.twoColFixLtHdr #header { 
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #007BC1;
}

.h1 {
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #007BC1;
}

.twoColFixLtHdr #mainContent {
	padding: 0 20px;
	width: 622px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}

#mainContent2 {
	width: 612px;
	float: left;
	margin-top: 5px;
	margin-left: 8px;
} 

.footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
}
.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-left: 7px;
}
.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;
}
#bodyborder {
	width: 802px;
	border: 1px solid #CCC;
	float: left;
		margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

}
#vertpadding {
	padding-bottom: 5px;
}

#margin10 {
	margin-left: 5px;
}



/* mainmenu styling */

#mainmenu {
	background-image: url(images/layout/menubox.gif);
	background-repeat: no-repeat;
	width: 148px;
	height: 259px;
	margin-left: 8px;
	margin-top: 10px;
}
#sidebar {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
	width: 160px;
	margin-top: 5px;
	margin-bottom: 5px;
	height: auto;
	float: left;
}

#menucase ul.vert-one{
	padding:0;
	list-style-type:none;
	line-height:35px;
	width:123px;
	font-size: 15px;
	margin: 18px 0px 0 8px;
	float:left;
}
#menucase ul.vert-one li{
	margin:0;
	padding:0;
	border-bottom:1px solid #CCCCCC;
	background-image: url(images/layout/menuarrow-desel.gif);
	background-repeat: no-repeat;
	background-position: 5px;
	text-indent: 10px;
}
#menucase ul.vert-one li a{display:block;text-decoration:none;color:#666666;padding:0 0 0 20px;width:110px;}
#menucase ul.vert-one li a:hover{background-image: url(images/layout/menuarrow-sel.gif);background-repeat: no-repeat;background-position: 5px; color:#007BC1;}
#menucase ul.vert-one li a.current{background-image: url(images/layout/menuarrow-sel.gif);background-repeat: no-repeat;background-position: 5px;color:#007BC1;}


.text02 {
	font: 10px Arial, Helvetica, sans-serif;
	color: #000000;
}

#myform {
	border:1px outset #ccc;
	background:#fff url(http://static.flowplayer.org/img/global/gradient/h600.png) repeat-x;
	padding:20px;
	margin:20px 80px;
	width:400px;
	-moz-border-radius:4px;
}

#myform h3 {
	text-align:center;
	margin:0 0 10px 0;
}

/* http://www.quirksmode.org/css/forms.html */
#inputs label, #inputs input, #inputs textarea, #inputs select {
	display: block;
	width: 200px;
	float: left;
	margin-bottom: 20px;
}

#inputs label {
	text-align: right;
	width: 105px;
	padding-right: 20px;
}

#inputs br {
	clear: left;
}
#footer {
	float: left;

}

