/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.callout_wrapper {
 display: none;
 min-width: 325px;
}

.callout {
 position:relative;
 margin:0px auto;
 min-width:12em;
 max-width:306px;
 color:#000;
 font-size: 95%;
 z-index:1;
 margin-left:12px; /* default, width of left corner */
 margin-bottom:2.5em; /* spacing below callout */
}

.callout .content,
.callout .t,
.callout .b,
.callout .b div {
 background:transparent url(/static/images/callout.gif) no-repeat top right;
 _background-image:url(/static/images/callout.gif);
}

.callout .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 12px 0px 0px;
}

.callout .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.callout .b {
 /* bottom */
 position:relative;
 width:100%;
}

.callout .b,
.callout .b div {
 height:25px; /* height of bottom cap/shade */
 font-size:1px;
}

.callout .b {
 background-position:bottom right;
}

.callout .b div {
 position:relative;
 background-position:bottom left;
}

.callout .hd,
.callout .bd,
.callout .ft {
 position:relative;
}

.callout .hd {
 padding-top: 20px;
 padding-bottom: 8px;
}

.callout .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:145px;
 overflow:hidden;
}

.callout h3,
.callout p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.callout h3 {
 padding-bottom:0px;
}

.callout h3 {
  text-align: center;
}

.callout .bd {
 max-height:60px;
 overflow:auto;
 padding-left: 25px;
 padding-right: 15px;
 padding-top: 10px;
 font-size: 85%;
}

.callout .ft {
  padding-top:7px;
}  

