﻿/* this is needed so that bootstrap styles would not interfere with original styles MVC styles. we turn off box sizing by default, 
and turn it on only for the pages needed */
*, 
*:before, 
*:after
{
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

img
{
	vertical-align: inherit;
}

.nav-tabs {
	border-bottom: 0px;
}


.nav > li > a 
{
	padding: 0px 25px;
	height: 40px;
	display: table-cell;
	vertical-align: middle;
	outline: 0;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus
{
	font-size: 14px;
	color: #666;
}

.nav-tabs > li > a, .nav-tabs > li > a:hover, .nav-tabs > li > a:focus
{
	font-size: 14px;
	color: #069;
}

.form-control
{
	background-image: inherit;
}

/* --- Buttons ---------------------------------------------- */

.button
{
	width: 125px;
	height: 34px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	font-weight: bold;
	font-size: 15px;
	border: none;
	cursor: pointer;
	padding: 0px 20px;
	margin-right: 15px;
	font-family: arial,sans-serif;
}

.button-primary
{
	background-image: url(/newlook/css/images/button-bg-sprite_V1.gif);
	color: white;
}

.button-primary:disabled
{
	color: #ACA899;
	cursor: default;
	background-image: url(/newlook/css/images/button-bg-sprite_V1.gif);
	background-position:  0 -136px;
}

.button-primary:hover:enabled
{
	text-decoration: none;
	background-position:  0 -34px;
}

.button-default
{
	background-image: url(/newlook/css/images/button-bg-sprite_V1.gif);
	color: white;
	background-position: 0 -68px;
}

.button-default:disabled
{
	color: #ACA899;
	cursor: default;
	background-image: url(/newlook/css/images/button-bg-sprite_V1.gif);
	background-position:  0 -136px;
}

.button-default:hover:enabled
{
	text-decoration: none;
	background-position:  0 -102px;
}
