@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #0E659B;
	background-image: url(Images/Theme-Bg-Gradient.png);
	background-repeat: repeat-x;
	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;
}

.callForHelp {
  z-index: 2000;
  width: 100%;
  height: 20px;
  padding: 10px;
  background: #fcffb8;
  color: #222;
  border-top: solid 2px #444;
  border-bottom: solid 2px #444;
  font-weight: bold;
  font-size: 14px;

   }


.twoColFixLtHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-image: url(Images/Theme-Bg-Main-Gradient.png);
	background-repeat: repeat-x;
	background-color: #fefefe;
	background-position: top;

	padding-bottom: 40px;
} 

#header h1 { display: none; }

/* ol {  padding: 18px;  } */

.twoColFixLtHdr #header { 
	background-image: url(Images/Theme-Hdr.png);
	color:#FFFFFF;
	height: 97px;
	background-repeat: no-repeat;	
	padding: 0 10px 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. */
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 237px; /* 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: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 20px 0px;
	margin: 20px 2px 2px 5px;
}

#sidebar1 #sidebar1Top
{
	background-image: url(Images/Theme-Bg-List-Top.png);
	margin: 0px 0px 0px 0px;
	height: 33px;
	width: 238px;
}

#sidebar1 h3
{
   margin-left: 30px;
}

#sidebar1 #sidebar1Top  img
{
	position: relative;
	left: 160px; 
	top: -20px;	
}




#sidebar1 ol
{
	
	margin: 0px 0px 0px 0px;
	list-style-position: outside;
	list-style-type: decimal; 
	background: url(Images/Theme-SideBar-Bg.png);
	padding-top: 10px;
	padding-bottom: 20px;
	padding-right: 10px;
	font-size: 12px;
	/*list-style-image: url(Images/Theme-Bg-List-Item.png);*/
}

#sidebar ol li
{
 

}

.twoColFixLtHdr #mainContent {
	margin: 30px 0px 0 185px; /* the left margin on this div element creates the column down the left 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	overflow: hidden;
	width: 700px;
	

} 

ol li img {
	position: relative;
	left: -20px;
}

ol li img.inlineIcon {
	position: relative;
	left: 0px;
}

img.inline { left: 0px; }

.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */

} 
.twoColFixLtHdr #footer p {
	color: #CBD9E0;
	font-size: smaller;
	font-weight: bolder;
	font-style: italic;
	font-family: Verdana, Arial, Helvetica, sans-serif;
    text-align: center;
	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 */
}
.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;
}

h2 {
   font-size: 24px;
   font-weight: 600;
   color:   #b61010;
   
}

h3 {
	color: #4062C8;
	
}

li { margin-top: 9px; }

.noteCallout {
	border: solid 1px;
	vertical-align: middle;
	padding: 10px;
	margin: 20px;

}

.warning
{
	display:block;
	margin:1em 0 1em 0;
	padding:20px 5px 20px 50px;
	background:#FFFFFF  url(Images/warning.gif)  no-repeat left center;
	border:1px solid;
	height:auto;
	border: solid #899DAB 2px;
}

.imgCaption {
    text-align: center; /* this overrides the text-align: center on the body element. */
	font-size: smaller;
	font-weight: bold;
}

.sampleCode {
	background-color: #EBEFF2;
	border: solid #899DAB 2px;
	font-family:Courier New, Courier, monospace;
	padding: 10px;
	margin: 20px;
}

a.nextButton
{
	background-image: url(Images/Theme-Continue-Button.gif);
	height: 35px;
	display: block;
	width: 130px;	
	margin-left: auto;
    padding-left: 20px;
	padding-top: 8px;
	vertical-align: middle;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	background-repeat: no-repeat;
	color: #FFFFFF;
}



.videoRef a
{
    height: 55px;
	display: block;
	width: 209px;
	font-size: 0px;
	margin-left: auto;
	margin-right: auto;
	background-image:url(Images/Theme-Video-Button.png);
	background-repeat: no-repeat;
}

.addThisButton
{
	padding: 10px;
}

.suggestLink
{
	margin: 0 px 40px 0px 40px;
	padding: 10px;
	background-color: #C4D8D0;
}
