/* CSS Document */

* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}

body, html {
color: #000; 
font-family: Verdana, Arial, Tahoma, sans-serif;
font-size:80%;
background-color: #fff; 
text-align: center; /*** Centers the design in old IE versions ***/
}

body {
font-size: 100%;
}


#mainContainerEmail {
width: 650px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #fff;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}

* html #mainContainerEmail {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}



p {
padding: 7px 0 7px 0;
}

a {
color: #000099;
}

a:hover{
color: #0000FF;
text-decoration: none;
}

h1, h2, h3 {
font-weight: normal;
padding-bottom: 1em;
padding-top:1em;
}

h1 {
font-size: 1em;
padding-left: 170px;
}

h2 {
font-size: .9em;
}

h3 {
font-size: .8em;
}

h1 a, #header h2{
color: #000;
}

.clear { clear: both; }

#mainContainer {
width: 744px;
margin: 0 auto; /*** Centers the design ***/
min-height: 300px;
background: #fff;
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}

* html #mainContainer {
height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}

/**************************
HEADER
**************************/
#header {background-image:url(../../common/images/ylm_header.gif);
background-repeat:no-repeat;
background-position:left;
padding: 10px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:2em;
text-align:center;
color:#666666;
height:152px;
width:744px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
margin-top: 0px; /*** We need to add some space for our top menu ***/
}
* html .outer {
width: 99%;/*** No need for hacking IE on this layout ***/
}
.inner {
/*** No need to do anything with a one column solution ***/
}
* html .inner {
	width: 110%;/***  And therefor no need for hacking IE either ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;
	width: 150px;
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content_buttons {
float: left;
width: 570px;
background: #fff;
text-align:center;

}
* html #content_buttons {
	position: relative;  /*** IE needs this  ***/
	margin-left: 0px;
	margin-top: 5px;
	padding-top: 1em;
}

ul#content_buttons {
        margin: 0;
        padding: 0;
		margin-left:1px;
        list-style-type: none;
        white-space: nowrap;
}

ul#content_buttons li {
        float: left;
        font-family: verdana, arial, sans-serif;
        font-size: 100%;
        font-weight: bold;
        margin: 0;
        padding: 5px 0 4px 0;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
		border-right: 1px solid #ccc;
}

#content_buttons a, #content_buttons a:link {
        margin: 0;
        padding: 5px 9px 4px 9px;
        color: #666;

        text-decoration: none;
}

ul#content_buttons li#active {
        color: #ccc;
        background-color: #fff;
}

#content_buttons a:hover {
        color: #000;
        background-color: #f1e017;
}
#content {
float: left;
width: 570px;
background: #fff;
}
* html #content {
	position: relative;  /*** IE needs this  ***/
	margin-left: 0px;
	margin-top: 5px;
	padding-top: 1em;
}
.contentWrap {
padding: 5px;
}
.contentWrap ol, .contentWrap ul {
}
.contentWrap li {
padding-bottom: 2px;
}

/*************************
Display pic COLUMN - This is our footer menu
**************************/
#display {
float: left;
width: auto;
height:auto;
background: #fff;

border-style:solid;
border-color:#666666;
border-width:1px;
}

* html #display {
	position: relative;  /*** IE needs this  ***/
	overflow: auto;
}

.textareaEmail {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:95%;
border:#000000 solid 1px;
display:inline;
width: 500px;}

.textareaSec {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:95%;
border:#000000 solid 1px;
display:inline;
width: 50px;}

.red {
color:#FF0000;}