/* HELPER */

	/* Clear Fix*/
	.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
	.clearfix {  display: inline-block; }
	html[xmlns] .clearfix { display: block; }
	* html .clearfix { height: 1%; }	
	
	/* Position */
	.pAbs { position: absolute; }
	.pRel { position: relative; }
	
	/* Mostrar/Ocultar */
	.show { display: block; }
	.hide { display: none; }
	
	/* Float */
	.fLeft { float: left; }
	.fRight { float: right; }
	.fNone { float: none; }
	.fClear { clear: both; }
	.fClearl { clear: left; }
	.fClearr { clear: right; }
	
	/* Width */
	.w10 { width: 10%; }
	.w25 { width: 25%; }
	.w33 { width: 33%; }
	.w45 { width: 45%; }
	.w49 { width: 49%; }
	.w50 { width: 50%; }
	.w75 { width: 75%; }
	
	/* Border Images */
	.corner.top { top: 0; }
	.corner.bottom { bottom: 0; }
	.corner.left { left: 0; }
	.corner.right { right: 0; }
	
	.corner.top.left { background-position: left top; }
	.corner.top.right { background-position: right top; }
	.corner.bottom.left { background-position: left bottom; }
	.corner.bottom.right { background-position: right bottom; }
	
	/* Border **/
	.b0 { border: 0px; } 
	.b0T { border-top: 0px; }
	.b0R { border-right: 0px; }
	.b0L { border-left: 0px; }
	.b0B { border-bottom: 0px; }
	
	.b1 {  border: 1px dashed #666; }
	.b1T {  border-top: 1px dashed #666; }
	.b1R {  border-right: 1px dashed #666; }
	.b1L {  border-left: 1px dashed #666; }
	.b1B {  border-bottom: 1px dashed #666; }
	
	/* Border Radius */
	.bR {
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		-o-border-radius: 5px;
		-khtml-border-radius: 5px;
	}
