@charset "UTF-8";
/* CSS Document */

.NotificationCounter{
	display:inline-block;
	font-size:10px;
	font-family:Verdana, Geneva, sans-serif;
	height:16px;
	background:#F00;
	color:#FFF;

	border-radius:16px;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	border:solid 5px #FFF;
	line-height:16px;
	text-align:center;
	padding:0 5px;

	background-clip: padding-box;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	-moz-box-shadow: 1px 1px 1px #ccc;
	-webkit-box-shadow: 1px 1px 1px #ccc;
	box-shadow: 1px 1px 1px #ccc;
}

input[type=text],input[type=password],textarea{
	
	border:solid 1px #AAA;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	-webkit-box-shadow:0 0 2px #CCC inset;
	-moz-box-shadow:0 0 2px #CCC inset;
	box-shadow:0 0 2px #CCC inset;
	height:30px;
	line-height:30px;
	text-indent:5px;
	
}
input[type=text]:focus,input[type=password]:focus { outline:none; }