﻿/* Styles used on EasyFormSettings page*/
.Head{
	font-family: verdana;
	font-size: 14px;
	color:#339933;
	font-weight: bold;
	font-weight:700;
	}
	
#AdminWrapper
{
	width:700px;
	text-align:left;

}

/* The below styles seem to fix some formatting in some versions of DNN while it breaks things in other versions of DNN */
/* 
.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea
*/

.AdminSaveLinks 
{
	font-size: 11px;
	font-weight:bold;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}

.AdminSaveLinks A:hover
{
	color: #FF0000;
}

.AdminSaveLinks A:visited
{
	text-decoration: none;
}

.AdminNoteText 
{
	font-size: 11px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	width:100%;
}
.AdminTable
{
	width:100%;
}
.AdminTable td, .AdminTable th
{
    padding-top:5px;
	padding-bottom:5px;
	text-align:left;
}
.AdminTable tr.AdminHeader td, .AdminTable tr.AdminHeader th
{
	font-weight:bold;
	border-bottom:1px solid #ACA899;
}
.AdminTable tr.AdminHeader th a
{
	color:#000;
}
.AdminTable tr.AdminAltRow td
{
	background-color:#F0F0ED;
}
.AdminField
{
	padding-left:5px;
	width:20%;
	text-align:left;
}
.AdminCheckbox
{
	text-align:center;
	width:75px;
}
.AdminLabel
{
	padding-right:5px;
}
.AdminDashedBox
{
    padding:5px;
    border:1px dashed #ACA899;
}
.AdminSingleRow td
{
    border-top:1px solid #ACA899;
    border-bottom:1px solid #ACA899;
    background-color:#F0F0ED; 
}



/* STYLES ON VIEWEASYFORM.ASCX PAGE (this is the page the end-user fills out to submit information) */

/* style div tag around entire page */
div.EFViewWrapper
{

}

/* style for page table cells */
table.EFViewForm td
{
    padding:2px 0px;
}

/* style for page labels */
table.EFViewForm td.EFLabel
{
    padding-right:25px;
}

/* style for page validator messages */
table.EFViewForm td.EFValid
{
    width:75px;
    padding-left:10px;
}

/* style for form submit button */
input.EFSubmitButton
{
    padding:2px 10px;
}

/* style for custom textboxes when multiline is NOT used */
input.EFCustomTextbox
{
    float: left;
    width:215px;
    border: 1px solid #a4752f;
    padding: 5px 11px 8px;
    font: 12px/15px Tahoma, Geneva, sans-serif;
    color: #666;
}

/* style for custom textboxes when multiline IS used */
textarea.EFCustomTextbox
{
    float: left;
    width:215px;
    border: 1px solid #a4752f;
    padding: 5px 11px 8px;
    font: 12px/15px Tahoma, Geneva, sans-serif;
    color: #666;
}

/* style for custom textboxes when multiline IS used and when the Labels are displayed within the Input/Textbox controls rather than beside them */
.EFInlineLabelCustomTextbox
{
    float: left;
    width:215px;
    border: 1px solid #a4752f;
    padding: 5px 11px 8px;
    font: 12px/15px Tahoma, Geneva, sans-serif;
    color: #666;
}


/* style for Upload control (textbox + browse button) */
input.EFFileUploadTextboxAndBrowseButton
{
    width:215px;
}

/* style for regular textboxes when labels are displayed to the left of the textboxes */
input.EFRegularTextbox
{
    float: left;
    width:215px;
    border: 1px solid #a4752f;
    padding: 5px 11px 8px;
    height: 15px;
    font: 12px/15px Tahoma, Geneva, sans-serif;
    color: #666;
}


/* style used when the Labels are displayed within the Input/Textbox controls rather than beside them */
.EFInlineLabelsRegularTextbox
{    
    float: left;
    width:215px;
    border: 1px solid #a4752f;
    padding: 5px 11px 8px;
    height: 15px;
    font: 12px/15px Tahoma, Geneva, sans-serif;
    color: #666;
}

/* style set in code file on the dropdowns for the top-level Label li item that is placed inside when the option to display labels inside the controls is chosen */
.EFDropdownLabelItem
{
    font: 12px/15px Tahoma, Geneva, sans-serif;
    color: #666;
}

/* style for all dropdown boxes */
select.EFDropdown
{
    float: left;
    border: 1px solid #a4752f;
    height: 28px;
    font: 12px/15px Tahoma, Geneva, sans-serif;
}

