@charset "UTF-8";
/* CSS Document */

.roundwrapper {
	-moz-border-radius-bottomleft: 8px;
	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-webkit-box-shadow: rgb(0, 0, 0) 0px 0px 8px;
	-moz-box-shadow: rgb(0, 0, 0) 0px 0px 8px;
}
.roundbottom {
	-moz-border-radius-bottomleft: 8px;
	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-webkit-border-bottom-right-radius: 8px;
	-webkit-box-shadow: rgb(136, 136, 136) 0px 0px 5px;
	-moz-box-shadow: rgb(136, 136, 136) 0px 1px 5px;
}
.roundtop {
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-webkit-box-shadow: rgb(136, 136, 136) 0px 3px 5px;
	-moz-box-shadow: rgb(136, 136, 136) 0px 1px 5px;
}
.roundall {
	-moz-border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-webkit-border-radius: 8px;
	-webkit-box-shadow: rgb(136, 136, 136) 0px 1px 5px;
	-moz-box-shadow: rgb(136, 136, 136) 0px 1px 5px;
}
.roundbutton {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background-color: #6D2503;
	padding: 4px;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 1em;
	color: #FFF;
	text-decoration: none;
	margin-bottom: 5px;
	cursor: pointer;
}
.roundbutton:hover {
	background-color: #DF5D1D;
}
.wrappershadowonly {
	-webkit-box-shadow: rgb(0, 0, 0) 0px 0px 7px;
	-moz-box-shadow: rgb(0, 0, 0) 0px 0px 7px;
}