@charset "utf-8";
/*
PURPOSE:
	[1] Basic cascading stylesheet for ALL browsers
	[2] Contains only resets and global styles
	[3] MEDIA = SCREEN

REVISION HISTORY:
	November 25, 2008. v1.0. Under Construction.

STATUS OF THIS DOCUMENT:
	This is a working draft.

AUTHOR:
	cHaNdAn ChAuRaSiA
	c c h a u r a s i a @ g m a i l . c o m

LEGAL NOTICE:
	Distribution of this document is limited.
	Copyright (C) Luckett's of Watford Ltd. All Rights Reserved.
*/

/*
==================================
KILL THE DEFAULTS AND GLOBALIZE
==================================
*/

html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input { margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,pre,code,address,caption,cite,code,em,strong,th { font-weight: normal; font-style: normal; }
ul,ol { list-style: none; }
fieldset,img { border: none; }
caption,th { text-align: left; }
table { border-collapse: collapse; border-spacing: 0; }
em{
	color:#CBCBCB;
	font-style:italic;
	}

body{
	background:url(../images/mainBg.jpg) no-repeat center top #011B5C;
	font:62.5% Arial, Helvetica, sans-serif; /*This is default 10px. How?? Try yourself*/
	color:#020202;
	}
	
	
h1,h2,h3,h4,h5,h6{
	font-family:Georgia, "Times New Roman", Times, serif;
	}	


/*
==================================
ANCHOR TAGS
==================================
*/
a:link, a:active, a:visited{
	color:#FFFF00;
	text-decoration:none;
	}
	
a:hover{
	color:#fff;
	border-bottom:1px dotted #F6FF00;
	}	

/*
==================================
BACKGROUND BLOCK
==================================
*/
.txtBgBlock{
	padding:3px;
	background:#2067A8;
	border-bottom:2px solid #1D3A83;
	}





/*
=============================================
FLOAT AND CLEARFIX HACK FOR ANNOYING BROWSERS
=============================================
*/	

.floRt{
	float:right;
	}
	
.floLt{
	float:left;
	}	

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
.clearfix { display: inline-block; }

/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* stop commented backslash hack */

.clear{ clear:both;}


/*
Temp CSS
*/

.yello{
	color:#F6FF00;
	}