﻿/* from http://webdesign.about.com/od/csstutorials/a/aa102306.htm */
/* 2010.08.30 - replaced dropshadow effect with thin colored borders. Looks pretty good, and is a quick fix for some pixel alignment issues. */
/*.shadow
{
background:none repeat scroll 0 0 #CCCCCC;
bottom:2px;
position:relative;
right:0;
top:2px;
}
.shadow-content
{
bottom:2px;
left:-2px;
position:relative;
right:5px;
top:-2px;
}*/
.shadow-content
{
    border-right:2px solid #ccc;
    border-bottom:2px solid #ccc;
    background:white;
    padding:10px;
}
