/*
 *
 *   doc name  xx  Wulf's Universal CSS Quick Classes
 *   desc      xx  CSS Classes to Make Life Easier
 *   author    xx  Ulf Lonegren
 *   version   xx  1.0  xx  Jan. 19 2009
 *
 * 
**/


/*ooooooooooooooooooooooooooooooooooooo*/
/*xxxxxx    Table of Contents    xxxxxx*/
/*ooooooooooooooooooooooooooooooooooooo*/
/*

	[U1] Font Classes
	[U2] Global Classes

*/
/*ooooooooooooooooooooooooooooooooooooo*/
/*ooooooooooooooooooooooooooooooooooooo*/


/*oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo*/
/*ooooooooooooooooooooooooooooxxxxxx   [U1] Font Classes    xxxxxxoooooooooooooooooooooooooooo*/
/*oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo*/


/*xxxxxx    Text Decoration    xxxxxx*/

.highlight-neutral  { background:#ffc; }
.highlight-bad      { background:#ffc7ce; }
.highlight-good     { background:#c6efce; }


 
/*oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo*/
/*oooooooooooooooooooooooooooxxxxxx   [U2] Global Classes    xxxxxxooooooooooooooooooooooooooo*/
/*oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo*/
 
 
.show {display:block; visibility:visible;} /* Shows the element. */
	
.hidden {display:none; visibility:hidden;} /* Hides the element.*/
	
.visible {visibility:visible;} /* Makes the element visible.*/
	
.vis-hidden {visibility:hidden;} /* Hides an element but still takes up space, not fullly hidden like .H*/
	
.float-r  {float:right;} /* Floats the element to the right.*/
	
.float-l {float:left;}/* Floats the element to the left.*/ 
	
.display-i {display:inline;} /* Changes the display type to "inline".*/
	
.display-bl {display:block;} /* Makes the element a block-level element.*/
	
.clear {clear:both; padding:0; margin:0; line-height:2em; font-size:10px; border-bottom:1px solid #FFF;} /* Clears floated elements.*/
	
.center {margin:0 auto;}/* Makes block element centred.*/
 
.text-left {text-align:left;}
	
.text-right { text-align:right; }
	
.text-center { text-align:center; }
	
.text-justify { text-align:justify; }

.img-left { float:left;margin:4px 10px 4px 0; }
	
.img-right { float:right;margin:4px 0 4px 10px; }
	
.nopadding { padding:0; }
	
.noindent { margin-left:0;padding-left:0; }
	
.nobullet { list-style:none;list-style-image:none; }

.hr {background: #000000; height: 1px; margin: 10px 0; width: 100%; line-height:1px; font-size:1px;} /* Uses a DIV to create faux HR tag */

.hanging-quote {margin-left:-.3em;}/* Roman Haning Punctuation */


