@import url("../css/header.css");
@import url("../css/footer.css");

/************************
 * Style Definition Guide
 *	LAYOUT:			float, clear, position, display, z-index
 *	BOX:			top, bottom, left, right, margin, padding, width, height
 *	BORDER & BG:	border, border-image, background, background-color, background-image
 *	TYPEOGRAPHY:	font, font-family, color, text-shadow, letter-spacing, text-decoration
 *	OTHER:			overflow, cursor, text-align, vertical-align, etc.
 *	SPECIALIZED:	box-shadow, border-radius, gradients, PIE, etc.
 */



/************************
 * Base Tag Definitions
 */

		body {
			margin: 0; padding: 0;
			background: url("../images/background.png") top repeat-x #f3f3f3;
			font-family : Calibri, Carlito, Arial, Helvetica, sans-serif; font-size : 14px; color : #4f4f4f;
		}

		img { border: 0; }
		form { padding: 0; margin: 0; }
		a { color: #048fc8; }
		a:hover { text-decoration: none; }
		select { border: 1px solid #aac; width: 200px; }
		input[type=text], input[type=password], textarea { font: 12px 'Arial', 'Helvetica'; background-color: #fff; color: #333; border: 1px solid #aac; padding: 2px 3px 2px 3px; width: 200px; }

		input:focus::-moz-placeholder,
		textarea:focus::-moz-placeholder { color: transparent; }
		input:focus::-webkit-input-placeholder,
		textarea:focus::-webkit-input-placeholder { color: transparent; }
		input:focus:-ms-input-placeholder,
		textarea:focus:-ms-input-placeholder { color: transparent; }

		ins { color: #393; }
		del { color: #daa; }

		.pointerCursor { cursor: pointer; }
        span.dottedUnderline { border-bottom: 1px solid #999; border-bottom-style: dotted; }
		div.truncate { white-space: nowrap; text-overflow: ellipsis; overflow: hidden;}

        ul.unstyled {
            list-style: none;
        }
        ul.spaced li {
            padding: 5px;
        }

        table.borderedHeader th {
            border-bottom: 1px solid #eee;
            border-top: 1px solid #eee;
        }

        table.borderedHeader tr.even {
            background-color: #eee;
        }
/************************
 * Page and Section Structure
 */

		div.pageSection { margin: 0 auto; width: 1000px; }

		div.overlay { position: absolute; height: 0; overflow: visible; }
		div.overlay div.left { float: left; }
		div.overlay div.right { float: right; }

		div.cleaner { height: 0; clear: both; font-size: 1px; }

		div.translucent { opacity: 0.20; filter: alpha(opacity=20); }

/************************
 * Widget: PleaseWait
 */

	#pnlModalDialogBackground {
		position: fixed; top: 0; left: 0; overflow: visible; z-index: 8999; width: 0px; height: 0px; cursor: url(../images/_core/move_nodrop.cur), auto;
		display: none;
	}
	#pnlModalDialogBackgroundMatte {
		opacity: 0.15; filter: alpha(opacity=20); background: #000 url(../images/bgTile.png); width: 4000px; height: 3000px;
	}

 	div.pnlModalView {
 		position: fixed; top: 0; margin: 0; padding: 0; z-index: 9000; background-color: #eee; width: 500px; border-width: 0 3px 3px 3px; border-color: #333; border-style: solid; border-radius: 0 0 8px 8px;
		box-shadow: 0 0 8px rgba(0,0,0, 0.75);
		-moz-box-shadow: 0 0 8px rgba(0,0,0, 0.75);
		-webkit-box-shadow: 0 0 8px rgba(0,0,0, 0.75);
		display: none;
	}

	div.pnlModalView div.titleBar { background-color: #333; color: #fff; font-weight: bold; padding: 3px 5px; cursor: move; }
 	div.pnlModalView div.content { padding: 20px 10px 4px 10px; color: #333; }
    div.pnlModalView div.closeIconWrapper { position: absolute; right: -8px; top: -8px; }
    div.pnlModalView div.closeIcon { width: 24px; height: 24px; background:url("/assets/images/dialog_close_24.png"); cursor: pointer; }

    div.pnlModalView div.closeIconWrapperSmall { position: absolute; right: 1px; top: 1px; }
    div.pnlModalView div.closeIconWrapperSmall div.closeIcon { width: 15px; height: 15px; background:url("/assets/images/dialog_close_15.png"); cursor: pointer; }

	div.pnlModalView div.content div.renderWithName { padding: 4px 0; height: 100%; clear: both; _zoom: 1; }
	div.pnlModalView div.content div.renderWithName:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
		div.pnlModalView div.content div.renderWithName div.left { float: left; width: 100px; margin-right: 25px; margin-top: 2px; font-size: 12px; }
		div.pnlModalView div.content div.renderWithName div.required { font-weight: bold; text-transform: uppercase; }
		div.pnlModalView div.content div.renderWithName div.left span.instructions { font: 10px 'Verdana', 'Arial', 'Helvetica'; color: #999; font-style: italic; text-transform: none;}

		div.pnlModalView div.content div.renderWithName div.right { float: left; }
		div.pnlModalView div.content div.renderWithName div.right span.error { display: block; margin-top: 2px; margin-bottom: 2px; font: 10px 'Verdana', 'Arial', 'Helvetica'; font-weight: bold; color: #933; }

	div.modal div.content div.renderWithNameWide div.renderWithName div.left { width: 125px; }

/************************
 * Widget: Tooltip
 */

 	.tt span.tooltip { font-weight: normal; font-size: 11px; display: none; position: absolute; padding: 5px; background-color: #ff9; z-index: 100; border: 1px solid #993; color: #440; margin-top: 5px; margin-left: 15px; }
 	.tt span.tooltip strong { color: #000; }

/************************
 * Widget: File Uploader
 */

	.fileUploader .progress > div {
		display: inline-block;
		margin-left: 5px;
	}

/************************
 * Widget: Tabbed Content
 */

		div.tabbedContent { }
		div.tabbedContent ul.tabs { list-style: none; margin: 0; padding: 0; font-size: 14px; }
		div.tabbedContent ul.tabs li {
			z-index: 1;
			position: relative;

			display: block; float: left;
			margin-left: 8px; height: 39px;
			-moz-border-radius: 5px 5px 0 0;
			-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;

			height: 30px;
			overflow: visible;

			background: none;
		}
		div.tabbedContent ul.tabs li a {
			display: block;
			color: #858585;
			font-weight: bold; text-decoration: none;
			background: none;
			border: 1px solid #cccccc;
			border-bottom: 0;
			padding: 8px 16px 13px 16px;
			-moz-border-radius: 5px 5px 0 0;
			-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;
			height: 14px;
			*background-color: #ccc;
		}

		div.tabbedContent ul.tabs li.active {
			box-shadow: 0 0 8px rgba(24, 24, 25, 0.35);
			-moz-box-shadow: 0 0 8px rgba(24, 24, 25, 0.35);
			-webkit-box-shadow: 0 0 8px rgba(24, 24, 25, 0.35);
			*border: 1px solid #ccc;
		}

		div.tabbedContent ul.tabs li.active a {
			color : #333333;
			border-color: #f9f9f9;

			background: #f9f9f9;
			background: linear-gradient(#ffffff, #f9f9f9); /* the standard */
		}

		div.tabbedContent div.content {
			padding: 10px;

			margin-top: 6px;
			background-color : #fcfcfc;

			-moz-border-radius: 5px;
			-webkit-border-radius: 5px;
			border-radius: 5px;

			box-shadow:0px 0px 8px rgba(24, 24, 25, 0.35);
			-moz-box-shadow: 0px 0px 8px rgba(24, 24, 25, 0.35);
			-webkit-box-shadow: 0px 0px 8px rgba(24, 24, 25, 0.35);
			*border: 1px solid #ccc;

		}

		div.tabbedContent div.content div.innerContent { }

		div.tabbedContent div.content div.innerContent h4.section { background-color: #249; color: #fff; padding: 5px; margin: 0px 0px 5px 0px; }

		div.tabbedContent div.content div.innerContent h4.section div.left { float: left; }
		div.tabbedContent div.content div.innerContent h4.section div.right { float: right; }
		div.tabbedContent div.content div.innerContent h4.section div.link { font-size: 10px; margin-top: 2px;}
		div.tabbedContent div.content div.innerContent h4.section div.link a { color: #fff; font-weight: normal; }


/************************
 * Widget: Left/Right Arrows
 */

		a.leftArrow {
			background : url(../images/icons/pullhor.png) left top no-repeat;
			width : 15px;
			height : 15px;
			display : inline-block;
			margin-right : 7px;
			margin-bottom : -3px;
		}
		a.rightArrow {
			background : url(../images/icons/pullhor.png) -15px top no-repeat;
			width : 15px;
			height : 15px;
			display : inline-block;
			margin-left : 7px;
			margin-bottom : -3px;
		}

		span.downArrow {
			background : url(../images/icons/arrowdown.png) left top no-repeat;
			width : 8px;
			height : 5px;
			display : inline-block;
			margin-left : 7px;
			margin-bottom : 1px;
			*margin-bottom: 4px;
		}

		span.upArrow {
			background : url(../images/icons/arrowdown.png) left bottom no-repeat;
			width : 8px;
			height : 5px;
			display : inline-block;
			margin-left : 7px;
			margin-bottom : 1px;
			*margin-bottom: 4px;
		}

		a.pulldown {
			background : url(../images/icons/pulldown.png) left top no-repeat;
			width : 15px;
			height : 15px;
			display : inline-block;
			margin-bottom : -2px;
			margin-left : 5px;
		}


/***************************
 * Widget: Modal Pop Up (e.g. DialogBox)
 */

		div.modal {
		}

		div.modal div.window {
			border: 1px solid #bbb;
			background-color: #fff;
			width: 970px;
		}

		div.modal div.window div.content {
			overflow: auto;
		}

		div.modal div.renderWithName { padding: 4px 0; height: 100%; clear: both; _zoom: 1; }
		div.modal div.renderWithName:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
			div.modal div.renderWithName div.left { float: left; width: 90px; margin-right: 25px; margin-top: 2px;}
			div.modal div.renderWithName div.required { font-weight: bold; text-transform: uppercase; }
			div.modal div.renderWithName div.left span.instructions { font: 10px 'Verdana', 'Arial', 'Helvetica'; color: #999; font-style: italic; text-transform: none;}

			div.modal div.renderWithName div.right { float: left; }
			div.modal div.renderWithName div.right span.error { display: block; margin-top: 2px; margin-bottom: 2px; font: 10px 'Verdana', 'Arial', 'Helvetica'; font-weight: bold; color: #933; }

/***************************
 * Widget: Nonmodal Pop Up
 */

		div.nonmodal {
			position: relative;
			width: 0; height: 0;
			zoom: 1;
			z-index: 10;
		}

		div.nonmodal div.window {
			position: absolute;
			z-index: 10;
			border: 1px solid #bbb;
			background-color: #fff;
			min-width: 250px;
		}

		div.nonmodal div.renderWithName { padding: 4px 0; height: 100%; clear: both; _zoom: 1; }
		div.nonmodal div.renderWithName:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
			div.nonmodal div.renderWithName div.left { float: left; width: 80px; margin-right: 25px; margin-top: 2px;}
			div.nonmodal div.renderWithName div.required { font-weight: bold; text-transform: uppercase; }
			div.nonmodal div.renderWithName div.left span.instructions { font: 10px 'Verdana', 'Arial', 'Helvetica'; color: #999; font-style: italic; text-transform: none;}

			div.nonmodal div.renderWithName div.right { float: left; }
			div.nonmodal div.renderWithName div.right span.error { display: block; margin-top: 2px; margin-bottom: 2px; font: 10px 'Verdana', 'Arial', 'Helvetica'; font-weight: bold; color: #933; }

/***************************
 * Widget: Items shared with Nonmodal AND Modal Pop Ups
 */

		div.popup div.window div.titleBar {
			background-color: #ebf3ff;
			-moz-border-radius: 5px 5px 0 0;
			-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;
		}

		div.popup div.window div.titleBar div.title {
			font-weight: bold;
			font-size: 13px;
			padding: 6px 8px 0 8px;
			float: left;
		}

		div.popup div.window div.titleBar div.control {
			padding: 5px 8px 5px 8px;
			float: right;
		}

		div.popup div.window div.titleBar div.control a {
			display: block;
			background: url("../images/icon_close.png");
			width: 17px; height: 16px;
		}

		div.popup div.window div.content { }

		div.popup div.window div.content div.noScroll { }
		div.popup div.window div.content div.scroll { overflow: auto; overflow-x: hidden; overflow-y: auto; }

		div.popup div.window div.content div.snug {
			padding: 0;
			font-size: 12px;
			border-top: 1px solid #ccc;
		}

		div.popup div.window div.content div.padded {
			padding: 8px;
			font-size: 12px;
			border-top: 1px solid #ccc;
		}

		div.popup div.window div.content div.padded div.columns {
			border-left: 1px solid #ccc;
			padding: 5px;
			float: left;
			background-color: #f0f0f0;
		}

		div.popup div.window div.content div.padded div.columns:hover {
			background-color: #fff;
		}

		div.popup div.window div.content div.padded div.columns h3 {
			padding: 0; margin: 0; margin-bottom: 8px;
		}

		div.popup div.window div.content div.form {
			padding: 8px;
			font-size: 12px;
			border-top: 1px solid #ccc;
			background-color: #ebf3ff;
		}

		div.popup div.window div.pointerLeft {
			background: url("../images/pointerleft.png") top;
			width: 11px;
			height: 16px;
			position: absolute;
			z-index: 11;
			top: 40px;
			left: -11px;
		}

		div.popup div.window div.pointerRight {
			background: url("../images/pointerleft.png") bottom;
			width: 11px;
			height: 16px;
			position: absolute;
			z-index: 11;
			top: 40px;
			left: -11px;
		}

		div.popup div.window div.pointerTop {
			background: url("../images/pointertop.png");
			width: 18px;
			height: 10px;
			position: absolute;
			z-index: 11;
			top: -10px;
			left: 50px;
		}

		div.popup div.window div.content table {
			border-right : 1px solid #d9d9d9;
			border-bottom : 1px solid #d9d9d9;
		}

		div.popup div.window div.content table tr {
		}

		div.popup div.window div.content table tr th {
			border-top : 1px solid #d9d9d9;
			border-left : 1px solid #d9d9d9;
			padding: 1px 3px 1px 3px;
			font-weight: bold;
		}

		div.popup div.window div.content table tr td {
			border-top : 1px solid #d9d9d9;
			border-left : 1px solid #d9d9d9;
			padding: 3px 3px 3px 3px;
			vertical-align: top;
		}

		div.popup div.window div.content div.renderWithName div.right table {
			border-right: none;
			border-bottom: none;
		}

		div.popup div.window div.content div.renderWithName div.right table tr td {
			border-top: none;
			border-left: none;
			padding: none;
			vertical-align: middle;
		}

		div.popup div.window div.content table tr.alternate td {
			background-color: #f4f8ff;
		}

		div.popup div.window div.content table.noborder { border: 0 }
		div.popup div.window div.content table.noborder tr th { border: 0 }
		div.popup div.window div.content table.noborder tr td { border: 0 }

		div.popup div.window div.content table caption, div.popup div.window div.content table tfoot { padding-bottom: 4px; overflow: auto; }
			div.popup div.window div.content table caption span.left { float: left; font-size: 10px; display: block; }
				div.popup div.window div.snug table caption span.left { padding-left: 5px; margin-top: 5px; }
			div.popup div.window div.content table caption span.right { float: right; font-size: 10px; display: block; }
				div.popup div.window div.snug table caption span.right { padding-right: 5px; margin-top: 5px; }
div.popup div.window div.content table tfoot { border-top: 1px solid #aaf;}

/***************************
 * Widget: View Content Dialog
 */

	div.viewContentDialog { background-color: #fff; border: 4px solid #000; padding: 0; overflow: auto; width: 800px; height: 500px; font-size: 11px; }
	div.viewContentDialog pre { padding: 10px; margin: 0; }
	div.viewContentDialog code { }

/***************************
 * Widget: DataGrid Paginator
 */

		/* QDataGrid */
		table.datagrid { border: 1px solid #aaf; }
			table.datagrid caption, table.datagrid tfoot { padding-bottom: 4px; overflow: auto; }
				table.datagrid span.left { float: left; font-size: 10px; display: block; }
				table.datagrid span.right { float: right; font-size: 10px; display: block; }
			table.datagrid tr { background-color: #fff; }
				table.datagrid tr.alternate { background-color: #eef; }
			table.datagrid th { background-color: #aaf; padding: 3px 5px 3px 5px; text-align: left; }
				table.datagrid th a { color: #000; text-decoration: none; }
				table.datagrid th a:hover { color: #000; text-decoration: underline;}
			table.datagrid td { padding: 5px; }
				table.datagrid td a { color: #000; }
				table.datagrid td a:hover { color: #000; text-decoration: none; }
			table.datagrid tfoot { border-top: 1px solid #aaf;}


		span.paginator { margin: 0; padding: 0; }
			span.paginator span { list-style-type:none; display: inline; padding: 0; margin: 0; }
				span.paginator span.page a { text-decoration: none; color: #000000; padding: 0 3px 0 3px; margin: 0 2px 0 2px;}
				span.paginator span.page a:hover { background-color: #ccf; }
				span.paginator span.arrow { font-weight: bold; color: #ccc; margin: 0; padding: 0 3px 0 3px; }
				span.paginator span.arrow a { font-weight: bold; color: #000; text-decoration: none; }
				span.paginator span.selected { font-weight: bold; background-color: #ccf; padding: 0 3px 0 3px; margin: 0 2px 0 2px; border: 1px; border-style: solid; }
				span.paginator span.break { color: #666; margin: 0 5px 0 5px; }
				span.paginator span.ellipsis { color: #666; }


/**************************
 * Widget Set: Button Bar, Buttons, Button Icons, Coloring
 */

	a.roundedButton {
		font-family: verdana, arial, helvetica, sans-serif;
		font-size: 10px; font-weight: bold;
		display: inline-block;
		text-align: center;
		padding: 4px 18px;
		border: 1px solid #ccc;
		background: #c6c6c6; /* For browsers that do not support gradients */
	    background: linear-gradient(#fff, #c6c6c6); /* Standard syntax */
		color: #444;
		text-decoration: none;
		-moz-border-radius: 7px; border-radius: 7px; -webkit-border-radius: 7px;
	}
	a.roundedButton:hover {
		color: #28c;
		border-color: #28c;
		background-image: none;
		background-color: #fff;
	}

	div.buttonSet { clear: both; text-align: right; margin-top: 6px; font-size: 12px; color: #999;}
	div.buttonSet div.left { float: left; text-align: left; }
	div.buttonSet div.left a { margin-left: 0; }
	div.buttonSet div.right { float: right; text-align: right; }
	div.buttonSet div.pleaseWait { display: none; }

	div.buttonSet a.submit {
		font-family: verdana, arial, helvetica, sans-serif;
		font-size: 10px; font-weight: bold;
		display: inline-block;
		padding: 4px 18px;
		border: 1px solid #ccc;
		background: #c6c6c6; /* For browsers that do not support gradients */
	    background: linear-gradient(#fff, #c6c6c6); /* Standard syntax */
		color: #346;
		margin-left: 15px;
		text-decoration: none;
		-moz-border-radius: 7px; border-radius: 7px; -webkit-border-radius: 7px;
	}
	div.buttonSet a.submit:hover {
		color: #28c;
		border-color: #28c;
		background-image: none;
		background-color: #fff;
	}

	div.buttonSet a.cancel {
		display: inline-block;
		color: #666;
		padding-top: 10px;
	}

		div.buttonBar { clear: both; text-align: right; margin-top: 6px; }
		div.buttonBar div.left { float: left; }
		div.buttonBar a,
        a.buttonMutedBlue,
        input.buttonMutedBlue{
			font-family: verdana, arial, helvetica, sans-serif;
			font-size: 10px; font-weight: bold;
			display: inline-block;
			padding: 4px 18px;
			border: 1px solid #ccc;
			background-color: #f0f0f0;
			color: #666;
			margin-left: 15px;
			text-decoration: none;
		}
		div.buttonBar div.left a { margin-left: 0; margin-right: 15px; }

		div.buttonBar a:hover {
			background-color: #fff;
			color: #048fc8;
			border-color: #048fc8;
		}

		div.buttonBar a div.iconShipped {
			background : url(../images/icon_shipped.png) left top no-repeat;
			width : 16px;
			height : 16px;
			display : inline-block;
			position: relative; margin-left: -5px;
			margin-right : 5px;
			margin-bottom : -1px;

			*zoom: 1; *display: inline; *margin-left: 0;
		}

		div.buttonBar a div.iconCancel {
			background : url(../images/icon_cancel.png) left top no-repeat;
			width : 10px;
			height : 10px;
			display : inline-block;
			position: relative; margin-left: -5px;
			margin-right : 5px;
			margin-bottom : -1px;

			*zoom: 1; *display: inline; *margin-left: 0;
		}

		div.buttonBar a div.iconMove {
			background : url(../images/icon_move.png) left top no-repeat;
			width : 10px;
			height : 10px;
			display : inline-block;
			position: relative; margin-left: -5px;
			margin-right : 5px;
			margin-bottom : -1px;

			*zoom: 1; *display: inline; *margin-left: 0;
		}

		div.buttonBar a div.iconStepBack {
			background: url(../images/icon_step_back.png) no-repeat;
			width: 19px;
			height: 14px;
			display: inline-block;
			position: relative; margin-right: 4px; top: 2px;
			*zoom: 1; *display: inline; *position: static;
		}

		div.buttonBar a div.iconStepNext {
			background: url(../images/icon_step_next.png) no-repeat;
			width: 19px;
			height: 14px;
			display: inline-block;
			position: relative; margin-left: 0; top: 2px;
			*zoom: 1; *display: inline; *position: static;
		}

		div.buttonBar a div.iconCart {
			background : url(../images/icon_cart.png) left top no-repeat;
			width : 14px;
			height : 14px;
			display : inline-block;
			position: relative; margin-left: -5px;
			margin-right : 5px;
			margin-bottom : -1px;

			*zoom: 1; *display: inline; *margin-left: 0;
		}

		div.buttonBar a div.iconPrint {
			background: url(../images/icon_print.png) no-repeat;
			width: 14px;
			height: 14px;
			display: inline-block;
			position: relative; margin-right: 4px; top: 2px;
			*zoom: 1; *display: inline; *position: static;
		}


		div.buttonBar a div.iconReturn {
			background: url(../images/icon_return.png) left top no-repeat;
			width: 16px;
			height: 14px;
			display: inline-block;
			position: relative; margin-right: 4px; top: 2px;
			*zoom: 1; *display: inline; *position: static;
		}

		div.buttonBar a div.iconCheck {

			background: url(../images/icon_confirm.png) left top no-repeat;
			width: 16px;
			height: 14px;
			display: inline-block;
			position: relative; margin-right: 4px; top: 2px;
			margin-left: -5px;
			margin-bottom : -1px;
			*zoom: 1; *display: inline; *position: static;
		}

		div.buttonBar a.red {
			border-color: #b19494;
			color: #9a6868;
		}

		div.buttonBar a.green {
			border-color: #6bad50;
			color: #6bad50;
		}

		div.buttonBar a.reverseRed {
			border-color: #9a6868;
			background-color: #9a6868;
			color: #fff;
		}

		div.buttonBar a.reverseRed:hover {
			background-color: #b19494;
		}

		div.buttonBar a.reverseGreen {
			border-color: #6bad50;
			background-color: #6bad50;
			color: #fff;
		}
		div.buttonBar a.reverseGreen:hover {
			border-color: #6bad50;
			background-color: #99cc88;
			color: #fff;
		}

		div.buttonBar a.mutedBlue,
        a.buttonMutedBlue,
        input.buttonMutedBlue{
			border-color: #aab3c6;
			color: #808ca6;
		}

        a.buttonMutedBlue,
        input.buttonMutedBlue{
            cursor: pointer;
        }

		div.buttonBar a.larger {
			font-size: 14px; height: 18px;
		}

		div.buttonBar a.disabled { cursor: text; color: #ccc; border-color: #ccc}
		div.buttonBar a.disabled:hover {  cursor: text; color: #ccc; border-color: #ccc; background-color: #f0f0f0; }


/**************************
 * Widget: Calendar
 */

	div.calendar { width: 200px; border: 1px solid #337; background-color: #ccf; *position: relative; *margin-left: -200px; *margin-top: 30px; }
		div.calendar div.navigator { background-color: #337; overflow: auto; _height: 100%; color: #fff; padding: 2px 6px 2px 6px; }
		div.calendar div.navigator div.left { float: left !important; width: auto !important; margin: 0 !important; }
		div.calendar div.navigator div.month { float: left; width: 80px; text-align: center; font-weight: bold; font-size: 11px; }
		div.calendar div.navigator div.year { float: right; }
		div.calendar div.navigator div.year span { font-size: 11px; font-weight: bold; margin-left: 6px; margin-right: 6px; }
			div.calendar div.navigator a { color: #fff; text-decoration: none; }
			div.calendar div.navigator a:hover { text-decoration: underline; }
		div.calendar table { border: 0 !important; margin-left: auto !important; margin-right: auto !important;}
			div.calendar th { text-align: center !important; border: 0 !important; padding: 4px 2px 4px 2px !important; font-weight: bold !important; font-size: 10px !important;}
			div.calendar td { text-align: center !important; border-width: 0 0 1px 0 !important; border-style: solid !important; border-color: black !important; padding: 0 !important;}
				div.calendar td.lastRow { border-width: 0 !important;}
				div.calendar td a { text-decoration: none !important; color: #000 !important; display: block !important; padding: 2px 6px 2px 6px !important; }
				div.calendar td.today { background-color: #bbd !important; }
				div.calendar td.nonMonth a { color: #aaf !important; }
				div.calendar td.selected { background-color: #c9a !important; font-weight: bold !important; }
				div.calendar td a:hover { background-color: #eef !important; color: #000 !important; }
		div.calendar div.options { text-align: center !important; background-color: #337 !important; }
			div.calendar div.options a { color: #fff !important; font-size: 10px !important; text-decoration: none !important;}
			div.calendar div.options a:hover { text-decoration: underline !important; }


/**************************
 * Widget: Filter Bar
 */

	ul.filterBar { list-style: none; padding: 10px; margin: 0; border: 1px solid #ccc; background-color: #eee; }
	ul.filterBar li { display: inline-block; margin-right: 20px; }
	ul.filterBar li label { font-size: 11px; font-weight: bold; color: #000; }


/************************
 * Widget: DateRange
 */
 	ul.dateRangeControl { list-style: none; padding: 0; margin: 0; }
 	ul.dateRangeControl li { display: inline-block; padding: 0; margin: 0; *display: inline;}

 	ul.dateRangeControl li.label { font-size: 10px; font-family: arial; margin-left: 8px; margin-right: 5px; vertical-align: middle;}
 	ul.dateRangeControl li.cal { margin-left: 2px; }
    ul.dateRangeControl li.cal span {vertical-align: top;}
    ul.dateRangeControl li.cal .calendar { z-index: 20 !important; }
 	ul.dateRangeControl li.cal img { position: relative; top: 5px; }


	ul.dateRangeControl li select { width: 95px; }
	ul.dateRangeControl li input[type=text] { width: 58px; font-size: 11px; padding-left: 0px; padding-right: 0px; }


/************************
 * Specialized Style Classes
 */

		.gradient {
			/* top-to-bottom, from white #fcfcfc to light grey #dbdbdb */
			background: #eaeaea;
		    background: linear-gradient(#dbdbdb, #fcfcfc); /* the standard */
		    -pie-background: linear-gradient(#fcfcfc, #dbdbdb);

			*position: relative;
			*zoom: 1;
		}

		.rounded {
			-moz-border-radius: 5px;
			-webkit-border-radius: 5px;
			border-radius: 5px;
		}

		.shadow {
			-webkit-box-shadow: 0 0 10px rgba(128,128,128,0.75);
			-moz-box-shadow: 0 0 10px rgba(128,128,128,0.75);
			box-shadow: 0 0 10px rgba(128,128,128,0.75);
			*border: 1px solid #ccc;
		}

		.innerShadow {
			-webkit-box-shadow: inset 0 0 5px rgba(128,128,128,0.75);
			-moz-box-shadow: inset 0 0 5px rgba(128,128,128,0.75);
			box-shadow: inset 0 0 5px rgba(128,128,128,0.75);
		}

		.noPie {
			behavior: none;
		}


/************************
 * Structure for "Main" Content
 */

		#main {
			margin-top: 8px;
		}

		#main div.defaultContent {
			background-color : #fcfcfc;
			min-width : 968px;
			max-width: 100%;
			padding : 15px 15px 15px 15px;
			border : 1px solid #cecece;
		}

		#main div.defaultContentLessHorizontalPadding {
			padding: 15px 13px;
			width: 972px;
		}

		#main div.roundedTop {
			-moz-border-radius: 5px 5px 0 0;
			-webkit-border-radius: 5px 5px 0 0;
			border-radius: 5px 5px 0 0;
		}

		#main div.roundedBottom {
			-moz-border-radius: 0 0 5px 5px;
			-webkit-border-radius: 0 0 5px 5px;
			border-radius: 0 0 5px 5px;
		}

		#main div.greySection {
			background-color : #e2e2e2;
			border-top: 1px solid #f7f7f7;
			border-bottom: 0;
		}


/************************
 * RenderWithName for DefaultContent
 */

		div.defaultContent div.renderWithName { padding: 4px 0; height: 100%; clear: both; _zoom: 1; }
		div.defaultContent div.renderWithName:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
			div.defaultContent div.renderWithName div.left { float: left; width: 90px; margin-right: 25px; margin-top: 2px;}
			div.defaultContent div.renderWithName div.required { font-weight: bold; text-transform: uppercase; }
			div.defaultContent div.renderWithName div.left span.instructions { font: 10px 'Verdana', 'Arial', 'Helvetica'; color: #999; font-style: italic; text-transform: none;}

			div.defaultContent div.renderWithName div.right { float: left; }
			div.defaultContent div.renderWithName div.right span.error { display: block; margin-top: 2px; margin-bottom: 2px; font: 10px 'Verdana', 'Arial', 'Helvetica'; font-weight: bold; color: #933; }
			div.defaultContent div.renderWithName div.right span.instructions { font: 10px 'Verdana', 'Arial', 'Helvetica'; color: #999; font-style: italic; text-transform: none;}


		div.wideRenderWithName div.renderWithName div.left { float: left; width: 200px; margin-right: 25px; margin-top: 2px;}

/************************
 * Page-Specific Content: Main Index/Home Page
 */

		body.home {
			background: url("../images/background_home.jpg") top repeat-x #f3f3f3;
		}

		.staffWarning {
			background-color: #fbb;
			border-style: solid;
			border-color: #933;
			border-width: 0 0 1px 0;
			font-size: 10px;
			text-align: center;
			margin-bottom: 10px;
			padding: 5px;
			position: fixed;
			opacity: 0.5;
			right: 0;
			top: 0;
		}

		.staffWarning #staffWarningDefault { display: inline; }
		.staffWarning #staffWarningHover { display: none; }

		.staffWarning:hover { opacity: 1.0; }
		.staffWarning:hover #staffWarningDefault { display: none; }
		.staffWarning:hover #staffWarningHover { display: inline; }

		#homeBanner {
			height : 318x;
			overflow: hidden;
		}

		#homeBannerShadow {
			height: 39px;
			background : url("../images/home_banner/bottom.png");
			margin-bottom: 20px;
		}

		#homeBanner #imagePanel {
			height: 318px;
		}

		#homeBanner #imagePanel img {
			width: 1000px;
			height: 318px;
		}

		#homeBanner #imagePanelSelector {
			list-style: none;
			margin: 0;
			padding: 0;
			position: absolute;
			margin-top: -22px;
			margin-left: 30px;
		}

		#homeBanner #imagePanelSelector li {
			display: block;
			float: left;
			margin-right: 8px;
			width: 7px;
			height: 7px;
			background-color: #fff;
			cursor: pointer;
		}

		#homeBanner #imagePanelSelector li.selected {
			background-color: #019ad4;
		}

		#homeBanner .arrow {
			width: 40px;
			height: 40px;
			position: absolute;
			margin-top: -175px;
			cursor: pointer;
		}

		#homeBanner #arrowLeft {
			background: url("../images/home_banner/arrow_left.png");
			margin-left: -20px;
		}

		#homeBanner #arrowRight {
			background: url("../images/home_banner/arrow_right.png");
			margin-left: 980px;
		}

		body.home div.threeColumnPanel {
			width: 305px;
			float: left;
			background : url("../images/home_panel_shadow_wide.png") bottom no-repeat;
			padding-bottom : 17px;
			margin-right: 40px;
		}

		body.home div.threeColumnPanel div.panelContent {
			width: 275px;
			background: #fff;
			border: 1px solid #e3e3e3;
			padding: 15px;
			font-size: 14px;
		}

		body.home div.threeColumnPanel div.panelContent h2 {
			margin: 0 0 10px 0;
			font-family : Calibri, Arial, Helvetica, sans-serif;
			color : #696969;
			font-weight: bold;
		}

		body.home div.threeColumnPanel div.panelContent p {
			line-height: 18px;
			margin: 10px 0;
		}

		body.home div.threeColumnPanel div.panelContent p.more {
			margin-top: 15px;
			margin-bottom: 5px;
		}

		body.home div.threeColumnPanel div.panelContent p.more a {
			width: 168px;
			height: 29px;
			text-align: center;
			line-height: 29px;
			color : #000;
			font-weight: bold;
			display: block;
			text-decoration : none;
			margin : 0 auto;

			-webkit-box-shadow: 0 0 4px 2px #38a6d0;
			-moz-box-shadow: 0 0 4px 2px #38a6d0;
			box-shadow: 0 0 4px 2px #38a6d0;

			-moz-border-radius: 25px;
			-webkit-border-radius: 25px;
			border-radius: 25px;
		}

		body.home div.threeColumnPanel div.panelContent p.more a:hover {
			color: #38a6d0;
		}

		body.home div.login {
			width : 176px;
			height : 86px;
			float : left;
			background : url(../images/home_login.png) left top no-repeat;
			padding-left : 107px;
			padding-top : 48px;
			padding-right : 10px;
			color : #a3a2a2;
			font-size : 13px;
		}
		body.home div.login a {
			color : #a3a2a2;
			font-size : 14px;
			text-decoration : underline;
			text-transform : capitalize;
			font-weight : 700;
			margin-top : 7px;
		}
		body.home div.login a:hover {
			text-decoration : none;
		}
		body.home div.welcome {
			width : 650px;
			float : right;
			margin-right : 10px;
		}
		body.home div.welcome h2 {
			width : 650px;
			float : left;
			font-family : Calibri, Arial, Helvetica, sans-serif;
			color : #696969;
			text-align : left;
			font-weight : 700;
			border-bottom : 1px solid #d9d9d9;
			padding-bottom : 6px;
			margin : 0;
		}
		body.home div.welcome p {
			width : 600px;
			float : left;
			margin : 10px 0;
		}



/************************
 * Widget: Static Content
 */

div.staticContent { }
div.staticContent h2 { margin: 0; margin-bottom: 18px; }
div.staticContent p { margin: 0; margin-bottom: 18px; }
div.staticContent div.separator { border-top: 1px solid #ccc; margin-bottom: 18px; }
div.staticContent a { font-weight: bold; text-decoration: none; }
div.staticContent a:hover { text-decoration: underline; }

div.staticContent ul.labelContentItems { list-style: none; padding: 0; margin: 0; }
div.staticContent ul.labelContentItems li.item { clear: both; padding-bottom: 12px; }
div.staticContent ul.labelContentItems li.item label { float: left; width: 160px; }
div.staticContent ul.labelContentItems li.item div.content { float: left; }

/************************
 * Page-Specific Content: About Us Section(s)
 */

div.aboutUsSwitcher { float: left; width: 200px; border: 1px solid #ccc; margin-bottom: 100px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 0 0 10px rgba(128,128,128,0.75);
	-moz-box-shadow: 0 0 10px rgba(128,128,128,0.75);
	box-shadow: 0 0 10px rgba(128,128,128,0.75);

	zoom: 1;
	background-color: #fff;
}

div.aboutUsSwitcher ul.switcher { list-style: none; padding: 0; margin: 0; }

div.aboutUsSwitcher ul.switcher li { padding: 8px; }

div.aboutUsSwitcher ul.switcher li a { display: block; padding: 8px; border: 1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	background-color: #f3f3f3;
	text-decoration: none;
	color: #000;
	font-family: arial, helvetica, sans-serif;
	font-size: 13px;
}

div.aboutUsSwitcher ul.switcher li a:hover, div.aboutUsSwitcher ul.switcher li.active a {
	width: 200px; background-color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-align: right;

	-webkit-box-shadow: 0 0 10px rgba(128,128,128,0.75);
	-moz-box-shadow: 0 0 10px rgba(128,128,128,0.75);
	box-shadow: 0 0 10px rgba(128,128,128,0.75);
}

div.aboutUsContent { float: left; width: 700px; margin-left: 50px; }







div.tour { width: 970px; overflow: hidden; zoom: 1; background-color: #fff;}
div.tour div.tourContent { }
div.tour div.tourContent div.page { float: left; width: 890px; padding: 40px; color: #000;}

div.tour div.tourContent div.page div.title { font-size: 18px; margin-bottom: 4px;}
div.tour div.tourContent div.page div.subtitle { margin-bottom: 12px; }
div.tour div.tourContent div.page div.content { clear: both; border-top: 1px solid #ccc; padding-top: 12px; height: 500px; }
div.tour div.tourContent div.page div.content div.verbiage { float: left; width: 300px; padding-top: 150px; }
div.tour div.tourContent div.page div.content div.screenshot { float: right; width: 500px;}
div.tour div.tourContent div.page div.content div.screenshot img { width: 500px; }

div.tour div.tourContent div.page div.buttonBar a { font-size: 12px; color: #333; padding-bottom: 6px; }
div.tour div.tourContent div.page div.buttonBar a:hover { text-decoration: none; }





div.registration { border: 1px solid #ccc; }
div.registration div.titleBar {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0 ;
}
div.registration div.titleBar ul.steps { list-style: none; padding: 0; margin: 0; margin-left: 25px; border-bottom: 1px solid #ccc; }
div.registration div.titleBar ul.steps li { float: left; padding: 10px 30px;}
div.registration div.titleBar ul.steps li.active { background-color: #fff; font-weight: bold; color: #000; text-transform: uppercase; }
div.registration div.content { width: 966px; margin: 0; padding: 0; overflow: hidden; zoom: 1; background-color: #fff;}
div.registration div.content div.steps { width: 2898px; }
div.registration div.content div.steps div.step { float: left; padding: 20px 50px; width: 866px; }
div.registration div.content div.steps div.step h2 { margin: 0; }
div.registration div.content div.steps div.step div.subtitle { margin-bottom: 20px; }
div.registration div.content div.steps div.step div.seperator { border-top: 1px solid #ccc; margin-bottom: 20px; }
div.registration div.content div.steps div.step div.form { float: left; width: 433px; }
div.registration div.content div.steps div.step div.form div.renderWithName div.left { width: 170px; }

div.registration div.content div.steps div.step div.form div.renderWithName div.right span.error { display: block; width: 220px; }

div.registration div.content div.steps div.step div.mainContent { min-height: 400px; }


.folders {
    background: url('/assets/images/icons/folders.png') no-repeat top left;
}

.folderContainer {
    clear: both;
}


.folders.plus{
    background: url('/assets/images/treenav_not_expanded.png');
    width: 11px;
    height: 11px;
}
/*.folders.plus{ background-position: 0 0; width: 16px; height: 16px; }*/
.folders.open{ background-position: 0 -132px; width: 24px; height: 24px; }
.folders.minus{
    background: url('/assets/images/treenav_expanded.png');
    width: 11px;
    height: 11px;
}
/*.folders.minus{ background-position: 0 -66px; width: 16px; height: 16px; }*/
.folders.closed{ background-position: 0 -206px; width: 24px; height: 24px; }
.folders.cancel{ background-position: 0 -280px; width: 16px; height: 16px; }
.folders.search{ background-position: 0 -346px; width: 24px; height: 24px; }
.folders.refresh{ background-position: 0 -420px; width: 8px; height: 10px; }
.folders.folderYellow{ background-position: 0 -480px; width: 10px; height: 10px; }







#chatBar { width: 96%; margin: 0 auto; box-sizing: border-box; }
#chatBar div, #chatBar li, #chatBar input, #chatBar button { box-sizing: border-box; }

div#chatBarBar { width: 96%; position: fixed; bottom: 0; height: 30px; background-color: #ebeef4; border: 1px solid #bac0cd; border-bottom: none; font-size: 12px; }
	ul#chatBarButtons { list-style: none; margin: 0; padding: 0; }
	ul#chatBarButtons li.chatBarLogin { width: 150px; float: right; display: block; height: 30px; }
	ul#chatBarButtons li#chatBarLoginList { width: 200px; }

	ul#chatBarButtons li.chatBarLogin div.label { padding-top: 7px; font-weight: bold; border-left: 1px solid #bac0cd; *height: 23px; }
	ul#chatBarButtons li.chatBarLogin:HOVER div.label { cursor: pointer; background-color: #fff; }
	ul#chatBarButtons li.active div.label { background-color: #fff; }
		ul#chatBarButtons li.chatBarLogin div.label div.left { float: left; padding-left: 7px; padding-bottom: 7px; }
		ul#chatBarButtons li.chatBarLogin div.label div.left div.unviewed { color: #fff; font-size: 10px; display: inline-block; font-weight: bold; background-color: #933; margin-left: 5px; padding: 1px 4px; border-radius: 5px; }
		ul#chatBarButtons li.chatBarLogin div.label div.right { float: right; padding-right: 3px; }
		ul#chatBarButtons li.chatBarLogin div.label div.right a { display: inline-block; width: 16px; height: 16px; text-align: center; text-decoration: none; color: #ccc; font-weight: normal; }

	ul#chatBarButtons li.chatBarLogin div.window { width: 251px; position: fixed; bottom: 30px; background-color: #fff; margin-left: -100px; z-index: 3; }
		ul#chatBarButtons li#chatBarLoginList div.window { margin-left: 0; width: 201px; }

	ul#chatBarButtons li.chatBarLogin div.toBack { z-index: 2; }
	ul#chatBarButtons li.chatBarLogin div.toBack div.title { background-color: #aaa !important; }
	ul#chatBarButtons li.chatBarLogin div.toBack div.content { background-color: #ccc; }

	ul#chatBarButtons li.chatBarLogin div.window div.title { background-color: #6d84b4; color: #fff; padding: 3px 0px 0px 0px ; border: 1px solid #3c5998; border-bottom: none; font-weight: bold; }
		ul#chatBarButtons li.chatBarLogin div.window div.title div.left { float: left; padding-left: 7px; padding-bottom: 3px; }
		ul#chatBarButtons li.chatBarLogin div.window div.title div.right { float: right; padding-right: 3px; }
			ul#chatBarButtons li.chatBarLogin div.window div.title div.right a { display: inline-block; width: 16px; height: 16px; text-align: center; text-decoration: none; color: #fff; font-weight: normal; }
			ul#chatBarButtons li.chatBarLogin div.window div.title div.right a.attach { margin-right: 4px; }
			ul#chatBarButtons li.chatBarLogin div.window div.title div.right a.minimize { margin-right: 4px; }
			ul#chatBarButtons li.chatBarLogin div.window div.title div.right a.close { }
			ul#chatBarButtons li.chatBarLogin div.window div.title div.right a:HOVER { color: #3d4474; }

	ul#chatBarButtons li.chatBarLogin div.window div.content { height: 200px; overflow: auto; border: 1px solid #aaa; border-width: 0 1px; }
	ul#chatBarButtons li#chatBarLoginList div.window div.content { max-height: 250px; height: auto; }

	ul#chatBarButtons li.chatBarLogin ul { list-style: none; margin: 0; padding: 0; }
	ul#chatBarButtons li.chatBarLogin ul li { display: block; }

		li#chatBarLoginList ul li.organization { padding: 2px 7px; background-color: #f0f0f0; font-weight: bold; color: #666; border-top: 1px solid #ddd; }
		li#chatBarLoginList ul li.person { padding: 5px 7px 5px 22px; }
		li#chatBarLoginList ul li.person:HOVER { background-color: #e0e4ee; cursor: pointer; }
		li#chatBarLoginList ul li.online { font-weight: bold; color: #000; background-image: url(../images/chat_online.png); background-repeat: no-repeat; background-position: right; }
		li#chatBarLoginList ul li.offline { color: #666; }

		ul.messageList li { clear: both; margin-bottom: 5px; *zoom: 1; }

		ul.messageList li.topSpace { margin-top: 15px; }
		ul.messageList li.you { padding: 0 5px; }
		ul.messageList li.me { padding: 0 5px; }
		ul.messageList li div.icon { width: 32px; height: 1px; float: left; overflow: visible; }
		ul.messageList li div.icon div { width: 32px; height: 32px; position: relative; *position: inherit; }
		ul.messageList li div.message { width: 175px; float: left; padding: 2px 5px; border-radius: 5px; position: relative; *position: inherit; }
		ul.messageList li div.message img.inlineImage { max-width: 150px; max-height: 150px; }

		ul.messageList li div.message:before, ul.messageList li div.message:after {
			border-radius: 20px / 5px;
			content: '';
			display: block;
			position: absolute;
		}
		ul.messageList li div.message:after {
			border: 6px solid transparent;
			border-bottom-color: #e6e6e6; /* arrow color for "You" */
			bottom: 1px;
			left: -6px;
		}
		ul.messageList li.me div.message:before {
			left: auto;
			right: -7px;
		}
		ul.messageList li.me div.message:after {
			 left: auto;
  			right: -5px;
			border-bottom-color: #b4d1fb; /* arrow color for "Me" */
		}

		ul.messageList li.you div.message { background-color: #e6e6e6; margin-left: 5px; }
		ul.messageList li.me div.message { background-color: #b4d1fb; margin-right: 5px; }

		ul.messageList li.meta { text-align: center; font-size: 10px; color: #999; padding: 10px 0 5px 0; }
		ul.messageList li.meta a { color: #777; font-weight: bold; }

		li.chatBarLogin div.window div.field { padding: 3px; background-color: #ccc; height: auto; }
		li.chatBarLogin div.window div.field input { width: 185px; border-radius: 6px; }
		li.chatBarLogin div.window div.field input::-moz-placeholder { font-style: italic; color: #aaa; }
		li.chatBarLogin div.window div.field button { border: 0; color: #4491eb; padding: 0; margin-left: 10px; width: auto; font-size: 13px; background: none; position: relative; top: 2px; }
