@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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	background-image: url(../images/Page_background.jpg);
	background-repeat: repeat;
}
#container {
	width: 95%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	height: 500px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	background-image: url(../images/apple_gradient_background.jpg);
	background-repeat: repeat-x;
	margin: 0px;
	font-size: x-large;
} 


/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent {
	vertical-align: top;
	padding: 5px;
	margin: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. 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 ".thrColLiqHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar1 {
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(../images/green_background.jpg);
	background-repeat: repeat;
	vertical-align: top;
	margin: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#sidebar2 {
	width: 210px; /* top and bottom padding create visual space within this div */
	vertical-align: top;
	margin: 0px;
	padding-left: 5px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	background-image: url(../images/green_background.jpg);
	background-repeat: repeat;
}
.right_indent_with_padding {
	text-align: right;
	padding-right: 10px;
	vertical-align: top;
}
.success_message {
	font-weight: bolder;
	color: #FFFFFF;
	background-color: #009900;
	text-align: center;
}
.error_message {
	font-weight: bolder;
	color: #FFFFFF;
	background-color: #FF0000;
	text-align: center;
}

.Did_You_Know_Heading {
	font-size: large;
	font-weight: bolder;
}
.Did_You_Know_Heading_small {
	font-weight: bolder;
	color: #900;
	font-style: italic;
	font-size: 0.7em;
	font-variant: small-caps;
	word-spacing: normal;
	padding: 0px;
}

.bulleted_text {
	padding-right: 20px;
	list-style-position: outside;
	list-style-type: circle;
	line-height: 1.5em;
}
.fancy_signature {
	font-family: "Comic Sans MS";
	font-size: xx-large;
	text-align: center;
	font-weight: bolder;
	color: #99CC33;
}
#index_page_image {
	background-image: url(../images/BLD%20logo%20vector%20traced%20and%20transparent%20for%20web%20with%20gradient.png);
	background-repeat: no-repeat;
	left: 0px;
	top: 0px;
	background-position: center;
}

#navigation_contents {
	padding-right: 5px;
	padding-left: 10px;
}
.page_title_styling {
	font-family: "comic Sans MS";
	font-size: large;
	text-align: center;
}
.tiny_centered {
	font-size: x-small;
	text-align: center;
	text-decoration: none;
}

#footer {
	padding: 2px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	margin: 0px;
} 

/* 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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.webpage_title_text {
	font-size: x-large;
	font-weight: bold;
	padding-bottom: 10px;
	padding-left: 10px;
	font-variant: small-caps;
}
.superscript_small_italiced_right {
	font-size: x-small;
	font-style: italic;
	text-align: right;
	vertical-align: text-top;
}
.indented_comments {
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 40px;
}
.subheading {
	font-size: large;
	font-style: italic;
	font-weight: bold;
}
#fulltable_align_top {
	vertical-align: top;
	padding: 2px;
	width: 100%;
}
.bolded_text {
	font-weight: bolder;
}
.paragraph_box {
	border: 1px solid #666;
	clear: both;
	float: left;
	width: 90%;
	margin-bottom: 1em;
	padding: 0.5em;
}
.paragraph_box .image_100 {
	border: medium solid #000;
	background-color: #9C3;
	text-align: center;
	clear: both;
	float: none;
	padding: 3px;
	height: auto;
	width: 95%;
	margin-top: 1em;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
}
.paragraph_box .image_75 {
	border: medium solid #000;
	background-color: #9C3;
	text-align: center;
	clear: none;
	float: left;
	padding: 3px;
	height: auto;
	width: 75%;
	margin-top: 1em;
	margin-right: auto;
	margin-bottom: 1em;
	margin-left: auto;
}
.paragraph_box .image_50 {
	border: medium solid #000;
	background-color: #9C3;
	text-align: center;
	clear: none;
	float: left;
	padding: 3px;
	height: auto;
	width: 50%;
	margin: 1em;
}
.paragraph_box .image_25 {
	border: medium solid #000;
	background-color: #9C3;
	text-align: center;
	clear: none;
	float: left;
	padding: 3px;
	height: auto;
	width: 25%;
	margin: 1em;
}

.paragraph_box .image_natural_size {
	border: medium solid #000;
	background-color: #9C3;
	clear: none;
	float: left;
	padding: 3px;
	margin: 1em;
}



.paragraph_box h2 {
	font-size: 1.4em;
	font-weight: bold;
	font-variant: small-caps;
	color: #C30;
}
.paragraph_box p {
	clear: none;
}
.paragraph_box .funnyHeading {
	font-family: "Comic Sans MS", cursive;
	font-style: normal;
	font-weight: bold;
	color: #333;
	text-align: center;
}

.read_more , .read_more a{
	font-size: 1.2em;
	font-style: italic;
	font-weight: bold;
	clear: both;
	float: right;
	color: #000;
	background-color: #BECC6B;
	padding: 5px;
}

.red_bold_text {
	font-weight: bolder;
	color: #FF0000;
}
.small_text {
	font-size: .6em;
}
#table_centered_text_gray_bg {
	background-color: #999999;
	text-align: center;
	vertical-align: top;
}
#table_with_links {
	background-image: url(../images/apple_gradient_background.jpg);
	background-repeat: repeat;
	margin-right: auto;
	margin-left: auto;
}
#table_with_links  td , #table_with_links a{
	text-decoration: none;
	text-align: center;
	vertical-align: top;
	color: #000000;
}
#table_with_links    td:hover, #table_with_links a:hover{
	color: #666666;
	background-color: #FFFFFF;
}

#table_centered {
	color: #000000;
	background-color: #FFFFFF;
	margin: 0px;
	padding: 2px;
	width: 100%;
	font-size: .7em;
}
#table_centered .grey {
	color: #FFFFFF;
	background-color: #666666;
	vertical-align: top;
}
#table_centered  .top_line {
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}


#table_centered .grey a {
	text-decoration: none;
	color: #FFFF00;
}
.paragraph_box .image_no_clear {
	border: medium solid #000;
	background-color: #9C3;
	text-align: center;
	clear: none;
	float: left;
	padding: 3px;
	margin: 1em;
}
.paragraph_box_sideBar {
	border: 1px solid #666;
	clear: both;
	float: left;
	width: 90%;
	margin-bottom: 1em;
	padding: 0.5em;
}
.paragraph_box_sideBar p , .paragraph_box_sideBar ul ,.paragraph_box_sideBar li{
	font-size: 0.8em;
}
.paragraph_box_sideBar_orange {
	border-radius: 10px;
	border: 1px solid #666; 
	clear: both;
	float: left;
	width: 90%;
	margin-bottom: 1em;
	padding: 0.5em;
	color: #FFF;
	background-color: #F60;
}
.paragraph_box_sideBar_orange p, .paragraph_box_sideBar_orange ul, .paragraph_box_sideBar_orange li , .paragraph_box_sideBar_orange a{
	font-size: 0.8em;
	text-decoration: none;
}
.paragraph_box_sideBar_orange h2 , .paragraph_box_sideBar_orange h2 a{
	font-size: 0.8em;
	font-style: italic;
	font-weight: bold;
	font-variant: small-caps;
	color: #FFF;
	padding: 0px;
	clear: both;
	text-decoration: none;
}

.paragraph_box_sideBar img {
	border: medium solid #000;
	background-color: #9C3;
	text-align: center;
	clear: none;
	float: left;
	padding: 3px;
	height: auto;
	width: 75%;
	margin: 1em;
}

.paragraph_box_sideBar h2 {
	font-size: .8em;
	font-style: italic;
	font-weight: bold;
	font-variant: small-caps;
	color: #900;
	padding: 0px;
	clear: both;	
}
.fourColumns {
	margin: 5px;
	padding: 5px;
	clear: none;
	float: left;
	width: 20%;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: solid;
	border-top-color: #999;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #999;
}
.fourColumns img {
	border: 1px solid #333;
	clear: both;
	float: left;
}
.cornerDiv {
	border-radius: 10px;
	border: thin solid #CCC;
	background-image: url(../images/redBackground.png);
	background-repeat: repeat;
	padding: 10px;
	margin: 1em;
}
}

