/* 
The following CSS (and the related JS code) courtesy
of Roger Johansson (www.456bereastreet.com)
*/


/* CSS for the box starts here
================================================*/
/* Default styling. Used when JavaScript is unsupported */
.cbb {
	padding:10px;
	margin: 2px;
	background: #fff;
	border: 1px solid #666;
	}
	
/*	
.infoState div.cbb.tabBox, .mapState div.cbb.tabBox{width:50%; margin-left:0}
.infoState div.cbb.resultsBox, .mapState div.cbb.resultsBox{width: 45%; margin-right:0 }

.resultState div.cbb.tabBox{width: 33%; margin-left:0}
.resultState div.cbb.resultsBox {width:62%; margin-right:0 }*/


	
/* Insert the custom corners and borders for browsers with sufficient JavaScript support */

/* Two of the boxes are floated just for this demo. Adjust to your needs. */
.cb {
	
	}

/* Rules for the top corners and border */
.bt {
	background:url(../images/box.gif) no-repeat 100% 0;
	margin:0 0 0 18px;
	height:15px;
	}
.bt div {
	height:15px;
	width:18px;
	position:relative;
	left:-18px;
	background:url(../images/box.gif) no-repeat 0 0;
	}

/* Rules for the bottom corners and border */
.bb {
	background:url(../images/box.gif) no-repeat 100% 100%;
	margin:0 0 0 11px;
	height:22px;
	}
.bb div {
	height:22px;
	width:25px;
	position:relative;
	left:-11px;
	background:url(../images/box.gif) no-repeat 0 100%;
	}

/* Insert the left border */
.i1 {
	padding:0 0 0 2px;
	background:url(../images/sides.jpg) repeat-y 0 0;
	}
/* Insert the right border */
.i2 {
	padding:0 10px 0 0;
	background:url(../images/sides.jpg) repeat-y 100% 0;
	}
/* Wrapper for the content. Use it to set the background colour and insert some padding between the borders and the content. */
.i3 {
	background:#fff;
	
	border:0px solid #fff;
	border-width:1px 0;
	padding:0 5px;
	}
/* CSS for the box ends here */

/* You can use different borders for different boxes on the same page. Just adjust the CSS. The following is an example that uses the GIF images instead of the PNG images. Note that you can also adjust borders, heights and paddings this way. Remember to adjust the IE CSS as well. */
.menu .i1,
.menu .i2 {
	background-image:url(../images/menu_edge.gif);
	}
.menu .i3 {
	background:#137913;
	margin-left: 5px;
	border:0 solid #137913;
	border-width:1px 0;
	padding:0 0 0 0px;
	}
	

.menu .bt,
.menu .bt div,
.menu .bb,
.menu .bb div {
	background-image:url(../images/menu_box.gif);
	}
	
.green .i1,
.green .i2 {
	background-image:url(../images/menu_edge.gif);
	}
.green .i3 {
	background:#137913;
	margin-left: 5px;
	border:0 solid #137913;
	border-width:1px 0;
	padding:0 0 0 0px;
	}
	

.green .bt,
.green .bt div,
.green .bb,
.green .bb div {
	background-image:url(../images/menu_box.gif);
	}
	

