@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/*background: #D6D6D6;  */
	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;
	background-color: #666;

	/* ADDED 8/23/09 MEB
	Using a Combination of Percent and Em works in all browsers 
	set a default font-size in percent for the body element 
	sets the same text size in all browsers, and allows all browsers to zoom or resize the text 
	body {font-size:100%}
	p {font-size:0.875em} 
	h1 {font-size:2.5em}
	h2 {font-size:1.875em}
	/* End ADDED 8/23/09 MEB */
}
/*
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}

*/

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 47em;  /* 46em this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	/*background: FFFFFF;*/
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	/* ADDED MEB 8/23/09 next 3 lines */ 
		font-size:100%;
	p {font-size:0.875em} 
	/*h1 {font-size:2.5em}
	h2 {font-size:1.875em}*/
	/* End ADDED MEB 8/23/09 next 3 lines */

} 
.twoColElsLtHdr #header {

	background: #1671ED8;   /* a lighter blue color */
/*	border-bottom-style: ridge;*/	/*padding: 0 10px;  /* 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. */
/*	border-bottom-width: thick; */
		border-bottom-style: ridge;	/*padding: 0 10px;  /* 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. */
	border-bottom-width: thick;

} 
.twoColElsLtHdr #header h2 {
/*	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 */
	text-align: center;   
	font-weight: bolder;
	font-family: Georgia, "Times New Roman", Times, serif;
	/*font-size: 16pt; */
	font-style: normal;
	color: #000;
}


/*.twoColElsLtHdr #header h3 { */ 
/*	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;   */
/*	text-align: center;
}  */


.twoColElsLtHdr #header h3 {
	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; */
	text-align: center;
	width: 100%;

}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 14em; /* since this element is floated, a width must be given */
	background: #1671ED; /* a lighter blue the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 0; /* top and bottom padding create visual space within this div */
	display:  inline;  /* ADDED MEB 9/17/09 */
}

.twoColElsLtHdr #sidebar1 h2 {
	text-align: center;  
	font: Broadway;   
	font-weight: bolder;
}

.twoColElsLtHdr #sidebar1 h3 {
	text-align:  left; /* REV MEB 8/5/09 was center; MEB added next 2 lines 8/5/09 */
	margin-left: 20px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
}

/*.twoColElsLtHdr #sidebar1 p, .twoColElsLtHdr #sidebar1 li {  REV adding below MEB 8/5/09 */
.twoColElsLtHdr #sidebar1 p, .twoColElsLtHdr #sidebar1 li,.twoColElsLtHdr #sidebar1 h4 { 
	text-align: left;  
	margin-left: 20px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
}

/*.twoColElsLtHdr #sidebar1 p a:link, .twoColElsLtHdr #sidebar1 li a:link { REV adding below 8/5/09*/
.twoColElsLtHdr #sidebar1 p a:link, .twoColElsLtHdr #sidebar1 li a:link, .twoColElsLtHdr #sidebar1 h4 a:link{
	color: white;	
}

/*.twoColElsLtHdr #sidebar1 p a:visited, .twoColElsLtHdr #sidebar1 li a:visited {REV adding below 8/5/09 */
.twoColElsLtHdr #sidebar1 p a:visited, .twoColElsLtHdr #sidebar1 li a:visited, .twoColElsLtHdr #sidebar1 h4 a:visited {
	color: #000;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
/* ADDED MEB 8/23/09 next 3 lines 
.twoColElsLtHdr #mainContent h1,h2,h3,h4,h5,h6,fieldset,input,textarea,p,blockquote,th,td {
	margin:0;
	padding:0;
}
/* END ADDED MEB 8/23/09 next 3 lines */

.twoColElsLtHdr #mainContent {

	margin: 0 1.0em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page.  7/2/09 was 0 1.5 em 0 13 em */
	background:  #FFFFFF;   /*white added 7/2/09  */
	margin-left: 0.5em;  /* left margin added MEB 8/2/09 to fill the main content space and have the text fill to the left when the sidebar ends  */
} 
.twoColElsLtHdr #mainContent p{
	text-indent:  20px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* ADDED MEB 8/27/09 next 7 sections to set different formats for p and ul and li */
/* REV MEB 9/20/09 added list styles formats for main content */
.twoColElsLtHdr #mainContent p.top{
	text-align: center;
}
.twoColElsLtHdr #mainContent p.bottom{
	text-align:  left;
	display:  inline;  /* ADDED MEB 9/17/09 */
}

/* REV 9/20/09 MEB to distinguish betw indent on left align */
.twoColElsLtHdr #mainContent p.left{
	/*text-indent:  16px; END REV 9/20/09 MEB */
	text-indent:  0px;
	text-align: left;
}
/* ADDED 9/20/09 MEB to distinguish betw indent on left align */
.twoColElsLtHdr #mainContent p.leftin{
	text-indent:  16px;
	text-align: left;
}
/* ADDED 9/20/09 MEB to distinguish betw indent on left align */

.twoColElsLtHdr #mainContent ul.left{
	text-indent:  32px;
	text-align: left;
}
.twoColElsLtHdr #mainContent p.center{
	text-indent:  16px;
	text-align: center;
}
.twoColElsLtHdr #mainContent li.left{
	text-indent:  32px;
	text-align: left;
}

.twoColElsLtHdr #mainContent li.center{
	text-indent:  16px;
	text-align: center;
}

/* ADDED MEB 9/20/09 added ul list styles formats for main content */
.twoColElsLtHdr #mainContent ul.disc{
	list-style-type: disc;
	list-style-position:  inside;
}
.twoColElsLtHdr #mainContent ul.sq{
	list-style-type:  square;
	list-style-position:  inside;
}
.twoColElsLtHdr #mainContent ul.num{
	list-style-type:  decimal;
	list-style-position:  inside;
}

/* END ADDED MEB 9/20/09 added li list styles formats for main content */
/* End ADDED MEB 8/27/09 next 7 sections to set different formats for p and ul and li  */

/* ADDED MEB 9/16/09 next section to set a different a format for p  */
.twoColElsLtHdr #mainContent p.bold{
	font-weight:  bold;
	text-align: left;
}
.twoColElsLtHdr #mainContent p.bolder{
	font-weight: bolder;
	font-size: medium;
	font-style: italic;
	text-align: left;
	text-indent: 1 em;
}

/* End ADDED MEB 9/16/09 next section to set a different format for p */

.twoColElsLtHdr #mainContent h2{
	text-align: center;
}

.twoColElsLtHdr #mainContent h3{
	text-indent:  30px;
	text-align: left;
}

/* ADDED MEB 8/28/09 center h3 formatting */
.twoColElsLtHdr #mainContent h3.center{
	text-indent:  30px;
	text-align:  center;
}
/* END ADDED MEB 8/28/09 h3 formatting */

/* ADDED MEB 8/18/09 h4 formatting */
.twoColElsLtHdr #mainContent h4{
	text-indent:  30px;
	text-align: left;
}
/* ADDED MEB 8/27/09 h4 formatting next 2 sections added classes in order to distinguish between
	top section formatting on page and bottom section */
.twoColElsLtHdr #mainContent h4.top{
	text-indent:  30px;
	text-align: left;
}

.twoColElsLtHdr #mainContent h4.bottom{
	text-indent:  30px;
	text-align: center;
}
/* END ADDED MEB 8/27/09 h4 formatting

/* next 2 lines added MEB 8/5/09 */
.twoColElsLtHdr #mainContent table{
	text-align: left;
	/* next 2 lines added MEB 8/23/09 */  /* REV MEB 8/26/08 
	border-collapse:collapse;
	border-spacing:0; */
	border-width:thick;
	border-bottom-style:outset;
}

/*  ADDED MEB 8/27/09 next 11 sections for different formatting of table depending upon whether it
	appears at the top of the page where there is a left column or the bottom where it appears on 			 	the full page */
.twoColElsLtHdr #mainContent table.top{
	text-align: left;
	border-width:thick;
	border-bottom-style:outset;	
}

.twoColElsLtHdr #mainContent table.bottom{
	margin-left:  auto;
	margin-right:  auto;
	text-align: center;
	border-width:thick;
	border-bottom-style:outset;	
}

.twoColElsLtHdr #mainContent td{
	border-width: thin;
	border-bottom-style:outset;
}

.twoColElsLtHdr #mainContent td.top{
	border-width: thin;
	border-bottom-style:outset;
}
.twoColElsLtHdr #mainContent td.bottom{
	border-width: thin;
	border-bottom-style:outset;
}

.twoColElsLtHdr #mainContent th{
	border-width: thin;
	border-bottom-style:outset;
}

.twoColElsLtHdr #mainContent th.top{
	border-width: thin;
	border-bottom-style:outset;
}

.twoColElsLtHdr #mainContent th.bottom{
	border-width: thin;
	border-bottom-style:outset;
}
.twoColElsLtHdr #mainContent tr{
	border-width: thin;
	border-bottom-style:outset;
}

.twoColElsLtHdr #mainContent tr.top{
	text-align:  left;
	border-width: thin;
	border-bottom-style:outset;

 	}

.twoColElsLtHdr #mainContent th.bottom{
	text-align:  center;
	border-width: thin;
	border-bottom-style:outset;

}

/* END ADDED MEB 8/27/09  11 sections  */

/*  ADDED MEB 8/27/09 next sections for formatting of images in main content */
.twoColElsLtHdr #mainContent img.floatLeft{
	float:  left;
	margin:  4px;
	margin-left:  16px;
}
.twoColElsLtHdr #mainContent img.floatRightClear{
	float:  left;
	clear:  right;
	margin:  4 px;
}
.twoColElsLtHdr #mainContent img.floatRightRightClear{
	float:  right;
	clear:  right;
	margin:  4 px;
}

/*  END ADDED MEB 8/27/09 */

/* ADDED MEB 9/20/09 h5 and h6 formatting next sections  */
.twoColElsLtHdr #mainContent h5{
	font-style:  italic;
	font-size: smaller;
	text-indent:  30px;
	text-align:  left;
}
.twoColElsLtHdr #mainContent h6{
	text-indent:  30px;
	text-align: left;
}
/* END ADDED MEB 9/20/09 h5 and h6 formatting next sections  */


.twoColElsLtHdr #footer {
	/*	padding: 0 10px;*/ /* this padding matches the left alignment of the elements in the divs that appear above it. */
	/* ADDED MEB 8/26/09 next 3 lines to move amazon.com image to footer background */
	background-image:url("../images/amazon.png");
	background-repeat:no-repeat;
	background-position:top right;
	/* End ADDED MEB 8/26/09 next 3 lines */

	background:#1671ED;  /* slightly lighter blue than header  */
	border-top-style: ridge;
	border-top-color: #666;
	border-top-width: thick;
	width: inherit;
} 

.twoColElsLtHdr #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 */
	text-align: center;  
}
/*  ADDED MEB 8/28/09  added left alignment and right alignment */
.twoColElsLtHdr #footer p.left {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	text-align: left;  
}
.twoColElsLtHdr #footer img.floatLeft{
	float:  left;
	margin:  4px;
	margin-left:  16px;
}

/*  END ADDED MEB 8/28/09  added left alignment and right alignment */

.twoColElsLtHdr #footer li {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	text-align: left;  
}
.twoColElsLtHdr #footer p a:link {
	color: white;	
}

.twoColElsLtHdr #footer p a:visited {
	color: #000;
}



/* Miscellaneous classes for reuse */
.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;
}
.jqueryslidemenu{
font: bold 12px Verdana;
background: #FF0000;
width: 100%;
}

.jqueryslidemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.jqueryslidemenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.jqueryslidemenu ul li a{
display: block;
background: #FF0000; /*background of tabs (default state)*/
color: blue;
padding: 8px 10px;
border-right: 1px solid #778;
color: #2d2b2b;
text-decoration: none;
}

* html .jqueryslidemenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.jqueryslidemenu ul li a:link, .jqueryslidemenu ul li a:visited{
color: white;
}

.jqueryslidemenu ul li a:hover{
background: yellow; /*tab link background during hover state*/
color: white;
}
	
/*1st sub level menu*/
.jqueryslidemenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jqueryslidemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jqueryslidemenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.jqueryslidemenu ul li ul li a{
font: normal 13px Verdana;
width: 160px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}

.jqueryslidemenuz ul li ul li a:hover{ /*sub menus hover style*/
background: #FF0000;
color: #FF0000;  /*  a red  */
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}
body {
}
