﻿/*main.css */

/* Block all default margins and padding */
* {
    margin: 0;
    padding: 0;
}

body {
    /* Required to center wrapper in old browsers */
    text-align: center;
	background: url("images/Light and Color background transparent.jpg");
	/* The rest is optional, style to taste */
    font-family: Verdana, Geneva, Sans-Serif;
}

/* Wrapper sizes the layout */
#wrapper {
    /* Sets width of fixed or elastic layout */
    width: 60em; 
    /* Centers the layout (newer browsers) */
    margin: 0 auto;
    /* The rest is optional, style to taste */
   background:#996699;
}

/* ---------------------- Start layout division styles ---------------------- */
/* Branding division */
#branding {
    /* Style to taste */
	padding: 2em;
    height: 5.6em;
	background: url(images/logo_text.png);
	background-repeat:no-repeat;
}


/* Left column */
#leftcolumn {
    float: left;
    /* Style to taste */
    width: 10em;
	margin-top:.5em;
}

/* Left column */
#rightcolumn {
    float: right;
    /* Style to taste */
    width: 10em;
	margin-top:.5em;
}

/* Navbar division */


#navbar{
	background:#9999CC; 
	height:2.1em;
	top:7.6em; /* Whatever it takes to get it under branding bar image */
   	border:none;
}

/* Remove bullets from ul in the navbar */
#navbar ul{
	list-style-type:none;
}

/* List items in the navbar */
#navbar li{
	float:left;
	/* Required for drop-down menus */
	position:relative;
}

/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited{
	text-decoration:none;
    font-family:Verdana, Geneva, Arial, Sans-Serif;
    color:#000;
	background:#9999CC;  
	display:block;
	height:2em;
	width:8.2em;
    border-right:solid 3px #ddd;	
    line-height:2em;
    text-align:center;
    outline-style:none;
}

/* Navbar hover, active, and current page links */
#navbar a:hover,
#navbar a:active,
#navbar li.selected a:link,
#navbar li.selected a:visited{
    background:#ddd;
    color:#000;
}

/* Drop-down menu styles */
/* Applies to drop-down menus in navbar */
#navbar li ul{
    position:absolute;
    z-index:200;
    visibility:hidden;
    border:solid 1px #aaa;
    border-right:solid 2px #999;
    border-bottom:solid 2px #999;
}

/* Make drop-down visible on navbar hover */
#navbar li:hover ul,
#navbar li a:hover ul{ /* IE6 hack */
   visibility:visible;
   top:1.9em; /* Slightly less than navbar height */
   left:0; 
}


/* Applies to links on the drop-down menu */
#navbar li:hover ul li a,
#navbar li a:hover ul li a{ /* IE6 hack */
    background:#9999CC;   /* Removes background image */
    color:#000;
    text-align:left;
    display:block;
    width:10em;
    padding:0 0 0 1em;
    height:auto;    
}

/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover,
#navbar li a:hover ul li a:hover{ /* IE6 hack */
  background: #aaa; 
  color:#000;
}

/* IE6 hack applies to its table drop-down */
#navbar table {
    margin:-1px; 
    border-collapse:collapse; 
    position:absolute;
    top:0em;
    left:0;
    z-index:200;
}


/* Content division */
#content {
    /* Leave room for leftcolumn */
    margin-left: 10em;
	margin-right:10em; 
    /* Optional, style to taste */
    text-align:left;
	padding:1.5em;
    background-color: #fff;
    color: #000;
}

#content h1{
	text-align:center;
}


/* Footer division */
#footer {
    /* Clear floated column */
    clear:left; 
    /* Optional, style to taste */
    background-color: #91ADCA;
    color: #000;
    border-top: solid 1px #B0C4D0;
	padding-bottom:2px;
}
/* ---------------------- End layout division styles ---------------------- */

/* ---------------------- Start Branding division styles ------------------- */

.center
{
margin-left:auto;
margin-right:auto;
margin-top:3.5em;
width:70%;
}

/* ---------------------- End Branding division styles ---------------------- */


/* ---------------------- Start Content division styles ------------------- */
/* Heading 1 tags in content division */
#content h1 {
    margin-left: 10px;
    font-size: 1.5em;
}

/* Paragraphs in content division */
#content p {
    font-size: 0.85em;
    line-height: 1.5em;
    margin: 1em 12px;
}



/* Bulleted lists in content division */
#content ul {
    font-size: 0.85em;
    margin: 1em 20px 1em 40px;
}

#content ul li {
    margin-bottom: 0.5em;
}

/* ---------------------- End Content division styles ------------------- */


/* ---------------------- Start Rightside division styles ------------------- */

/* Image float left in content division */
div.rightside_text {
padding: 8px;
margin: 10px;
border: 1px solid #2a1c0b;
text-align:center;
font-size: 0.8em;
font-style: italic;
}

/* ---------------------- End Rightside division styles ------------------- */

/* ---------------------- Start Footer division styles ------------------- */

/* text float right in content division */
div.rightfooter_text {
padding: 4px;
margin: 5px;
border: none;
text-align:right;
font-size: 0.6em;
font-style: italic;
}


/* text float left in content division */
div.leftfooter_text {
padding: 4px;
margin: 5px;
border:none;
text-align:left;
font-size: 0.6em;
font-style: italic;
float:left;
}

/* ---------------------- End Footer division styles ------------------- */
