/*
##-------------------------------------------------------------------
##
## FILE: localhost.css for use on Common/MAKE localhosts
## CREATED: 03/07/08 by Ben Childs, Common Agency Ltd.
##
## NOTES:
##
##-------------------------------------------------------------------
*/

/*
 SOME RULES FOR CONSISTENCY. NOT TO LIVE HERE FOREVER BUT JUST FOR NOW...
 
 1. Order CSS properties consistently for easier co-working. I think of it
 as structure followed by styling [often separated completely]. As a rule,
 you can't style something until you've built it! Therefore, working from the 'outside'
 of an element inwrads it should be something like...
 display, float, clear,  etc
 positioning, z-index, etc
 height, width, etc
 margin, border, padding [in that order - working out to in]
 border styling, rounded corners, etc [in css 3]
 background
 fonts
 text-alignment, text-decoration, etc.
 anything else
 
 2. Consistent code styling/layout. Agree preferred closing bracket position - indented or not?
 
 3. Stick to lowercase for properties where possible.
 
 4. Always use shorthand unless there is a good reason not to. Check out http://www.dustindiaz.com/css-shorthand/ if in doubt.
 
 5. Where suitable, indent/next related styles e.g. h3 span.bullet would be nested just after h3.
 
*/

/*-------------------------------------------------------------------
## CLIENT SPECIFIC NOTES

Black: #000000
Brown Background: #1f1205
Brown Mid: #663200
Blue Lilac: #a7b2f2
Green: #689a39
Jade: #4d818c
Beige Light: #f2efbd
Beige Dark: #d9c359
Salmon: #f2594b
Preferred web font:

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## HTML ELEMENTS START HERE */

body {
	margin: 0 0 20px 0;
	padding: 0 8px 12px 8px; /* Side-margins help with alignment at 800 x 600 */
	background-color: #1f1205;
	font: normal normal normal 62.5% "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
	line-height: 0.7em;
}

hr {
	display:block;
	clear:both;
	visibility:hidden;
	height: 0;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

dl {
	margin: 0px 22px;
}

dl dd {
	margin: 0 0 0 0;
}

dl dt {
	font-size: 1.3em;
	font-weight: bold;
}

h1 {
	display: block;
	float: left;
	width: 100%;
	margin: 5px 0;
	font: normal normal normal 1.0em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	text-indent: 10px;
	letter-spacing: 0.25em;
}

h2 {
	display: block;
	width: 100%;
	margin: 0 0 10px 0;
	font: normal normal normal 1.0em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

h3 {
	display: block;
	width: 100%;
	margin: 0 0 3px 0;
	padding: 5px 0 5px 5px;
	font: normal normal normal 1.0em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

h4 {
	display: block;
	margin: 0;
	padding: 5px 0 5px 5px;
	font: normal normal normal 1.0em/1.0em "Lucida Sans Unicode", "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

a {
	text-decoration: underline;
	color: #333333;
}

a:hover {
	color: #000000;
}

img {
	border: none 0px;
}

p {
	margin: 0 0 1em 0;
	font-size: 1.2em;
}

pre {
	font-size: 1.1em;
}

table,td,th {
	border: none 0;
}

td {
	text-align: left;
	vertical-align: top;
}

th {
	text-align: left;
	vertical-align: middle;
}

ul {
	display: block;
	margin: 0 12px 12px 6px;
	padding: 0;
}

	ul.linkList {
		padding: 0 0 0 0;
		}

		ul.linkList li {
			margin: 0 0 4px 0;
			list-style: none;
			}
			
			ul.linkList li a {
				padding: 3px;
				background: #333333;
				color: #ffffff;
				font: normal normal bold 0.8em/1.0em Verdana;
				text-decoration: none;
				text-transform: uppercase;
				}
			
			ul.linkList li a:hover {
				background: #ff0000;
				}

li {
	list-style:square inside;
	font: normal normal normal 1.2em/1.4em "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## MAIN LAYOUT BLOCKS START HERE

REMEMBER... the crux of this layout is a columns based format, centrally aligned, which is optimised
for 1024 x 768 but degrades gracefully to support 800 x 600 as long as no more than 12-columns are
used. The ideal is 12-col + stacked 3-cols, where the 3-cols should contain supplementary content
or advertising that will wrap beneath the 12-col block on smaller screens.

*/

/* header */
.blockHeader {
	display: block;
	position: relative;
	width: 960px;
	height: 2.2em;
	margin: 0 auto;
	background-color: #000000;
}

/* header for player nav */
.blockHeaderPlayers {
	display: block;
	position: relative;
	width: 960px;
	margin: 5px auto 0 auto;
}

/* central wrapper */
.blockContent {
	display: block;
	position: relative;
	width: 960px;
	margin: 5px auto;
	background-color: #1f1205;
	text-align: left;
}

/* main map block*/
.blockMap {
	display: block;
	position: relative;
	width: 960px;
	height: 681px;
	background: #1f1205 url('/x/img/static/bg_map_960x681.jpg') no-repeat top left;
	text-align: left;
}

/* main block for pages that look like they have map background but not interactive*/
.blockFakeMap {
	display: block;
	position: relative;
	width: 960px;
	padding: 120px 0 0 0;
	background: #1f1205 url('/x/img/static/bg_map_960x681.jpg') no-repeat top left;
	text-align: left;
}

/* footer */
.blockFooter {
	display: block;
	position: relative;
	width: 960px;
	height: 2.2em;
	margin: 0 auto;
	border-bottom: 10px solid #1f1205;
	background-color: #000000;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## NAVIGATION STYLES START HERE */

#topNavPlayers {
	display: block;
	height: 2.2em;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

#topNavPlayers, #topNavPlayers li {
	list-style-type: none;
}

#topNavPlayers li {
	float: left;
	width: 155px;
	margin: 0 2px 0 3px;
	background-color: #663200;
	font-size: 1.2em;
}

	#topNavPlayers li.title {
		width: 82px;
		margin: 0 0 0 0;
		padding: 2px 4px 3px 4px;
		background-color: #000000;
		color: #ffffff;
	}

	#topNavPlayers li a {
		display: block;
		padding: 4px 4px 4px 4px;
		text-decoration: none;
		color: #ffffff;
		text-align: center;
	}

	#topNavPlayers li a:link, #topNavPlayers li a:visited {
		text-decoration: none;
	}

	#topNavPlayers li a:hover {
		background-color: #d9c359;
		text-decoration: none;
		color: #663200;
	}

	#topNavPlayers li a:active {
		text-decoration: none;
	}
	#topNavPlayers li.topnavon {
		background-color: #689a39;
		color: #ffffff;
		font-weight: bold;
	}
p.getStarted {
	display: block;
	margin: 5px 0 5px 0;
	border: 1px solid #ffffff;
	padding: 4px 4px 4px 4px;
	background-color: #689a39;
	font-size: 1.4em;
	color: #ffffff;
	text-align: center;
}

	p.getStarted a:link, p.getStarted a:visited, p.getStarted a:active {
		color: #ffffff;
		font-weight: bold;
	}
	
	p.getStarted a:hover {
		color: #000000;
	}

p.goWrong {
	display: block;
	margin: 5px 0 5px 0;
	border: 1px solid #ffffff;
	padding: 4px 4px 4px 4px;
	background-color: red;
	font-size: 1.4em;
	color: #ffffff;
	text-align: center;
}

#topNavLeft, #topNavRight, #footerNavLeft, #footerNavRight {
	display: block;
	position: relative;
	float: left;
	margin: 0 0 0 0;
	padding: 4px 0 4px 0;
	font-size: 0.9em;
}

	#topNavRight, #footerNavRight {
		float: right;
	}

#topNavLeft, #topNavLeft li, #topNavRight, #topNavRight li, #footerNavLeft, #footerNavLeft li, #footerNavRight, #footerNavRight li {
	list-style-type: none;
}

	#topNavLeft li, #topNavRight li, #footerNavLeft li, #footerNavRight li {
		display: inline;
		float: left;
		border-right: 1px solid #999999;
		padding: 0 10px 0 10px;
		color: #d9c359;
	}
	
		#topNavLeft li.last, #topNavRight li.last, #footerNavLeft li.last, #footerNavRight li.last {
			border-right: none;
		}
	
		#topNavLeft li a, #topNavRight li a, #footerNavLeft li a, #footerNavRight li a {
			display: block;
			text-decoration: underline;
			color: #ffffff;
		}

		#topNavLeft li a:link, #topNavLeft li a:visited, #topNavRight li a:link, #topNavRight li a:visited, #footerNavLeft li a:link, #footerNavLeft li a:visited, #footerNavRight li a:link, #footerNavRight li a:visited {
			text-decoration: underline;
		}

		#topNavLeft li a:hover, #topNavRight li a:hover, #footerNavLeft li a:hover, #footerNavRight li a:hover {
			text-decoration: underline;
			color: #689a39;
		}

		#topNavLeft li a:active, #topNavRight li a:active, #footerNavLeft li a:active, #footerNavRight li a:active {
			text-decoration: underline;
		}

.closeButton {
	display: block;
	position: relative;
	float: right;
	top: -14px;
	right: 22px;
	z-index: 2000;
	width: 149px;
	height: 35px;
}

#player_select_box {
	display: block;
	float:left;
	width:307px;
	height:22px;
	margin:0 2px 0 3px;
	font-size:1.2em;
	background-color:#663200;
	color:#ffffff;
	overflow:hidden;
}
#player_select_box p {
	display: block;
	float:left;
	color:#ffffff;
	padding:2px 4px;
}
#player_select_box form {
	display: block;
	float:left;
	color:#ffffff;
	padding:0;
}
#player_select_box select {
	background-color:#663200;
	color:#ffffff;
	border:none; margin:none; padding:2px 0 0 0;

}
#player_submit {
	background-color:#d9c359;
	color:#663200;
}
/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## STYLES FOR MAIN OVERLAY BLOCK [PLAYER/PLACE PAGE] START HERE */
		
/* main overlay block */
.blockOverlay {
	display: block;
	position: relative;
	z-index: 50;
	min-height: 550px;
	width: 878px;
	margin: 0 auto 10px auto;
	border: 1px solid #000000;
	padding: 0 0 20px 0;
	background: #f2efbd url('/x/img/static/bg_overlay_300x300.jpg') repeat top right;
}

	.blockOverlay:after { /* Float clearing technique to avoid extra HTML markup */
			display: block;
			height: 0;
			clear: both;
			content: "";
	}

.overlayLeftCol {
	display: block;
	position: relative;
	float: left;
	width: 300px;
	margin: 20px 0 0 20px;
}

	.overlayLeftCol h2 {
		display: block;
		float: left;
		width: 288px;
		margin: 0;
		padding: 6px 6px 6px 6px;
		background-color: #689a39;
		font-size: 1.3em;
		color: #ffffff;
	}
	
	.overlayLeftCol p {
			margin: 0;
			padding: 6px 6px 6px 6px;
			background-color: #dbce9c;
			font-size: 1.6em;
			color: #000000;
		}
	
	.overlayLeftCol dl {
		display: block;
		float: left;
		width: 288px;
		margin: 0 0 20px 0;
		padding: 10px 6px 10px 6px;
		background-color: #dbce9c;
	}
	
		.overlayLeftCol dl dt {
			color: #663200;
		}
		
		.overlayLeftCol dl dd {
			margin: 0 0 8px 0;
			font-size: 1.6em;
			color: #000000;
		}

.overlayRightCol {
	display: block;
	position: relative;
	float: left;
	width: 510px;
	margin: 20px 0 0 20px;
}

		.noLeftCol {
			margin: 0 0 0 340px;
		}

	.overlayRightCol h2 {
		display: block;
		float: left;
		margin: 0 0 10px 0;
		padding: 6px 0 6px 0;
		font-size: 2.4em;
		color: #000000;
	}
	
	.overlayRightCol h3 {
		display: block;
		float: left;
		margin: 10px 0 5px 0;
		padding: 4px 0 4px 0;
		font-size: 2.0em;
		color: #000000;
	}
	
	.overlayRightCol p {
		display: block;
		float: left;
		margin: 0 0 4px 0;
		padding: 0 0 0 0;
		font-size: 1.4em;
		color: #000000;
	}

	.overlayRightCol ul, .overlayRightCol ol {
		display: block;
		float: left;
		margin: 0 0 4px 0;
		padding: 0 0 0 0;
		color: #000000;
		width:510px;
	}

	.overlayRightCol li {
		list-style: decimal inside;
		font-size: 1.6em;
		color: #000000;
	}

	.overlayRightCol ul.infoList li {
		margin: 0 0 3px 0;
		list-style: square inside;
		font-size: 1.3em;
	}
	
	.overlayRightCol label {
		display: block;
		float: left;
		width: 90%;
		margin: 5px 0 2px 0;
		padding: 0 0 0 0;
		font-size: 1.2em;
		color: #663200;
	}
	
	.overlayRightCol input.textEntry {
		display: block;
		float: left;
		margin: 0 0 10px 0;
		padding: 2px 2px 2px 2px;
		font-size: 1.8em;
		color: #333333;
	}

	.overlayRightCol img {
		display: block;
		float: left;
		margin: 0 0 10px 0;
	}

	.overlayRightCol dl {
		display: block;
		float: left;
		margin: 0 0 20px 0;
		padding: 10px 6px 10px 6px;
	}
	
		.overlayRightCol dl dt {
			font-size: 1.8em;
			font-weight: bold;
			color: #000000;
		}
		
		.overlayRightCol dl dd {
			margin: 0 0 30px 0;
			font-size: 1.8em;
			color: #000000;
		}
			
			.overlayRightCol dl dd span {
				display: block;
				float: left;
				width: 100%;
				padding: 10px 0 0 0;
			}
	
	.overlayRightCol ul.eyekeeyaRanking {
		display: block;
		float: left;
		margin: 104px 0 0 0;
		padding: 0 0 0 0;
	}
	
		.overlayRightCol ul.eyekeeyaRanking li {
			display: block;
			height: 44px;
			margin: 0 0 16px 0;
			padding: 0 0 0 88px;
			list-style: none;
			background: transparent url('/x/img/static/bg_rankBullet_70x42.gif') 0px 0px no-repeat;
		}

.overlayFullCol {
	display: block;
	position: relative;
	float: left;
	width: 810px;
	margin: 20px 20px 0 20px;
}

	.overlayFullCol h2 {
		display: block;
		float: left;
		margin: 0 0 10px 0;
		padding: 6px 0 6px 0;
		font-size: 2.4em;
		color: #000000;
	}

	.overlayFullCol p {
		display: block;
		float: left;
		margin: 0 0 4px 0;
		padding: 0 0 0 0;
		font-size: 1.4em;
		color: #000000;
	}
	
	.overlayFullCol ul.eyekeeyaRanking {
		display: block;
		float: left;
		width: 700px;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
		background: transparent url('/x/img/static/shelf-0-bg.gif') 0px 0px no-repeat;
		color: #000000;
	}
	
		.overlayFullCol ul.eyekeeyaRanking li {
			display: block;
			float: left;
			height: 65px;
			margin: 0;
			border: 0;
			padding: 0 0 0 390px;
			list-style: none;
			background: transparent url('/x/img/static/shelf-1.gif') left bottom no-repeat;
			font-size: 1.6em;
			text-indent: none;
			color: #000000;
		}
			.overlayFullCol ul.eyekeeyaRanking li.v1 {
				background: transparent url('/x/img/static/shelf-1.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.v2 {
				background: transparent url('/x/img/static/shelf-2.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.v3 {
				background: transparent url('/x/img/static/shelf-3.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.v4 {
				background: transparent url('/x/img/static/shelf-4.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.v5 {
				background: transparent url('/x/img/static/shelf-5.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.v6 {
				background: transparent url('/x/img/static/shelf-6.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.top {
				height: 103px;
				background: transparent url('/x/img/static/shelf-0-top.gif') left bottom no-repeat;
			}
			.overlayFullCol ul.eyekeeyaRanking li.bottom {
				height: 36px;
				background: transparent url('/x/img/static/shelf-0-bottom.gif') left bottom no-repeat;
			}
	
	

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## HOMEPAGE POP-UP STYLES START HERE */

.wb1 {
	display: block;
	position: absolute;
	left: 115px;
	top: 528px;
}

.wb2 {
	display: block;
	position: absolute;
	left: 154px;
	top: 585px; /* top: 585px; */
}

.wb3 {
	display: block;
	position: absolute;
	left: 756px;
	top: 546px;
}

.wb4 {
	display: block;
	position: absolute;
	left: 847px;
	top: 565px;
}

.wb5 {
	display: block;
	position: absolute;
	left: 874px;
	top: 504px;
}
		
.witch {
	width: 530px;
	height: 196px;
	z-index: 13000;
	border: 1px solid #000000;
	color: #ffffff;
}

.witchBiog1 {
	background: #4d818c url('/x/img/static/bg_witch_oneThing_124x176.gif') no-repeat 10px 10px;
}

.witchBiog2 {
	background: #4d818c url('/x/img/static/bg_witch_shrunkWashing_250x176.jpg') no-repeat 10px 10px;
}

.witchBiog3 {
	background: #4d818c url('/x/img/static/bg_witch_lastParkingSpace_250x176.gif') no-repeat 10px 10px;
}

.witchBiog4 {
	background: #4d818c url('/x/img/static/bg_witch_flipFlops_124x176.jpg') no-repeat 10px 10px;
}

.witchBiog5 {
	background: #4d818c url('/x/img/static/bg_witch_burntTongue_124x176.gif') no-repeat 10px 10px;
}

.witchBiog1 .tip-title, .witchBiog2 .tip-title, .witchBiog3 .tip-title, .witchBiog4 .tip-title, .witchBiog5 .tip-title {
	margin: 0 0 10px 0;
	font-size: 2.0em;
	color: #ffffff;
}

.witchBiog1 .tip-text, .witchBiog2 .tip-text, .witchBiog3 .tip-text, .witchBiog4 .tip-text, .witchBiog5 .tip-text {
	font-size: 1.5em;
	color: #ffffff;
}


.pd1 {
	display: block;
	position: absolute;
	left: 127px;
	top: 402px;
}

.pd2 {
	display: block;
	position: absolute;
	left: 259px;
	top: 307px;
}

.pd3 {
	display: block;
	position: absolute;
	left: 242px;
	top: 155px;
}

.pd4 {
	display: block;
	position: absolute;
	left: 389px;
	top: 125px;
}

.pd5 {
	display: block;
	position: absolute;
	left: 608px;
	top: 159px;
}

.pd6 {
	display: block;
	position: absolute;
	left: 769px;
	top: 287px; /* top: 287px; */
}

.pd7 {
	display: block;
	position: absolute;
	left: 766px;
	top: 427px;
}

.pd8 {
	display: block;
	position: absolute;
	left: 511px;
	top: 464px;
}

.pd9 {
	display: block;
	position: absolute;
	left: 302px;
	top: 530px;
}

.place {
	width: 530px;
	height: 196px;
	z-index: 13000;
	border: 1px solid #000000;
	color: #000000;
}

.placeDetail1 {
	background: #f2efbd url('/x/img/static/bg_place_wellOfEmoTears_124x176.gif') no-repeat 10px 10px;
}

.placeDetail2 {
	background: #f2efbd url('/x/img/static/bg_place_graveyardOfMilkBottles_250x176.jpg') no-repeat 10px 10px;
}

.placeDetail3 {
	background: #f2efbd url('/x/img/static/bg_place_laughingDrain_124x176.gif') no-repeat 10px 10px;
}

.placeDetail4 {
	background: #f2efbd url('/x/img/static/bg_place_backOfSetteeMines_250x176.gif') no-repeat 10px 10px;
}

.placeDetail5 {
	background: #f2efbd url('/x/img/static/bg_place_wiseSheep_124x176.gif') no-repeat 10px 10px;
}

.placeDetail6 {
	background: #f2efbd url('/x/img/static/bg_place_museumLostThings_250x176.jpg') no-repeat 10px 10px;
}

.placeDetail7 {
	background: #f2efbd url('/x/img/static/bg_place_hallOfWitches_250x176.jpg') no-repeat 10px 10px;
}

.placeDetail8 {
	background: #f2efbd url('/x/img/static/bg_place_playgroundSlides_250x176.jpg') no-repeat 10px 10px;
}

.placeDetail9 {
	background: #f2efbd url('/x/img/static/bg_place_hensTeethBeach_250x176.jpg') no-repeat 10px 10px;
}

.placeDetail1 .tip-title, .placeDetail2 .tip-title, .placeDetail3 .tip-title, .placeDetail4 .tip-title, .placeDetail5 .tip-title, .placeDetail6 .tip-title, .placeDetail7 .tip-title, .placeDetail8 .tip-title, .placeDetail9 .tip-title {
	margin: 0 0 10px 0;
	font-size: 2.0em;
	color: #000000;
}

.placeDetail1 .tip-text, .placeDetail2 .tip-text, .placeDetail3 .tip-text, .placeDetail4 .tip-text, .placeDetail5 .tip-text, .placeDetail6 .tip-text, .placeDetail7 .tip-text, .placeDetail8 .tip-text, .placeDetail9 .tip-text {
	font-size: 1.5em;
	color: #000000;
}

	.tip-text span {

		display: block;
		margin: 5px 0 0 0;
		font-size: 0.8em;
		font-style: italic;
		color: #663200;
	}

.td1 {
	display: block;
	position: absolute;
	left: 426px;
	top: 298px;
}

.td2 {
	display: block;
	position: absolute;
	left: 493px;
	top: 294px;
}

.td3 {
	display: block;
	position: absolute;
	left: 397px;
	top: 334px;
}

.td4 {
	display: block;
	position: absolute;
	left: 459px;
	top: 334px;
}

.td5 {
	display: block;
	position: absolute;
	left: 505px;
	top: 334px;
}

.treeDetail .tip {
	color: #fff;
	width: 160px;
	z-index: 13000;
	border: 1px solid #ffffff;
}
 
.treeDetail .tip-title {
	font-weight: bold;
	font-size: 11px;
	margin: 0;
	color: #d9c359;
	padding: 4px 4px 4px;
	background-color: #1f1205;
}
 
.treeDetail .tip-text {
	font-size: 11px;
	padding: 2px 4px 6px 4px;
	background-color: #663200;
	color: #f2efbd;
}

.witchBiog1 .tip, .witchBiog2 .tip, .witchBiog3 .tip, .placeDetail2 .tip, .placeDetail4 .tip, .placeDetail6 .tip, .placeDetail7 .tip, .placeDetail8 .tip, .placeDetail9 .tip { /* landscape format images */
	padding: 10px 10px 0 270px;
}

.witchBiog4 .tip, .witchBiog5 .tip, .placeDetail1 .tip, .placeDetail3 .tip, .placeDetail5 .tip { /* portrait format images */
	padding: 10px 10px 0 144px;
}
		
/* orig mootools styles below here for reference

.tool-tip {
	color: #fff;
	width: 139px;
	z-index: 13000;
}
 
.tool-title {
	font-weight: bold;
	font-size: 11px;
	margin: 0;
	color: #9FD4FF;
	padding: 8px 8px 4px;
	background: url('/x/img/static/bubble.png') top left;
}
 
.tool-text {
	font-size: 11px;
	padding: 4px 8px 8px;
	background: url('/x/img/static/bubble.png') bottom right;
}

.custom-tip {
	color: #000;
	width: 130px;
	z-index: 13000;
}

.custom-title {
	font-weight: bold;
	font-size: 11px;
	margin: 0;
	color: #3E4F14;
	padding: 8px 8px 4px;
	background: #C3DF7D;
	border-bottom: 1px solid #B5CF74;
}

.custom-text {
	font-size: 11px;
	padding: 4px 8px 8px;
	background: #CFDFA7;
}
*/
		
/*-------------------------------------------------------------------
## FORM STYLES START HERE */

.smallInput {
	width: 100px;
}

.mediumInput {
	width: 200px;
}

.largeInput {
	width: 300px;
}

.hugeInput {
	width: 400px;
}


/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## ADMIN STYLES START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## BUTTON STYLES START HERE */

.buttonPanel {
	display: block;
	float: left;
	margin: 4px 0 10px 0;
	padding: 8px 2px 8px 8px;
	background-color: #d9c359;
	font-size: 1.4em;
}
.buttonPanel a, .buttonPanel button {
	display:block;
	float:left;
	margin:0 7px 0 0;
	background-color:#f5f5f5;
	border:1px solid #999999; border-top:1px solid #cccccc; border-left:1px solid #cccccc;
	font: normal normal bold 1.1em/1.4em "Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	text-decoration:none;
	color:#565656;
	cursor:pointer;
	padding:5px 10px 6px 7px; /* Links */
}

.buttonPanel button {
	overflow: visible;
	width: auto;
	padding: 4px 10px 3px 7px; /* IE6 */
}
.buttonPanel button[type] {
	padding: 5px 10px 5px 7px; /* Firefox */
	line-height: 17px; /* Safari */
}
*:first-child+html button[type] {
	padding: 4px 10px 3px 7px; /* IE7 */
}
.buttonPanel button img, .buttonPanel a img, table td.buttons a img {
	margin: 0 3px -3px 0 !important;
	padding: 0;
	border: none;
	width: 16px;
	height: 16px;
}

/* Standard actions */
.buttonPanel button:hover, .buttonPanel a:hover, table td.buttons a:hover {
	background-color: #dff4ff;
	border: 1px solid #c2e1ef;
	color: #336699;
}
.buttonPanel a:active, table td.buttons a:active {
	background-color: #6299c5;
	border: 1px solid #6299c5;
	color: #ffffff;
}

/* Positive actions */
button.positive, .buttonPanel a.positive, table td.buttons a.positive {
	color: #529214;
}
.buttonPanel a.positive:hover, button.positive:hover, table td.buttons a.positive:hover {
	background-color: #689a39;
	border: 1px solid #ffffff;
	color: #ffffff;
}
.buttonPanel a.positive:active, table td.buttons a.positive:active {
	background-color: #529214;
	border: 1px solid #529214;
	color: #fff;
}

/* Negative actions */
.buttonPanel a.negative, button.negative, table td.buttons a.negative {
	color: #d12f19;
}
.buttonPanel a.negative:hover, button.negative:hover, table td.buttons a.negative:hover {
	background: #fbe3e4;
	border: 1px solid #fbc2c4;
	color: #d12f19;
}
.buttonPanel a.negative:active, table td.buttons a.negative:active {
	background-color: #d12f19;
	border: 1px solid #d12f19;
	color: #ffffff;
}


/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## TABLE STYLES START HERE */

table {
	width: 100%;
	margin: 5px 0 0 0;
}

	table tr td, table tr th {
		border-bottom: 1px solid #cccccc;
	    padding: 3px;
	    font: normal normal normal 1.2em/1.0em Helvetica, Arial, sans-serif;
	    vertical-align: middle;
	}
	
	table tr th {
		border-bottom: 1px solid #333333;
		font-weight: bold;
	}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## MESSAGE DISPLAY STYLES START HERE */

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## FUNCTIONAL STYLES START HERE */

/* float clearer */
.fc, .s{
	clear: both;
	visibility: hidden;
	overflow: hidden;
	width: 0;
	height: 0;
	margin: 0;
	padding: 0;
	line-height: 0;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## FOOTER STYLES START HERE */

.blockFooter a {
	color: #5F532F;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## DEBUG STYLES START HERE */

.blockDebug {
	width: 760px;
	margin: 0 auto;
	border: 1px dashed #999999;
	padding: 0px;
	background-color: #ffffff;
	text-align: left;
}

.blockDebug {
	margin-top: 15px;
}

.blockDebug li strong {
	font-size: 12px;
}

.blockDebug pre {
	color: blue;
	font-size: 11px;
}

/*-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
## REMAINING MISC STYLES START HERE */

/*-------------------------------------------------------------------*/