/* clientsty;les.css*/

/* clear browser defaults*/
*{
	margin:0;
	padding:0;
}/*end of universal style*/

body{
background-color: #000;
  font-family: Geneva, Tahoma, sans-serif;
  text-align: justify;
}

/*wrapper contains the layout*/
#wrapper{
	width:45em;
  margin: 20px auto 0 auto;
  background-color:#000;
  position:relative; 
	}
	
/*style for branding division*/
#branding{
height:5em; width: auto;
}
/*remove the mysterious image gap*/
#branding img{
display:block;
}

/*style for left column division*/
#leftcol{
/* #content left margin must match this width */
   width:10em;
   float:left;
/* Center text and images in this column */
   text-align:center;
/* For absolutely positioned layout */
   position:absolute;
   top:5em;
   left:0;
}

/*style for right column*/
#rightcol{
float:right;
width:10em;
text-align:center;
/* For absolutely positioned layout */
   position:absolute;
   top:5em;
   right:0;
}
#leftcol img,#rightcol img{
width:80%;
margin:1em 0;

}
#leftcol p, #rightcol p{
width:75%;
padding:0.25;
border:thin solid #7E97A6;
font-family:Tahoma, Verdana, Sans-Serif;
font-size:0.8em;
margin:1em auto;
}



/*style for navbar*/
#navbar{
/*left margin width must match left column width*/
height:1.6em;
 /* For absolutely positioned layout */
   position:absolute;
   top:10.5em;
   left:5em;
   width:28em;
}

/*remove the bullets from ul in navbar*/
#navbar ul{
list-style-type:none
}
/* List items in the navbar */
#navbar li{
  float:left;
}

/* 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;
  font-size:80%;
  color:#99ebff;
  background-color:#000;
  display:block;
  height:2em;
  width:6em;
  border-right: solid, 1px #4cb6f4;
  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-color:#f2dbcb;
  color:#000;
}

/*style for main content*/
#content{
margin-top:8em;

   /*padding-top:10px;*/
   padding-right:20em;
   background-color:#000;
   color:#fff;
   
  }


/* Applies to h1, h2, and h3 headings in the content division */
#content h1,#content h2,#content h3{
font-family: "Apple Chancery" "Brush Script MT", "Monotype Corsiva", cursive;
color:#45322F;
}
/* Applies to paragraphs and lists in the content division */
#content p, #content ul, #content ol{
text-align:left;
  font-size:1em;
  line-height:1.25em;
  color:#99EBFF;
  }
  /* Applies to lists in the content division */
#content ul, #content ol{
  padding: 5px 0px 5px 30px; 
  }  
 
/*style for footer*/
#footer{
 margin-top:4em; 
background-color:#000000;
height:5em;
width:45em;
color:#99BEFF;
}

/*Applies to paragraphs in the footer division*/
#footer p{font-size:1em;
color:99EBFF;
}


