/*
File:			custom.css
Description:	Custom styles for Thesis for PRETTY IN PINK STUDIO

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/
*/

.custom a:link {
	text-decoration: none;
  cursor:pointer;
  padding: 1px 4px 2px 1px;  
	}
.custom a:visited {
	text-decoration: none;
 	padding: 1px 4px 2px 1px;

	}
.custom a:hover {
	color: black;
	text-decoration: none;
	background-color: #fddef0;
	border-style: none none none none;
	border-color: #cccc00;
	}

.custom a[rel~="attachment"] img:hover, .gallery a img:hover, .wp-caption:hover {
  background-color: #fddef0;
  border-color: none;
}

.custom #header { background: url('/img/prettyinpink-top-banner-white.png') no-repeat; height: 140px; width: 950px; }

.custom #header #logo { 
  text-indent: 20px;
  padding-top: 10px;
}

.custom #header #tagline { 
  text-indent: 23px;
}

/* dont't display blog title and tagline */
.custom #header #logo, .custom #header #tagline { display: none; } 


/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; } 

body.custom { background-color: #f4f4f4; }
	
	.custom #container { border-color: #f5f5f5; border-width: 0.4em; border-style: solid; margin-top: 0em; margin-bottom: 2em; padding: 0.1em; background: #d5d5d5;
		box-shadow:0px 0px 20px #f4c8ec;
		-moz-box-shadow:0px 0px 20px #f4c8ec;
		-webkit-box-shadow:0px 0px 20px #f4c8ec;
		border-radius: 5px;
	  -moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		}

		.custom #page { background: #fff; }
		#image_box, #video_box, #custom_box { padding: 1.1em; }
		

tr { background-color: #fff; }
  .initial { background-color: #fff; color:#000000 }
  .normal { background-color: #fff }
  .highlight { background-color: #fddef0 }
