/*
CSS Selectors
1-Element Selector - you declare the element name (e. g. body)
2-ID selector - controls elements that have an id attribute(e.g. #header)
3-Context selector: the name of the parent forllowed by the name or type of the
descendent.
4-Class Selector: Control elements and is reusable.(e.g. .red)
*/
/*
border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 3px 3px 3px #666;
    -moz-box-shadow: 3px 3px 3px #666;
*/
html,body{
    height: 100%;
    min-height: 100%;
    width: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-family: Calibri, Helvetica, Arial, sans-serif;
    line-height: 125%;
    padding: 10px;
    background-image: url(/images/greyback.jpg);
    background-repeat: repeat;
}
#wrapper{
    max-width: 1200px;
    min-width: 800px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 3px 3px 3px #666;
    -moz-box-shadow: 3px 3px 3px #666;
    background-color: #E3ECF2;
    border: solid 2px #d6d6d6;

}
#header{
    position: relative;
    background-position:top;
    background-image: url(/images/3peaks.jpg);
    background-repeat: no-repeat;
    border-top-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    box-shadow: 3px 3px 3px #666;
    -moz-box-shadow: 3px 3px 3px #666
}

#tools{
    position: absolute;
    top: 25px;
    right: 2px;
    width: auto;

}
#logo {
    position: absolute;
    top: 200px;
    right: 1.6px;
    width: auto;
}
#header h1 {
    vertical-align: text-bottom;
    font-size:36pt;
    font-family: verdana;
    font-family: sans-serif;
    padding-top: 3em;
    padding-bottom: .6em;
    padding-left: .6em;
    margin-top: 0;
}
#header a {
    outline: none;
    text-decoration: none;
    margin-top: 0;
}

#header a:link {
    color: black;
}
#header a:visited {
    color: black;
}
#header a:hover{
    color: black
}

#centerbox {
    position: relative;
    overflow: auto;
    height: auto;
    min-width: 640px;
    max-width: 960px;
}
#nav{
    width: 14%;
    float: left;
    text-align: center;
    text-transform: uppercase;


}
#nav a:link {
    color: black;
    text-decoration: none;
}
#nav a:visited {
    color: navy;
    text-decoration: none;
}
#nav a:hover {
    color:white;
    text-decoration: none;
    background-color: black;
}
#content{
    width: 84%;
    float: left;
    padding-left: .1in;

}
#quote {
    font-style: italic;
}
#content p{
    text-indent: inherit;
}
#content p+p{

}
#footer{
    height: 1in;
    width: 100%;
    /*padding-top: 10in;*/
    padding-bottom: 1%;
    text-align: center;
    font-size: small;
    margin-top: 1in;
    /*border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    box-shadow: 3px 3px 3px #666;
    -moz-box-shadow: 3px 3px 3px #666*/
}

#address {
    font-size: small;
}
/*#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA);  Trick IE into showing hover  display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(../images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(../images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
*/