/* -------- by Bramus! - http://www.bram.us/ -------- */


/* -----------(        TRICKS       )---------------- */

	/*
	 * Force Scrollbar trick for Mozilla browsers
	 * Based upon http://www.hicksdesign.co.uk/journal/forcing-scrollbars-now-even-better 
	 * (see Patrick Lauke's comment)
	 *
	 * Minor adjustment made by Bramus! so that FF now shows the scrollbar, but
	 * doesn't scroll 1pixel.
	 *
	 */

		html {
			height: 100%;
			margin-bottom: 0.1px;
		}

	/*
	 * Malarkey Image Replacement (MIR)
	 * http://www.stuffandnonsense.co.uk/archives/mir_image_replacement.html
	 *
	 * Adjusted by Bramus! cos' IE6 had troubles and SOMETIMES showed the first
	 * letter of the text to replace -- see theboxoffice_iefix.css
	 *
	 */

		.mir { letter-spacing : -1000em; }
		/*\*/html>body .mir { letter-spacing : normal; text-indent : -999em; overflow : hidden;} /* Just for Opera */
		/* BRAMUS_FYI : FX DOES PARSE THIS!!! */		
			
		/* MIR - BRAMUS! FIX FOR <a> elements so that they DO validate and ARE clickable! */			
		.mir a { display: block; width: 100%; height: 100%; text-decoration: none; }
		

		

/* -----------(  MIR IMPLEMENTATION  )---------------- */

h3#bybramus {
	width: 390px; 
	height: 24px; 
	background:url(../images/layout/bybramus.gif) no-repeat center center;
	margin: 5px auto 20px;
}

li#mnu_tbo {
	width: 111px;
	background:url(../images/layout/mnu_tbo.png) no-repeat center center;
}

li#mnu_tbo:hover {
	background:url(../images/layout/mnu_tbo_hover.png) no-repeat center center;
}

li#mnu_exa {
	width: 81px;
	background:url(../images/layout/mnu_examples.png) no-repeat center center;
}

li#mnu_exa:hover {
	background:url(../images/layout/mnu_examples_hover.png) no-repeat center center;
}

li#mnu_abo {
	width: 57px;
	background:url(../images/layout/mnu_about.png) no-repeat center center;
}

li#mnu_abo:hover {
	background:url(../images/layout/mnu_about_hover.png) no-repeat center center;
}


/* -----------(    FONTS 'N LINKZ    )---------------- */

body {
  font: normal 14px Arial;
  background: #4a4a4a url(../images/layout/background.png) repeat top left;
  text-align: center; /* Fix for IE so that the main div is centered */
}

a, a:visited {
	color: #aeb7bd;
}

a:hover, a:active {
	color: #FF6600;
}

a.nounderline {
	text-decoration: none;
}

a.boxlink {/*
	text-decoration: none;
	display: inline;
	padding: 15px 0px 15px 40px;
	border-top: 1px solid  #FF6600;
	background:url(../images/layout/boxlink.gif) no-repeat bottom left;
*/
	background:#FAFAFA url(../images/layout/boxlink.gif) no-repeat scroll 20px 50%;
	border:1px solid #FF6600;
	display:inline;
	padding:15px 20px 15px 60px;
	text-decoration:none;
}

a.boxlink:hover {
	text-decoration: underline;
	background-color: #EFEFEF;
}

p {
	line-height: 20px;
}

.center {
	text-align: center;
}

.noborder {
	border: 0px;
}

.notsowide {
	width: 400px;
}


/* -----------(    GENERAL DIVS     )---------------- */

div {
	text-align: left;
	padding: 0px;
	margin: 0px;
	color: #000;
}

div#theboxoffice_indexwrap {
	width: 900px;
	margin: 70px auto 0px;
}

div#theboxoffice_header {
	background: transparent;
}

div#theboxoffice_content {
	background: #FFF;
	padding: 20px;
	clear: both;
}

.jumpin {
	margin: 0px 0px 50px 50px;
}




/* -----------(      HEADINGS     )---------------- */

h1 {
	font: normal 36px/48px Arial;
	color: #677f90;
	margin: 0px 0px 10px 0px;
	border-bottom: 2px solid #FF6600;
	float: left;
	clear: left;
	padding: 0px 20px 0px 0px;
}

h1#dummy {
	font: normal 14px/20px Arial;
	margin: 12px 0;
	padding: 0px;
	color: #000;
	float: none;
	border: none;
}

h2 {
	font: normal 18px/24px Arial;
	color: #637D94;
	margin: 5px 0px 5px 0px;
}

h1#tbo_title {
	padding: 0px;
}

h2#tbo_version {
	font: normal 10px/10px Arial;
	color: #000;
	float: left;
	margin: 0px;
}




/* ----------(  TAME YOUR LISTS!  )---------------- */

dl {
	width: 700px;
	padding: 0px;
	margin: 0px 0px 0px 50px;
}

dt {
	width: 150px;
	font-weight: bold;
	
	padding: 0px;
	margin: 5px 0px 5px 0px;
	
	float: left;
	clear: left;
}

dd {
	width: 550px;
	
	padding: 0px;
	margin: 5px 0px 5px 0px;
	float: left;
}

ul {
	list-style: none;
	padding: 0px;
	margin: 10px 0px 10px 0px;
}

ul ul {
	margin: 0px 0px 10px 0px;
}

li {
	line-height: 20px;
	padding-left: 20px;
	background:url(../images/layout/bullet.gif) no-repeat top left;
}

li.extrapadd {
	padding-bottom: 25px;
}

div#theboxoffice_header ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	overflow: hidden; /* Strange overflox behaviour which fixes some background issues in FX - BUG FOUND BY BRAMUS! */
	height: 74px;
	background:url(../images/layout/header.png) no-repeat top left;
	padding-left: 100px;
}

div#theboxoffice_header li {
	display: block;
	height: 41px;
	
	padding: 0px;
	margin: 33px 0px 0px 0px;
	
	float: left;
}

/* ---------- ( IMAGES ) ----------- */

img {
	border: 0px;
}

img.center {
	display: block;
	margin: 0px auto 0px;
}

img#floatexample {
	margin-bottom: 20px;
}

/* ---------- (FORMS) ------------- */

form {
	width: 400px;
	margin: 0px;
	padding: 0px;
}

label {
	display: block;
	margin: 0px;
	padding: 0px;
}

input, select, texarea {
	border: 1px solid #526573;
	padding: 2px;
	margin: 10px 0px 20px 0px;
	width: 392px;
}

/* ----------- (VARIOUS) ----------- */

code {
	width: 670px;
	overflow: auto;
	white-space: nowrap;
	display: block;
	font-size: 11px;
	line-height: 14px;
	background: url(../images/layout/linenumbers-12-14.gif) 0px 12px no-repeat;
	border-left: 5px solid #637D94;
	padding: 11px 11px 13px 25px;
}

em {
	color: #9CAEBD;
	border-bottom: 1px solid #FF6500;
}


/* -------------(BOOKMARK)-----------*/

div#bookmark {
	float: right;
	width: 100px;
	height: 100px;
	text-align: left;
	border: 1px solid #4A494A;
	background: #EEE;
}

div#bookmark * {
	padding: 0;
	margin: 0;
}

div#bookmark h3 {
	font: 10px/14px Arial;
	color: #333;
	margin-bottom: 2px;
	text-align: center;
}

div#bookmark ul {
	overflow: hidden; /* strange FX behavior! */
}

div#bookmark ul li {
	font: 10px/20px Arial;
	display: block;
	margin: 0px 2px 0px 2px;
	padding-left: 25px;
	height: 20px;
	vertical-align: middle;
}

li#delicious {
	background:url(../images/bookmark/delicious.gif) no-repeat center left;
}

li#digg {
	background:url(../images/bookmark/digg.gif) no-repeat center left;
}

li#technorati {
	background:url(../images/bookmark/technorati.gif) no-repeat center left;
}

li#newsvine {
	background:url(../images/bookmark/newsvine.gif) no-repeat center left;
}