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

/*
  +------------------------------------------------------------------+
  | Green-Beast.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 : #F2F2F4 url(../images/box_tl.jpg) no-repeat;
  position : relative;
  padding : 10px 15px;
  width:100%;
}

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

/* change position and image: top-right */
.tr {
  background : url(../images/box_tr.jpg) no-repeat;
  top : 0;
  right : 0;
}

/* change position and image: bottom-left */
.bl {
  background : url(../images/box_bl.jpg) no-repeat;
  bottom :0;
  left : 0;
}

/* change position and image: bottom-right */
.br {
  background : url(../images/box_br.jpg) no-repeat;
  right : 0;
  bottom : 0;
}





