/* 
 * Generic box 
 * */
.box {
	display: table;
	padding: 0px;
	margin-bottom: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
.box h1 {
	display: block;
	background-image:  url(../images/tab_corner.gif);
	height: 18px;
	background-color: #0E9936;
	margin: 0px;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	padding-left: 20px;
	padding-top: 2px;
	border-left-color: #FFFFFF;
	text-align: left;
	background-repeat: repeat-x;
	background-position: left top;
}
/* Content of the box */
.boxcontent {
	padding: 10px;
	display: block;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-right-color: #666666;
	border-bottom-color: #666666;
	border-left-color: #666666;
	background-color: #FFFFFF;
}
.boxcontent h1 {
	display: block;
	background-color: #c6edd1;
	margin: 0px;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	padding-left: 20px;
	padding-top: 2px;
	text-align: left;
	border: 0px;
	background-image: none;
}
.boxcontent table {
	width: 100%;
}
.boxcontent table td {
	width: 25%;
}
.boxcontent select {
	width: 200px;
	border: 1px solid #dddddd;
}
.boxcontent input[type=text] {
	width: 200px;
	border: 1px solid #dddddd;
}
.boxcontent input[type=checkbox] {
	border: 1px solid #dddddd;
}
.boxcontent textarea {
	width: 660px;
	height: 150px;
	border: 1px solid #dddddd;
	overflow-y: scroll;
}
/*
 * Small (box)
 */
.small {
	width: 270px;
	display: block;
}
.small span {
	display: block;
	background-image:  url(../images/tab_bott_corner_270_s.gif);
	background-position: center bottom;
	background-repeat: repeat-x;
	height: 12px;
	background-color: #FFFFFF;
}

/*
 * Medium (box)
 */
.middle {
	width: 690px;
	display: block;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	float: left;
}
.middle span {
	display: block;
	background-image:  url(../images/tab_bott_corner_middle.gif);
	background-position: center bottom;
	background-repeat: repeat-x;
	height: 11px;
	background-color: #FFFFFF;
}

/*
 * Big box
 */
.big {
	width: 800px;
	display: block;
	float: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.big span {
	display: block;
	background-image:  url(../images/tab_bott_corner_big.gif);
	background-position: center bottom;
	background-repeat: repeat-x;
	height: 11px;
	background-color: #FFFFFF;
}

/* 
 * Alternative (box) background 
 * */
.alternative {
	background-color: #c6edd1;
}

