/*

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/

*/

/*---:[ #header styles ]:  ---*/

/* ROBIN - I JUST COMMENTED THIS OUT BUT YOU DON'T NEED IT ANY MORE */
/* Header - Image Banner */
/*.custom #header {border:0; padding:20px; margin:0px; height:190px; width: 1125px; background:url(images/salkids_banner.gif) center left no-repeat;}
.custom #header #logo {}
.custom #header #tagline {}*/

/* ROBIN - THIS MAKES A CLICKABLE HEADER */
.custom #header #logo a { 
	display: block; 
	height: 250px;
	width: 1125px;
	background: url('images/neon_llplogomed.jpg') left no-repeat;
	outline: none; 
}
/* ROBIN - THIS WILL ALIGN THE HEADER */
.custom #header #logo { margin: 0px 0px 0px 0px; }

/* ROBIN - THIS GETS RID OF THE TITLE AND TAGLINE */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }

/*Remove Page titles*/
.custom .headline_area h1 {text-indent: -99999em ;}
/*Adjusts the space between content and navbar*/
.custom .post_box {margin: -3em 2.3em 0 1.1em; }


/* social media icons in header */
#social_media_icons {
	width: 313px;
	height: 20px;
	position: relative;
	top: -190px;
	right: 0px;
	bottom:0px;
	left: 0px;
	float: right;
}
.custom .menu {
	width: 100%;	
	background: #000000;
	bottom:10px;
	position: relative;	
}
/*nav bar transparency code*/
.custom #page {
  position: relative;
  top: -50px;
  }


/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #EEEEEE;
	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 210px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #2361A1;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #000000;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 3px solid #ffdf00;
	/* distance between border and widget text */
	margin-bottom: 5px;
}
	
/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }


/*remove comments closed at bottom of page*/
.custom .comments_closed p {
  display: none;
}
/*--footer navigation--*/
.custom .footerstuff {text-align:center;}
.custom .footerstuff p {
font-size: 12px;
font-family: Georgia,"Times New Roman",Times,serif;
}

