/*
*	Copyright: (CC) 2010, Radio Zero. Some rights reserved.
*	Version: 1.0
*	Author: John Doe
*	
*	File Description: Helpers and common classes for fast development. Includes a reset and fonts formatting from Yahoo! UI.
*/

@import url(reset.css); /* YUI Reset */
@import url(fonts.css); /* YUI Fonts */

/**--- Common for Document ---**/
body {
    cursor: default;
}

a {
	text-decoration: none;
	color: #333;
	outline: 0 none;
}
a:hover {
	text-decoration: underline;
}

/**--- Typographic Elements ---**/
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}
abbr,
dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}

/**--- Text Align ---**/
.txtl {
	text-align: left;
}
.txtr {
	text-align: right;
}
.txtc {
	text-align: center;
}

/**--- Floating ---**/
/* Flow */
.fl {
	float: left;
}
.fr {
	float: right;	
}
.fn {
	float: none;
}

/* Image Alignment */
img.alignleft {
	float: left;
	margin: 0 13px 13px 0;
}
img.alignright {
	float: right;
	margin: 0 0 13px 13px;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}

/**--- Clearing ---**/
.cf:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
}
/* Hides from IE-mac \*/
* html .cf {
	height: 1%;
}
/* End hide from IE-mac */
.cl {
	clear: left;
}
.cr {
	clear: right;
}
.cb {
	clear: both;
}

/**--- Text Replace ---**/
.txt-replace,
.txt-replace a {
	display: block;
	text-indent: -9999px;
	text-decoration: none;
	text-align: left;
	background-repeat: no-repeat;
}

/**--- Rounded Corners ---**/
.rc {
	display: inline-block;
	position: relative;
}
.tl,
.tr,
.br,
.bl,
.tlb,
.trb,
.brb,
.blb {
	display: block;
	position: absolute;
	font-size: 1px;
	line-height: 1px;
	background-repeat: no-repeat;
}
.tl,
.tlb {
	background-position: top left;
}
.tr,
.trb {
	background-position: top right;
}
.br,
.brb {
	background-position: bottom right;
}
.bl,
.blb{
	background-position: bottom left;
}

/**--- Misc ---**/
.none {
	display: none;
}
.mask {
	overflow: hidden;
	position: relative;
}
.masked {
	position: absolute;
	left: 0;
	width: 4000px;
}
.flist { /* First on List */
	margin-left: 0 !important;
	padding-left: 0 !important;
	border-left-width: 0 !important;
}
.llist { /* Last on List */
	margin-right: 0 !important;
	padding-right: 0 !important;
	border-right-width: 0 !important;
}
