/* ------------------------------------ */
/*      FILE INFO
Filename:       features.css
Description:    Tools and features
Author:         Yuriy Piskun aka YoYurec
Version:
Project:
/* ------------------------------------ */

/* ------------------------------------ */
/*      TABLE OF CONTENTS
  1. __IMAGE REPLACEMENT
  2. __DISPLAY
  3. __CSS3
  4. __FLOATS
/* ------------------------------------ */


/* ------------------------------------ */
/*      __IMAGE REPLACEMENT
/* ------------------------------------ */

.nir {
	background: transparent none left top no-repeat;
	margin: 0;
	padding: 0;
	font: normal .9em sans-serif;
	border: none;
}

a.nir {
	font: normal .9em sans-serif;
	display: block;
	text-decoration:none;
}

.nir span {
	position:relative;
	z-index:-1;
}

/* ------------------------------------ */
/*      __DISPLAY
/* ------------------------------------ */

.hide {
	text-indent: -9999px;
	overflow: hidden;
}

.inline {
	display: -moz-inline-stack; /* FF2 */
	display: inline-block;
	zoom: 1;
	*display: inline; /* IE6&7 */
	vertical-align: bottom;
}


/* ------------------------------------ */
/*      __CSS3
/* ------------------------------------ */

.round-css3 {
	border: 1px solid black;
	-moz-border-radius: 1em;     /* mozilla 1.5 */
	-webkit-border-radius: 1em;  /* safari 3 */
	-khtml-border-radius: 1em;   /* Konqueror */
	-o-border-radius: 1em;
	border-radius: 1em;          /* CSS3 */
}


/* ------------------------------------ */
/*      __FLOATS
/* ------------------------------------ */

.clear {
	border: 0;
	clear: both;
	display: block;
	float: none;
	margin: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearbox {zoom:1;overflow: hidden;}
.fleft{float:left;}
.fright{float:right;}
img.fleft{margin:0 1em 1em 0;}
img.fright{margin:0 0 1em 1em;}

