@charset "utf-8";
/* 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: 0;
  padding: 0;
  border: 0;
  outline: 0;
  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 {
	background-color: #5F6A83;
	color: #2d2e2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #0655CE;
	font-size: 16px;
	font-weight: bold;
	line-height: 14px;
	letter-spacing: 0.1em;
}
/* Commonly used to style section titles. */
h2 {
	color: #0655CE;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
/* removed a from this style */
a:link {
	color: #0655CE;
	font-weight: bold;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #0655CE;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #0548AD;
	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;
}

/* add rule to prevent bloue line around paypal link */
a img.payPalBtn {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
#fmBuy a:link {
	color: #990000;
	text-decoration: underline;
}
#fmBuy a:visited {
	color: #990000;
}
#fmBuy a:hover {
	color: #0548AD;
	text-decoration: underline;
	background-color: #DBE9FD;
}
.testText {
	background-color: #FFFFCC;
	margin-right: 50px;
	margin-left: 50px;
	border: 1px solid #99CC00;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

/* 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 {
	background-color: #FFFFFF;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 780px;
	background-image: none;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: bold;
	height: 122px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/bg_header_blue_gradient_10.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	margin: 0px;
}
#outerWrapper  #header  img.Logo {
	margin-top: 6px;
	margin-right: 10px;
	margin-left: 20px;
	float: left;
}
.logoHeaderTitle {
	margin: 0px;
	padding: 0px;
	float: left;
}
#outerWrapper #topNavigation {
	background-color: #99FF00;
	/* height: 20px; */ /* try removing this to get rid of gap in bg */
	height: 19px;
	/* margin: 0px; */
	/* padding: 0px; */
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	background-position: left top;
	background-color: #FFFFFF;
	background-image: url(../images/new%20layout_bg_columns_1.gif);
	background-repeat: repeat-y;
	clear: left;
	margin: 0px;
	padding: 0px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333333;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #EDF3FC; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
/* 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 {
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0;
	margin-right: 50;
	margin-bottom: 0;
	margin-left: 220px;
}
#outerWrapper #footer {
  background-color: #eaeff5;
  border-top: solid 1px #9bb6d2; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#vdividermenu {
	margin: 0px; 
	padding: 0px; 
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
/* styles for horiz nav */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#vdividermenu ul{
	padding: 0;
	margin-top: 0; 
	margin-right: 0;
	margin-left: 0;
	/* margin-bottom: 1em; */ /* try hiding this style */
	/* float: left; */ /* removed this style to remove gap between content wrapper and main nav */
	width: 100%;
	background-color: #99FF00;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;

}

* html #vdividermenu ul{ /*IE only rule, reduce menu width*/
width: 99%;
}

#vdividermenu ul li{
display: inline;
}

#vdividermenu ul li a{
float: left;
color: black;
padding: 2px 12px;
text-decoration: none;
background: transparent url(../media/vertical.gif) center right no-repeat;
}

#vdividermenu ul li a:visited{
color: black;
}

#vdividermenu ul li a:hover{
	color: #FFFFFF;
	background-color: #100042;
}
.style6 {font-size: 16px; color: #0854C2; }
.style7 {
	color: #990000;
	font-weight: bold;
}
.style9 {font-size: 7px}
#outerWrapper #contentWrapper #content #form1 input {
	margin-top: 3px;
	margin-right: 3px;
	margin-bottom: 3px;
}
#outerWrapper #contentWrapper #content #form1 td {
	padding-right: 10px;
	padding-left: 5px;
}
.redText {
	font-weight: bold;
	color: #CC0000;
}
.redTextTwo {
	font-weight: bold;
	color: #CC0000;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content #form2 h2 {
	font-size: 12px;
	color: #333333;
}
.LoginForm {
	width: 500px;
	border: 1px solid #CCCCCC;
	padding: 10px;
}
#outerWrapper #contentWrapper #content a {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#content .highliteDSSM {
	color: #CB3465;
	font-weight: bold;
	font-size: 110%;
}
.divIndent {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 50px;
}

.paraIndent {
	margin: 0px;
	padding-left: 10px;
}

#content .emphasize {
	font-weight: bold;
}
#content table.BuyPageTable td {
	padding-bottom: 12px;
}
#content table.BuyPageExcelTable td {
	padding-bottom: 12px;
	padding-right: 15px;
}
/* remove the border around linked image */
a:link img {
  border: none;
}
img {
border-style: none;
text-decoration: none;
}
/* style to underline text */
.underlineText {
	text-decoration: underline;
}
/* added for contact form - nov3 2011 */
textarea#message {
    /*
	width: 600px;
    height: 120px;
    border: 3px solid #cccccc;
    padding: 2px;
	*/
    color: #2D2E2E;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 11px;
    line-height: 14px;
}
