﻿/* Class-based */
.AlignCenter {
	text-align: center;
}
.AlignLeft {
	text-align: left;
}
.AlignRight {
	text-align: right;
}
.Bold {
	font-weight: bold;
}
.ClearBoth {
	clear: both;
}
.FloatLeft {
	float: left;
}
.FloatRight {
	float: right;
}
.Inline {
	display: inline;
}
.Italic {
	font-style: italic;
}
.NoBorder {
	border: 0;
}
.NoMargin {
	margin: 0;
}
.NoPadding {
	padding: 0;
}
.NoWrap {
	white-space: nowrap;
}
.SpanFullHeight {
    height: 100%;
}
.SpanFullWidth {
    width: 100%;
}
.SpanQuarterWidth {
	width: 25%
}
.SpanThirdWidth {
    width: 33%;
}
.SpanHalfWidth {
    width: 50%;
}
.SpanTwoThirdsWidth {
	width: 66%;
}
.SpanThreeQuartersWidth {
	width: 75%;
}

/* Layout */
	.Clear {
		/* extends height of containing div to tallest child div */
		clear: both;
		height: 1px;
		overflow: hidden;
		margin: -1px;  /* Remove extra space created */
	}
	.HiddenFloatLeft {
		float: left;
		width: 0;
		display: inline;
	}
	.HiddenFloatRight {
		float: right;
		width: 0;
		display: inline;
	}

/* Rounded Corners (http://webdesign.about.com/od/css/a/aa072406.htm) */
	.RoundTop, .RoundBottom {
		display: block;
		width: auto;
	}
	.RoundTop *, .RoundBottom * {
		display: block;
		width: auto;
		height: 1px;
		overflow: hidden;
	}
	.RoundTop *, .RoundBottom * {
		background-color: transparent;
	}
	.r1 {
		margin: 0 3px;
	}
	.r2 {
		margin: 0 1px;
	}
	
	
/* Styles for other controls */
/* Calendar styles */

.calendar_button {
    border: none;
    cursor: pointer;
}

.picker {
    background-color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    border: 1px solid #999999;
    color: #666666;
    padding: 2px;
}
.picker2 {
    background-color: #FFFFFF;
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    border: 1px solid #999999;
    width: 173px;
    padding: 2px;
    cursor: pointer;
    vertical-align: top;
}

.calendar td {
    font-size: 11px;
    font-family: Arial, Helvetica, sans-serif;
}

.title, .title td {
    font-weight: bold;
    background-color: #9D9D9D;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}


.day, .allowedday {
    width: 25px;
    cursor: pointer;
    text-align: center;
    border-width: 1px;
    border-color: #F6F6F6;
    border-style: solid;
}

.allowedday {
    font-weight: bold;
    background-color: #ffff66;
}

.dayhover {
    width: 25px;
    cursor: pointer;
    text-align: center;
    text-decoration: underline;
    border-width: 1px;
    border-color: #F6F6F6;
    border-style: solid;
}

.dayheader {
    width: 25px;
    text-align: center;
    border-width: 1px;
    border-color: white;
    border-style: solid;
    font-weight: bold;
    background-color: #FFFFFF;
}

.othermonthday {
    color: #999999;
}

.calloutDay {
    color: #ffffff;
    background-color: #0099cc;
    border-width: 1px;
    border-color: #4B4A46;
    border-style: solid;
    font-weight: bold;
}

.calloutDayFooter {
    /*width:95px;*/
    background-color: #0099cc;
    color: #ffffff;
    border-width: 1px;
    border-color: #4B4A46;
    border-style: solid;
    font-weight: bold;
    text-align: center;
    font-size: 1.2em;
    padding: 2px 2px 2px 2px;
}

.outofrangeday {
    visibility: hidden;
}

.selectedday {
    width: 25px;
    background-color: #ebf2f8;
    color: #000000;
    border-width: 1px;
    border-color: #4B4A46;
    border-style: solid;
    font-weight: bold;
}
.selecteddayfooter {
    width: 95px;
    background-color: #ebf2f8;
    color: #000000;
    border-width: 1px;
    border-color: #4B4A46;
    border-style: solid;
    font-weight: bold;
    text-align: center;
}

.duedate {
    width: 25px;
    background-color: #F2F2B8;
    color: #000000;
    border-width: 1px;
    border-color: #4B4A46;
    border-style: solid;
    font-weight: bold;
}
.duedatefooter {
    width: 95px;
    background-color: #F2F2B8;
    color: #000000;
    border-width: 1px;
    border-color: #4B4A46;
    border-style: solid;
    font-weight: bold;
    text-align: center;
}

.calendar {
    border-style: solid;
    border-width: 1px;
    border-color: #4B4A46;
    border-collapse: collapse;
    background-color: #FFFFFF;
    cursor: default;
}

.month {
    background-color: #F6F6F6;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
}

.nextprev {
    cursor: pointer;
    height: 25px;
    vertical-align: middle;
    padding: 0px 5px 0px 5px;
}

.selector {
    width: 14px;
    cursor: pointer;
    text-align: left;
    vertical-align: middle;
    background-color: #FFFFFF;
}

.disabledday
{
	text-decoration: none; /*background-image: url(/CSS3P/images/baddate.gif);*/
	background-position: center center;
	background-repeat: no-repeat;
	cursor: default;
	background-color: #808080;
	color: #C0C0C0;
}

.CalendarFooter
{
	padding-top: 20px;
}