/**
 * Spanky Corners -- CSS Rounded Corners by SitePoint
 *
 * Auto generated code by SitePoint.com
 * Details @ http://tools.sitepoint.com/spanky/
 * @version 0.4
 */

body {
  background-color: #666666;
  color: #333333;
  font-size:62.5%;
 /* Align pixels with ems - http://www.clagnut.com/blog/348/ */
}

/* every element within 'div.rounded' gets the B-R corner */
div.rounded * {
  background: #cccccc url(images/br_11_cccccc_666666.gif) no-repeat;
  background-position: bottom right;
  padding: 1em 2em 11px 11px;
  margin: 0 0 -11px 11px;
  height:100%;
}

/* Scrub that B-R corner from all elements *2 or more* levels deep*/
div.rounded * * {
  padding: 0;
  margin: 0;
  background: none;
  height:auto
}

/* Set up some H's as 'box heads' with the T-R & T-L corners */

div.rounded h1 {
	font-size: 3.2em;
}

div.rounded h2 {
	font-size: 2.8em;
}
div.rounded h1, div.rounded h2 {
  color: #666666;
  background: #cccccc url(images/tr_11_cccccc_666666.gif) no-repeat;
  background-position:top right;
  display: list-item;
  list-style-image: url(images/tlc_11_cccccc_666666.gif);
  list-style-position: inside;
  list-style-type:none;
  padding: 0;
  margin: 0;
  height: 90%;
  position: relative;
}

/* all curved boxes get the bottom-left corner */
div.rounded {
  background: #cccccc url(images/bl_11_cccccc_666666.gif) no-repeat;
  background-position: bottom left ;
  position: relative;
  padding-top: 0;
  padding-bottom: 11px;
  margin: 1em 10px 0 0 ;
  height:100%
}

/* just prettier links */
a:link { color:#0000CC }
a:hover { color:#0033FF }
a:visited { color:#0000CC }

/* reset some useful defaults on list items */
div.rounded * li {
  margin-left: 2em;
}


