@charset "iso-8859-1";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color : #537c92;
	color : #000000;
	line-height: 1.2em;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
	margin: 10px;
}
body img {
	border: 0px;
	text-decoration: none;
}
/* Commonly used to style page titles. */
h1, h2, h3 {
	color: #69c;
	margin: 5px 0px 5px 10px;
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	line-height: 30px;
}
h1 {
	font-size: 1.7em;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 1.3em;
}
h3 {
	font-size: 1.1em;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #4095df;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #4870aa;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #039;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	width: 99%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto 0px auto;
}
#outerWrapper #header {
	border-left: 5px #f5cb00 solid;
	border-right: 5px #f5cb00 solid;
	padding: 10px 10px 10px 10px;
	font-weight: bold;
	margin: 0px 0px 20px 0px;
	background-color: #FFFFFF;
	color: #000000;
	height: 100px;
}
#outerWrapper #header .title {
	font-family: "Palatino Linotype", Georgia, "Times New Roman", Times, serif;
	font-size: 1.7em;
	font-weight: bold;
	color: #000000;
	margin-top: 30px;
	margin-left: 25px;
}
#outerWrapper #contentWrapper {
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	width: 210px;
	padding : 0.5em 0;
	color: #000000;
	background-color: #FFFFFF;
	margin-right : 20px;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	border-left: 5px #f5cb00 solid;
}
#outerWrapper #contentWrapper #leftColumn1 .header {
	background-color : #e86a1b;
	color : #ffffff;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	margin : 2px 0 5px;
	padding-left : 5px;
	font-weight : bold;
}
#outerWrapper #contentWrapper #leftColumn1 li {
	padding-left : 0;
	display : list-item;
	list-style-position : inside;
	list-style-image : url(http://frontpage-ebooks.com/images/bulletgreen.jpg);
}
#outerWrapper #contentWrapper #leftColumn1 p {
	margin : 0;
	padding : 4px 6px;
}
#outerWrapper #contentWrapper #leftColumn1 ul {
	list-style: square;
	margin: 0;
	padding: 5px;
	font-size : 95%;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 20px 0px 0px 230px;
	padding : 30px;
	background-color: #FFFFFF;
	color: #000000;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	border-right: 5px #f5cb00 solid;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	display: block;
	clear: left;
}
#outerWrapper #footer {
	background-color: #eaeff5;
	border-left: 5px #f5cb00 solid;
	border-right: 5px #f5cb00 solid;
	padding: 10px 10px 10px 10px;
}
/* removes the top and bottom margins*/
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.ctr {
	text-align: center;
}
/* styling small size text*/
.smltxt {
	font-size: small;
}
/* center image on the page */
.imgctr {
	display: block;
	margin: 0px auto;
}
/*============ form styles ==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 1px solid #353c48;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	border: 1px solid #353c48;
	color: #ffffff;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
	background-color: #353c48;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #353c48;
	background-color: #353c48;
	color: white;
}
/*============ For Bing search box ==============*/
#WLSearchBoxDiv {
	margin: 1em;
}
#google {
		float: right;
}
.logo {
	margin: 5px 3px 5px 3px;
	border: 0px;
	float: left;
}
.mvp {
	margin: 5px 25px 5px 25px;
	border: 0px;
	float: left;
}
#footer span.small {
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 70%;
}
.pagetitle {
	padding-left : 3px;
	color : #505ba4;
	font-weight : bold;
	background-color : white;
}
span.removelink {
	color : #31679c;
	font-weight : bold;
	background : white;
}
span.orange {
	color : #e86a1b;
	font-weight : bold;
	background-color : white;
}
input.yellow {
	background-color : #f5cb00;
	color : #27537e;
	border : 1px solid #5a7e92;
}
input.image {
	border : 1px solid #000000;
	font-family : sans-serif;
	color : #000000;
	font-size : 12px;
	background-color : #d6e7ef;
	font-weight : bold;
}
#ezineform {
	background : white;
	color : black;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	margin : 0px auto;
	padding : 5px;
	font-weight : bold;
	width : 156px;
	border : 1px solid #000000;
}
#ezineform input.yellow {
	background-color : #f5cb00;
	color : #27537e;
	border : 1px solid #5a7e92;
}
#ezineform input.join {
	border : 1px solid #000000;
	font-family : sans-serif;
	color : #ffffff;
	font-size : 12px;
	font-weight : bold;
	background : #ef6918;
}
#ezineform1 {
	background : white;
	color : black;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	margin : 0px auto;
	padding : 5px;
	font-weight : bold;
	width : 156px;
	border : 1px solid #000000;
}
#ezineform1 input.yellow {
	background-color : #f5cb00;
	color : #27537e;
	border : 1px solid #5a7e92;
}
#ezineform1 input.join {
	border : 1px solid #000000;
	font-family : sans-serif;
	color : #ffffff;
	font-size : 12px;
	font-weight : bold;
	background : #ef6918;
}
#ezineform2 {
	background : white;
	color : black;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	margin : 0px auto;
	padding : 5px;
	font-weight : bold;
	width : 156px;
	border : 1px solid #000000;
}
#ezineform2 input.yellow {
	background-color : #f5cb00;
	color : #27537e;
	border : 1px solid #5a7e92;
}
#ezineform2 input.join {
	border : 1px solid #000000;
	font-family : sans-serif;
	color : #ffffff;
	font-size : 12px;
	font-weight : bold;
	background : #ef6918;
}
#ezineform3 {
	background : white;
	color : black;
	font-family : Geneva, Arial, Helvetica, sans-serif;
	font-size : 100%;
	margin : 0px auto;
	padding : 5px;
	font-weight : bold;
	width : 156px;
	border : 1px solid #000000;
}
#ezineform3 input.yellow {
	background-color : #f5cb00;
	color : #27537e;
	border : 1px solid #5a7e92;
}
#ezineform3 input.join {
	border : 1px solid #000000;
	font-family : sans-serif;
	color : #ffffff;
	font-size : 12px;
	font-weight : bold;
	background : #ef6918;
}
div.hr {
	height : 2px;
	background : #fff url(../images/red-line.jpg) scroll center;
	color : black;
}
div.hr hr {
	display : none;
}
div.line {
	height : 2px;
	background : #fff url(../images/green-line.gif) scroll center;
	color : black;
}
div.line hr {
	display : none;
}
.gen {
	float: left;
	border: 0px;
	margin: 5px;
}
#outerWrapper #contentWrapper #leftColumn1 #search {
	margin: 0px auto;
	padding : 5px;
	width : 156px;
}
.text {
	text-align: center;
}
#outerWrapper #contentWrapper #leftColumn1 .picture {
	margin: 0px auto;
	padding : 5px;
	width : 156px;
}
.bar {
	background-color: #c0c0c0;
}
#confirmation {
	width: 460px;
	border: 1px #000000 solid;
	empty-cells: show;
}
#confirmation td {
	border: 1px #000000 solid;
}

