/* DL CSS
HTML:	<dl>
			<dt>text</dt>
			<dd class="ddLeft">text</dd>
			<dd class="ddRight"><p>text</p></dd>				
			<dd class="ddClear"></dd>
		</dl>
------------------------------------------------------ */

#text dl {
	position: realtive;
	margin: 10px 0;
	padding: 1px; 
	width: 300px;
	background: #aaaaaa;
}

#text dl dt {
	padding: 0 0; 
	font-family: Trebuchet MS, verdana, arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #0A59A8;   
	background: #888888;
}

#text dl dd.ddLeft {
	float: left;
	padding: 0 10px; 
	width: 60px;
	min-height: 100px;
	font-family: Trebuchet MS, verdana, arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.7em;	
	color: #0A59A8;   
	background: #cccccc;
}

#text dl dd.ddRight {
	margin: 0 0 0 80px;
	padding: 0; 
	min-height: 100px;
	background: #dddddd;
}

#text dl dd.ddRight p {   
	padding: 0 0 0 10px;
	font-family: Trebuchet MS, verdana, arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.7em;	
	color: #0A59A8;
}

#text dl dd.ddClear {
	clear: both;  
	line-height: 0px; 
	height: 0px;
	font-size: 0px;
}


/* FIELDSET CSS
HTML:	<fieldset>
			<legend>text</legend>
			<p><label>text</label><input type="textfield" class="txt" /></p>
			<p><label>text</label><input type="textfield" class="txt" /></p>
			<p><label>text</label>
				<select>
					<option>text</option>			
					<option>text</option>		
					<option>text</option>		
				</select>	</p>
			<p><label>text</label><textarea cols="5" rows="3"></textarea>	</p>	
			<p><label>text</label><p class="submit"><input type="submit" value="Send" /></p>										
		</fieldset>
------------------------------------------------------ */

#text fieldset {
	margin: 10px 0 0 0;
	padding: 0 0 10px 10px;
	width: 500px;
	background: #e5e5e5;    
	border: 1px solid #999999;
}

#text fieldset legend {
	padding: 2px 6px;
	color: #fff;
	background: #9ca6d1;
	border: 1px solid #999999;
} 

#text fieldset div{
	padding: 10px 0 0 0;
} 

#text fieldset div p{
	padding: 2px 0 2px 0;
} 

#text fieldset label {
	width: 150px;
	float: left;
	text-align: right;
	margin-right: 0.5em;
	display: block;
}

#text fieldset input.txt {
	padding: 1px;
	width: 200px;
	color: #333333;
	background: #f5f5f5;
	border: 1px solid #aaaaaa;
}

#text fieldset select {
	padding: 1px;
	width: 200px;
	color: #333333;
	background: #f5f5f5;
	border: 1px solid #aaaaaa;
}

#text fieldset textarea {
	padding: 1px;
	width: 200px;
	height: 80px;
	color: #333333;
	background: #f5f5f5;
	border: 1px solid #aaaaaa;
}

#text p.submit {
	padding: 10px 0 0 155px;
}

#text p.submit input {
	text-align: center;
	background: #acbee7;
	border: 1px solid #777777;
}


/* TABLE CSS
HTML:	<table>
			<caption>text</caption>
			<thead>
				<tr><th>text</th></tr>
			</thead>
			<thbody>
				<tr><td>text</td></tr>
			</thead>
			<tfoot>
				<tr><td>text</td></tr>
			</thead>												
		</table>
------------------------------------------------------ */

#text table {
	margin: 0;
	padding: 1px;
	width: 400px;
	height: 80px;
	color: #333333;
	background: #cccccc;
	border-collapse: separate; 
	border-spacing: 2px;
	border: 1px solid #333333;
}

#text table caption {
	margin: 20px 0 2px 0;
	color: #333333;
}

#text table thead {
	color: #444444;
	background: #aaaaaa;
}

#text table thead th {
	padding: 1px 5px;
	width: 50%;
	border: 1px solid #333333;
}

#text table tbody {
	color: blue;
	background: #eeeeee;
}

#text table tbody td {
	padding: 1px 5px;
	border: 1px solid #333333;
}

#text table tfoot {
	color: red;
	background: #dddddd;
}

#text table tfoot td{
	padding: 1px 5px;
	border: 1px solid #333333;
}















