/******************************************************************************
 * Blue Olive 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
 *
 * _containers
 *
 * _branding
 *
 * _navigation
 *
 * _primary content
 *
 * _secondary content
 *
 * _footer
 *
 ******************************************************************************/
 
 
/*-----------------------------------------------------------------------------
 *	SITE COLORS:
 *
 *	text:				#846F61
 *	background:			#B0A486
 *
 *	links hover:		#4B94C9
 *----------------------------------------------------------------------------*/
 
 
/* _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 
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }

html 
{ 
	/* Rule removes Page Shift by
	 * adding vertical scrollbars to every page */
	min-height: 100%; 
	margin-bottom: 1px; 
}

body
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.8; /* Unitless for proper inheritance */
	background-color: #B0A486;
	color: #846F61;
}

/* 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). */
   
html>body   { font-size: 11px; }  /* Compliant browsers */

h1,h2,h3,h4,h5,h6 { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #846F61;
	clear: both; 
 }

h1 { font-size: 1.2em; }
h2 { font-size: 1.1em; }
h3 { font-size: 1em; }
h4 { font-size: .9em; }
h5 { font-size: 1em; }
h6 { font-size: 1em; }


#wrapper
{
	width: 765px;
	margin: 0 auto;
	padding-top: 20px;
}

#top
{
	position: absolute;
	top: 0;
	left: 0;
	width:1%;
	z-index: 100;
}
#skipnav
{
	position: relative;
	text-indent: -9000em;
	overflow: hidden;
}
 

/* _navigation
------------------------------------------------------------------------------*/
#nav
{
	background-image: url(navbkgn.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #846F61;
	/*height: 22px;*/
	text-align: center;
	padding: 4px 0 2px;;
}

ul#nav li
{
	display: inline;
}

ul#nav a
{
	border-left: 1px solid white;
	padding: 0 .5em 0 .6em;
	line-height: 1;
	font-size: 1.35em;
	color: white;
	text-transform: lowercase;
}
ul#nav a:hover
{
	color: #ff6;
	text-decoration: underline;
}

ul#nav a#home
{
	border-left: none;
}

/*	colors for current navigation page
-----------------------------------------------*/
#home_page a#home
{
	cursor: default;
	color: white;
	text-decoration: none;
}
#corp_page a#corp,
#wedding_page a#wedding,
#venue_page a#venue,
#client_page a#client,
#gallery_page a#gallery,
#menus_page a#menus,
#contact_page a#contact
{
	color: #ff0;
	text-decoration: underline;
	cursor: default;
}

/* _container
------------------------------------------------------------------------------*/
#content
{
	background-image: url(containertile.gif);
	background-repeat: repeat-y;
	background-position: left top;
	padding-bottom: 12px;
}

#content:after
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

/* _branding
------------------------------------------------------------------------------*/
#branding
{
	width: 250px;
	display: inline;
	float: left;
	padding: 20px 0 0 38px;
}

#branding h1
{
	overflow: hidden;
	font-size: 1%;
	width: 232px;
	height: 184px;
	text-indent: -9999em;
	background-image: url(blueolivelogo.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

#beauty
{
	display: block;
	padding: 9px;
	border: 1px solid #9E9175;
	margin-top: 57px;
}

/* _primary content
------------------------------------------------------------------------------*/
#primary
{
	width: 285px;
	float: left;
	display: inline;
	margin-left: 28px;
	padding-top: 20px;
}

#primary p
{
	margin-bottom: 1em;
}

#primary a:link 
{ 
	text-decoration: underline; 
	color: #846F61;
}
#primary a:visited 
{ 
	text-decoration: underline; 
	color: #B0A486;
}

#primary a:hover 
{ 
	text-decoration: underline; 
	color: #4B94C9;
}


#primary strong { font-weight: bold; }

#primary ul
{
	font-style: italic;
	margin-bottom: 1em;
}

#primary ul li
{
	margin-bottom: .3em;
}

#menu_page #primary
{
	padding-top: 134px;
}

a.external
{
	padding-right: 10px;
	background-image: url(externalLink.gif);
	background-repeat: no-repeat;
	background-position: 100% 60%;
}

#clients_page #primary div ul
{
	width: 40%;
	float: left;
	margin-right: 8%;
	display: inline;
}

#primary p.goToTop
{
	text-align: right;
	font-size: .8em;
}

#menu_page #primary div.details ul
{
	font-weight: bold;
	font-style: normal;
}

#primary p.toggle
{
	/* classes toggle, toggle.over, toggle.expand
	 * are added with JavaScript */
	text-decoration: underline;
	margin-bottom: 1.5em;
	margin-top: .5 em;
	padding: 0 0 0 10px;
	line-height: 1;
	background-image: url(bullet_toggle_plus.gif);
	background-repeat: no-repeat;
	background-position: 0% 50%;
	cursor: pointer;
}

#primary p.toggle.expand 
{ 
	background-image: url(bullet_toggle_minus.gif);
}

#primary p.toggle.over
{
	color: #4B94C9;
}

#primary div.menu
{
	padding: .5em;
	margin-bottom: 1em;
	background-color: #F4FAD2;
	border-bottom: 1px dashed #846F61;
	width: 90%;
}

/* gallery */
#gallery_page #primary
{
	width: 438px;
	padding-top: 10px;
	
	min-height: 710px;
}

#pic
{
	padding-top: .5em;
}

#gallery_page #branding ul
{
	margin-top: 53px;
}

#gallery_page #branding li
{
	display: inline;
	margin: 0 4px 4px 0;
}

#gallery_page #branding a { outline: 0; }

#gallery_page #branding a img
{
	opacity: .7;
}

#gallery_page #branding a:hover img,
#gallery_page #branding a.current img
{
	opacity: 1.0;
}


#gallery_page #secondary
{
	display: none;
}

/* contact form */
#primary fieldset
{
 	margin: 1em 0;
 	padding: 1em;
 	border: 1px solid #ccc;
 	background-color: #f0f0f0;
}

#primary label
{
	display: block;
}

#primary fieldset input
{
	width: 200px;
}

#primary textarea 
{
	width: 260px;
 	height: 100px;
 	font-family: "Helvetica","Arial",sans-serif;
}


#primary label span
{
	font-size: 90%;
	font-style: italic;
	color: #666;
	margin-left: 4px;
}


#primary fieldset input.checkbox
{
	float: left;
	margin-right: .5em;
	width: auto;
	display: inline;
}

#primary fieldset label.checkbox
{
	float: none;
	display: inline;
}


/* _secondary content
------------------------------------------------------------------------------*/
#secondary
{
	width: 134px;
	float: right;
	display: inline;
	margin-right: 20px;
	padding-top: 137px;
}

#secondary li
{
	padding: 8px;
	border-top: 1px dashed #846F61;
	border-bottom: 1px dashed #846F61;
	background-color: #F4FAD2;
	margin-bottom: 1em;
}

#secondary a
{
	color: #846F61;
	text-decoration: none;
	font-style: italic;
}

#secondary a:hover
{
	color: #846F61;
	text-decoration: underline;
}

#menu_page a#menu_link:hover
{
	text-decoration: none;
	cursor: default;	
}


/* _footer
------------------------------------------------------------------------------*/
#footer
{
	background-image: url(footerbkgn.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 27px;
	clear: both;
}

#footer p
{
	text-align: center;
	color: #514135;
	font-size: .8em;
}

#footer a
{
	color: #514135;
	text-decoration: underline;
}

#footer a:hover
{
	color: #ecf6b2;
}
