/* external form design stylesheets by Excaliber Information Systems,Phoenix, AZ */

/* when linked to online forms, these external .css and .js templates give designers 
greater control over the layout, appearance, and printing of electronic forms*/

/* to use these css classes, place these .css and .js files in the the html HEAD tag 
	
		<link rel="stylesheet" href="/wdtstyles/wdtDefault2-0.css" media="screen">
		<link rel="stylesheet" href="/wdtstyles/wdtDefault2-0P.css" media="print">
		<script src="/wdtJavascripts/wdtHTMLGen.js" type="text/javascript"></script>
		<script src="/wdtjavascripts/wdtfindDOM.js">type="text/javascript"></script>
*/
/******************************************************************************/

/*sets body styles and field label text*/
BODY {
	background-image : none;
	text-align : left;
	color : Black;
	font-size : 11px;
}
/*sets form styles and content to screen center */
#formshell {
	margin: 2px auto;
	border : 1px solid Black;
	width : 700px;
	background-image : none;
	text-align : left;
}
/*use to insert  a form heading*/
.titlerow {
	font : normal 18px/2em Arial Rounded MT Bold;
	color: Black;
	background-color : White;
	border : 1px ridge Black;
}
/*use to insert a form section heading*/
.sectionrow {
	font : bold 11px/1.2em Verdana;
	width : 700px;
}
/*use to insert  basic form bodytext*/
.textrow {
	font : normal 11px/1.2em Verdana;
}
/*use to insert fields and labels*/
.fieldrow {
	font : normal 11px/1em Verdana;
	text-align : left;
	border : 1px solid Black;
}


/*the below object permits an element to show on the screen but not when printed*/
#object1 {
visibility : visible;
}

/*the below object permits an element to be hidden on the screen but show when printed*/
#object2 {
visibility : hidden;
}


/*use  to add border sides to any element*/

.border {border : 1px solid Black;}
.noT {
	border : 1px solid Black;
	border-top-style : none;}
.noB {
	border : 1px solid Black;
	border-bottom-style : none;}
.noL {
	border : 1px solid Black;
	border-left-style : none;}
.noR {
	border : 1px solid Black;
	border-right-style : none;}
.noTB {
	border : 1px solid Black;
	border-top-style : none;
	border-bottom-style : none;}
.noTR {
	border : 1px solid Black;
	border-top-style : none;
	border-right-style : none;}
.noTL {
	border : 1px solid Black;
	border-top-style : none;
	border-left-style : none;}
.noBL {
	border : 1px solid Black;
	border-left-style : none;
	border-bottom-style : none;}
.noBR {
	border : 1px solid Black;
	border-right-style : none;
	border-bottom-style : none;}
.T {border-top : 1px solid Black;}
.L {border-left : 1px solid Black;}
.R {border-right : 1px solid Black;}
.B {border-bottom : 1px solid Black;}

/*sets inside text size and other properties for all INPUT & SELECT tags*/
INPUT {

	font-family : "Courier New";
	font-size : 9pt;
	font-weight : bold;
	line-height : 100%;
	text-align : left;
	vertical-align : middle;
	background-color : #DCDCDC;
	color : Navy;
	margin-bottom : .3em;
	border-top:none;
	 border-right:none;
	  border-left:none;
	   border-bottom: 1px solid black;
}
SELECT {
	border : 0px none Black;
	font-family : "Courier New";
	font-size : 9pt;
	font-weight : bold;
	line-height : 100%;
	text-align : left;
	vertical-align : middle;
	background-color : #DCDCDC;
	color : Navy;
	margin-bottom : .3em;
}
/*use to set inside text size and other properties for button tag*/ 
BUTTON.send1 {
	border : 0px outset Black;
	font-family : Verdana;
	font-size : 11pt;
	font-weight : normal;
	line-height : 140%;
	text-align : center;
	vertical-align : middle;
	background-color : Navy;
	color : Yellow;
	letter-spacing : 2px;
	width:150;
}
/*sets properties, except text size & row number for all TEXTAREA tags*/
TEXTAREA {
	border : 0px solid Navy;
	font-family : Courier New;
	font-weight : bold;
	line-height : 105%;
	text-align : left;
	background-color : #DCDCDC;
	color : Navy;
	width : 700px;
	scrollbar-arrow-color : #DCDCDC;
	scrollbar-face-color : #DCDCDC;
	scrollbar-highlight-color : #DCDCDC;
	scrollbar-shadow-color : #DCDCDC;
	scrollbar-track-color : #DCDCDC;
	scrollbar-darkshadow-color : #DCDCDC;
	scrollbar-base-color : #DCDCDC;
	scrollbar-3dlight-color : #DCDCDC;
}
