/******************************************************************************
 * John Granen Photography main stylesheet.
 * Note: Internet Explorer hacks are in a separate file (all_ie.css)
 * Author: Neal Krouse (krousen@comcast.net)
 *
 * Table of Contents for navigation:
 * _general
 *
 * _wrapper
 *
 * _container
 *
 * _branding
 *
 * _navigation
 *
 * _content
 *
 * _primary content
 *
 * _secondary content
 *
 * _footer
 *
 ******************************************************************************/
 
 
/*-----------------------------------------------------------------------------
 *	SITE COLORS:
 *
 *	overall background:			#292829
 *	base element color:			#727276
 *----------------------------------------------------------------------------*/
 
 
/* _general
------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { list-style:none }

/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear:after, .container:after, #wrapper:after
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clear, .container, #wrapper { height: 1%; }
.clear, .container, #wrapper { display: block; }

html 
{ 
	/* Rule removes Page Shift by
	 * adding vertical scrollbars to every page */
	min-height: 100%; 
	margin-bottom: 1px; 
}

body
{
	font-family: "Helvetica Neue 35 Thin", "Helvetica Neue", arial, sans-serif;
	line-height: 1.5;
	/* Unitless for proper inheritance */
	background-color: #292829;
	color: #727276;
}

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   
body   { font-size: 12px; }  /* Compliant browsers */

h1,h2,h3,h4,h5,h6 { 
	font-family: "Helvetica Neue", arial, sans-serif;
	font-weight: bold;
	clear: both; 
	line-height: 1.1;
 }

h1 { font-size: 2em; }
h2 { font-size: 1.5em; margin-bottom: 1em; }
h3 { font-size: 1.3em; margin: .5em 0; }
h4 { font-size: 1.1em; }
h5 { font-size: 1em; margin-top: 1em; }
h6 { font-size: 1em; }


strong { font-weight: bold; }
em { font-style: italic; }
p { margin-bottom: 1em; }
.small { font-size: .8em; }
a:link, a:visited, a
{
	text-decoration: underline;
	color: #666;
}
a:hover { text-decoration: underline; color: #F1A04A; }

/* _wrapper
------------------------------------------------------------------------------*/
#wrapper
{
	width: 830px;
	margin: 0 auto;
	position: relative;
}

#top
{
	position: absolute;
	top: 0;
	left: 0;
	width:1%;
	z-index: 100;
}

#skipnav
{
	position: relative;
	text-indent: -9000em;
	overflow: hidden;
}
 

/* _branding
------------------------------------------------------------------------------*/
#branding
{
	width: 100%;
	height: 46px;
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px #000 solid;
	margin-bottom: 1em;
}

#branding h1
{
	position: absolute;
	width: 393px;
	height: 28px;
	bottom: 4px;
	background-image: url(johngranenlogo.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}


#branding h1 a
{
	display: block;
	position: absolute;
	width: 393px;
	height: 28px;
	bottom: 0px;
	left: 0;
	text-indent: -9999em;
	overflow: hidden;
	outline: 0;
	text-decoration: none;
}


/* _container
------------------------------------------------------------------------------*/
#content
{
}





/* _navigation
------------------------------------------------------------------------------*/
#nav
{
	width: 120px;
	position: relative;
	float:left;
	display: inline;
	line-height: 1.2;
}

#nav li { padding: .3em 0; }

#nav li ul
{
	padding-left: 1.5em;
}

#nav li a { text-transform: uppercase; text-decoration: none; }
#nav li a:hover { color: #F1A04A; }

#interiors_page #interiors,
#bath_page #bath,
#bedroom_page #bedroom,
#dining_room_page #dining_room,
#exteriors_page #exteriors,
#kitchen_page #kitchen,
#livingroom_page #livingroom,
#outdoor_rooms_page #outdoor_rooms,
#food_page #food,
#lifestyle_page #lifestyle,
#resort_page #resort,
#still_life_page #still_life,
#about_page #about,
#contact_page #contact,
#nav a.current
{
	color: #F1A04A;
}

/* _primary content
------------------------------------------------------------------------------*/
#primary
{
	width: 600px;
	float: left;
	display: inline;
	position: relative;
	margin-left:50px;
	margin-top: 2em;
	min-height: 900px;
}

#contact_page #primary,
#about_page #primary,
#resources_page #primary
{
	height: 600px;
	margin-top: 4em;
}
#about_page #primary { width: 550px; min-height: 600px; }

#imagenav
{
	text-align: left;
	margin: 0;
	word-spacing: 1em;
	margin-bottom: 1em;
	width: 599px;
}

#imagenav a { outline: 0; }



/* _secondary content
------------------------------------------------------------------------------*/
#secondNav
{
	position: absolute;
	font-size: 1.09em;
	line-height: 1.2;
	right: 0;
	top: 72px;
	text-align: right;
}

#secondNav li
{
	display: inline;
	padding-left: 2em;
}

#secondNav li a { text-transform: uppercase; text-decoration: none; }
#secondNav li a:hover { color: #F1A04A; }




/* _footer
------------------------------------------------------------------------------*/
#footer
{
	width: 780px;
	clear: both;
	text-align: center;
	margin: 0 auto;
	color: #666;
	font-size: .75em;
}

