/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

/*H E A D E R
------------------------------------------------------*/

#header {
	height: 60px;
	position: relative;
	margin: 5px 0 0;
	padding: 0 0 0 1.1em;
	background:#fff;
	border:none;
}

#header h1 {
	position:absolute;
	margin: 0;
	font-size: 2px;
	height: 8px;
	z-index: 100;
	right: 20px;
	top:0;
}



#header h1 a {
	display: block;
	width: 261px;
	height: 60px;
	text-indent: -700em;
	text-decoration: none;
	background: url(/images/SHPlogo.png) no-repeat 0px top;
}


#header #site {
	position:absolute;
	margin: 0;
	font-size: 2px;
	height: 8px;
	z-index: 100;
	right: 10px;
	top:0;
}

#header #site a {
	display: block;
	width: 261px;
	height: 60px;
	text-indent: -700em;
	text-decoration: none;
	background: url(/images/SHPlogo.png) no-repeat 0px bottom;
}


#banner {
	padding: .5em 0 .5em 1.1em;
	clear:both;
}

#banner img {
	padding: 0 0 0 3px;
}



/*N A V
------------------------------------------------------*/
ul#nav {
	margin: 0;
	padding: 0;
}
#nav {
	width: 499px;
	height: 30px;
	position:relative;
	top:35px;
	z-index:100;
	background: transparent url(/images/nav.png) no-repeat 0px 0px;
}

#nav_portfolio, #nav_info, #nav_access, #nav_blog, #nav_contact {
	text-indent: -9999px;
	text-decoration: none;
	outline: none;
}

#nav_portfolio ul *, #nav_info ul *, #nav_access ul *, #nav_blog ul *, #nav_contact ul * {
	text-indent: 0;
}

#nav_portfolio{
	width: 78px;
}
#nav_info {
	width: 62px;
}
#nav_access {
	width: 77px;
}
#nav_blog {
	width: 68px;
}
#nav_contact {
	width: 88px;
}
#nav_portfolio a.top:hover {
	background: transparent url("/images/nav.png") no-repeat 0px -30px;
}
#nav_info a.top:hover {
	background: transparent url("/images/nav.png") no-repeat -78px -30px;
}
#nav_access a:hover {
	background: transparent url("/images/nav.png") no-repeat -140px -30px;
}
#nav_blog a:hover {
	background: transparent url("/images/nav.png") no-repeat -217px -30px;
}
#nav_contact a:hover {
	background: transparent url("/images/nav.png") no-repeat -285px -30px;
}
body.portfolio #nav_portfolio a.top {
	background: transparent url("/images/nav.png") no-repeat 0px -30px;
}
body.info #nav_info a.top {
	background: transparent url("/images/nav.png") no-repeat -78px -30px;
}
body.access #nav_access a.top {
	background: transparent url("/images/nav.png") no-repeat -140px -30px;
}
#nav_blog a.top {
	background: transparent url("/images/nav.png") no-repeat -217px -30px;
}
body.contact #nav_contact a.top {
	background: transparent url("/images/nav.png") no-repeat -285px -30px;
}

/*** SuperFish Menu ***/

/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			12em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			12em; /* match ul width */
	top:			0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			12em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
}
.sf-menu a {
	padding: 		.75em 1em;
	text-decoration:none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#7597CE;
	font-weight:normal;
	font-size:1.3em;
}
.sf-menu li {
	background:none;
}
.sf-menu li li {
	background:		#fff;
}
.sf-menu li li li {
	background:		#fff;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	background:	none;
	outline:		0;
	color:#61382A;
}

.sf-menu ul li:hover, .sf-menu ul li.sfHover,
.sf-menu ul a:focus, .sf-menu ul a:hover, .sf-menu ul a:active {
	background:	#fff;
	outline:		0;
}



/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('/images/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}


#page {
padding: 0 2.2em 2.2em;
}

.post_box {
	padding: 2.2em 0 0 0 ;
}

.menu {
	border:none;
}

.teaser {
	width:100%;
}

.wp-caption {
background-color:#fff;
border:none;
font-style:italic;
text-align:center;
}

.format_text .wp-caption {
padding:0;
}

#search {
	font-size:1.1em;
}

.prev_next {
	margin: 0 10px 0 0;
}

#footer {
	margin: 10px 0 0 0;
}