/**
 * Author:    Dennis Robinson (Lieutenant Clone)
 * Date:      June 12, 2010
 * Copyright: 2010 Beach Assault Studios
 *
 * Stylesheet for basnetworks.net
 */

/**
 * Re-style HTML elements
 */
html {
	height: 100%;
}

body {
	position: relative;
	min-height: 100%;
	margin: 0px;
	padding: 0px;

	background-image: url('images/background.png');
	background-position: center top;
	background-repeat: repeat;
	text-align: center;/* Center elements in IE */
	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
	color: #939393;
}

img {
	border-style: none;

	/* Fix png transparancy in IE */
	behavior: url('behaviours/iepngfix.htc');
}

div {
	/* Fix png transparancy in IE */
	behavior: url('behaviours/iepngfix.htc');
}

a {
	color: #CB8419;
}

a:hover {
	color: #FFAA33;
}

/**
 * General layout
 */
div#header, div#headerFrame {
	width: 100%;
	height: 300px;

	/* Make sure header stays behind content in IE */
	position: relative;
	z-index: -1;

	background-position: center top;
	background-repeat: no-repeat;
}

div#header {
	background-image: url('headers/header01.jpg');
}

div#headerFrame {
	background-image: url('images/header_frame.png');
}

div#layout {
	width: 850px;
	margin: 0px auto;
	margin-top: -40px;/* Overlap bottom of header frame slightly */
	padding-bottom: 60px;/* Leave room for the footer */
	overflow: hidden;/* Stretch the layout container around floated contents */

	text-align: left;
}

div#layout div#leftColumn {
	width: 200px;
	float: left;
}

div#layout div#rightColumn {
	width: 630px;
	float: right;
	padding: 6px;

	background-image: url('images/transparent_white.png');
	background-repeat: repeat;

	/* Round the corners */
	-moz-border-radius: 6px;/* Mozilla based*/
	-webkit-border-radius: 6px;/* Webkit based */
	-khtml-border-radius: 6px;/* KDE based */
	border-radius: 6px;/* CSS3 standard */
	behavior: url('behaviours/iepngfix.htc') url('behaviours/border-radius.htc');/* Internet Explorer */
}

div#footer {
	width: 100%;
	height: 45px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding-top: 15px;

	font-size: 12px;
	color: #FFAA33;
	text-align: center;
}

div#footer a {
	color: #FFAA33;
}

div#footerContent {
	padding-left: 210px;/* Width and spacing of left column */
}

/**
 * Menus
 */
div.menu {
	width: 200px;
	margin-bottom: 10px;

	text-align: center;/* Center elements in IE */
}

div.menu div.title {
	width: 200px !important;
	width: 173px;
	height: 30px;
	padding-left: 27px;

	background-image: url('images/menu_header.png');
	background-repeat: no-repeat;
	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	line-height: 28px;
	color: #BBBD7E;
	text-align: left;
	cursor: default;
}

div.menu div.content {
	width: 188px;
	margin: 0px auto;
	padding: 4px;

	background-color: #101010;
	border: 1px solid #4C4D3D;
	border-top-width: 0px;
	font-size: 14px;
	text-align: left;

	/* Round the corners */
	-moz-border-radius: 0px 0px 5px 5px;/* Mozilla based*/
	-webkit-border-bottom-left-radius: 5px;/* Webkit based */
	-webkit-border-bottom-right-radius: 5px;
	-khtml-border-bottom-left-radius: 5px;/* KDE based */
	-khtml-border-bottom-right-radius: 5px;
	border-radius: 0px 0px 5px 5px;/* CSS3 standard */
	behavior: url('behaviours/border-radius.htc');/* Internet Explorer */
}

div.menu div.content ul {
	margin: 0px;
	padding: 0px;

	list-style-type: none;
	background-color: #191919;
	border: 1px solid #2C2D28;
	border-bottom: 0px;

	/* Round the corners */
	-moz-border-radius: 2px;/* Mozilla based*/
	-webkit-border-radius: 2px;/* Webkit based */
	-khtml-border-radius: 2px;/* KDE based */
	border-radius: 2px;/* CSS3 standard */
	behavior: url('behaviours/border-radius.htc');/* Internet Explorer */
}

div.menu div.content ul li {
	padding: 2px 8px;

	border-bottom: 1px solid #2C2D28;
}

div.menu div.content ul li a {
	display: block;
	width: 100%;
	margin: -2px -8px;
	padding: 2px 8px;

	text-decoration: none;
}

/* Menu item icons */
div.menu div.content ul li img {
	vertical-align: middle;
}

div.menu div.content ul li a:hover {
	background-color: #2C2D28;
}

/**
 * Content block
 */
div.block {
	padding: 6px;
	margin-bottom: 6px;

	background-color: #242922;
	background-image: url('images/box_background.png');
	background-repeat: repeat;
	border: 1px solid #161712;

	/* Round the corners */
	-moz-border-radius: 5px;/* Mozilla based*/
	-webkit-border-radius: 5px;/* Webkit based */
	-khtml-border-radius: 5px;/* KDE based */
	border-radius: 5px;/* CSS3 standard */
	behavior: url('behaviours/border-radius.htc');/* Internet Explorer */
}

div.block div.title {
	height: 32px;
	padding-left: 40px;

	background-image: url('images/box_header.png');
	background-repeat: no-repeat;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	color: #FFAA33;
}

div.block div.content {
	padding: 8px 6px;
	padding-bottom: 4px;

	font-size: 15px;
}

div.block div.footer {
	padding: 4px 6px;

	font-size: 11px;
	text-align: right;
}

/**
 * Pagination
 */
ul.pagination {
	height: 21px;
	margin: 0px;
	padding: 0px;
	padding-top: 3px;/* Adjust for li padding and border */
	list-style-type: none;

	text-align: center;/* Causes the contained li elements to be centered */
	cursor: default;
}

ul.pagination li {
	display: inline;
	padding: 2px 6px;

	background-color: #242922;
	background-image: url('images/box_background.png');
	background-repeat: repeat;
	border: 1px solid #161712;

	/* Round the corners */
	-moz-border-radius: 5px;/* Mozilla based*/
	-webkit-border-radius: 5px;/* Webkit based */
	-khtml-border-radius: 5px;/* KDE based */
	border-radius: 5px;/* CSS3 standard */
	behavior: url('behaviours/border-radius.htc');/* Internet Explorer */
}

ul.pagination li a {
	margin: -2px -7px;
	padding: 2px 6px;

	border: 1px solid #161712;
	text-decoration: none;

	/* Round the corners */
	-moz-border-radius: 5px;/* Mozilla based*/
	-webkit-border-radius: 5px;/* Webkit based */
	-khtml-border-radius: 5px;/* KDE based */
	border-radius: 5px;/* CSS3 standard */
	behavior: url('behaviours/border-radius.htc');/* Internet Explorer */
}

ul.pagination li a:hover {
	background-image: none;
	background-color: #565842;
	border-color: #BBB2A0;
}

/* Disabled links */
ul.pagination li.disabled {
	color: #666666;
}

/* Selected links */
ul.pagination li.selected {
	background-image: none;
	background-color: #565842;
	border-color: #BBB2A0;
	color: #FFFFFF
}

/* Pagination spacers */
ul.pagination li.spacer {
	padding: 0px;

	background-image: none;
	background-color: transparent;
	border-style: none;
	color: #101010;
}

/**
 * Input Form
 */
table.form {
	width: 100%;
}

table.form input.text, table.form textarea {
	width: 100%;

	background-color: transparent;
	background-image: url('images/transparent_white.png');
	background-repeat: repeat;
	border: 1px solid #BBBBBB;
	color: #BBBBBB;
}

table.form input.text:focus, table.form textarea:focus {
	border-color: #FFFFFF;
}

table.form textarea {
	height: 100px;
}

/**
 * Information/error messages
 */
div.information {
	padding: 5px;

	background-color: #F0E6AA;
	border: 1px solid #E4CB2F;
	font-family: arial, helvetica, sans-serif;
	color: #000000;
}

div.error {
	padding: 5px;

	background-color: #FF9A8A;
	border: 1px solid #CE5932;
	font-family: arial, helvetica, sans-serif;
	color: #000000;
}

div.information span.title, div.error span.title {
	display: block;

	font-weight: bold;
}