@charset "utf-8";

/* ------------------------------------------------
		Default Styles  [ default.css ]
    
    ver 1.00 2009-04-06
    Based on Yahoo! UI Library: Fonts CSS

    # Font-size Adjustment
    
    77% = 10px	| 	112% = 16px	|	167% = 22px	
    85% = 11px	|	129% = 17px	|	174% = 23px
    92% = 12px	|	136% = 18px	|	182% = 24px
    100% = 13px	|	144% = 19px	|	189% = 25px
    107% = 14px	|	152% = 20px	|	197% = 26px
    114% = 15px	|	159% = 21px	|

---------------------------------------------------- */
/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.7.0
*/
/**
 * YUI Fonts
 * @module fonts
 * @namespace yui-
 * @requires 
 */

/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
	font:13px/1.231 arial,helvetica,clean,sans-serif;
	/* for IE6/7 */ 
	*font-size:small; 
	/* for IE Quirks Mode */
	*font:x-small; 
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */ 
select,
input,
button,
textarea,
button {
	font:99% arial,helvetica,clean,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
	font-size:inherit;
	font:100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
	font-family:monospace;
	*font-size:108%;
	line-height:100%;
}

/*because legend doesn't inherit in IE */
legend {
	color: #000;
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
textarea,
select {
	*font-size: 100%;
}

/* ------------------------------
		Reset
------------------------------ */
* { margin: 0px; padding: 0px;}
table { border-collapse: collapse; border-spacing: 0px;}
img, fieldset { border: 0;}
img { vertical-align: bottom;}
address, em, strong { font-style: normal;}
ol, ul { list-style: none;}
caption, th { text-align: left;}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

/* ------------------------------
		Default Settings
------------------------------ */
body { font-size: 13px; *font-size: small; *font:x-small;}
select,input,textarea { font-size:99%;}


/* ------------------------------
		Clear module
------------------------------ */
.clearFloat { zoom: 100%;}
.clearFloat:after { content: "."; clear: both; height: 0; display: block; visibility: hidden;}


/* ------------------------------
		Float module
------------------------------ */
.left { float: left;}
.right { float: right;}


