/*
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/
*/

/* Here I'm editing standard HTML tags -Graham */

body.custom {
    background: url("http://ultralightstartups.com/images/nyu_audience-v4.jpg") no-repeat scroll 50% 0 #e4f0fe;
}

.custom a:hover {
	background: #8AA8E6;
}

.custom .sidebar h3 {
	text-align: left;
	line-height: 1.2em;
	color: #000;
	padding: 8px;
	background: #ccc;
	letter-spacing: .5px;
	font-variant: normal;
	font-weight: bold;
	font-size: 1.5em;
}

.custom .sidebar ul.sidebar_list {
	padding-left: 0;
	padding-right: 0;
}


.custom .format_text img.frame, .format_text .wp-caption {
	padding: 0.4em;
}


.custom .sidebar ul.sidebar_list {
	padding-left: 0;
	padding-right: 0;
}


.custom #container {
	background: none;
	border-style: none;
}

.custom #feature_box {
	border-style: none;
}

.custom #content_box {
	background: none;
}

.custom #logo {
	color: #003399;
	text-align: center;
}

.custom #tagline {
	text-align: center;
	background: none;
}

.custom #header {
	border-style: none;
	font-family: futura;
}

.custom #header a:hover {
	background: none;
}

.custom .menu ul {
	width: 25em;
}

.custom .menu ul li {
	width: 25em;
}

.custom .menu ul a {
	width: 25em;
}

/* This is for category navigation */

.custom #archive_intro {
  font-size: 1.4em;
}

.custom #archive_intro img {
  font-size: 1.4em;
	max-width: 200px;
	max-height: 100px;
	float: right;
	margin-top: -70px;
}

/* Here I'm editing other plugin HTML tags -Graham */

.custom #dsq-content {
	margin:0 2.2em;
}

.custom #column_wrap {
	background: 0;
}

.custom .headline_area {
	margin-bottom: 1.5em;
}

/* Featured post formatting - from Thesis -Graham. */

.custom #feature_box {  padding:0em; }

.custom #my-feature-box1 { width:90%; padding-left:1em; }
.custom #my-feature-box { padding-top:2em; }
.custom #my-feature-box,#my-feature-box1  {float:left;  }
.custom #my-feature-box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #my-feature-box h2 a,#my-feature-box a  { text-decoration: none; }
.custom #my-feature-box h2 a:hover { color: #003399; }
.custom #my-feature-box p {color:#000000;  font-size: 1.5em; line-height:1.5em; text-align: justify; margin-bottom: 2em; }
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; }
.custom .feature_teaser_link { color: #FF3300; font-size: 1.5em; }

/* For Eventbrite "Add to Calendar" lnks -Graham. */
.custom .eventbrite_calendar {
	clear: left;
	padding: 5px;
	color: #FF3300;
}


/* My own CSS Div's */

.custom .shareButton {
	float: left;
	width: 120px;
	padding: 5px 0;
}

.custom .shareButtonBox {
	clear: left;
	height: 40px;
}

.custom .bio {
	background: #dddddd;
	clear: left;
	margin-bottom: 1em;
	padding: 7px;
}

.custom .largeBulletList {
	margin-bottom: 0.3em;
	font-size: 130%;
}

.custom .paddedTable {
	padding: 15px;
}

.custom #floatButtonOne {
position:fixed;
right:20px;
top:200px;
}

.custom #qaFloatButton {
position: relative;
top: 200px;
left: 20px;
/* margin-left: -566px; */
}

.custom .sectionHeader {
background-color:#cccccc;
padding:8px;
margin-bottom:10px;
font-size:160%;
font-weight:bold;
text-align:left;
}

img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto
}

/* Without this, Thesis puts a big margin at the bottom of all centered images, for some reason */
.format_text img.aligncenter {
margin: auto;
}
