/* CSS Pre-processor */
/*###################################################################
#
#  shorthand.css - HTML/CSS Shorthand Notation
#
#  These styles are meant to serve as shorthand within the HTML
#  "class" attribute for common formatting.
#
#  This is for any elements that would accept an inline style, but
#  the purpose is to keep the HTML tidy.
#
#  IMPORTANT:  This style sheet should be included after all other
#  style sheets to make sure that these shorthand styles are not 
#  over-ridden.  Otherwise, they will appear buggy in implementation.
#
###################################################################*/
	
	.right {
		text-align: right;
	}
	
	.left {
		text-align: left;
	}
	
	.center {
		text-align: center;
	}
	
	.top {
		vertical-align: top;
	}
	
	.bottom {
		vertical-align: bottom;
	}
	
	.middle {
		vertical-align: middle;
	}
	
	.larger {
		font-size: larger;
	}

	.full {
		width: 100%;
		height: 100%;
	}

	.bold {
		font-weight: bold;
	}

/* Runtime: 0.00039386749267578 */