/*
  +------------------------------------------------------------------+
  | MikeCherim.com                                                   |
  | CSS: Smart Corners                                               |
  | Cascading Style Sheet                                            |
  | Copyright Aug 2006                                               |
  | Use with attribution by visible link please!                     |
  | Attribute to: <a href="http://green-beast.com/">Mike Cherim</a>  |
  +------------------------------------------------------------------+
*/ 

/* here's the box... the image is the upper-left corner */
#csc {
  background : #d7c596 url(media/global/csc_tl.png) no-repeat;
  width : 550px;
  height : auto;
  position : relative;
  padding : 30px;
  
}

/* box with unrounded top edges - no padding */

#csc2 {
  background : #d7c596;
  width : 600px;
  height : auto;
  position : relative;
  
}

/* smaller box with rounded edges - with padding */
/* made for people bios */


#csc3 {
  background : #d7c596 url(media/global/csc_tl.png) no-repeat;
  width : 520px;
  height : auto;
  position : relative;
	padding: 32px 32px 32px 40px;
}

/* these are the other three spans. classes were used to allow multiuse on a page */
.tr, .bl, .br {
  position : absolute;
  width : 39px;
  height : 39px;  /* corner images are 40x40 */
  display : block;
  margin-bottom : -1px;  /* this is for IE */
}

/* change position and image: top-right */
.tr {
  background : transparent url(media/global/csc_tr.png) no-repeat;
  top : 0;
  right : 0;
}

/* change position and image: bottom-left */
.bl {
  background : transparent url(media/global/csc_bl.png) no-repeat;
  bottom : 0;
  left : 0;
}

/* change position and image: bottom-right */
.br {
  background : transparent url(media/global/csc_br.png) no-repeat;
  right : 0;
  bottom : 0;
}


/* End Styles */