	
	/* 
	    Document   : css-reset
	    Created on : May 7, 2013, 11:26:51 AM    
	*/
	
	@charset "UTF-8";	
					
	/*[ Reset all default Tag Selector's ]*/
	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td 
	{
	        margin		: 0;
	        padding		: 0;
	        border		: 0;
	        outline		: 0;
	        font-weight	: inherit;
	        font-style	: inherit;
	        font-size	: 100%;
	        font-family	: inherit;
	        vertical-align	: baseline;
	        z-index         : auto;
	}
	
	html, body
	{
	        height		: 100%;			
	}
	
	body 
	{
	        background	: #ffffff;
	        color		: #000000;
	        font		: normal 14px "RobotoRegular", Helvetica, sans-serif;;		
	
	        width		: 100%;
	        height		: 100%;	
	
	        text-align	: left; 	
	        margin		: 0px auto;	
	}
	
	/*[ Bold Text ]*/
	strong { font-weight: bold; }
	/*[ Style For Anchor Links ]*/			
	a:link, a:visited { color:#536cb4; text-decoration: none; }		
	a:hover, a:focus { color:#536cb4; text-decoration:underline; }
	/*[ Emphasise ]*/
	em { font-style: italic; }
	/*[ Style For Text Paragraph ]*/		
	p { margin:0 auto 10px auto; padding:0px; text-align:left; }
	/*[ Style For Order/Unorder List Elements ]*/
	ul, ul li {	list-style:none; text-align:left; }		
	ol, ol li {	list-style:decimal; text-align:left; }		
	/*[ Style For Image ]*/
	img { float:none; border:0px; }
	/*[ Style For Table Header ]*/
	caption, th, td { text-align: left; font-weight: normal; }		
	table { border-collapse: separate; border-spacing: 0; }		
	/*[ Style For Form Elements ]*/
	form, input, textarea, select, option
	{
	        margin:0px; padding:0px; border: 0 none;			
	}
	/*[ Style For Quote ]*/
	blockquote:before, blockquote:after, q:before, q:after { content: ""; }		
	blockquote, q { quotes: "" ""; }
	/*[ Style For getfocus ]*/
	:focus{ outline: 0; }
	a:focus { text-decoration: none; }
	/* IE10 hack */
	::-ms-clear { display: none; }
	::-ms-reveal { display: none; }	
	/* [ End Reset ] */	
	