function getCalendarStyles() { 
var result = ""; 
var p = ""; 
if (this!=null && typeof(this.cssPrefix)!="undefined" && this.cssPrefix!=null && this.cssPrefix!="") { p=this.cssPrefix; } 
result += "<STYLE>\n"; 
result += "."+p+"cpYearNavigation,."+p+"cpMonthNavigation { background-color:#325000; text-align:center; vertical-align:center; text-decoration:none; color:#000000; font-weight:bold; }\n";  
result += "."+p+"cpDayColumnHeader, ."+p+"cpYearNavigation,."+p+"cpMonthNavigation,."+p+"cpCurrentMonthDate,."+p+"cpCurrentMonthDateDisabled,."+p+"cpOtherMonthDate,."+p+"cpOtherMonthDateDisabled,."+p+"cpCurrentDate,."+p+"cpCurrentDateDisabled,."+p+"cpTodayText,."+p+"cpTodayTextDisabled,."+p+"cpText { font-family:arial; font-size:8pt; }\n"; 
result += "TD."+p+"cpDayColumnHeader { text-align:right; border:solid thin red;border-width:0px 0px 1px 0px; }\n"; 
result += "."+p+"cpCurrentMonthDate, ."+p+"cpOtherMonthDate, ."+p+"cpCurrentDate  { text-align:right; text-decoration:none;width:16; }\n";  
result += "."+p+"cpCurrentMonthDateDisabled, ."+p+"cpOtherMonthDateDisabled, ."+p+"cpCurrentDateDisabled {width:16; backgroupn:#ababab;align:center;color:#D0D0D0; text-align:right; text-decoration:line-through; }\n"; 
result += "."+p+"cpCurrentMonthDate, .cpCurrentDate { background-color:#F0FFC0; color:black;}\n"; 
result += "."+p+"cpOtherMonthDate { color:#404040; background-color:#dddddd; }\n"; 
result += "TD."+p+"cpCurrentDate { color:#red; background-color:#EBFFEB; border-width:0px; border:solid thin #800000; }\n"; 
result += "TD."+p+"cpCurrentDateDisabled { border-width:1px; border:solid thin #FFAAAA; }\n"; 
result += "TD."+p+"cpTodayText, TD."+p+"cpTodayTextDisabled { border:solid thin #C0C0C0; border-width:1px 0px 0px 0px;}\n"; 
result += "A."+p+"cpTodayText, SPAN."+p+"cpTodayTextDisabled { height:20px; }\n"; 
result += "A."+p+"cpTodayText { color:black; }\n"; 
result += "."+p+"cpTodayTextDisabled { color:#D0D0D0; }\n"; 
result += "."+p+"cpBorder { border:solid thin green; }\n"; 
result += "</STYLE>\n"; 
return result; 
} 

