/*--------------------------------------------------*/
/*  block_with_rounded_corners                      */
/*  Adds rounded corners and blue bar for heading   */
/*--------------------------------------------------*/

.home_block_with_rounded_corners {
 width:99%;
 background:#dde4ea; /* light blue */ 
 position:relative; /* Make this the containing block of the corner spans */
 margin-bottom:10px;
 z-index:995;
 -webkit-border-radius: 4px 4px 4px 4px;
 -moz-border-radius: 4px 4px 4px 4px;
 border-radius: 4px 4px 4px 4px;
 
}

.home_block_with_rounded_corners h4 {
 background:#6d89a4; 
 color:#fff;
 font-weight:bold;
 font-size:1.2em;
 padding:10px;
 margin:0px; 
 -webkit-border-radius: 4px 4px 0px 0px;
 -moz-border-radius: 4px 4px 0px 0px;
 border-radius: 4px 4px 0px 0px; 
 text-align:center;
}

.home_block_with_rounded_corners h4 span {
    padding-left: 5px !important;
    position: absolute;
    top:5px;
    left:-0px;
}

.home_block_with_rounded_corners .bottom_right {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 bottom:-2px;
 right:-2px;
 /*background: url(../images/block_with_image_corners.gif) top left no-repeat;*/
}

.home_block_with_rounded_corners .bottom_left {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 bottom:-2px;
 left:-2px;
 /*background: url(../images/block_with_image_corners.gif) top right no-repeat;*/
}

.home_block_with_rounded_corners .top_right {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 top:-1px;
 right:-2px;
 /*background: url(../images/block_with_image_corners.gif) bottom left no-repeat;*/
}

.home_block_with_rounded_corners .top_left {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 top:-1px;
 left:-2px;
 /*background: url(../images/block_with_image_corners.gif) bottom right no-repeat;*/
}

.home_block_with_rounded_corners .list_decorative_dark a:hover {
 background:transparent; /* Fixes problem in IE (dotted line disappears) */
}


.block_with_rounded_corners {
 width:99%;
 background:#dde4ea; /* light blue */
 border-style:solid;
 border-color:#b4c6d6; /* darker blue */
 border-width:0 1px 1px 1px;
 position:relative; /* Make this the containing block of the corner spans */
 margin-bottom:10px;
 z-index:995;
/* margin-right:20px; */
}

.block_with_rounded_corners h4 {
 background:#b4c6d6; /* darker blue */
 color:#000;
 font-weight:bold;
 font-size:1.2em;
 padding:10px;
 margin:0px;
 text-transform:uppercase;
}
 
.block_with_rounded_corners .bottom_right {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 bottom:-2px;
 right:-2px;
 background: url(../images/block_with_image_corners.gif) top left no-repeat;
}
.block_with_rounded_corners .bottom_left {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 bottom:-2px;
 left:-2px;
 background: url(../images/block_with_image_corners.gif) top right no-repeat;
}
.block_with_rounded_corners .top_right {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 top:-1px;
 right:-2px;
 background: url(../images/block_with_image_corners.gif) bottom left no-repeat;
}
.block_with_rounded_corners .top_left {
 position:absolute;
 width:6px;
 height:6px;
 font-size:1px;
 top:-1px;
 left:-2px;
 background: url(../images/block_with_image_corners.gif) bottom right no-repeat;
}

.block_with_rounded_corners .list_decorative_dark a:hover {
 background:transparent; /* Fixes problem in IE (dotted line disappears) */
}

/*  End of block_with_rounded_corners */
