@charset "utf-8";

html {
	padding:0px; /*remove padding */
	margin:0px; /* remove margins */
	border:0px; /* remove borders */
	/* hide overflow:hidden from IE5/Mac */ 
	/* \*/ 
	 /* overflow:hidden; get rid of scroll bars in IE */
	/* */ 
	}

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #e8e8e8 url(/images/bg-gradient.jpg) repeat-x top;
	margin: 0px auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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;
}
a {
	color: #006666;
}
a:hover a:visited {
	color: #663333;
}



.twoColFixRtHdr #container {
	width: 910px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(/images/bg_container.gif) repeat-y center top;
	margin: -15px auto;
	* margin: 0px auto;
	padding: 0px; 
	text-align: left;
} 

.twoColFixRtHdr #header {
	background: url(/images/medsource_mast.jpg) no-repeat center top;
	height: 159px;
	width: 900px;
	margin: 0px 0px 0px 5px;
	* margin-left: 2px;
	padding: 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. */
	* padding-left: 12px;
} 

.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #d7efef; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 20px 10px;
	margin: 0px 25px 20px 0;
	color: #006666;
	font-size: 0.8em;
}
.twoColFixRtHdr #sidebar1 h3 {
	color: #FFFFFF;
	font-size: 1.1em;
	background: url(/images/bg_hdr02.gif) repeat-x;
	height: 36px;
	padding: 10px 0px 0px 10px;
}
.twoColFixRtHdr #sidebar1 a {
	* margin: 25px 12px 0 0;
	color: #006666;
	padding-left: 10px;
	font-weight: bold;
	text-decoration: none;
}



.twoColFixRtHdr #mainContent {
	margin: 0px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #666666;
	float: left;
	width: 560px;
}

.twoColFixRtHdr  #mainContent  h1{
	color: #FFFFFF;
	font-size: 1.2em;
	background: url(/images/bg_hdr01.gif) repeat-x;
	height: 36px;
	width: 100%;
	margin-left: 0;
	padding: 8px 0 0 20px;
	* padding: 10px 20px 0 20px;
	vertical-align: middle;
	font-weight: normal;
} 
.twoColFixRtHdr #mainContent h2 {
	color: #993333;
	font-size: 1.2em;
	height: 36px;
	margin-left: 0;
	padding: 0;
	* padding: 10px 20px 0 20px;
	font-weight: bold;
}



.twoColFixRtHdr #mainContent table {
	font: 0.75em Arial, Helvetica, sans-serif;
	color: #006666;
}

.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#EEEEEE;
	margin: 0px 25px 0px 25px;
	* margin-left: 30px;
	width: 830px;
	font-size: 0.75em;
	color: #006666;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 15px 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.twoColFixRtHdr #footer span {
	margin: -5px 0 0 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #446666;
	font-size: 0.95em;
	letter-spacing: 0em;
}
.twoColFixRtHdr #footer span a {
	text-decoration: none;
	color: #335555;
	font-size: 1em;
}

.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;
}

