/* 
    Document   : common
    Created on : 15.03.2010, 13:23:34
    Author     : Андрей
    Description:
        Общие стили для всех сайтов.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

button, a {
	outline: none; /* Убираем границу вокруг ссылок */
}

/* закругленные границы у элемента */
.rounded-box
{
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
}

/* тень */
.shadow
{
    -moz-box-shadow: 0 0 50px #ccc;
    -webkit-box-shadow: 0 0 50px #ccc;
}

img {border:none;}

.wrapper {
	clear:both;
	height:1px;
}

/* ссылки */
.hand {
	cursor:pointer;
}
.link {
	cursor:pointer;
	border-bottom:1px dashed;
}

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

/* конец выравнивания */

.inline-block {
	display:-moz-inline-block;
	display:inline-block;
	display:expression('inline');
}
