/* 
    Document   : screen
    Created on : May 17, 2010, 10:57:46 AM
    Author     : shanebarnwell
    Description:
        Purpose of the stylesheet follows.
*/

/* 
There are six ways of controlling the web page!!
1-- Declare an element          (ie. body)
2-- Declare an ID               (ie. #header or #nav or #subnav)
3-- Declare a class             (ie .home)
4-- Declare a context selector  (ie #nav ul)
5-- declare a pseudo class      (ie a:link)
6-- use an attribute selector   (ie a:[title~=home])
*/

/* CSS Rule
1-green selector this is what your looking for to control
2-blue is property  what about it you will change
3-black is the value
    blue and black (2&3) is a declaration
*/
/*  LINK UNVISITED  a:link
    VISITED         a:visited
    HOVER/FOCUS     a:hover  --or--  a:focus
    ACTIVE          a:active
*/
*{
    margin: 0;
}
root { 
    display: block;
}

body{
    background-color: white;/*#99FF09;*/
}


/* order does not matter for each one but its a good idea to
so it stays organized
*/
p{
    text-indent: 30pt;
}

#top{
    background-image: url(/barnwells/images/blackcrayon.png);
}
#header{
    color:blue;
    margin: 0;
}
#nav{
    padding-top:35px;
    color:white;
    background-image: url(/barnwells/images/blackcrayon.png);
    min-width: 1150px;
}
#nav ul{
    margin: 0;
    padding: 0 0 1px 0px;
    font: medium "Courier New";
    text-align: center;
}
#nav li{
    display:inline;
    padding:0;
    margin:0;
    list-style:none;
    text-align:center;

}
/*desrices states of all anchors*/
#nav li a{
    /*display:inline-block;*/
    /*width: 7em;*/
    padding: 1px .5em 0 .5em;
    margin-left: 0px;
    border-left: 1px solid black;/*width of border, style, color*/
    border-right: 1px solid black;/*width of border, style, color*/
    border-top: 1px solid black;/*width of border, style, color*/
    border-bottom: 1px solid black;/*width of border, style, color*/
    text-decoration: none;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
    -moz-border-radius-topleft: 8px;/*code for MOZILLA to tell browser how to read lines above*/
    -moz-border-radius-topright: 8px;/*code for MOZILLA to tell browser how to read lines above*/
    -webkit-border-top-left-radius: 8px;/*code for SAFARI AND CHROME to tell browser how to read lines above*/
    -webkit-border-top-right-radius: 8px;/*code for SAFARI AND CHROME to tell browser how to read lines above*/
    -o-border-top-left-radius: 8px;/*code for OPERA to tell browser how to read lines above*/
    -o-border-top-right-radius: 8px;/*code for OPERA to tell browser how to read lines above*/

}
#nav li a.home{
    background-image: url(http://martinrep.com/barnwells/images/greytab.png);
}
#nav li a.bon{
    background-image: url(http://martinrep.com/barnwells/images/browntab.png);
}
#nav li a.sufjan{
    background-image: url(http://martinrep.com/barnwells/images/redtabinvweb.png);
}
#nav li a.joshua{
    background-image: url(http://martinrep.com/barnwells/images/greentab.png);
}
#nav li a.theformat{
    background-image: url(http://martinrep.com/barnwells/images/bluetabinv.png);
}
#nav li a.radiohead{
    background-image: url(http://martinrep.com/barnwells/images/bluetab.png);
}
#nav li a.iron{
    background-image: url(http://martinrep.com/barnwells/images/redtab.png);
}
#nav li a.nickel{
    background-image: url(http://martinrep.com/barnwells/images/greentabinvweb.png);
}
#nav li a.about{
    background-image: url(http://martinrep.com/barnwells/images/yellowtab.png);
}
#nav a:link{
    color:black;
}
#nav a:visited{
    color:black;
    outline:none;
}
#nav a:hover,
#nav a:focus{
    color:white;
    /*
    background:black;
    border-bottom: 1px solid green;*/
}
/*most people don't use this*/
#nav a:active{
    color:black;
    /*
    border-left: 1px solid black;/*width of border, style, color
    border-right: 1px solid black;/*width of border, style, color
    border-top: 1px solid black;/*width of border, style, color
    border-bottom: 1px solid black;/*width of border, style, color*/

}

.home #nav a[title~=home],
.bon #nav a[title~=bon],
.sufjan #nav a[title~=sufjan],
.joshua #nav a[title~=joshua],
.theformat #nav a[title~=theformat],
.radiohead #nav a[title~=radiohead],
.iron #nav a[title~=iron],
.nickel #nav a[title~=nickel],
.about #nav a[title~=about]{
    background-image: url(http://martinrep.com/barnwells/images/tabcurrent.png);
    padding: 4px 9px 2px 9px;
    /*border-bottom: 1px solid black;*/
}
#allcontent{
    min-width:1150px;
    position:relative;
    overflow:auto;
    background-image: url(http://martinrep.com/barnwells/images/backgroundweb.jpg);
}
#leftinfo{
    float:left;
    width:930px;
    padding-top: 25px;
    padding-bottom: 25px;

}
#content{
    font: medium "Courier New";
    padding-left: 30px;
    min-height:525px;
}
#pic{
    margin-top:40px;
    float:left;
    width:40%;
}
#text{
    margin-top:40px;
    float:right;
    width:40%;
}
#copy{
    margin-bottom:30px;
}
#content ul.gallery{
    margin: 0;
    padding: 0;
    position: relative;
    overflow:auto;
    min-height:855px;
}
#content ul.gallery li{
    display: inline;
    padding: 2px;
    float: left;
    height: 280px;
}
#content ul.gallery li img{
    border: none;
}
#content h1 {
    margin-top: 0;
}
#content label{
    font-weight: bold;
    width: 6em;
    margin-right: 1em;
    float: left;
    text-align: left;
}
#captcha{
    text-decoration:none;
    float: left;
    margin-right: 1em;
}
ul.radio{
    list-style-type:none;
}
/*
#content ul.radiohead{
    list-style-type: none;
    font-weight: bold;
    width: 9em;
    margin-right: .5em;
    float: left;
   /* text-align: right;
}*/
#p{
    text-indent: 30pt;
}
#rightinfo{
    padding-top: 125px;
    float: right;
}
#subnav{
    padding-top:13px;
    padding-right:6px;
    width:200px;
    min-height:387px;
    /*float:right;*/
    font: medium "Courier New";
    background-image: url(http://martinrep.com/barnwells/images/keyswebc.png);
    /*border-right: 2px solid #000000;
    border-left: 2px solid #000000;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;*/
    position:fixed;
    top:100px;
    left:1000px;
    z-index:5;
}
#subnav li{
    list-style-type:none;
    padding-top:23px;
    padding-bottom:9px;
}
#subnav a:link{
    color:black;
}
#subnav a:visited{
    color:black;
    outline:none;
}
#footer{
    color: white;
    background-image: url(/barnwells/images/blackcrayon.png);
}
#footer li{
    font: small "Courier New";
    text-decoration:none;
    display:inline;
}
#footer li a{
    text-decoration: none;
}
#footer a:link{
    color:white;
}
#footer a:hover,
#footer a:focus{
    color:green;
    outline:none;
}
#footer a:visited{
    color:white;
    outline:none;
}
