/*
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/
*/

/* Remove left and right border lines */
.custom #container {border-width: 0 0;}

// Header Section - DOESNT WORK
//.custom #header_area { background:#A51306}

.custom #search input {float:right; margin-top:-2em; background: #FFFFFF}

/* Navigation menu - increase padding between menu items */
.custom .menu a { padding: 0.636em 3.818em; }

/* Nudge the menu to the right 11 pixels. Font set to bold */
.custom .menu { padding: 0 1.1em; font-weight: bold; background: #111111; }

/* Remove excess top/bottom padding. Align the header logo to the right */
.custom #header { 
	padding-top: 0; 
	background-position: right;
	border-style: hidden;}
.custom #footer { padding-bottom: 0; }


/* Change link hover behaviour */
.custom a:hover { background: #F9F9F9; }
/* Change link hover behaviour - specifically for the RSS link in the header */
.custom .rss a:hover { background: #F9F9F9; }

/* Change sidebar colour */
//.custom #sidebars { border-;left: 0; background: #F2F2F2; }

/* Change sidebar font style */
.custom .sidebar h3 {
   font-variant: normal;
   background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(white));
   background: -moz-linear-gradient(top,  #F0F0F0,  #FFFFFF);
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F0F0F0', endColorstr='#FFFFFF');
   padding-top: 8px;
   padding-bottom: 8px;
}

/* Sub menu advert */
.custom .advert {
    margin: 0 0 0 6.8em; background: #111111;
}

/* Align the text of your teasers */
.custom .teaser { text-align: justify; }


/* Align the header logo text after image is in bkgrnd */
.custom #logo a {text-indent:0;}
.custom #tagline {
	position: absolute;
	top: 1.5em;
	margin-left: 2px;
}

/* Add bkgrnd image to content - COMMENTED OUT AS ITS TOO DISTRACTING*/
/*
.custom #content {
	background-image: url(http://squidinky.com/wp-content/uploads/2011/01/si.body_.bkgrnd.200.png);
	background-position: top right;
	background-repeat: no-repeat;
}*/

/* Post Main Title - bolded due to font type */
.custom .headline_area h1 {
	font-weight: bold;
}

/* Home Page - Post Main Title - bolded due to font type */
.custom .headline_area h2 {
	font-weight: bold;
}

/* Make the teaser posts full width. */
.custom .teaser {
    width: 100%;
    margin-top: 2em;
    padding-top: 8px;
    border-top: 1px dotted #bbb;
    text-align: justify;
}


<!-- 
	Opt-in for the SIDEBAR
-->

#optin { background: #fff url(images/shadow.png) repeat-x top; border: 3px solid #efefef; padding: 20px 15px; text-align: center }
#optin input {
	border: 1px solid #ccc;
	font-size: 15px;
	margin-bottom: 10px;
	padding: 8px 10px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 2px 2px #ddd;
	-moz-box-shadow: 0 2px 2px #ddd;
	-webkit-box-shadow: 0 2px 2px #ddd
}
#optin input.email { background: #fff url(images/email.png) no-repeat 10px center; padding-left: 35px }
#optin input.name { background: #fff url(images/name.png) no-repeat 10px center; padding-left: 35px }
#optin input[type="submit"] {
	background: #960e17 url(images/red.png) repeat-x top;
	border: 1px solid #a44913;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	padding: 8px 0;
	text-shadow: -1px -1px #562806;
	width: 100%
}
#optin input[type="submit"]:hover { color: #ffdeb3 }


<!-- 
	Opt-in after CONTENT
-->
#author_box_optin p { margin: 8px 0 0 }
#author_box_optin input {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 2px 2px #ccc;
	-moz-box-shadow: 0 2px 2px #ccc;
	-webkit-box-shadow: 0 2px 2px #ccc
}
#author_box_optin input[type="text"] {
	border: 1px solid #ccc;
	font-size: 15px;
	margin-bottom: 18px;
	padding: 11px 13px;
	width: 90%
}
#author_box_optin input[type="email"] {
	border: 1px solid #ccc;
	font-size: 15px;
	margin-bottom: 18px;
	padding: 11px 13px;
	width: 90%
}

#author_box_optin input.email { background: #fff url(images/email.png) no-repeat center right }
#author_box_optin input.name { background: #fff url(images/name.png) no-repeat center right }
#author_box_optin input[type="submit"] {
	background: #960e17 url(images/red.png) repeat-x top;
	border: 1px solid #a44913;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	padding: 8px 0;
	text-shadow: -1px -1px #562806;
	width: 100%
}
#author_box_optin input[type="submit"]:hover { color: #ffdeb3 }
#author_box_optin {
//	background: #e6e6e6; 
        background: -webkit-gradient(linear, left top, left bottom, from(#E6E6E6), to(white));
        background: -moz-linear-gradient(top,  #E6E6E6,  #FFFFFF);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#FFFFFF');
	border-color: #d1d1d1; 
	float:right;
	width:40%;
	left:82%;
	overflow:hidden;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px
}
#author_box_optin h3 { font-weight: bold; margin-top: 8px }

#author_box_info {
//	background: #e6e6e6;
        background: -webkit-gradient(linear, left top, left bottom, from(#E6E6E6), to(white));
        background: -moz-linear-gradient(top,  #E6E6E6,  #FFFFFF);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#FFFFFF');
	border-color: #d1d1d1; 
	float:left;
	width:53%;
	left:82%;
	overflow:hidden;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 14px;
        margin-bottom: 16px
}
#author_box_info h3 { font-weight: bold; margin-top: 8px }