/*HOW TO CUSTOMIZE PLATFORM

Edit this style sheet to create your own custom theme based on the Base Platform theme. 

Rules placed in this stylesheet will override the default styles of the Base Platform theme and will not be changed or over written when you update the 
Platform framework. Additionally, since this stylesheet is purely for editing purposes you can easily undo or erase some of the CSS to return your site back to the look and feel of the Base theme. 

In the Base theme the footer is black – the CSS looks like this:

		#footer {
			clear:both;
			font-size:1em;
			overflow:hidden;
			text-align: left;
			background: #000;
			color: #999;
			position: relative;
		}
		
To change the background color to white, all you have to do is declare a new rule for the color like so:

		#footer { background: #FFF; }

A great tool for modifying themes and inspecting CSS elements is the FireBug extension for FireFox. You can also use the developer tools provided by Chrome (right-click and "inspect element") or Internet Explorer if you're feeling dangerous.

LEARN CSS - We recommend using Lynda.com video tutorials to learn using CSS. 
			Also, for a comprehensive list of CSS rules and usage try consulting W3 schools http://www.w3schools.com/css/default.asp

ON UPDATING - 	Base shouldn't be replaced in your install with every release. It defeats the purpose of using a child theme.
				Use updates to this Platform Child Theme, as a reference to help you improve your own customizations.
*/


/*CUSTOM CSS STARTS HERE*/ 


/*CSS corresponding to the hook used in functions.php; adds a stumbleupon icon to branding section;*/

.icons .flickr {background: url('../platformbase/images/sprite-socialicons.png') no-repeat -132px 0;}
.icons .flickr:hover {background: url('../platformbase/images/sprite-socialicons.png') no-repeat -132px -22px;}

.icons .byemail {background: url('../platformbase/images/sprite-socialicons.png') no-repeat -220px 0;}
.icons .byemail:hover {background: url('../platformbase/images/sprite-socialicons.png') no-repeat -220px -22px;}

.icons .googleplus {background: url('../platformbase/images/sprite-socialicons.png') no-repeat -242px 0;}
.icons .googleplus:hover {background: url('../platformbase/images/sprite-socialicons.png') no-repeat -242px -22px;}

/*Pullquote Section*/
#pullquote.copy{
	background: #f7f7f7 url(images/pullquote.png) no-repeat 15px 15px;
	padding: 10px 20px 10px 45px;
	margin-bottom: 1.5em;
	}

#pullquote .thepullquote{font-size: 1.5em;margin-bottom: 5px;line-height: 1.3em;}
#pullquote .thecitation{color: #AAA; font-style: italic;padding-left: 15px;}

/*Removes Left Padding from Logo Area
#branding .content-pad{padding-left:0px !important;}
#branding .mainlogo-img{display:block;margin:0 auto;}*/

/*Tinkering with banner padding*/
#banners .content-pad{padding-top:0px; padding-bottom:0px;}

/*Changes h1 style on individual posts and pages*/
/*Borrowed the following h1 style from the h2 style from the post-title styles in the theme.css, so that post titles would look the same throughout */

h1.entry-title, h1.pagetitle{font-size: 2.0em; line-height: 1em; letter-spacing: -.02em;}

/*Changes the Color on the "leave a comment" text*/
/*.post-comments a:link {;}*/

/*Removes the word "on" from the post meta bar*/		
.metabar .sword{display:none;}

/*Table Styling for the rates page*/
.rates-table { border-collapse: collapse; width:500px;}
.rates-table th, .rates-table td { padding: 0.5em; background-color:#f7f7f7; border:1px; border-color:#DDDDDD; width:500px;}

/*Styling for Buy Now Buttons*/

.button{
border:1px solid #25729a; -webkit-border-radius: 29px; -moz-border-radius: 29px;border-radius: 29px;font-family:arial, helvetica, sans-serif; font-size: 11px; padding: 4px 8px 4px 8px; text-shadow: -1px -1px 0 rgba(0,0,0,0.3);font-weight:bold; text-align: center; color: #FFFFFF; background-color: #3093c7;
 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3093c7), color-stop(100%, #1c5a85));
 background-image: -webkit-linear-gradient(top, #3093c7, #1c5a85);
 background-image: -moz-linear-gradient(top, #3093c7, #1c5a85);
 background-image: -ms-linear-gradient(top, #3093c7, #1c5a85);
 background-image: -o-linear-gradient(top, #3093c7, #1c5a85);
 background-image: linear-gradient(top, #3093c7, #1c5a85);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#3093c7, endColorstr=#1c5a85);
}

.button:hover{
 border:1px solid #1c5675; background-color: #26759e; color:#ffffff; text-decoration:none !important;
 background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#26759e), color-stop(100%, #133d5b));
 background-image: -webkit-linear-gradient(top, #26759e, #133d5b);
 background-image: -moz-linear-gradient(top, #26759e, #133d5b);
 background-image: -ms-linear-gradient(top, #26759e, #133d5b);
 background-image: -o-linear-gradient(top, #26759e, #133d5b);
 background-image: linear-gradient(top, #26759e, #133d5b);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#26759e, endColorstr=#133d5b);
}
/*Styling for NEW text*/
.new {color:#ff0000; font-size:10px;}

/*Styling for no white space on the metal band generator images*/
.nowhitespace {line-height:0em;}

/*stying fix to remove padding on the sides of sidebars - which stops the cut off issue*/
.scolumn-pad {
padding: 2em 0em;
}