@charset "utf-8";
body  {
	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;
	background-color: #CCFF99; /* color of window behind actual page; light green-yellow color */
	background-image: none;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	text-decoration: none;
}

.ajinfo #container {
	width: 800px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #00CC8A;
	background-attachment: scroll;
	background-image: url(images/container-bg.jpg);
	background-repeat: repeat;
	border-right-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 5px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: ridge;
	border-right-color: #015A50;
	border-bottom-color: #015A50;
	border-left-color: #00CC8A;
	border-top-width: 5px;
	border-top-style: outset;
	border-top-color: #00CC8A;
}
 
.ajinfo #header {
	padding: 0;  /* If an image is used in the #header instead of text, padding is zero. */
	background-color: #00CC8A;
	background-image: url(images/aj-banner-v2.jpg);
	height: 150px;
	width: 800px;
	background-position: center top;
}
 
.ajinfo #header h1 { /* NOT USED, KEEP IN CASE */
	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 */
}

.ajinfo #hr { /* horizontal rule used under banner before main content and sidebar */
	width: 800px;
	height: 2pt;
	background-color: #028574;
	bottom: 10px;
}


/* 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. 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
 .ajinfo #sidebar1 p rule.
*/

.ajinfo #sidebar1 {
	float: left;
	width: 20%;
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
	margin-top: 60px;
}

.ajinfo #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	margin-bottom: 15px;  /* allows spacing between menu items */
	margin-top: 0;
}


#vert-nav, #vert-nav ul, #vert-nav li {  /* vertical list menu for navigation if ul and li lists are used.  I kept the vert menu as paragraphs and set anchor to block display - works fine.  */
	list-style-type: none;
	list-style-image: none;
	text-decoration: none;
	margin: 0;
	padding: 0;
}

#vert-nav a {
	display: block;
	width: 90px;
	margin: 0;
	border-top-color: #FFFFFF;
	border-right-color: #999999;
	border-bottom-color: #333333;
	border-left-color: #333333;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	text-align: center;
	white-space: normal;
	vertical-align: middle;
	text-decoration: none;
	padding: 5px;
	visibility: visible;
	background-color: #00C183;
	color: #FFFFFF;}

#vert-nav a:hover {
	position: relative;
	border-top-color: #333333;
	border-right-color: #999999;
	border-bottom-color: #FFFFFF;
	border-left-color: #333333;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	white-space: normal;
	vertical-align: middle;
	text-decoration: none;
	padding: 5px;
	visibility: visible;
	background: transparent;
	color: #FFFFFF;
}


/* 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 (see each html file - if IE... section in head tags), the zoom property is used to give the mainContent hasLayout. This avoids several IE-specific bugs that may occur.
*/

.ajinfo #mainContent {
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 21%;
}

.ajinfo #mainContent h4 {
	font-size: medium;
	text-align: left;
	font-style: normal;
	font-weight: lighter;
}

.ajinfo #mainContent h5 {
	font-size: medium;
	text-align: center;
	font-style: normal;
	font-weight: lighter;
}

.ajinfo #mainContent h6 {
	font-size: medium;
	font-style: italic;
	text-align: center;
	text-decoration: none;
	font-weight: lighter;
	white-space: normal;
	background-color: #00BB7E;  /* Section under banner - has grey-green box around text */
	margin: 0px;
}

.styleRed {
	color: #BE1415;  /* Font color "dark red" */
}

a:link {
	color: #FFFFFF;
	text-decoration: none;
}

a:visited {
	color: #BE1415;
	text-decoration: none;
}

a:hover {
	color: #000000;
	text-decoration: none;
}


.ajinfo #mainContent ul {
	list-style-position: outside;
	list-style-type:disc;
	line-height: 150%;
	text-align: left;
	white-space: nowrap;
	list-style-image: url(images/list1-bullet.gif);
	font-size: medium;
	text-indent: 10px;
}

.ajinfo #mainContent ol {
	list-style-position: outside;
	list-style-type:disc;
	line-height: 100%;
	text-align: left;
	white-space: normal;
	list-style-image: url(images/list1-bullet.gif);
	font-size: medium;
	display: block;
}

.ajinfo #mainContent li {
	line-height: 100%;
	margin-top: 0;
	margin-bottom: 15px;
} 
 
.ajinfo #footer {
	background-color: #028574;
	background-image: url(images/aj-footer-v2.jpg);
	height: 72px;
	width: 800px;
	background-repeat: no-repeat;
	background-attachment: scroll;
	padding: 0;
	text-align: center;
	vertical-align: text-bottom;
} 
.ajinfo #footer p {
	margin: 0; 
	font-size: small;
	font-style: normal;
	color: #FFFFFF;
	text-align: center;
	vertical-align: text-bottom;
	padding-top: 50px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

/* 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;
}

