﻿
.btn {
	border: 1px solid black;
	font-size:12px;
	margin:1px 2px;
	padding:4px 8px;
	}

.1btn-primary, 
.1btn-primary:focus, 
.1btn-primary.focus, 
.1btn-primary:active, 
.1btn-primary.active, 
.1btn-primary:visited {
	background-color:#337AB7;		/* button background color without focus */
	color:white;					/* button font color without focus */
	border: 1px solid #337AB7;
	outline: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	}

.1btn-primary:hover, 
.1btn-primary:active:hover, 
.1btn-primary.active:hover {
	background-color:lemonChiffon;		/* button background color WITH focus */
	color:#337AB7;						/* button font color WITH focus */
	border:1px solid #337AB7;
	outline: none;
	}


.2btn-primary {
	color: #FFFFFF;
	background-color: #080000;
	*background-color: #080000;
	background-image: linear-gradient(to bottom, #D4D2D2, #080000);
	background-repeat: repeat-x;
	border-color: #080000;
	background-image: linear-gradient(to bottom, #D4D2D2, #080000);
}


/* Tab buttons */
.tab-content {
	margin:0px;
	padding:0px;						/* gap between tab and panel */
	}

.nav-tabs > li {
	background-color:gainsboro;			/* background color of inactive tab */
	}

.nav-tabs > li > a {
	background-color:#337AB7;			/* background color of inactive tab, gainsboro; */
	color:white;						/* foreground color of inactive tab */
	font-size:10px; 
	padding:2px 5px;
	}

.nav-tabs > li > a:hover {
	background-color:lemonChiffon;			/* #CCFF99 hover over background color  #303136 !important; */
	border: medium none;				/* makes tab jump up a little */
	color:blue;							/* hover over foreground color #337AB7 #fff; */
	}

.nav-tabs > li.active > a:focus {
	background-color:silver;			/* cornflowerblue; */
	color: blue;						/* hover over foreground color  #fff; */
	}

.nav-tabs > li.active > a {
	background-color:silver;			/* hover over background color  #303136 cornflowerblue; !important; */
	border: medium none;				/* makes tab jump up a little */
	color: blue;						/* hover over foreground color  #fff; */
	}

.nav-tabs > li.active > a:hover {
	color: black;
	cursor: default;
	background-color: #aaaaaa;
	border-bottom-color: transparent;
	font-size:10px; 
	} 
/* Tab buttons end */

