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

.custom { background:url('http://www.thetievideo.com/images/TheTieVideo_BG1.gif'); }
.custom #page { border:solid 1px black; position:relative; margin:10px 0; }
.custom #header { background:url('http://www.thetievideo.com/images/headerTile.png') repeat-x top left; height:140px; padding:0; border:none;} 
.custom #logo a { background:url('http://www.thetievideo.com/images/headerLeft.png') no-repeat top left; height:140px; width:600px; display:block; text-indent:-9999px;  }
.custom #tagline { background:url('http://www.thetievideo.com/images/headerRight.png') no-repeat top right; position:absolute; top:0; right:0; width:99px; height:140px; text-indent:-9999px; }

.custom .menu { display:none; }
.custom #content_box { border:none; background:none; }
.custom #content { width:460px; padding:0 10px; }
.custom #content li { margin:10px 0; }
.custom .twoBox { height:1%; overflow:hidden; margin:10px 0; padding:0 0 20px 0; position:relative; }
.custom .twoBox em { float:left; margin:0 50px 0 0px; }
.custom .twoBox p { float:right; margin-right:43px; }
.custom .twoBox ol li { margin:10px 0; }
.custom .twoBox span { position:absolute; bottom:5px; left:0; }
.custom .comments_closed { display:none; }

.custom #content .twoOrder p { margin:10px 0;}
.custom #content .twoOrder { list-style:none; margin:10px 0; padding-left:15px; overflow:hidden; height:1%; text-align:center; }
.custom #content .twoOrder li { float:left; margin:0 10px;width:45%; }

.custom #content .twoOrder input { border:none; background:none; }
.custom.wait #content .twoOrder input { width:122px; margin-right:-10px;}
.custom.order #content .twoOrder input { width:86px; height:21px; }

.custom #content .twoVideo { list-style:none; margin:10px auto; overflow:hidden; width:340px; }
.custom #content .twoVideo li { float:left; margin:0 10px; background:#E4E4E4; padding:10px; text-align:center; width:130px;}

.custom #sidebars a { text-decoration:none; }
*:first-child+html .custom #sidebars p { margin:5px 0; } .custom #sidebars p { margin:10px 0; }
.custom #footer { border:none; }
.custom #footer a { border:none; color:#282173; }
.custom #footer a:hover { text-decoration:underline; }
.custom #footer .copyRight a { color:#888; }

.custom.order2 #content h1 { text-align:center; }
.custom .yellowBox { padding:20px; background:#FFFFCC; }
.custom .yellowBox h2 { margin-top:0; }
.custom .yellowBox p { margin:10px 0 0; }
.custom .red { color:#EA0000; }
.custom .redBorder { border:solid 1px #EA0000; }
.custom #content hr { margin:20px 0; }
.custom #content div+.first-child { margin:-20px 0 0 0; }