﻿/* layoutstyles.css */ 

/* Universal style rule */ 
*{ 
  margin: 0; 
  padding: 0; 
} 

body { 
  background:#000 url(images/karubahead.png) repeat; 
  font-family: Tahoma, Helvetica, sans-serif; 
} 

#wrapper{ 
  width: 50em; 
  background-color: #DEBD9E; 
    /* Set right and left to auto for centering */ 
  margin: 0px auto; 
} 

/********** Major layout divisions **********/ 
#branding{ 
  height: 11em;
}
 
#branding h1 {
  font-size: 4em;
  text-align:center;
  padding-top: 0.75em;
}

/* Fixes the mysterious image gap */ 
#branding img{ 
  display:block; 
  float:left;
  padding-left: 1em;
  padding-top: 1em;
} 

#leftcolumn{ 
  /* Remember, content and navbar left margin must match this width */ 
  width:12em; 
  float:left; 
} 

/**************************** Navbar division (For vertical navbar) */ 
#navbar{ 
 width:80%; 
 /* Center horizontally */ 
 margin:1em auto; 
 text-align:center; 
 border:solid 1px #333; 
} 

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

/* List items in the navbar */ 
#navbar li{ 
 background:#B22222; 
 /* For flyout 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; 
 font-size:80%; 
 color:#000; 
 background:#B22222; 
 display:block; 
 height:2em; 
 width:auto; 
 border-right: solid 1px #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:#E9967A; 
 color:#000; 
} 

/****************************************************** Flyout menu styles */ 
/* Applies to flyout menus in navbar */ 
#navbar li ul{ 
 position:absolute; 
 top:0; 
 left:99%; 
 z-index:105; 
 visibility:hidden; 
} 

/* Make flyout menu visible on navbar hover */ 
#navbar li:hover ul, 
#navbar li a:hover ul{ /* IE6 hack */ 
 visibility:visible; 
} 

/* Applies to links on the drop-down menu */ 
#navbar li:hover ul li a, 
#navbar li a:hover ul li a{ /* IE6 hack */ 
 background:#B22222;  
 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: #E9967A; 
 color:#000; 
} 

/* IE6 hack applies to table flyout manus */ 
#navbar table { 
 margin:-1px; 
 border-collapse:collapse; 
 position:absolute; 
 top:0em; 
 left:99%; 
 z-index:105; 
}


#content{ 
/* Left margin must match leftcolumn width */ 
  margin-left:12em; 
  background-color:#DEBD9E; 
  color:#000; 
  padding:10px 20px; 
} 

/* Applies to paragraphs in the content division */ 
#content p{ 
  line-height:1.5em; 
} 

/* Applies to all lists in the content division */ 
#content ul, #content ol{ 
  padding:10px 0 10px 40px; 
} 

/* Styles h1, h2, and h3 style rules in the content division */ 
#content h1, #content h2, #content h3{ 
  font-family: Tahoma, Helvetica, serif; 
  color:#000; 
  font-weight:normal; 
 /* letter-spacing:0.05em; */
} 

/* Size h1 headings in the content division */ 
#content h1{ 
  font-size:2em;
  text-align:center; 
} 

/* Size h2 headings in the content division */ 
#content h2{ 
  font-size:1.5em; 
} 
/* Size h3 headings in the content division */ 
#content h3{ 
  font-size:1.25em; 
  font-style:normal; 
} 

/* Style for tables of thumbnail images */
table.thumbs{
   text-align: center;
   border-collapse: collapse;
}
/* Style for table cells that contain thumbnails */
td.thumbs{ 
   border: solid 1px #00bfff;
   padding: 10px;
}
/* Style for thumbnail images */
img.thumbs{
   width:150px;
}


#footer{ 
  width: 100%;
  height:3em;
  text-decoration:none; 
  text-align:center;
  font-size:70%; 
  color:#000;
  padding-top:10px;  
}