/** You can use this style for your INPUT, TEXTAREA, SELECT elements **/
fieldset {
	margin: 20px 0;
	padding: 15px 10px;
	border: 3px double #ccc;
	background-color: #FFF;
	overflow: auto;
	width: 500px;
}
legend {
	padding: 2px 5px;
	color: #000000;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
/* Nested Fieldset  */
fieldset fieldset  {
	background-color:#FFF;
	border: 1px solid #ccc;
}
fieldset fieldset legend {
	font-size: 90%;
}
/* Inline Section */
.inlineSection {
	overflow: auto;
	width: 100%;	
}

.myinputstyle {
	border: 1px solid #000000;
	/** remember to change image path **/
	background: #99CCFF url(bg948291087) repeat-x;
	font-family: tahoma, helvetica, sans-serif;
	font-style: normal;
	font-size: 14px;
	color: #454743;
	left: 200px;
	position: absolute;
	width: 278px;
}

/** You can use this style for your LABEL elements **/
.mylabelstyle {
	font-family: tahoma, helvetica, sans-serif;
	font-style: bold;
	font-size: 13px;
	color: #000000;
	border: thin none #000000;
}

/** 
* You can use this style for your INPUT, TEXTAREA, SELECT elements 
* for onmousefocus event
**/
.myinputstyle:focus {
	border: 1px solid #cccccc;
	/** remember to change image path **/
	background: url(none) no-repeat #cccccc;
	color: #454743;
}

