/*
	box.css
	created by Scott L. Shermeyer
	supplemental css for defining a box DIV element with rounded corners
*/
.box {
	/*background-image: url(corner_tl.gif), url(corner_tr.gif), url(corner_tl.gif), url(corner_br.gif);
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	background-position: top left, top right, bottom left, bottom right;*//*only works with CSS3*/
	background-color: #c3bb7f;
	margin-bottom: 5em;
	width: 100%;
	vertical-align: middle;
	word-spacing: normal;
	text-align: justify;
	position: relative;
	padding-bottom: .5em;
	padding-top: .5em;
} /*defines a division class named box*/

.rc{display:block;
	clear: both;} /*defines a class for creating rounded corners for divisions using only css */
.rc *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#c3bb7f}
.rc1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #e0daae;
  border-right:1px solid #e0daae;
  background:#d0c993}
.rc2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #f1edc9;
  border-right:1px solid #f1edc9;
  background:#ccc58e}
.rc3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #ccc58e;
  border-right:1px solid #ccc58e;}
.rc4{
  border-left:1px solid #e0daae;
  border-right:1px solid #e0daae}
.rc5{
  border-left:1px solid #d0c993;
  border-right:1px solid #d0c993}
.rcfg{
  background:#c3bb7f;
  font-size: .6em}