
/* the div that holds the date picker calendar */
.dpDiv 
{
}

ClsStam
{
    /* ---- Gradient ---- */
    background:-moz-linear-gradient(top, #D4E5EE 0%, rgba(242,249,254,1) 100%); /* FF3.6+ */
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#D4E5EE), color-stop(100%,rgba(242,249,254,1))); /* Chrome,Safari4+ */
    background:-webkit-linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* Chrome10+,Safari5.1+ */
    background:-o-linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* Opera 11.10+ */
    background:-ms-linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* IE10+ */
    background:linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* W3C */
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#D4E5EE', endColorstr='#f2f9fe',GradientType=0 ); /* IE6-9 */
    /* ---- Shadow ---- */
    -moz-box-shadow:3px 3px 4px #B4C1DD;
    -webkit-box-shadow:3px 3px 4px #B4C1DD;
    box-shadow:3px 3px 4px #B4C1DD;
    /* ---- Orange Gradient Elipse ---- */
    /* IE10 Consumer Preview */ 
    background-image: -ms-radial-gradient(center, ellipse farthest-corner, #EBB987 0%, #FCDFBD 100%);
    /* Mozilla Firefox */ 
    background-image: -moz-radial-gradient(center, ellipse farthest-corner, #EBB987 0%, #FCDFBD 100%);
    /* Opera */ 
    background-image: -o-radial-gradient(center, ellipse farthest-corner, #EBB987 0%, #FCDFBD 100%);
    /* Webkit (Safari/Chrome 10) */ 
    background-image: -webkit-gradient(radial, center center, 0, center center, 446, color-stop(0, #EBB987), color-stop(1, #FCDFBD));
    /* Webkit (Chrome 11+) */ 
    background-image: -webkit-radial-gradient(center, ellipse farthest-corner, #EBB987 0%, #FCDFBD 100%);
    /* W3C Markup, IE10 Release Preview */ 
    background-image: radial-gradient(ellipse farthest-corner at center, #EBB987 0%, #FCDFBD 100%);
}
/* the table (within the div) that holds the date picker calendar */
.dpTable 
{
    font-family:Tahoma, Arial, Helvetica, sans-serif;
    font-size:13px;
    text-align:center;
    color:#505050;
    padding:5px;
    font-weight:bold;
    border:2px solid #829BD1;/*#96ACDB; #B4C1DD;*/
    background:#E8F0F5;/*#DAE7EE;*/
    /* ---- Radius ---- */
    border-radius:6px; 
	-moz-border-radius:6px; 
	-webkit-border-radius:6px; 
}

/* ----------------------------------------- */
/* the top table row that holds the month, year, and forward/backward buttons */
.dpTitleTR 
{
    height:30px; 
}
/* the table cell that holds the name of the month and the year (January 2012) */
.dpTitleMonthYearTD 
{
    padding-bottom:5px;  
}
/* a table cell that holds one of the forward/backward buttons */
.dpTitleNextPrevTD 
{
}
/* the forward/backward buttons at the top */
.dpTitleNextLink, .dpTitlePrevLink
{
    font-family:Arial, Verdana, Tahoma, Helvetica, sans-serif;
    font-size:16px;
    font-weight:bold;
    border:0;
    outline:none;
    background:transparent;
    color:#6182C5;
    width:40px;
}

.dpTitleNextLink:hover, .dpTitlePrevLink:hover
{
    cursor:pointer;
    color:#EC9742;
}
/* ----------------------------------------- */
.dpTitleNextLinkImg, .dpTitlePrevLinkImg
{
    width:16px;
}
.dpTitleNextLinkImg:hover, .dpTitlePrevLinkImg:hover, .dpTitleNextLinkImg:active, .dpTitlePrevLinkImg:active
{
    cursor:pointer;
}

.dpInputYear
{
    border:1px solid #B4C1DD;
    background:white;/*transparent;*/
    padding:3px;
    text-align:center;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    width:auto;
    /*box-shadow:inset 0 0 10px #B4C1DD;
	-webkit-box-shadow:inset 0 0 10px #B4C1DD;
	-moz-box-shadow:inset 0 0 10px #B4C1DD;*/
	border-radius:5px; 
	-moz-border-radius:5px; 
	-webkit-border-radius:5px;
	outline:none; 
}

/* ----------------------------------------- */
/* the second table row, that holds the names of days of the week (Mon, Tue, Wed, etc.) */
.dpWeekDayNamesTR 
{
}
/* a table cell that holds the names of days of the week (Mon, Tue, Wed, etc.) */
.dpWeekDayNamesTD 
{
    background-color:#6182C5;
    /*border:1px solid #B4C1DD;*/
    color:white;
    width:40px;
    height:30px;
    font-size:14px;
    /*font-weight:bold;*/
}
/* ----------------------------------------- */
/* a table row that holds date numbers (either blank or 1-31) */
.dpWeekDayNumbersTR 
{
} 
/* Day number TD - Regular day (either blank or 1-31) */
.dpTD {
    border:1px solid #B4C1DD;
    color:#6182C5;
    width:40px;
    height:30px;
    }
.dpTDHover {
    border:1px solid #B4C1DD;
    cursor:pointer;
    color:white;
    width:40px;
    height:30px;
    }
.dpTDHover, .dpDaySelectedTDHover, .dpTodayHighlightTDHover {
    background-color:#F8C28C;
}
 
/* Day number TD - Day not belonging to the displayed month */
.dpTDEmpty, .dpTDEmptyToday 
{
    border:1px solid #B4C1DD;
    color:#838282;/*#ACABAB;*/
    width:40px;
    height:30px;
    font-weight:normal;
    /*text-decoration:line-through;*/
}
.dpTDEmptyToday
{
    font-weight:600;
    background-color:#D1DAEC;/*#EDF5FA;*/
}
/* Day number TD - Selected day (current date field value) */
.dpDaySelectedTD {
    background-color:#8DC5B3;
    border:1px solid #B4C1DD;
    }
.dpDaySelectedTDHover 
{
    border:1px solid #B4C1DD;
    cursor:pointer;
    color:#8DC5B3;
}
/* Day number TD - today's date */
.dpTodayHighlightTD
{
    background-color:#84A5E7;
    border:1px solid #B4C1DD;
}
.dpTodayHighlightTDHover 
{
    border:1px solid #B4C1DD;
    cursor:pointer;
    color:white;
}
/* ------------------------------------- */
/* additional style information for the text that indicates the month and year */
.dpDivTitleText, .dpInputYear 
{
    font-size:14px;
    color:#6182C5;
    font-weight: bold;
}
/* additional style information for the cell that holds a highlighted day (usually either today's date or the current date field value) */ 
.dpDayHighlight {
    color:white;
    font-weight:bold;
    }
/* ------------------------------------- */   
/* the table row TR that holds the "Today" or "Close" link at the bottom */
.dpTodayLinksTR 
{
}
.OLDdpTodayLinksTD
{
	border:1px solid #B4C1DD;
	color:#6182C5;
    background-color:#D4E5EE;/*#D4E5EE;*/
    /* ---- Gradient ---- */
    background:-moz-linear-gradient(top, #D4E5EE 0%, rgba(242,249,254,1) 100%); /* FF3.6+ */
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#D4E5EE), color-stop(100%,rgba(242,249,254,1))); /* Chrome,Safari4+ */
    background:-webkit-linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* Chrome10+,Safari5.1+ */
    background:-o-linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* Opera 11.10+ */
    background:-ms-linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* IE10+ */
    background:linear-gradient(top, #D4E5EE 0%,rgba(242,249,254,1) 100%); /* W3C */
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#D4E5EE', endColorstr='#f2f9fe',GradientType=0 ); /* IE6-9 */
    font-weight:normal;
    height:35px;
    padding-left:5px;
    padding-right:5px;
    /* ---- Radius ---- */
    -webkit-border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    -moz-border-radius-topleft:5px;
    -moz-border-radius-topright:5px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    -webkit-border-bottom-left-radius:5px;
    -webkit-border-bottom-right-radius:5px;
    -moz-border-radius-bottomleft:5px;
    -moz-border-radius-bottomright:5px;
}
.dpTodayLinksTD
{
	color:#6182C5;
    font-weight:normal;
    height:25px;
    padding-left:5px;
    padding-right:5px;
}
/* the "Today" and "Close" links at the bottom */
.dpTodayLink 
{
    font-family:Arial, Verdana, Tahoma, Helvetica, sans-serif;
    font-size:13px;
    text-align:left;
    text-decoration:none;
    outline:none; /* To remove the dotted border when active in IE */
    cursor:pointer;
}
.dpTodayLink:hover
{
	text-decoration:underline;
	cursor:pointer;
	color:#EC9742;
	outline:none;
	font-size:13px;
}

.dpHelpInfo, .dpHelpInfoEng
{
    font-family:Arial;
    font-size:13px;
    font-weight:normal;
    color:#6182C5;
    border-top:1px solid #B4C1DD;
    padding:4px;
}

.dpHelpInfo
{
    text-align:right;
}
.dpHelpInfoEng
{
    text-align:left;
}

.dpHelpInfoTitle
{
    font-family:Tahoma, Arial;
    font-size:13px;
    color:#6182C5;
    font-weight:bold;
}
.dpHelpInfoHide
{
    cursor:pointer;
}
.dpHelpInfoHide:hover
{
    cursor:pointer;
    color:#EC9742;
}
.dpHelpInfoDagesh
{
    font-size:13px; 
    /*font-weight:bold; */
    color:#5C5B5B;/*#838282;*/
}