/*
*	Copyright: (CC) 2010, ADX Networks. All rights reserved.
*	Version: 1.0
*	Author: Juan Pablo Barrientos Lagos, aka Juanpablob, http://twitter.com/juanpablob
*	
*	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;
}

/**--- Buttons ---**/
a.btn,
a.btn span {
    font-family: 'Calibri', Arial, Clean, sans-serif;
    display: inline-block !important;
    background-image: url(../img/spr-buttons.png) !important;
    background-repeat: no-repeat !important;
}
a.btn {
    padding-left: 7px !important;
    font-size: 14px !important;
    line-height: 100% !important;
    font-weight: bold !important;
    text-decoration: none !important;
    text-shadow: 1px 1px 0 #156f99;
    background-position: left -60px;
}
    a.btn span {
        height: 22px !important;
        margin-bottom: 0 !important;
        padding: 8px 10px 0 3px !important;
        color: #fff !important;
        background-position: right -90px;
    }
.featured a.btn {
    text-shadow: 1px 1px 0 #7c143f;
    background-position: left top;
}
    .featured .btn span {
        background-position: right -30px;
    }
a.btn:hover {
    text-shadow: 1px 1px 0 #7c143f;
    background-position: left top;
}
    a.btn:hover span {
        background-position: right -30px;
    }
