/* CORE STYLE SHEET */

* { 
    margin:0;
    padding: 0;
    text-decoration: none;
}

body {

}

/*
  Text colors:: There are 3 colors for text.  Normal body text is black (#000000).  While the links are grey and red
  You can change them them below ...
*/

body {
    color: #000000;
}

a, #nav li ul li, #nav a, #nav li a, #nav li ul li a { /* normal links */
    color: #731B1A;
}

a:hover { /* link color when the mouse is over the link */
    color: #731B1A;
}

#nav li a.active, #nav li ul li a:hover { /* drop down menu link color when the mouse is over the link */
    color: #333333;
}

/* TEXT STYLES */

body, p, h1, h2, ol, #nav li ul li, #footer {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 24px;
}

body, p, ol, #nav li ul li {    
    font-size: 12px;    
}

h1 {
    font-size: 14px;
}

h2 {
    font-size: 18px;   
}

#footer {
    font-size: 10px;
    color: #333333;
    line-height: 14px;
}

/* Layout: nav layout: for the top menu */

#nav {
    position: relative;
    margin: 0;
    height: 20px;
    top: 13px;
    left: 70px;
}

#nav ul { /* all lists */
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
}
 
#nav a { /* links */
    text-decoration: none;
    display: block;
}
 
#nav li { /* all list items */
    float: left;
    padding: 0;
    margin: 0;
}
 
#nav li ul { /* second-level lists */
    position: absolute;
    border: #666666;
    margin: 0px 5px;
    padding: 0px 10px;
    line-height: 21px;
    width: 100px;
    left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li{ /*  second level items */
    width: 100px;
    display: block;
    background-color: #FFFFFF;
}

#nav li:hover ul { /* second level list while hovering */
    display: block;
    background-color: #FFFFFF; 
    border: 2px solid #afaec4;
}
 
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
    left: auto;
}

li > ul {
    top: auto;
    left: auto;
    clear: left;
}

/* LAYOUT */

p {
    margin: 0px 100px;    
}

#twitter_update_list, #twitter-link {
    margin: 0px 115px;
}
h1, h2 {
    margin-left: 100px;
    padding-top: 20px;
}

ol {
    margin: 0px 135px;
}

#container {
    background-image: url(images/top_bar_background.gif);
    background-repeat: no-repeat;
    width: 880px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#header{
    width: 880px;
    height: 67px;
}

#logo {
    float: left;
    width: 450px;
    height: 67px;
    margin-top: 13px;
}

#main_content {
    margin-top: 23px;
}

#music_controls {
    position: absolute;
    bottom: 0px;
    left: 15px;
    height: 25px;
    width: 210px;
}

#music_controls_right {
    position: absolute;
    bottom: 3px;
    right: 15px;
    height: 25px;
    width: 300px;
}

#med_image {
    height: 530px;
    width: 586px;
    background-color: #e9e9ed;
}

 /* To Center in DIV Horizontally. Add to <img class=""> */
.horizontal {
    display: block;
    margin-left: auto;
    margin-right: auto
}

img.inlinebase {
    vertical-align: text-bottom;
    float: left;
    border: none;
}

img.bio {
    float: left;
    margin-right: 8px;
}

#large_image {
    float: left;
    background-color: #e9e9ed;
}

#textContainer {
    float: left;
    border: 10px solid #e9e9ed;
    width: 860px;
    height: 515px;
    min-height: 515px;
    overflow: auto;
}

#pageHeader {
    float: right;
    width: 300px;
    height: 90px;
}

/* FLOATS */

.clearboth {clear: both; }

* html a { display:block; }