@charset "UTF-8";

/* this is to remove the default values of all elements to avoid the different defaults on diff browsers */
* {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	border: 0;
}

body 
{
	font: 100% Arial, Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000000;
	background-color: #F7F4EE; /*#FFF;*/
	line-height: 150%;	
	/*background-image: url(../images/bg_shadow_s.png); /** Link to the image you created **/
    /*background-repeat: repeat-y; /** Repeats the image vertically **/
    /*background-position: center; /** Centers the Background image **/
}
.oneColLiqCtrHdr #container 
{
	width: 1000px; /*80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000; /*2px solid #dddddd; /* 0px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */	
}
.oneColLiqCtrHdr #header 
{
	margin: 0;
	background: #000; /*#333333;*/
	padding: 0 0px 0 20px;  /* 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. */
	height: 110px;
}
.oneColLiqCtrHdr #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-size: 1.2em;
	color: #ddd;
}
.oneColLiqCtrHdr #header a
{
	color: #ddd;
	text-decoration:none;
}
.oneColLiqCtrHdr #menuBarBg 
{
	/*margin-top: 20px; /* margin is the space outside the div box */
	background: #dddddd;
	padding: 0 0px 0 0px;  
	border: 0px solid #C4C9DB;
}

.oneColLiqCtrHdr #menuBarBg span
{	
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	display: block;	
	padding: 0.4em 0.75em; /* this padding matches the padding of the menu items */
}

.oneColLiqCtrHdr #mainContent
{
	margin-top: 30px; /* margin is the space outside the div box */
	margin-bottom: 30px; /* margin is the space outside the div box */
	padding: 0 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColLiqCtrHdr #footer 
{ 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColLiqCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:small;
}

.oneColLiqCtrHdr a 
{
	text-decoration: none;	
	color: #36C; /*#00c;*/
}

.float_right 
{ 
	/* this class can be used whenever you wish to float an element to the right side of the page. The floated element must be placed above the element that will display next to it in the source code. */
	float: right;
	margin-left: 8px;
}

.float_left 
{ 
	/* this class can be used whenever you wish to float an element left on the page */
	float: left;
	margin-right: 8px;
}

.float_clear 
{ 
	/* 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;
}

input.cls_button_short 
{
	width: 140px;
	height: 40px; /* 35px; */
	font-size: 1em;
	/*background-image: url(../images/patient/btn_background_short_5.jpg);*/
	border: 2px solid #FC6;			
	/*font-family: Arial, Helvetica, sans-serif;*/		
	cursor: pointer;
	background-color: #FD7;
}

input.cls_button_long 
{
	width: 220px;
	height: 40px; /*35px; */
	font-size: 1em;
	/*background-image: url(../images/patient/btn_background_short_5.jpg);*/
	border: 2px solid #FC6;			
	/*font-family: Arial, Helvetica, sans-serif;*/		
	cursor: pointer;
	background-color: #FD7;
}

.cls_divider
{
	margin: 20px 0 20px 0;
	border-bottom:	1px solid #CCC;	
}

.cls_audio {
	background-image: url(../images/home/btn_audio_bg_s.png);
	background-repeat:no-repeat;
	padding: 9px 10px 9px 60px;
	height: 20px; 
	width: 310px;
	margin-top:10px;
}
