@charset "utf-8";
/* -----------------------------------------------------------------------------------------
File:			global.css	
Description:	Global css rules - imports additional css files.

Created:		30/01/07
Modified:		dd/mm/yy

TODO:			--
BUG/FIX:		Font size in IE 6=<

Author:			George Komianos
Copyright:		2006 Acrodev.com - Unless otherwise noted.
					The unique combination of images, colors, sizes, typography, and positioning 
					("the design") 	is copyright 2005 Acrodev.com and may not be reproduced. 
----------------------------------------------------------------------------------------- */

/* Imports 
--------------------------------- */

@import url(layout.css); 
@import url(type.css);
@import url(links.css);
@import url(forms.css); 

/*
font:
color
style

-- then decoration
border
background-img
background-color

-- then positioning and dimensions
position/float
width
height
padding
margin

-- the rest
display
*/


/* Root Elements 
------------------------------------------------------------------ */

body {
	text-align: center;
	line-height: 1.1em;
	background: #B4DCFA url(../img/tpl/page_backgr.jpg) repeat-x left top;
	padding: 0; 
	margin: 20px 0 0;	
}
div { 
	text-align: left;
	background-color: transparent; 	
	padding: 0; 
	margin: 0; 			
}
p { 
	padding: 0; 
	margin: 0 0 8px 0; 	
}
img { 
	border: none; 
	padding: 0;
	margin: 0; 	
}

div, p, td, th {
	/* font: 11px Verdana, Arial, Helvetica, sans-serif; */
}
abbr, acronym {
	border-bottom: 1px dotted #C1C1C1;
	cursor: help;
}
address {
	font-style: normal;
}
/* -- all lists -- */
dl {
	margin: 0;
	padding: 0;
}
dl dt {
	margin: 0 0 4px;
	padding: 0;
}
dl dd {
	margin: 0 0 20px;
	padding: 0;
}

/* other globals 
------------------------------------------------------------------ */

.px-left {
	float: left;
	margin: 0 6px 2px 0;
}
.px-right {
	float: right;
	margin: 0 0 2px 6px;
}
.hlight {
	color: #0066FF;
}

.auraltext { font-size: 0px; position: absolute; left: -1000px; }

/* global hacks
------------------------------------------------------------------ */

/* add this to the parent */
.clearfix:after
{
	content:".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {display:inline-block;}

/* Hide from IE Mac \*/
.clearfix { display:block; }
/* End hide from IE Mac */


