/* layoutstyles.css */

/* Universal style rule*/
*{
/*Block all browser default margins and padding */
margin:0;
padding:0;
font-family: Helvetica, Arial, Sans-Serif;
}

body{
background-color: #000000;
}

#blankone{
width: 20em;
height: 95px;
float: left;
}

#picture{
width: 12em;
height: 95px;
float: left;
overflow: hidden;
}

/* Fixes the mysterious image gap */
#picture img{
  display:block;
}

/* Fixes the mysterious image gap */
#blankone img{
  display:block;
}

/* Fixes the mysterious image gap */
#logo img{
  display:block;
}

#blanktwo{
width: 2em;
height: 95px;
float: left;
}

#logo{
width: 6em;
float: left;
}

#links{
width: 40em;
height: 1.3em;
float: left;
background-color: #B36E30;
}

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

/* List items in the navbar */
#links li{
float:left;

/*Required for drop downs*/
position:relative;
}

/* Applies to navbar links, visited and unvisited */
#links a,
#links a:link,
#links a:visited{
text-decoration:none;
font-size:.9em;
color:#000033;
background-color:#B36E30;
display:block;
height:1.4em;
width:6em;
text-align:center;
line-height:1.4em;
outline-style:none;
}

/* Navbar hover and active links */
#links a:hover,
#links a:active{
  background-color:#000033;
  color: #FFFFFF;
}

/*Drop-down menu styles*/
/* Applies to drop-down menus in links */
#links li ul{
  position:absolute;
  z-index:100;
  visibility:hidden;
}

/* Make drop-down visible on navbar hover */
#links li:hover ul{
  visibility:visible;
}

#pattern{
width:4em;
height:25em;
float:right;
}

#contentone{
width: 19em;
height: 25em;
float: left;
background-color: #F6FAD4;
}

#contenttwo{
width: 15em;
height: 25em;
float: left;
line-height: 1.2em;
background-color: #FDF9E5; 
padding-left: 2em;
}

#blankthree{
width: 40em;
float: right;
}

#contact{
width: 40em;
height: 2em;
float: right;
color: #FFFFFF;
link: #FFFFFF;
font-family:Helvetica,Arial,Verdana, Sans-Serif;
text-decoration:none;
}

#wrapper{
width: 40em;
/* Put 20px margin above the wrapper and set right and left to auto for centering */
margin: 20px auto 0 auto;
}


