/******************************************************************************
 * Southern Exposure main stylesheet.
 * Note: Internet Explorer hacks are in a separate files
 * Author: Neal Krouse (neal@nealkrouse.com)
 *
 ******************************************************************************/
 
 
/*-----------------------------------------------------------------------------
 *	SITE COLORS:
 *	color items:
 *	dk brown:				#786956
 *	tan:					#e8e3dc
 *----------------------------------------------------------------------------*/
 
 
/* Reset ---------------------------------------------------------------------*/

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
   A new micro clearfix hack by Nicolas Gallagher
   [http://nicolasgallagher.com/micro-clearfix-hack/] */

.clear:before, .container:before,
.clear:after, .container:after {
    content:"";
    display:table;
}

.clear:after, .container:after {
    clear:both;
}

html 
{ 
	/* Rule removes Page Shift by
	 * adding vertical scrollbars to every page */
	min-height: 100%; 
	margin-bottom: 1px; 
	/* target Firefox because the above code doesn't work */
	overflow:-moz-scrollbars-vertical; 
}

::-moz-selection { background-color: #000; color: #fff; }
::-o-selection { background-color: #000; color: #fff; }
::selection { background-color: #000; color: #fff; }

body
{
	font-family: "Times New Roman", times, serif;
	line-height: 1.5;
	/* Unitless for proper inheritance */
	color: #786956;
	background-color: #786956;
}

/* 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: 14px; }  /* Compliant browsers */

h1,h2,h3,h4,h5,h6 
{ 
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 1em;
 }

h1 { font-size: 1.3em; }
h2 { font-size: 1em; }
h3 { font-size: 1em; }
h4 { font-size: 1em; }
h5 { font-size: 1em; }
h6 { font-size: 1em; }


strong { font-weight: bold; }
em { font-style: italic; }
p { margin-bottom: 1em; }
.small { font-size: .8em; }
.large { font-size: 1.2em; }
.center { text-align: center; }
.float-left { float: left; margin-right: 1em; }
.float-right { float: right; margin-left: 1em; }
.ta-rt { text-align: right; }
.color { color: #e8e3dc; }
.ulc { text-transform: capitalize; }
.no-transform { text-transform: none; }
sup { font-size: .8em; vertical-align: top; }
abbr { letter-spacing:0.1em; font-size: .9em; }
p.top-of-page { text-align: right; }
p.top-of-page a { cursor: n-resize; }
p.top-of-page a:after { content: ' \25B2'; cursor: n-resize; }
.left-container { width: 48%; float: left; }
.right-container { width: 48%; float: right; }
.overflow-hidden { overflow: hidden; }
a:link
{
	text-decoration: underline;
	color: #786956;
	-webkit-transition: all .25s ease-in;
	-moz-transition: all .25s ease-in;
	-o-transition: all .25s ease-in;
	-ms-transition: all .25s ease-in;
	transition: all .25s ease-in;
}
a:visited
{ 
	color: #000;
}
a:hover, a:focus 
{ 
	color: #000;
	background: #e8e3dc;
}
a:active 
{ 
	color: #fff;
	background: #786956;
}


/* wrapper ------------------------------------------------------------------------------*/
#wrapper { margin: 30px 0 0; }

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

#skipnav
{
	position: relative;
	text-indent: -9000em;
	overflow: hidden;
}
 
/* branding ------------------------------------------------------------------------------*/
#branding
{
	background: #e8e3dc;
	border-top: 4px solid #fff;
	border-bottom: 4px solid #fff;
}

#branding #logo
{
	position: relative;
	height: 150px;
	margin: 0 auto;
	background-image: url(southern-exposure-logo.png);
	background-repeat: no-repeat;
	background-position: center top;
}

#branding #logo p
{
	text-indent: -9999em;
	overflow: hidden;
}

#branding #logo a
{
	width: 364px;
	height: 150px;
	display: block;
	position: absolute;
	top: 0;
	left: 347px;
	text-indent: -9999em;
	overflow: hidden;
	outline: 0;
	text-decoration: none;
	
	display: none;
}




/* navigation ------------------------------------------------------------------------------*/
#nav
{
	text-align: center;
	margin: 0;
	border-bottom: 2px solid #231f20;
}

#nav li
{
	display: inline-block;
	margin: 0 .4em 0;
}

#nav li a:link,
#nav li a:visited
{
	font-size: 1.29em;
	font-style: italic;
	color: #fff;
	text-decoration: none;
	outline: none;
	display: block;
	padding: .2em .4em;
	text-shadow: 0px 1px 0px #000;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}

#nav li a:hover,
#nav li a:focus,
#nav li.current a
{
	color: #000;
	text-shadow: none;
}


/* content ------------------------------------------------------------------------------*/
#content
{
	background: #fff;
	padding: 20px 0 8px;
}


/* primary content ------------------------------------------------------------------------------*/
#primary 
{  
	/*width: 1030px;*/
	margin: 0 auto;
	min-height: 200px;
	
	max-width: 1030px;
}

#primary ol
{
	list-style-type: decimal;
	list-style-position: outside;
	padding-left: 4em;
	margin-bottom: 1em;
}

#primary ol li {  }

#home-page #primary p
{
	background-image: url(home-bkgn.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 275px;
	text-indent: -9999em;
}

#work-page #primary { text-align: center; }

#slideshow
{
	margin: 0 auto;
	padding: 0;
}

.js #slideshow {
	overflow: hidden;
}

#slideshow div
{
	margin: 0;
	padding: 0;
}

#slideshow,
#slideshow div
{
	height: 430px; 
	width: 640px;
}

#slideshow img
{
	display: block;
	margin: 0 auto;
}

.no-js #slideshow,
.no-js #slideshow div
{
	width: auto;
	height: auto;
}

.no-js #slideshow div
{
	margin: .5em 0;
}

#pager a:link, #pager a:visited
{
	text-decoration: none;
	margin: 0 .5em;
	padding: 0 .4em;
	display: inline-block;
	text-align: center;
}

#pager a.activeSlide
{
	color: #fff;
	background: #786956;
}



#about-page .float-left,
#customers-page .float-left
{
	width: auto;
}

#pics
{
	width: 285px;
	height: 279px;
	border: 2px solid #000;
	overflow: hidden;
}

#pics img
{
	display: block;
	margin: 0;
}

.no-js #about-page .float-left,
.no-js #customers-page .float-left
{
	height: auto;
}

.no-js #pics { border: 0; overflow: auto; height: auto; }
.no-js #pics img
{
	margin-bottom: .5em;
}


blockquote
{
	font-style: italic;
	margin-bottom: 1.5em;
}

.speech-bubbles blockquote
{
	font-size: 1.1em;
}

.speech-bubbles blockquote .ta-rt
{
	margin-top: -1em;
}


/* footer ------------------------------------------------------------------------------*/
#footer
{
	background-color: #CCC2B6;
	background-image: url(se-footer-logo.png);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 38px;
}

#footer p
{
	font-family: arial, sans-serif;
	font-size: .64em;
	text-align: center;
	color: #fff;
	background: #786956;
	border-top: 4px solid #fff;
	padding-top: 8px;
}

#footer a:link,
#footer a:visited
{
	text-decoration: none;
	color: #fff;
	background: none;
	margin: 0 .4em;
}

#footer a:hover,
#footer a:focus
{
	color: #000;
	background: none;
	text-decoration: underline;
}

/* IE -------------------------------------------------------------------------------------*/
.ie7 #nav li { display: inline; }
.ie7 #nav li a { display: inline; }

.ie7 #about-page .float-right blockquote + p:first-letter,
.ie8 #about-page .float-right blockquote + p:first-letter
{
	font-size: 2.86em;
	display: inline-block;
	line-height: 0;
}
