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

div.borderrad{
	 border-radius: 10px;
	 -webkit-border-radius: 10px;
	 -moz-border-radius: 10px;
}
div.borderrad_left{
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
}
div.borderrad_right{
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
}
div.borderrad_bottom{
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	}
div.borderrad_top{
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;	
}
div.bordershadow{
	 box-shadow: 1px 2px 6px rgba(0,0,0, 0.5);
	 -moz-box-shadow: 1px 2px 6px rgba(0,0,0, 0.5);
	 -webkit-box-shadow: 1px 2px 6px rgba(0,0,0, 0.5);
	}

