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

/* Text Shadow */
.txtshadow_dark{ text-shadow: 1px 1px 1px #333333}
.txtshadow_med{ text-shadow: 1px 1px 1px #999999}
.txtshadow_light{ text-shadow: 1px 1px 1px #fff}

/* Box Shadow */
.shadow_dark{ box-shadow:0px 0px 2px #000}
.shadow_meddark{ box-shadow:0px 0px 2px #bdbdbd}
.shadow_light{ box-shadow:0px 0px 2px #fff}



/* Box Corners */
.smoothcorner{  border-radius: 6px 6px 6px 6px;  }
.smoothcornertop{  border-radius: 6px 6px 0px 0px; }
.smoothcornerbot{ border-radius: 0px 0px 6px 6px;  }
.smooth_top_left{  border-radius: 6px 0px 0px 0px;  }
.smooth_top_right{  border-radius: 0px 6px 0px 0px;  }
.smooth_bot_left{  border-radius: 0px 0px 6px 0px;  }
.smooth_bot_left{  border-radius: 0px 0px 0px 6px;  }
 
.boxeffect {
 padding: 6px;
 border-width: 1px 1px 2px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
background: #F7F7F7;
background: -webkit-gradient(linear, left top, left bottom, from(white), to(#E7E8EB));
background: -moz-linear-gradient(top, white, #E7E8EB);
background: linear-gradient(white, #E7E8EB);
-pie-background: linear-gradient(#fff, #E7E8EB);
display:inline-block; position:relative;
 }
 .boxeffect img { border:1px solid #CCC}