/*
Theme Name: Toolbox Child Theme
Theme URI: http://wordpress.org/extend/themes/toolbox
Author: Ethan Perriccioli
Author URI: http://ethanperriccioli.com
Description: For Outlook TV
Version: 1.3
License: GNU General Public License
License URI: license.txt
Tags: custom-menu, sticky-post, microformats, rtl-language-support, translation-ready, full-width-template, post-formats

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

*/
/* =Structure
--------------------------------------------------------------*/
body {
	background-image:url('/wp-content/themes/toolbox-child/images/cityscape_rainbow02.png');
	background-repeat:repeat-x;
	background-position:0 126px;
	background-color: #ddd;
	margin-top: 0;
}

#page {
	width: 1000px;
	display: block;
	margin: 0 auto;
	font-family: Calibri;
	background: rgba(255, 255, 255, 0.7);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
	padding: 10px;
}

#head-wrapper, #main {
	min-width: 1000px;
}

#head-wrapper {
	margin-bottom: 8px;
	overflow: auto;
}

#main {
	clear:both;
	background: rgba(255, 255, 255, 1.0) !important;
}

#primary {
	float: left;
	margin-top: 8px;
}

#secondary {
	float: left;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 10px;
}

#tertiary {
	//display: none;
	width: 1018px;
	display: block;
	margin: 0 auto;
	background-color: rgba(100,100,100,0.9);
	height: 125px;
	border: solid 1px #aaa;
	padding: 0;
}

#tertiary.widget {
	margin: 0;
	color: #fff;
}

#content {
	margin-right: 60px;
	width: 700px;
}

#main.widget-area {
	overflow: hidden;
}

#colophon {
	clear: both;
	display: block;
	width: 100%;
}

/* Increase the size of the content area for templates without sidebars */
.full-width #content,
.image-attachment #content,
.error404 #content {
	margin: 0;
}

/* Text meant only for screen readers */
.screen-reader-text,
.assistive-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
}

.alignright {
	display: inline;
	float: right;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* =Header
-------------------------------------------------------------- */
div#branding {
	background-color: #000;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-khtml-border-radius: 12px;
}

div#social-icons {
	float: right;
	width:225px;
	margin: 5px 0 0 10px;
}

div#social-icons img {
	float: left;
	width: 50px;
	height: auto;
	margin-top: 25px;
	margin-left: 15px;
}

}

h1#site-title {	
	font-size: 50pt;
	text-align: left;
	letter-spacing: .15em;
	display: inline;
}

#site-title img {
	width: 475px;
	height: auto;
	margin: 8px 0 0 0;
	padding: 0;
}

#site-title a {
	color: #fff;
	text-decoration: none;
}


a span.sideways {
	text-transform: lowercase; /* force text to lowercase */
	text-align: center;
	padding-left: 5px;
	font-style: normal;
	margin-top: .5em;
	margin-bottom: .5em;
	background-color: #FF7D31;
	color: #fff;
	text-shadow: 0px 2px 3px #555;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-khtml-border-radius: 12px;
	vertical-align:super;
	font-size:35pt;
	letter-spacing: .1em;	
}

#site-description {
	display:none;
}

/* =Menu
-------------------------------------------------------------- */
ul {
	margin:0;
	padding:0;
}

#access {
	margin: 10px 0 20px -10px;
	clear: both;
}

#menu-main-menu {
	background-color: #471476;
	display: block;
	list-style:none;
	margin-bottom:25px;
	/* Clear floats */
	float:left;
	width: 1020px;
	/* Bring the nav above everything else--uncomment if needed. */
	position:relative;
	z-index:20;
}

#menu-main-menu li{
	float:left;
	margin-left:14px;
	position:relative;
}

#menu-main-menu a {
	display:block;
	padding:5px;
	color:#fff;
	background-color: #471476;
	text-decoration:none;
}

#menu-main-menu a:hover {
	color:#fff;
	background: #8346bb;
}

/*--- DROPDOWN ---*/
#menu-main-menu ul {
	background:#471476; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}

#menu-main-menu ul li{
	margin:0;
	padding: 0;
	//padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}

#menu-main-menu ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}

#menu-main-menu li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}

#menu-main-menu li:hover { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background-color: #8346bb;
}

#menu-main-menu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}

#menu-main-menu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background-color: #8346bb;
}

/* =Content
-------------------------------------------------------------- */
.page-header {
	display: none;
}

.entry-header {
	background-color: #2F3E65; 	
}

article, .entry-header	{
	background-color: #2F3E65;	
}

article {
	margin-bottom: 12px;
	box-shadow: 5px 5px 5px #000E28;
	padding: 5px;
	border-radius: 12px 12px 0 0;
	-moz-border-radius: 12px 12px 0 0;
	-webkit-border-radius: 12px 12px 0 0;
	-khtml-border-radius: 12px 12px 0 0;
}

.entry-title {
	margin-top: 0;
	margin-bottom: 0;
	background-color: #2F3E65;
}

.entry-title a, .entry-meta a, .entry-title {
	color: #fff;
	text-decoration: none; 
}

.byline {
	display: none;
}

div.entry-meta, footer.entry-meta {
	text-align:right;
	font-size: 10pt;
	display: block; 
	color: #999;
}

.entry-meta {
	background-color: #2F3E65;
}

.entry-content, .entry-summary {
	background-color: #fff;
	padding: 2px 7px 2px 7px;
	margin-top: 3px;
	margin-bottom: 3px;
	font-size: 10.5pt;
	line-height: 12.5pt;
	font-family:Tahoma, Geneva, sans-serif;
	letter-spacing:1px;
	overflow: auto;
}

p.entry-content {
	background-color: #fff;
}

.sticky {
}

footer.entry-meta {
	clear: both;
	display: block;
}

.single-author .entry-meta .byline {
	display: none;
}

#content nav {
	display: none;
	//overflow: hidden;
}

#content nav .nav-previous {
	display:none;
	//float: left;
	//width: 50%;
}



#content nav .nav-next {
	display:none;
	//float: right;
	//text-align: right;
	//width: 50%;
}

#content #nav-above {
	display: none;
}

.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}

#nav-below {
	margin: 1em 0 0;
}

.page-link {
	clear: both;
	margin: 0 0 1em;
}

.page .edit-link {
	clear: both;
	display: block;
}

/* 404 page */
.error404 .widget {
	float: left;
	width: 33%;
}

.error404 .widget .widgettitle,
.error404 .widget ul {
	margin-right: 1em;
}

.error404 .widget_tag_cloud {
	clear: both;
	float: none;
	width: 100%;
}

/* Notices */
.post .notice,
.error404 #searchform {
	background: #eee;
	display: block;
	padding: 1em;
}

/* Image Attachments */
.image-attachment div.entry-meta {
	float: left;
}

.image-attachment nav {
	float: right;
	margin: 0 0 1em 0;
}

.image-attachment .entry-content {
	clear: both;
}

.image-attachment .entry-content .entry-attachment {
	background: #eee;
	margin: 0 0 1em;
	padding: 1em;
	text-align: center;
}

.image-attachment .entry-content .attachment {
	display: block;
	margin: 0 auto;
	text-align: center;
}

/* Aside Posts */
aside ul {
	list-style-type: none;
}

.format-aside .entry-header {
	display: none;
}

.single .format-aside .entry-header {
	display: block;
}

.format-aside .entry-content,
.format-aside .entry-summary {
	padding-top: 1em;
}

.single .format-aside .entry-content,
.single .format-aside .entry-summary {
	padding-top: 0;
}

/* Gallery Posts */
.format-gallery .gallery-thumb {
	float: left;
	margin: 0 1em 0 0;
}

/* Image Posts */
.format-image .entry-header {
	display: none;
}

.single .format-image .entry-header {
	display: block;
}

.format-image .entry-content,
.format-image .entry-summary {
	padding-top: 1em;
}

.single .format-image .entry-content,
.single .format-image .entry-summary {
	padding-top: 0;
}

/* =Images
-------------------------------------------------------------- */
a img {
	border: none;
}

p img {
	margin-bottom: 0.5em; /* a small bottom margin prevents content floating under images */
}

/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}

img.alignleft {
	margin-right: 1em;
}

img.alignright {
	margin-left: 1em;
}

.wp-caption {
	padding: .5em;
	text-align: center;
	font-size: 9pt;
	color: #666;
	margin: 10px;
	background-color: #ddd;
}

.wp-caption img {
	margin: .25em;
}

.wp-caption-text {
	margin-top: 3px;
	font-style: italic;
}

.gallery-caption {
}

.wp-smiley {
	margin: 0;
}


/* =Forms
-------------------------------------------------------------- */
#searchform label {
	display: none;
}

input[type=text],
input#s {
	margin: 0 1em 0 0;
	width: 60%;
}

textarea {
	width: 80%;
}

/* Class for labelling required form items */
.required {
	color: #cc0033;
}

/* =Comments
-------------------------------------------------------------- */
#respond form {
	padding: 5px;
	font-size: 11pt;
}

#reply-title {
	background-color: #2F3E65;
	color: #fff;
	border-radius: 12px 12px 0 0;
	-moz-border-radius: 12px 12px 0 0;
	-webkit-border-radius: 12px 12px 0 0;
	-khtml-border-radius: 12px 12px 0 0;
	margin: 0;
	padding-left: 5px;
}

#comments-title, .page-title {
	font-size: 9pt;
}

#comments ol {
	margin-left: -25px;
	width: 680px;
}

.comment-content p{
	background-color: #eee;
	margin: 0;
	padding: 7px;
}

article.comment {
	display: block;
}

#respond input[type=text] {
	display: block;
	width: 60%;
}

#respond textarea {
	display: block;
	margin: 0 0 1em;
	width: 80%;
	border: solid 1px #599bc6;
}

#respond .form-allowed-tags {
	display: none;
}

#respond .form-allowed-tags, .logged-in-as, label {
	font-size: 9pt;
}

#respond .form-allowed-tags code {
	display: block;
}


/* =Widgets
-------------------------------------------------------------- */
.widget {
	display: block;
	margin-bottom: 15px;
}

.widget-area .widget_search {
	overflow: hidden;
}

.widget-area {
	width: 220px;
}

.widget-area .widget_search input {
}

#gce_widget-3, #tag_cloud-3, #twitter-3, #respond, #text-4 {
	border: solid 1px #00B3CA;
	border-radius: 12px 12px 0 0;
	-moz-border-radius: 12px 12px 0 0;
	-webkit-border-radius: 12px 12px 0 0;
	-khtml-border-radius: 12px 12px 0 0;	
	box-shadow: 5px 5px 5px #000E28;
	background-color: #fff;
}

#text-4 {
	background-color: #00B3CA;
	color: #fff;
	text-align: center;
	font-size: 11pt;
	padding: 3px;	
}

.tagcloud {
	padding: 5px;
}

#wp-calendar {
	width: 190px;
	margin: 5px;
	font-size: 11pt;
}

#search-3 {
	margin-left: 5px;
}

#searchform input#s {
	width: 115px;
}

#searchsubmit {
	background-color: #00B3CA;
	color: #fff;
	font-size: 10pt;
}

<!--[if IE 8]>
#twitter-3 ul {
	margin: 0;
	padding: 0;
}

#twitter-3 ul li {
	margin-left: 10px;
}
<![endif]-->


#twitter-3 ul {
	margin-left: 10px;
	margin-top: 0;
	padding-right: 10px;
	font-size: 11pt;
	padding-top: 0;
}

#twitter-3 li {
	border-bottom: dashed 1px #bbb;
	padding-top: 5px;
	padding-bottom: 5px;
}

.rssSummary {
	display:none;
}

.time-meta { 
	display: block;
}

#twitter-3 li a, .twitter-avatar a {
	color: #599bc6;
	text-decoration: none; 
}

.follow-button iframe {
	margin: 7px;
}

.widget-title {
	background-color: #00B3CA;
	color: #fff;
	border-radius: 12px 12px 0 0;
	-moz-border-radius: 12px 12px 0 0;
	-webkit-border-radius: 12px 12px 0 0;
	-khtml-border-radius: 12px 12px 0 0;
	margin: 0;
	padding-left: 5px;	
}

.widget-title a {
	color: #fff;
	text-decoration: none;
}

/* =Sub-Footer
-------------------------------------------------------------- */
#sub-footer {
	clear:both;
	background-color: #fff;	
	padding: 10px;
}

#sub-footer .textwidget {
	vertical-align: top;	
}

div.sponsor-logo {
	display: inline;	
}

.sponsor-logo img {
	width: 200px;
	height: auto;
	margin-right: 8px;
}


/* =Footer
-------------------------------------------------------------- */
#colophon {
	padding: 1em 0 0;
}

footer {
	font-size: 8pt;
}



/* =Links
-------------------------------------------------------------- */
#nav-above a, .entry-meta a, #nav-below a, .commentlist a, .edit-link a {
	font-size: 12pt;
}


.edit-link a{
	color: #599bc6;
	text-decoration: none;
}

.edit-link a:hover {
	color: #599bc6;
	text-decoration: underline;
}

footer a, .tagcloud a, #nav-above a, #nav-below a, #respond form a {
	color: #00558C;
	text-decoration: none;
}

footer a:hover, .tagcloud a:hover, #nav-above a:hover, #nav-below a:hover, #respond form a:hover {
	color: #00558C;
	text-decoration: underline;
}

.commentlist a {
	color: #fff; 
}


/* =Extras
-------------------------------------------------------------- */
iframe {
	margin-left: 25px;
}