﻿/* stylesheet.css */

/* Body text and page background */
body{
width:100%;
background:url('images/wood.jpg');
background-repeat:repeat;
margin:10px;
padding:0;
}
/* Wrapper style */
#wrapper{
width:750px;
margin:auto;
border:inset thin #000000;/* black */
background-color:#ffffff;
}
/* Header style */
#header{
text-align:center;
border-bottom: thin solid #000000;/* black */
}
/* Style for left sidebar */
#leftsidebar{
float: left;
display:inline;
text-align:center;
background:url('images/wood.jpg'); /* wood */
margin-top:5px;
margin-bottom:5px;
margin-left:5px;
width:135px;
/* Total width is 140 px*/
}
/* Add some margin space to main content */
#main{
margin:10px;
/* margin-left must equal */
/* total width of left sidebar */
margin-left:140px;
}
/*Style for footer */
#footer{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
font-weight:bold;
color:#000000;
text-align:center;
line-height:20px;
clear:both;
border-top: thin solid #000000; /* black */
}
/* Level 1 headings */
h1{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:18px;
color:#000000; /* black */
}
/* Level 2 headings */
h2{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:14px; 
font-weight:bold;
margin-bottom:2px;
margin-top:2px;
text-align:center;
}
/* Style for paragraphs in table cells */
p{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
margin-bottom:2px;
margin-top:2px;
}
/* Style for indentation in paragraphs in table cells */
p.indent{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:100;
text-indent:20px;
margin-bottom:2px;
margin-top:2px;
}
/* Style for double indentation in paragraphs in table cells */
p.indent2{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:100;
text-indent:45px;
margin-bottom:2px;
margin-top:2px;
}
/* Style for indentation w/skyblue text in paragraphs in table cells */
p.indentblue{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
text-indent:20px;
color:#4f74a8;/* sky blue */
margin-bottom:2px;
margin-top:2px;
}
/* Style for indentation w/skyblue text photo months */
p.indentmonth{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
text-indent:60px;
color:#4f74a8;/* sky blue */
margin-bottom:2px;
margin-top:2px;
}
/* Style for thumbnail image of outside of bldg */
img.thumbs_out{
width:400px;
height:100px;
border:0;
}
/* Style for thumbnail image of logo */
img.thumbs_logo{
width:144px;
height:84px;
padding-left:5px;
border:0;
}
/* Style for table cells in header */
td.header{
background-color:#e7d7b3; /* wood */
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
color:#993300;/* black */
text-decoration:none;
font-weight:bold;
}
/* Style for table cells in left sidebar for "year" */
td.year{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
text-align:center;
border:thin solid;
width:110px;
padding:7px; 
}
/* Style for table cells with small font required "Adobe" */
.smfont{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:9px;
margin-bottom:2px;
margin-top:2px;
font-weight:bold;
text-align:center;	
}
/* Style for permission on photo pages */
.permission{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-align:center;
margin-bottom:2px;
margin-top:2px;	
}
/* Style for photographer on photo pages */
.smfont2{
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
margin-bottom:2px;
margin-top:2px;	
}
/* Style for table cells within main content */
td.text{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
color:#000000;/* black */
text-align:justify;
padding:2px;
}
/* Bold text within paragraphs */
.bold{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:600;
color:#000000;/* black */	
}
/* Bold sky blue text within paragraphs */
.skyblue{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:600;
color:#4f74a8;/* sky blue */	
}
/* Style for centering photos */
td.photo{
text-align:center;
}
/* Style for thumbnail images on photo pages */
img.thumbs{
padding:2px;
width:50px;
height:37px;
border:0;
text-align:center; 
}
/* Unvisited Links color same as text (no underline) */
a:link{
color:#4f74a8;/* sky blue */
text-decoration:none;
}
/* Visited Links color same as title (no underline) */
a:visited{
color:#4f74a8;/* sky blue */
text-decoration:none;
}

/* Hover Links color(no underline) */
a:hover{
color:#e66e3a;/* orange */
text-decoration:none;
}
/* Active Links color (no underline) */
a:active{
color:#295511;/* dk green */
text-decoration:none;
}


