/*		NS Reset CSS				*/
/*		Author: Nikita Seleckis		*/
/*		Last update: 2008-05-19		*/

html,body,address,blockquote,div,p,pre,h1,h2,h3,h4,h5,h6,hr,	/* block level 	*/
dd,dl,dt,ul,ol,li,												/* lists 		*/
a,abbr,acronym,b,big,br,cite,code,del,dfn,em,i,					/* inline text 	*/
ins,kbd,q,samp,small,span,strong,sub,sup,tt,var,				/* inline text 	*/
img,object,														/* misc 		*/
caption,table,tbody,td,tfoot,th,thead,tr,						/* table 		*/
input,textarea,select,button,form,fieldset,legend,label, 		/* form 		*/
font,u,s,center,dir,menu,strike,xmp,iframe						/* depricated 	*/
{
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	text-align: left;
	text-indent: 0;
	font-style: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-decoration: inherit;
}
iframe { height: 100%; }
applet {
	display: none;								/* remove depricated, use object instead */
}
hr,img,object {
	border: none;
}
img {
	vertical-align:top;
}
fieldset{
	border:none;
}
input,select,button {
	vertical-align: middle;						/* make all controls align middle to textline in all browsers */
}
input[type=text]{
	border: 1px solid #a5acb2;
}
input[type=password]{							/* edited by samy */
	border: 1px solid #a5acb2;
}
input[type=file]{							/* edited by samy */
	border: 0 none;
}
textarea {
	vertical-align: top;						/* ...and all textareas, but... */
}
input.button,
input.submit,
button {
	overflow: visible;							/* remove padding in buttons in IE (use classes “button” and “submit”	*/
}		 										/* for input-elements with the same values in the attribute “type”		*/

select[size] {
	vertical-align: top;						/* make align top to textline for all selectboxes which has attribute "size",.. */
}

select[size="1"] {
	vertical-align: middle;						/* ...if attribute "size" of a selectbox is set to "1", make it align middle to textline */
}
tr {
	vertical-align: top;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
optgroup {
	color: black;								/* optgroup in Opera has black background and white text... */
	background: white;							/* ...so let's fix it */
	font-style: normal;							/* works only in FF */
}
optgroup option {
	padding-left: 22px;							/* make padding in FF almost the same as in other browsers */
}
hr {
	height: 1px;								/* redefine in your base.css */
	margin: 7px 0;								/* crossbrowser hr */
}
ol li, ul li{
	list-style-type: none;
}

sub, sup{
	position: relative;							/* this method is better, there will not be extra padding in textline */
	font-size: 90%;
}
sub{
	top: 0.5em;
}
sup{
	top: -0.5em;
}

ins{
	text-decoration: none;
}