@charset "UTF-8";
/* CSS Document */

/* Styling of Body defining font family and more importantly the background image displayed as top background header, centered, repeated on x axis to fill browser window width - Background colour also designated*/

body {
margin: 0;
padding: 0;
font-size: 95%;
font-family: "Myriad Pro", Arial, sans-serif;
text-align: center;
color: #333;
background: #C7BA9B url(background.jpg) center top fixed repeat-x;
text-align: center;
}

/* Main Container enclosing all other divs on site */

#wrapper {
width: 779px;
margin: 0 auto 0 auto;
padding: 0px;
text-align: left;
}

/* Main Header with Logo and Vertical Navigation Bar - Layer appears centerd on background image in Body tag */

#masthead {
width: 769px;
height: 260px;
margin: 15px 0 0 7px;
color: #333;
background: url(masthead.jpg) center no-repeat;
}

/* Title of Website Hidden but available to screen readers */

#masthead h1 {
display: none;
}

/* Navigation within Masthead - ul li has no list style - background image for li's*/

#mastnav {
margin: 0 0 0 60px;
padding-top: 30px;
}

#nav li {
width:135px;
height: 34px;
list-style-type: none;
padding-top: 4px;
font-size: 16px;
letter-spacing: 0.09em;
}

#nav li a {
color: #300;
padding-left: 11px;
text-decoration: none;
font-weight: bold;
}

#nav li a:hover {
margin-left: -4px;
color: #900;
}


/* Highlights current page link in navigation to let user be aware of which page is being cuerrently viewed - uses the unique id given to the body element of each page and the ul and corresponding list item or navigation link - similar colour to a:hover condition - brighter red */

#homepage #nav #nav_home, #aboutpage #nav #nav_about, #gallerypage #nav #nav_gallery, #inspirationpage #nav #nav_inspiration, #contactpage #nav #nav_contact, #contactthanks #nav #nav_contact {
color: #C33;
}

/* Navigation within Masthead - Varying margin settings for organic 'undstyled' layout*/

#nav_home {
background: url(button_a.gif) no-repeat;
}

#nav_about {
background: url(button_a.gif) no-repeat;
margin-left: 6px;
}

#nav_gallery {
background: url(button_a.gif) no-repeat;
margin-left: -2px;
}
#nav_inspiration {
background: url(button_a.gif) no-repeat;
margin-left: 8px;

}
#nav_contact {
background: url(button_a.gif) no-repeat;
margin-left: -3px;
}

#logo{
float: right;
margin-right: 20px;
margin-top: 80px;
}

#logo a img{
border: none;

}

/* Content Area (div) with Main Content 65% and Sidebar 30% floated to right and left */

#content {
width: 779px;
height: 780px;
margin: 0;
padding: 0;
background: url(content2.gif) repeat scroll 0%;
}

#inspirationpage #content {
height: 940px;
}


/* Main Content */

#maincontent {
width: 60%;
margin-top: 0px;
margin-left: 20px;
padding-top: 13px;
font-size: 12px;
text-align: justify;
float: left;
}

h2 {
width: 145px;
height: 36px;
margin-top: 20px;
margin-left: 5px;
padding: 2px 0 0 2px;
color: #630;
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: normal;
font-size: 18px;
background: url(titlebutton.gif) no-repeat;
}

h3{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #630;
font-weight: normal;
}

p em {
font-style: normal;
font-weight: bold;
font-size: 1.1em;
}

cite {
font-size: 1.1em;
}

blockquote {
font-size: 1.1em;
color:#990000;
}

#name {
font-weight: bold;
}


/* Styling of all external a links on the site */

#maincontent a, dl#linkslist dd a {
text-decoration: none;
color: #333;
font-size: 1.1em;
font-style: italic;
font-weight: bold;
}

#maincontent a:hover, dl#linkslist dd a:hover {
text-decoration: underline;
color: #069;
}


/* Inspiration Page Definition List Styling */

dl#linkslist dt{
padding-top: 5px;
padding-left: 10px;
border-left: 3px solid #630;
}

dl#linkslist dt a{
font-weight: normal;
font-size: 14px;
color: #900;
}



/* Sidebar */

#sidebar { 
width: 30%;
padding-top: 13px;
margin-top: 35px;
margin-right: 20px;
text-align: left;
float: right;
}

#sidebar h2{
display: none;
}

#photolinks li {
list-style-type: none;
}

#photolinks img{
padding-bottom: 10px;
}

#photolinks a img{
border: none;
}




/* Photo Gallery - Hoverbox Courtesy of Nathan Smith at www.sonspring.com *** set higher z-index for a:hover in ie7 - makes hover work correctly!!! - see ie_gallery.css */

#content #gallerycontainer {
padding-top: 13px}

#gallerycontainer h2{
margin-left: 25px;
}

#gallery{
margin: 0 auto;
width: 779px;
height: 550px;
}

.hoverbox
{
	cursor: default;
	list-style: none;
	padding-top: 25px;
	margin-left: 40px;
}

.hoverbox a
{
	cursor: default;
}

.hoverbox a .preview
{
	display: none;
}

.hoverbox a:hover .preview
{
	display: block;
	position: absolute;
	top: -55px;
	left: -70px;
	z-index: 10;
}

.hoverbox img
{
	background: #fff;
	border-color: #aaa #ccc #ddd #bbb;
	border-style: solid;
	border-width: 1px;
	color: inherit;
	padding: 2px;
	vertical-align: top;
	width: 100px;
	height: 75px;
}

.hoverbox li
{
	background: #eee;
	border-color: #ddd #bbb #aaa #ccc;
	border-style: solid;
	border-width: 1px;
	color: inherit;
	display: inline;
	float: left;
	margin: 3px;
	padding: 5px;
	position: relative;
}

.hoverbox .preview
{
	border-color: #000;
	width: 250px;
	height:200px;
}

.hoverbox a href .galleryimage{
margin: 0 auto;
width: 450px;
height: 350px;
background: #000;
}





/* Contact Form Styling */

#contact-area {
	width: 500px;
	margin-top: 25px;
}

#contact-area input, #contact-area textarea {
	padding: 5px;
	width: 350px;
	font-family: Helvetica, sans-serif;
	font-size: 1.4em;
	margin: 0px 0px 10px 0px;
	border: 2px solid #ccc;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 2px solid #900;
}

#contact-area input.submit-button {
	width: 100px;
	float: right;
}

label {
	float: left;
	text-align: right;
	margin-right: 15px;
	width: 100px;
	padding-top: 5px;
	font-size: 1.4em;
}

#messagesent{
margin-top: 40px;
margin-left: 20px;
font-size: 1.4em;
font-style: italic;
}

#formsent {
margin-top: 70px;
margin-left: 20px;
font-size: 1.2em;
}

#formsent a {
font-weight: bold;
color: #333;
text-decoration: none;
}

#formsent a:hover{
text-decoration: underline;
color: #069;
}


/* Footer Styling  with background image */

#footer{
clear: both;
height: 145px;
margin: 0px;
text-align: center;
color: #333;
font-size: 11px;
background: #c7ba9b url(footer2.jpg) no-repeat scroll 0%;
}

#footer h4{
margin: 0px;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
color: #333;
}

#sitemap_nav {
display: block;
font-size: 12px;
}

#sitemap_nav a{
color: #333;
text-decoration: none;
}

#sitemap_nav a:hover{
color: #000;
text-decoration: none;
}

#credits {
font-family: Georgia, "Times New Roman", Times, serif;
color: #630;
font-size: 12px;
}

#credits a {
text-decoration: none;
color:#630;
}

#credits a:hover {
text-decoration: underline;
color:#960;
}

#smallicons {
width: 180px;
height: 60px;
margin-left: 22px;
}

#footer a img{
border: none; 
}

