/* *******************************************************
J  a  v  a  c  a  t  z
Filename:   common.css
Purpose:    This file is created to hold common CSS styles
            that are useful to other projects.
            Please do not put other styles in this file.
Created by: KY 2007.05.14
Modified by KY 2010.09.06
******************************************************* */
@import "reset-fonts-grids.css";
@import "sendToFriend.css";

form {
	display: block;
	padding: 0;
	margin: 0;
}

.printOnly {
	display: none;
}

strong, b {
	font-weight: bold !important;
}
em, i {
	font-style: italic !important;
}
blockquote, indent {
	margin-left: 15px !important;
}
sup, sub {
	font-size: 75%;
}
strike, s, .strike {
	text-decoration: line-through;
}
code {
	font-family: "Courier New", Courier, mono;
}
.code2 {
	color: #000;
	background-color: #eee;
	font-family: "Courier New", Courier, mono;
	padding: 0 3px;
}

p {
	margin: 0 0 1.2em 0;
}

/*
ul li {
	padding: 0;
	margin: 0;
}
*/

.pointer {
	cursor: pointer;
}

.normal {
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

/* *** Commonly used CSS *** */
.clearer {	/* span the whole bottom width, used commonly after floating elements */
	clear: both;
	display: block;
	height: 1px;
	margin-top: -1px;
	font-size: 1px;
	line-height: 1px;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1px; }
.clearfix { display: block; }
/* End hide from IE-mac */

.float_left {
	display: block;
	float: left;
	clear: none;
}
.float_left.margin {
	margin: 0 12px 3px 0;
}
.float_right {
	display: block;
	float: right;
	clear: none;
}
.float_right.margin {
	margin: 0 0 3px 12px;
}
.align_left { text-align: left; }
.align_right { text-align: right; }
.align_center { text-align: center; }
.align_justify { text-align: justify; }

.vertical_top { vertical-align: top !important; }
.vertical_bottom { vertical-align: bottom !important; }
.vertical_middle { vertical-align: middle !important; }
.vertical_baseline { vertical-align: baseline !important; }


.bold { font-weight: bold; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }

.noborder { border: 0; }
.bordertop { border-top: 1px solid; }
.borderbottom { border-bottom: 1px solid; }
.borderleft { border-left: 1px solid; }
.borderright { border-right: 1px solid; }

.redout { color: #FF0000; }
.grayout { color: #AAAAAA; }
.gray2out { color: #666666; }

.hide { display: none !important; }
.show { display: block; }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

.nopadding { padding: 0 !important; }
.nomargin { margin: 0 !important; }

.indent { margin-left: 15px; }

.bigger {
	font-size: 123%;
	
}
.smaller {
	font-size: 85%;
}

.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}

.nowrap {
	white-space: nowrap;
}

.fullwidth { width: 100%; }
/* .9 is to fix rendering bug in IE6 for some circumstances */
.half { width: 49.9%; }
.quarter { width: 24.9%; }
.one_third { width: 33.3%; }
.two_third { width: 66.6%; }
.three_quarter { width: 74.9%; }


table.fix {
	table-layout: fixed;
}
table.normal th,
table.normal td {
	text-align: left;
}
table.normal td {
	vertical-align: top;
}
table.align_center th,
table.align_center td {
	text-align: center;
}

object, embed {
	background-color: #fff;
}

.fckOnly { display: none; }
.test-message { color: #f33; background-color: #fcc; padding: 1px 5px; }
