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

/* http://www.csswoes.com/2008/04/17/rounded-corners/ */
.roundedcontainer
{
	position:relative;
	background:#FFF;
	margin:0 auto 0 auto;
	width:200px;
}
.roundedtop
{
	background:#00CCFF;
	position:relative;
	height:30px;
}
.roundedleft
{
	background:url(http://www.csswoes.com/wp-content/uploaded/images/roundedleft.jpg) no-repeat;
	position:absolute;
	width:30px;
	height:30px;
	top:0px;
	left:0px;
	display:block;
}
.roundedright
{
	background:url(http://www.csswoes.com/wp-content/uploaded/images/roundedright.jpg) no-repeat;
	position:absolute;
	width:30px;
	height:30px;
	top:0px;
	right:0px;
	display:block;
}
.roundedcontent
{
	background:#FFF;
	padding:0 0 0 5px;
	border:1px solid #00CCFF;
	width:193px;
	height:200px;
	position:relative;
	display:block;
}
.roundedcorners
{
	background-color: #ccc;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border: 1px solid #000;
	padding: 10px;
	width:100px;
	height:100px;
	margin:0 auto 0 auto;
	display:block;
}