/*
* shared.css
* css that's applicable for all type of clients of the app
*/

/*-- Start reset --*/
	a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,button,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,input,ins,kbd,label,legend,li,mark form,menu,nav,object,ol,option,output,p,pre,q,ruby,s,samp,section,select,small,span,strike,strong,sub,summary,sup,table,tbody,td,textarea,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;border:0;padding:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
	button,input[type=checkbox],input[type=image],input[type=radio],input[type=submit],label{cursor:pointer}
	strong{font-weight:700}
	em{font-style:italic}
	.fList{list-style:none}
	sub, sup {font-size: 0.8em;vertical-align:sub;}
	sup { vertical-align: super;}
/*-- End reset --*/


html {
	font-size: 62.5%;/* 10px */
}

body {
	font-family: Helvetica, arial, sans-serif;
	font-size: 1.4rem;
	line-height: 1.75;
	
	background: tan;
	background-image: repeating-linear-gradient(to right,
		transparent 0,
		transparent 9px,
		rgba(255,255,255,0.2) 0,
		rgba(255,255,255,0.2) 10px,
		transparent 0,
		transparent 21px,
		rgba(255,255,255, 0.5) 0,
		rgba(255,255,255,0.2) 22px,
		transparent 0,
		transparent 33px,
		rgba(255,255,255,0.2) 0,
		rgba(255,255,255,0.2) 34px,
		transparent 0,
		transparent 60px
	);
}

