@CHARSET "UTF-8";

/*  
Style Name: Paperwork
Description: Style for the new form(s) styling to go along with Enterprise. This style is not meant to work nicely with the base's forms.css thus is meant to be a replacement, not an addition for those base form styles.
Version: 1.0
Author: Derek Bender
Author URI: http://nfistudios.com/
Date Created: 4-14-10.
Notes: Base is Enterprise. Transplanted from paperwork.css on Aug 25, 1010.
*/

/* the following are styles to work with the original forms since work on forms 2.0 is far delayed */
#main .formfield {
	margin-bottom: 25px;
	}

	#main .formfield span.label {
		line-height: 1.2;
		}
		
	#main .formfield span.label label {
		display: block;
		float: none;
		font-size: 14px;
		margin-bottom: .4em;
		min-height: 0;
		width: auto;
		}
	
	/* select */	
	#main .formfield select {
		width: 70%;
		white-space: nowrap;
		}
		
	/* textarea */
	#main .formfield textarea {
		border: 1px solid #CCC;
		}
		
	/* multicheck */
	#main .formfield.field_multicheckbox .checkbox_container {
		margin-left: 10px;
		}
		
		#main .formfield.field_multicheckbox .checkbox_container .checkbox_line {
			display: block;
			line-height: 1.8;
			}
			
		#main .formfield.field_multicheckbox .checkbox_container .checkbox_line * {
			float: none;
			}
			
			#main .formfield.field_multicheckbox .checkbox_container .checkbox_line label {
				padding: 0;
				margin-left: 10px;
				font-size: 12px;
				}
				
			#main .formfield.field_multicheckbox .checkbox_container .checkbox_line input[type="checkbox"] {
				height: auto;
				}
		
/* first field in a form */
#main .formfield.first input {
	font-size: 16px;
	font-weight: bold;
	padding: 5px;
	}


/*********************************** (official) NEW MF FORMS 2.0 START!!!!!! *******************************/
.f_form {
	margin-bottom: 40px;
	}
	
.form_heading {
	border-bottom: 1px solid #CCC;
	margin-bottom: 20px;
	}
	
	.form_heading h2 {
		color: #333;
		font-size: 16px;
		line-height: 1.2;
		margin-bottom: .2em;
		}
	
	.form_heading .description {
		color: #333;
		font-size: 14px;
		line-height: 1.3;
		}
	
/* form message */
/* the foloowing is commented out due to ie7 z-index conflicts. will default to regular styles that will work fine until the z-index stack can be fixed or an alternative solution can be found - bender - aug 25, 2010 */
.form_heading .feedback {
	/*position: relative;
	margin: auto;
	width: 560px;*/
	position: relative;
	}
		
	.form_heading .feedback .inner {
		/*background: rgba(77,77,77,.5);
		width: 100%;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		float: left;
		position: fixed;
		top: 65px;
		z-index: 10;
		width: 560px;*/
		}
		
		.form_heading .feedback .inner .message {
			/* margin: 20px; */
			}
				
			.form_heading .feedback .inner .message .close {
				display: block;
				position: absolute;
				/*bottom: 27px;
				right: 26px;*/
				bottom: 7px;
				*bottom: 10px;
				right: 10px;
				}
				
		/* all messages */
		.form_heading .message {
			/*font-size: 13px;
			line-height: 1.1;
			background-position: right bottom;
			background-repeat: no-repeat;
			padding: 10px 30px;
			display: block;
			text-align: center;
			border: 2px solid;
			cursor: pointer;*/
			border: 2px solid;
			cursor: pointer;
			text-align: center;
			}
			
			.form_heading .message:hover {
				/* color: #666 !important; */				
				}
				
			.form_heading .message h4 {
				/* font-size: 16px; */
				font-weight: bold;
				display: block;
				background: none;
				/* temp styles */
				font-size: 15px;
				font-weight: normal;
				margin: .8em 0
				}
			
			.form_heading .message .close {
				font-size: 11px;
				font-weight: normal;
				}
				
				.form_heading .message .close:hover {
					color: #666 !important;		
					}
				
		.form_heading .message.error { /* red */
			/*background-image: url(../images/icons/feedback/error.gif);*/
			background-color: #F9E2E2;
			border-color: #BF0000;
			color: #BF0000;
			}
			
			.form_heading .message.error .close {
				color: #BF0000;
				}
			
		.form_heading .message.success { /* green */
			background-color: #DFEDE6;
			border-color: #00A33D;
			color: #006B33;
			}
			
			.form_heading .message.success .close {
				color: #006B33;
				}
			
/* END .form_heading */
	
.form_body {
	padding-bottom: .5em;
	}
	
.form_footer {
	position: relative;
	}
	
.f_field {
	clear: both;
	display: block;
	margin-bottom: 2em;
	}
	
	.f_field label {
		color: #333;
		display: block;
		font-size: 14px;
		line-height: 1.4;
		margin-bottom: .2em;
		text-align: left;
		}
		
		.f_field.required label span {
			color: #00A33D;
			font-weight: bold;
			}
		
	.f_field input[type="text"] {
		}
		
	.f_field input[type="password"] {
		}
		
	.f_field select {
		max-width: 360px;
		padding-top: 5px;
		width: 70%;
		*width: 53%;
		}
		
		.f_field select[multiple="multiple"] {
			font-size: 13px;
			max-height: 130px;
			}
			
		.f_field optgroup {
			}
			
		.f_field option {
			font-size: 13px;
			}
		
	.f_field input[type="radio"] {
		}
		
	.f_field input[type="checkbox"] {
		}
		
	.f_field textarea {
		width: 94%;
		}
		
	.f_field input[type="hidden"] {
		display: none;
		}
		
	.f_field input[type="file"] {
		}
		
	.f_field input[type="button"],
	.f_field button {
		}
		
	.f_field fieldset {
		background-color: #EEF6F9;
		padding: 0;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		}
		
	.f_field legend {
		}
		
	.f_field .first {
		font-size: 16px;
		font-weight: bold;
		max-width: 435px !important;
		padding: 6px 5px 4px 5px;
		width: 100% !important;
		}
	
	/* forms description */	
	.f_field .description {
		color: #666;
		font-size: 11px;
		font-style: italic;
		line-height: 1.2;
		margin-top: .4em;
		}
		
		.f_field.f_radio .description,
		.f_field.f_multicheckbox .description {
			margin-bottom: .8em;
			}
		
	/* form errors */
	.f_field.error label,
	.f_field.error .description,
	.f_field.error label span {
		color: #C1272D;
		}
		
		.f_field.error input[type="text"],
		.f_field.error input[type="password"],
		.f_field.error textarea,
		.f_field.error select {
			border-color: #C1272D;
			}
		
		.f_field ul.errors {
			color: #C1272D;
			font-weight: normal;
			line-height: 1.2;
			margin-left: 25px;
			margin-top: .5em;
			}
			
			.f_field ul.errors li {
				margin-bottom: .4em;
				}
				
	.f_field.f_text input,
	.f_field.f_password input,
	.f_field.f_website input {
		max-width: 350px;
		width: 74%;
		}
		
	/* forms single checkbox */
	.f_field.f_checkbox {
		position: relative;
		}
		
		.f_field.f_checkbox input {
			/* background: transparent;
			outline: 5px solid #D0E5F2;*/
			position: absolute;
			}
			
		.f_field.f_checkbox label {
			display: inline;
			line-height: 1.1;
			margin-left: 22px;
			}
			
			/* safari only styling */
			@media screen and (-webkit-min-device-pixel-ratio:0){
			.f_field.f_checkbox label {line-height: .6em;}
			}
			
		.f_field.f_checkbox .description {
			display: inline;
			margin: 0;
			}
			
	/* forms breakers */
	.f_break {
		border-bottom: 1px solid #CCC;
		}
		
		.f_break h3 {
			color: #333;
			margin-bottom: .5em;
			}
			
	/* forms radios/multi checkboxes */
	.f_field.f_radio,
	.f_field.f_multicheckbox {
		position: relative;
		}
		
		.f_field.f_radio label,
		.f_field.f_multicheckbox label,
		.f_field.f_radio .description,
		.f_field.f_multicheckbox .description {
			display: inline;
			}
			
		.f_field.f_radio .description,
		.f_field.f_multicheckbox .description {
			margin-left: 3px;
			}
		
		.f_field.f_radio ul,
		.f_field.f_multicheckbox ul {
			margin-left: 10px;
			}
			
			.f_field.f_radio ul li,
			.f_field.f_multicheckbox ul li {
				margin-bottom: .3em;
				}
		
			.f_field.f_radio ul label,
			.f_field.f_multicheckbox ul label {
				color: #666;
				display: inline;
				font-size: 13px;
				margin-left: .8em;
				}
				
	/* forms scrolling/list checkboxes */
	.f_field.f_scrollcheckbox {
		position: relative;
		}
		
		.f_field.f_scrollcheckbox ul label {
			color: #666;
			display: inline;
			font-size: 13px;
			margin-left: .8em;
			}
		
	/* forms editor */
	.f_field.f_editor {
		}
		
		.f_field.f_editor span.mceEditor {
			float: none;
			}
			
		/*** TINY MCE WYSIWYG ***/
		.defaultSkin table.mceLayout {
			background: none !important;
			border: 1px solid #CCC !important;
			border-collapse: collapse;
			}
			.defaultSkin iframe{
			
				background: #fff !important;
				
			}	
			/* border resets for mce pieces */
			/*	removed the iframe background none not sure why it was here*/
			.defaultSkin table.mceLayout tr.mceFirst td,
			.defaultSkin table.mceLayout tr.mceLast td {
				background: none !important;
				}
		
			.defaultSkin table.mceLayout tr.mceFirst {
				background: #F7F7F7; /* color for behind editor buttons */
				}
				
			.defaultSkin table.mceLayout tr.mceLast {
				background: #FFF; /* color for editor textarea */
				}
				
			.defaultSkin td.mceToolbar {
				padding: 0 !important;
				}
				
			.defaultSkin table.mceToolbar a {
				background-color: #E6E6E6;
				border: 1px solid #CCC;
				-moz-border-radius: 3px;
				-webkit-border-radius: 3px;
				}
				
				.defaultSkin table.mceToolbar a.mceButtonActive,
				.defaultSkin table.mceToolbar a.mceButtonEnabled:hover,
				.defaultSkin table.mceSplitButtonEnabled:hover a.mceAction,
				.defaultSkin .mceSplitButtonHover a.mceAction,
				.defaultSkin .mceSplitButtonSelected a.mceAction,
				.defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen,
				.defaultSkin .mceSplitButtonHover a.mceOpen,
				.defaultSkin .mceSplitButtonSelected a.mceOpen {
					background-color: #CCC;
					border: 1px solid #666;
					}
				
			#description_path_row {
				color: #4D4D4D;
				}
				
			#description_path_row a {
				text-decoration: underline;
				color: #4D4D4D;
				}
		
		body#tinymce {
			background: #F2F2F2;
			font-family: Helvetica, Arial, Verdana, sans-serif;
			padding: 4px;
			color: #4D4D4D;
			font-size: 13px;
			}
			
			#tinymce b {
				font-weight: bold;
				}
				
			#tinymce i {
				font-style: italic;
				}
	/*** END tinymce styles ***/
		
	/* submit/save btns */
	.f_field.f_submit span,
	.f_field.f_save span,
	.submit_btn {
		background: #E6E6E6;
		background: #B3B3B3\9;
		padding: 11px 3px;
		padding: 10px 3px\9;
		*padding: 3px;
		height: 60px;
		-moz-border-radius: 17px;
		-webkit-border-radius: 17px;
		border-radius: 17px;
		line-height: normal !important;
		}
		
		.f_field.f_save span.cancel {
			background: 0 none;
			}
		
	.f_field.f_submit input[type="submit"],
	.f_field.f_save input[type="submit"],
	.submit_btn input[type="submit"] {
		background: #F2F2F2;
		background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E6E6E6));
		background: -moz-linear-gradient(top,  #FFFFFF,  #E6E6E6);
		filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#E6E6E6');
		border: 1px solid #FFF;
		border: 1px solid #CCC\9;
		font-size: 12px;
		font-weight: bold;
		*margin: 3px 0;
		padding: .5em 1em .45em;
		text-align: center;
		text-transform: none;
		white-space: nowrap;
		-moz-border-radius: 14px;
		-moz-box-shadow: 0 0 3px #4D4D4D;
		-webkit-border-radius: 14px;
		-webkit-box-shadow: 0 0 3px #4D4D4D;
		border-radius: 14px;
		box-shadow: 0 0 3px #4D4D4D;
		width: auto;
		/* text-transform: lowercase; */
		}
		
		.f_field.f_submit input[type="submit"]:hover,
		.f_field.f_save input[type="submit"]:hover,
		.submit_btn input[type="submit"]:hover {
			background: #CCC;
			background: -webkit-gradient(linear, left top, left bottom, from(#F2F2F2), to(#CCCCCC));
			background: -moz-linear-gradient(top,  #F2F2F2,  #CCCCCC);
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#F2F2F2', endColorstr='#CCCCCC');
			}
			
		.f_field.f_submit input[type="submit"]:active,
		.f_field.f_save input[type="submit"]:active,
		.submit_btn input[type="submit"]:active {
			background: #E6E6E6;
			background: -webkit-gradient(linear, left top, left bottom, from(#E6E6E6), to(#FFFFFF));
			background: -moz-linear-gradient(top,  #E6E6E6,  #FFFFFF);
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#FFFFFF');
			}
			
	/* forms txtbtncombo element */
	.f_field.f_txtbtncombo input[type="button"] {
		background: #F2F2F2;
		background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#D9D9D9));
		background: -moz-linear-gradient(top,  #FFFFFF,  #D9D9D9);
		filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#D9D9D9');
		border: 1px solid #CCC;
		color: #333;
		margin-left: 6px;
		padding: 4px 8px 2px;
		text-decoration: none;
		font-size: 11px;
		text-align: center;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		}
		
	.f_field.f_txtbtncombo input[type="text"] {
		width: 65%;
		}

	/* f_address element - only exists statically in /sandbox/examples/forms */
	fieldset.f_address {
		border-top: 1px solid #CCC;
		clear: both;
		padding-top: 20px;
		position: relative;
		}
		
		fieldset.f_address legend {
			float: none !important;
			font-size: 14px !important;
			font-weight: bold;
			margin: 0 !important;
			padding: 0 .8em 0 0 !important;
			}
			
			fieldset.f_address legend .description {
				color: #666;
				font-weight: normal;
				}
				
		fieldset.f_address .f_subfield {
			float: left;
			width: 45%;
			}

/* basic f_subfield styles */
.f_subfield label {
	color: #666;
	font-size: 12px;
	line-height: 1.8;
	}
	
.f_subfield.f_text input,
.f_subfield.f_password input {
	width: 45%;
	}

/* advanced tinyMCE popup (http://mfzf.local/cms/manage/uploadimage/) - dont touch if you dont know what youre doing! July 14, 2010 - bender */
/* this form is NOT 2.0 (but should be) */
#cms_image_upload {
	padding: 15px 25px;
	}
	
	#cms_image_upload .field_file {
		margin-bottom: 8px;
		}
		
		#cms_image_upload .field_file input {
			margin-top: 8px;
			}
		
		#cms_image_upload label {
			display: inline;
			}
			
		#cms_image_upload .instructions {
			color: #666;
			font-size: 11px;
			font-style: italic;
			line-height: 1.2;
			}
		
		#cms_image_upload .submit_btn {
			display: block;
			}
	
	#cms_image_upload #upload {
		background: #2670AD;
		background: -webkit-gradient(linear, left top, left bottom, from(#559BD5), to(#2670AD));
		background: -moz-linear-gradient(top,  #559BD5,  #2670AD);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#559BD5', endColorstr='#2670AD');
		border: 1px solid #2670AD;
		color: #FFF;
		font-size: 13px;
		font-weight: bold;
		padding: .5em 1em .45em;
		text-align: center;
		text-transform: none;
		white-space: nowrap;
		-moz-border-radius: 14px;
		-moz-box-shadow: 0 0 3px #4D4D4D;
		-webkit-border-radius: 14px;
		-webkit-box-shadow: 0 0 3px #4D4D4D;
		border-radius: 14px;
		box-shadow: 0 0 3px #4D4D4D;
		text-transform: lowercase;
		}
		
		#cms_image_upload #upload:hover {
			background: #2670AD;
			background: -webkit-gradient(linear, left top, left bottom, from(#2670AD), to(#559BD5));
			background: -moz-linear-gradient(top,  #2670AD,  #559BD5);
			filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2670AD', endColorstr='#559BD5');
			cursor: pointer;
			}
			
/******************** END paperwork transplant - Qug 25, 2010 ********************/



/* basic login styles (new Forms 2.0) - /login - aug 23, 2010 */
#login_default .form_heading {
	border: 0 none;
	margin: 0;
	}
	
#login_default #login_default_username label,
#login_default #login_default_password label {
	float: left;
	margin-right: 15px;
	text-align: right;
	width: 130px;
	}
	
#login_default input[type="text"],
#login_default input[type="password"] {
	float: left;
	width: 280px;
	}
	
#login_default .f_field {
	float: left;
	margin: .7em 0;
	width: 100%;
	}
	
#login_default #login_default_remember_me {
	margin: 1.1em 0 .5em 145px;
	*width: 150px;
	}
	
	#login_default #login_default_remember_me label {
		color: #808080;
		font-size: 11px;
		font-style: italic;
		line-height: 2em\9;
		}
		
#login_default .form_footer {
	float: right;
	margin-right: 30px;
	margin-top: -30px;
	*margin-top: 0;
	}

/* ratings - only in resources for now - aug 20, 09 - bender */
#rateit {
    clear: both;
    height: auto;
    padding: 5px 0;
    margin-top: 8px;
	}
	
	span.hoverpoint {
		display: none;
		position: absolute;
		z-index: 100;
		top: -20px;
		}
		
		span.hoverpoint .point {
			background: url(../images/btns/hoverpoint_point.png) no-repeat center bottom;
			padding-bottom: 8px;
			display: block;
			width: auto;
			}
			
			span.hoverpoint .text {
				background: rgba(77,77,77,.7);
				background: url(../images/bgs/bg_transparent.png) top left repeat;
				display: block;
				padding: 0 9px;
				line-height: 18px;
				font-size: 11px;
				color: #F2F2F2;
				text-align: center;
				-moz-border-radius: 3px;
			    -webkit-border-radius: 3px;
			    border-radius: 3px;
			    white-space: nowrap;
				}
	
	#rateit span.rate_text {
		color: #999;
		float: left;
		padding: 0 5px;
		line-height: 18px;
		}
	
	.rating_container {
		float: left;
		}
 
		.rating_container a {
		    width: 20px;  
		    height: 20px;
		    border: 0;  
		    background-image: url(../images/rating.png);
		    display: block;
		    float: left;
		    z-index: 90;
		    text-decoration: none;
		    position: relative;
			}
			
			.rating_container a:hover span.hoverpoint {
				display: inline;
				}
			
			.rating_container a.rating_off {  
			    background-position: 0 0px;  
				} 
			 
			.rating_container a.rating_half {  
			    background-position: 0 -20px;  
				} 
			 
			.rating_container a.rating_on {  
			    background-position: 0 -40px;  
				} 
			 
			.rating_container a.rating_selected {  
			    background-position: 0 -60px;  
				}
	
	#synopsis #rateit .rating_container {
		display: block;
		text-align: center;
		font-weight: bold;
		color: #1F76AB;
		line-height: 18px;
		}
	
		#synopsis #rateit .rating_container a {
			width: 16px;
			height: 16px;
			font-weight: normal;
			}
			
			.rating_container a.rating_off {  
			    background-position: -2px -2px;  
				} 
			 
			.rating_container a.rating_half {  
			    background-position: -2px -22px;  
				} 
			 
			.rating_container a.rating_on {  
			    background-position: -2px -42px;  
				} 
			 
			.rating_container a.rating_selected {  
			    background-position: -2px -62px;  
				}
		
	#synopsis #rateit span.rate_text {
		float: none;
		padding: 0 0 0 10px;
		}
				
/* custom vanity URLs - aug 18, 09 - bender */
#vanity_url_field {
	background: #EEF6F9;
	padding: 20px !important;
	margin: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin: 8px 0;
	}
	
	#vanity_url_field span.label {
		float: none !important;
		display: block;
		width: auto;
		}
		
		#vanity_url_field span.label label {
			width: auto;
			text-align: left;
			display: block;
			float: none;
			padding: 0;
			}
		
		#vanity_url_field span.label span.instructions {
			float: none;
			display: block;
			width: auto;
			text-align: left;
			margin-bottom: 8px;
			}
		
	#vanity_url_field input {
		background: #FFF;
		width: 97%;
		float: none;
		display: block;
		font-weight: normal;
		}
		
	#vanity_url_field ul.errors {
		margin: 10px 0 0 0;
		width: auto;
		float: none;
		}

#can_change_field span.label {
	margin-right: 10px;
	}
			
#can_change_field span.label label {
	width: auto;
	}
	
#can_change_field .checkbox_container {
	width: auto;
	float: left;
	padding-top: 1px;
	}

/* new ajax add contacts/invite feature - jun 26, 09 - bender */
#addcontacts {
	}
	
	#addcontacts label {
		padding: 0;
		text-align: left;
		float: none;
		width: auto;
		}
	
	#find_field {
		float: left;
		margin-bottom: 20px;
		position: relative;
		}
		
		#find_field label {
			display: block;
			line-height: 1.5;
			}
			
		#find_field input {
			float: none;
			font-weight: normal;
			width: 350px;
			}
			
		#find_field .clearbtn {
			*top: -4px; /* IE7 fix */
			}
			
	a.btn.small.checkall,
	a.btn.small.uncheckall {
		float: right;
		margin: 26px 0 0 4px;
		}
		
	#selectall_field {
		float: right;
		margin-top: 25px;
		}
		
		#selectall_field label {
			margin-left: 10px;
			line-height: 1.4;
			font-size: 13px;
			}
		
	#contactlist {
		border-top: 1px solid #CCC;
		clear: both;
		padding-top: 20px;
		}
		
		#contactlist * {
			float: none;
			}
		
		#contactlist ul {
			background-color: #FFF;
			border: 1px solid #CCC;
			margin: 0;
			padding: 10px;
			overflow-y: scroll;
			min-height: 150px;
			max-height: 280px;
			}
		
			
			#contactlist ul li {
				border-bottom: 1px solid #CCC;
				float: left;
				padding: 5px;
				min-width: 185px;
				margin: 3px;
				cursor: pointer;
				min-height: 53px;
				}
				
				#contactlist ul li:hover {
					background-color: #E5EDF0;
					cursor: pointer;
					}
				
				#contactlist ul li.checked {
					background-color: #BBDDEE;
					}
				
				#contactlist ul li input {
					float: left;
					}
				
				#contactlist ul li .pic {
					float: left;
					margin: 0 6px;
					}
				
				#contactlist ul li div {
					font-size: 13px;
					float: left;
					max-width: 130px;
					}
				
				#contactlist ul li div span.name {
					color: #4D4D4D;
					}
					
				#contactlist ul li div span.company {
					color: #808080;
					font-size: 12px;
					}
			
	#addcontacts .notice {
		background: #DDEBF0;
		border: 1px solid #BBDDEE;
		clear: both;
		padding: 10px;
		color: #00599C;
		margin-top: 15px;
		position: relative;
		}
		
		#addcontacts .notice a {
			position: absolute;
			right: 10px;
			top: 7px;
			}

/* new sharing modalbox forms - jun 5, 09 - bender */
#compose_message_form_async .formfield {
	width: auto;
	}
	
	#compose_message_form_async .formfield span.label {
		clear: both;
		display: block;
		width: auto;
		}
		
		#compose_message_form_async .formfield span.label label {
			text-align: left;
			display: inline;
			float: none;
			}
			
		#compose_message_form_async .formfield span.label .instructions {
			width: auto;
			display: inline;
			clear: none;
			float: none;
			}
			
	#compose_message_form_async .field_text input,
	#compose_message_form_async .formfield .mceEditor {
		clear: both;
		float: left;
		margin-top: 6px;
		}
	
#compose_message_form_async table.mceLayout {
	width: 450px !important;	
	}

/* feedback messages */
#pageMessage {
	min-height: 1px;
	}
	
#formMessage,
.formMessage,
.appMessage {
	min-height: 1px;
	}
	
div.formMessage,
.appMessage {
	padding: 8px 8px 8px 32px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: bold;
	clear: both;
	}
	
	.formMessage.error,
	.formMessage.field_error,
	.appMessage.error,
	.appMessage.field_error {
		background: url(../images/icons/exclamation_red_icon.png) no-repeat 6px 5px #F9E2EC;
		border: 1px solid #CB1A68;
		color: #CB1A68;
		}
		
		.formMessage.field_error,
		.appMessage.field_error {
			background: none;
			border: none;
			}
			
			.formMessage.field_error input,
			.formMessage.field_error select,
			.appMessage.field_error input,
			.appMessage.field_error select {
				border: 1px solid #CB1A68 !important;
				}
		
	.formMessage.success,
	.appMessage.success {
		background: url(../images/icons/thumbsup_green_icon.png) no-repeat 6px center #DFEDE6;
		border: 1px solid #00A33D;
		color: #006B33;
		}
		
	.formMessage.info,
	.appMessage.info {
		background: url(../images/icons/arrowright_yellow_icon.png) no-repeat 6px center #FFFFC4;
		border: 1px solid #FFBF00;
		color: #CC9900;
		}
		
	.formMessage.info2,
	.appMessage.info2 {
		background: url(../images/icons/questionmark_blue_icon.png) no-repeat 6px center #CEE3F2;
		border: 1px solid #648FA1;
		color: #00599C;
		}
		
/* FORMFIELD POSITIONING sept 8, 2009 */
.formfield {
	clear: both;
	display: block;
	padding: 5px;
	float: left;
	margin-bottom: 8px;
	width: 440px;
	}
	
.formfield input[type="text"],
.formfield input[type="password"],
.formfield input[type="file"],
.formfield textarea,
.formfield select {
	float: right;
	}
	
.formfield input[type="checkbox"],
.formfield input[type="radio"],
.formfield label,
.formfield span.label {
	float: left;
	}
	
	/* the formfield - neeeeeeed to refactor to not float! */
	.formfield span.label label {
		padding-bottom: 0;
		text-align: right;
		min-height: 16px;
		padding: 5px 0;
		font-size: 15px;
		width: 130px;
		}
		
	.formfield span.label .instructions,
	.formfield span.label .altaction {
		color: #9AA2A6;
		float: left;
		clear: left;
		text-align: right;
		width: 130px;
		}
		
		.formfield span.label a.altaction {
			color: #0079BD;
			font-size: 11px;
			font-style: italic;
			}
			
			.formfield span.label a.altaction:hover {
				color: #9AA2A6;
				}
				
/*** BASIC FORM STYLING ***/
.formfield label {
	width: 130px;
	text-align: right;
	min-height: 16px;
	padding: 5px 0;
	font-size: 15px;
	color: #4D4D4D;
	}
	
.formfield  .errors {
	color: #CB1A68;
	clear: both;
	width: 257px;
	float: right;
	margin: 6px 0 0 13px;
	}
	
	.formfield  ul.errors,
	.formfield  ul.errors li {
		list-style: disc outside;
		font-weight: bold;
		border: 0 none !important;
		padding: 0;
		}
		
/* basic radios */
.formfield input[type="radio"] {}
	
.field_radio .radio_container {
	width: 270px;
	float: right;
	padding-top: 5px;
	height: 21px;
	_height: 21px;
	}
	
	.field_radio span.radio_line {
		float: left;
		clear: none;
		margin: 0 25px 10px 0;
		/*min-width: 100px;*/
		}
		
		.field_radio span.radio_line input[type="radio"] {
			margin-right: 5px;
			width: auto;
			}
			
		.field_radio span.radio_line label {
			float: left;
			font-size: 13px;
			width: auto;
			padding: 0;
			}
			
		.field_radio span.radio_line a ver{
			display: block;
			margin-left: 19px;
			}
			
/* notification radios  */
.field_notificationradio {
	border-bottom: 1px solid #CCC;
	width: 95%;
	padding: 12px 15px;
	}

.field_notificationradio * {
	float: none !important;
	}

.field_notificationradio span.label {
	display: block;
	margin-bottom: 8px;
	}
	
	.field_notificationradio span.label label {
		font-size: 14px;
		width: auto;
		text-align: left;
		padding: 0;
		}
		
	.field_notificationradio span.label .instructions {
		display: block;
		width: auto;
		text-align: left;
		line-height: 1.6;
		}
		
	.field_notificationradio span.label .saved {
		font-weight: bold;
		color: #0079BD;
		}
		
	.field_notificationradio span.label .altaction {
		margin-right: 5px;
		}
	
.field_notificationradio .radio_container {
	width: auto;
	display: block;
	padding: 0;
	}
	
	.field_notificationradio span.radio_line {
		margin-right: 25px;
		/*min-width: 100px;*/
		}
		
		.field_notificationradio span.radio_line input[type="radio"] {
			margin-right: 5px;
			width: auto;
			}
			
		.field_notificationradio span.radio_line label {
			float: left;
			font-size: 13px;
			width: auto;
			padding: 0;
			}
			
		.field_notificationradio span.radio_line a {
			display: block;
			margin-left: 19px;
			}
	
/* checkboxes */
.formfield input[type="checkbox"] {
	clear: both;
	background: none;
	outline: none;
	font-weight: bold;
	color: #4D4D4D;
	border: 1px solid #505B66;
	height: 19px;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	}
	
.field_checkbox .checkbox_container {
	width: 270px;
	float: right;
	padding-top: 5px;
	height: 21px;
	}
	
	.field_checkbox span.check_line {
		float: left;
		margin: 0 15px 15px 0;
		min-width: 100px;
		}
		
		.field_checkbox span.check_line input[type="checkbox"] {
			float: left;
			margin-right: 5px;
			}
			
		.field_checkbox span.check_line label {
			float: left;
			font-size: 14px;
			width: auto;
			padding: 0;
			}
	
/* basic fieldset */
.formfield  fieldset {
	margin: 0 0 30px 0;
	border: 0;
	background-color: #E5EDF0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 15px 20px;
	clear: both;
	}
	
	.formfield fieldset.off {
		background: #E6E6E6;
		}
	
	.formfield fieldset p {
		color: #4D4D4D;
		margin: 15px !important;
		clear: both;
		font-size: 14px;
		padding: 0 !important;
		float: left;
		}
		
	fieldset .field_radio {
		width: 100%;
		padding: 0;
		margin: 0;
		}
		
		fieldset .field_radio .radio_container {
			width: auto;
			height: auto;
			}
			
		fieldset .field_radio span.radio_line {
			min-width: 165px;
			_width: 165px;
			text-align: left;
			}
	
	/* form grouping / used mostly in notifications */		
	.noti_grouping {
		margin: 0 10px 30px 10px;
		}
		
		.noti_grouping h2 {
			margin: 12px 0 10px;
			color: #4D4D4D;
			}
			
			.noti_grouping .noti_grouping {
				margin: 20px 10px 25px 10px;
				float: left;
				}
				
				.noti_grouping .noti_grouping h2 {
					float: left;
					}
					
				.noti_grouping .inactive_sublist {
					opacity: .4;
					}
			
		/* css for clicking the "on" */
		.noti_grouping .on {
			background: #D7F5C4;
			}
			
		/* css for clicking the "off" */
		.noti_grouping .off {
			background: #F7AA92;
			}
			
		/* formfield grouping within the fieldset - usually display with ajax */
		.display_grouping {
			margin: 0 10px;
			}
			
			.display_grouping p {
				margin-left: 0 !important;
				}

/* common inputs */
.formfield input[type="text"],
.formfield input[type="password"] {
	border: 1px solid #E6E6E6;
	width: 260px;
	background: #F2F2F2;
	outline: none;
	font-weight: bold;
	color: #4D4D4D;
	height: 19px;
	padding: 5px 5px 0 5px;
	font-size: 14px;
	}
	
	.formfield input[type="text"]:focus,
	.formfield input[type="password"]:focus {
		outline: none;
		}
		
.formfield input[type="file"] {
	background: #F2F2F2;
	border: 1px solid #E6E6E6;
	padding: 5px 5px 5px 5px;
	width: 260px;
	font-weight: bold;
	color: #4D4D4D;
	font-size: 1.1em;
	white-space: nowrap;
	}
	
@media screen and (-webkit-min-device-pixel-ratio:0){
	.formfield select {background: #F2F2F2; border: 1px solid #E6E6E6;}
	}
	
input[type="submit"],
input[type="reset"],
button {	
	/*-moz-border-radius: 11px;*/
	/*-webkit-border-radius: 11px;*/
  	/*border-radius: 11px;*/
	}
		
.formfield input[disabled="disabled"],
.formfield select[disabled="disabled"],
.formfield textarea[disabled="disabled"] {
	cursor: default;
	color: #B3B3B3;
	border-color: #CCC;
	}
	
	input[disabled="disabled"]:hover {
		border-color: #CCC;
		}
	
/* submit buttons 
.submit_btn {	
	background: url(../images/btn_left.gif) no-repeat top left;
	float: right;
	height: 22px;
	line-height: 22px;
	padding-left: 8px;
	margin: 0;
	}	
	
	.formfield input[type="submit"] {
		color: #F2F2F2;
		font-weight: bold;
		text-transform: lowercase;
		font-size: 13px;
		white-space: nowrap;
		}
		
	.formfield input[type="submit"] {
		border: 0;
		}*/
	
	/*
.submit_btn input[type="submit"] {	
		background: url(../images/btn_right.gif) no-repeat top right;
		float: left;
		line-height: 14px;
		padding: 2px 8px 4px 0;
		height: 22px;
		font-size: 13px;
		margin: 0;
		}
*/
				
		/*
.submit_btn:hover {
			background: url(../images/btn_left.gif) no-repeat bottom left;
			cursor: pointer;
			}
*/
			
		/*
.submit_btn:hover input[type="submit"] {
			background: url(../images/btn_right.gif) no-repeat bottom right;
			color: #4D4D4D;
			}
*/
			
		input[type="submit"]:hover {
			cursor: pointer;
			}

/* reset */
.formfield input[type="reset"] {
	background: #F2F2F2;
	color: #CB1A68;
	font-weight: bold;
	border: 0;
	}
	
	.formfield input[type="reset"]:hover {
		background: #CB1A68;
		color: #F2F2F2;
		cursor: pointer;
		}
	
/*textarea, select {
	font-family: Helvetica, Arial, Verdana, sans-serif;
	background: #F2F2F2;
	outline: none;
	color: #4D4D4D;
	border: 1px solid #505B66;
	padding: 4px 5px;
	font-size: 14px;
	}*/
.formfield textarea,
.formfield select {
	font-family: Helvetica, Arial, Verdana, sans-serif;
	outline: none;
	color: #4D4D4D;
	font-size: 14px;
	}
	
.formfield textarea {
	background: #F2F2F2;
	border: 1px solid #505B66;
	padding: 4px 5px;
	width: 260px;
	height: 180px;
	}

.formfield select {
	padding: 4px .1em 0 .1em;
	cursor: pointer;
	height: 26px;
	width: 273px;
	}
	
	/* safari only styling */
	@media screen and (-webkit-min-device-pixel-ratio:0){
	.formfield select {background: #F2F2F2; border: 1px solid #505B66;}
	}
	
	.formfield select[multiple="multiple"],
	.formfield select.multiline {
		min-height: 26px;
		height: auto;
		_height: 26px;
		}
	
	.formfield select:focus {
		outline: none;
		}
/*** END BASIC FORM STYLING ***/

/* class specific form styling */
input.force_checkbox {
	margin: -25px 0 0 170px;
	}
	
input.form_load {
	background: url(../images/icons/ajax_loading_icon.gif) center right no-repeat;
	}

/*** TINY MCE WYSIWYG ***/
.formfield #menu_msg_spellcheckermenu #menu_msg_spellcheckermenu_tbl tbody { background: #F0F0EE; }

.formfield span.mceEditor {
	float: right;
	}
	
.formfield .defaultSkin table.mceLayout {
	background: none !important;
	border: 1px solid #CCC !important;
	border-collapse: collapse;
	}
		
	/* border resets for mce pieces */
	.formfield .defaultSkin table.mceLayout tr.mceFirst td,
	.formfield .defaultSkin .mceIframeContainer,
	.formfield .defaultSkin table.mceLayout tr.mceLast td {
		background: none !important;
		}
		
	.formfield .defaultSkin table.mceLayout tr.mceFirst {
		background: #E6E6E6;
		}
		
	.formfield .defaultSkin table.mceLayout tr.mceLast {
		background: #F2F2F2;
		}
		
	.formfield .defaultSkin td.mceToolbar {
		padding: 0 !important;
		}
		
	.formfield .defaultSkin table.mceToolbar a {
		background-color: #E6E6E6;
		border: 1px solid #CCC;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		}
		
		.formfield .defaultSkin table.mceToolbar a.mceButtonActive,
		.formfield .defaultSkin table.mceToolbar a.mceButtonEnabled:hover,
		.formfield .defaultSkin table.mceSplitButtonEnabled:hover a.mceAction,
		.formfield .defaultSkin .mceSplitButtonHover a.mceAction,
		.formfield .defaultSkin .mceSplitButtonSelected a.mceAction,
		.formfield .defaultSkin table.mceSplitButtonEnabled:hover a.mceOpen,
		.formfield .defaultSkin .mceSplitButtonHover a.mceOpen,
		.formfield .defaultSkin .mceSplitButtonSelected a.mceOpen {
			background-color: #CCC;
			border: 1px solid #666;
			}
		
	.formfield #description_path_row {
		color: #4D4D4D;
		}
		
	.formfield #description_path_row a {
		text-decoration: underline;
		color: #4D4D4D;
		}

.formfield body#tinymce {
	background: #F2F2F2;
	font-family: Helvetica, Arial, Verdana, sans-serif;
	padding: 4px;
	color: #4D4D4D;
	font-size: 13px;
	}
	
	.formfield #tinymce b {
		font-weight: bold;
		}
		
	.formfield #tinymce i {
		font-style: italic;
		}

/* new loading spinner - 10.27.09 */
#progress_bar {
	background: rgba(77,77,77,.5);
	min-width: 70px;
	min-height: 70px;
	position: fixed;
	z-index: 1000;
	padding: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	top: 50%;
	left: 45%;
	}
	
	#progress_bar #loader {
		background-color: #FFF;
		border: 1px solid #E6E6E6;
		padding: 9px;
		min-height: 48px;
		width: 50px;
		position: relative;
	 	}
	 	
	 #progress_bar #progress_percent {
	 	font-size: 12px;
	 	font-weight: bold;
	 	color: #CCC;
	 	text-align: center;
	 	padding-top: 58px;
	 	color: #999;
	 	}
	
		#progress_bar #loader div.loading {
			background-image: url("../images/loading.gif");
			background-repeat: repeat-x;
			background-position: top center;
			min-height: 48px;
			width: 50px;
			}
			
/* calendar popup - transplant from eventcal.css - 1-12-10 - bender */
#calendar {
	position: absolute;
	visibility: hidden;
	background: #CCCCCC;
	box-shadow: -10px -10px 0px #000;
	-moz-box-shadow: 5px 5px 6px rgba(0,0,0,.5);
	-webkit-box-shadow: -10px -10px 0px #000;
	z-index: 5000000;
	}

	#calendar tr {
		border-top: 2px solid #CCC;
		border-bottom: 2px solid #CCC;
		}
		
	#calendar td, #calendar th {
		padding: 3px;
		}
		
	#calendar table {
		margin-bottom: 0;
		}

.cpYearNavigation,
.cpMonthNavigation {
	text-align: center;
	vertical-align: center;
	text-decoration: none;
	font-weight: bold;
	}

.cpDayColumnHeader,
.cpYearNavigation,
.cpMonthNavigation,
.cpCurrentMonthDate,
.cpCurrentMonthDateDisabled,
.cpOtherMonthDate,
.cpOtherMonthDateDisabled,
.cpCurrentDateDisabled,
.cpTodayText,
.cpTodayTextDisabled,
.cpText {
	font-size: 13px;
	color: #505B66;
	}

td.cpDayColumnHeader {
	text-align: center;
	border: 0;
	font-weight: bold;
	background: #F2F2F2;
	}

.cpCurrentMonthDate,
.cpOtherMonthDate,
.cpCurrentDate {
	text-align: center;
	text-decoration: none;
	}

.cpCurrentMonthDateDisabled,
.cpOtherMonthDateDisabled,
.cpCurrentDateDisabled {
	color:#D0D0D0;
	text-align:right;
	text-decoration: line-through;
	}

td.cpCurrentMonthDate {
	background: #F2F2F2;
	}

	td.cpOtherMonthDate:hover,
	td.cpCurrentMonthDate:hover {
		background: #CCC;
		cursor: pointer;
		}
		
.cpCurrentDate {
	font-weight: bold;
	color: #F2F2F2;
	background: #0079BD;
	font-weight: bold;
	}
	
	a.cpCurrentDate:hover {
		color: #F2F2F2;
		text-decoration: underline;
		}
		
.cpOtherMonthDate {
	cursor: default;
	}
	
	a.cpOtherMonthDate {
		display: none;
		}
	
td.cpCurrentDateDisabled {
	border-width:1px;
	border:solid thin #FFAAAA;
	}

td.cpTodayText {
	text-align: center;
	}
	
	a.cpTodayText:hover {
		color: #0079BD;
		}

.cpTodayTextDisabled {
	color:#D0D0D0;
	}
	
/*-----------Cetracker Add ------------*/
/*------Parker Hutchinson 02/22/10-----*/
#main #add_ce_event_item_form .formfield input{
	padding: 10px;
	color: #000;
}
#main #add_ce_event_item_form #predefined_events{
	width: 340px;
}
#main #add_ce_event_item_form .formfield span.label label, #location_field span span{
	display: block; 
	float:  left;
	width: 300px;
	text-align: left;
}
#main .cal_pick #date_anchor{
	right: 110px;
}
#main #add_ce_event_item_form #submit_field span input{
	
	padding: 0 25px 0 0;
	text-align: left;
	
}
	
/*----------- float bug in admin groups ------------*/
/*-----------Parker Hutchinson 02/24/10-------------*/
	
	#admingroupsearch .formfield input[type="checkbox"],
	#admingroupsearch .formfield input[type="radio"],
	#admingroupsearch .formfield label,
	#admingroupsearch .formfield span.label {
		float: none;
		}
		
		
/****** THE GRAVEYARD ***********/
/* this section is for all the css that probably isnt in use anymore, but just in case it IS, its here to be uncommeneted and added back in */
/* Its cool to totally delete stuff from the graveyeard after a month has passed */
	
	

	
	
	
	