﻿
/* tabbutton 
---------------------------------------------- */
.tabbutton {
	display: inline-block;
	vertical-align: baseline;
	margin-left: 0px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	padding: 3px;
    background-color:rgb(41, 128, 185);
    color:white;
    height:25px;
    border:none;
    font-size:10px;
    font-family:Tahoma;

    -webkit-border-radius:  .5em .5em 0 0; 
	-moz-border-radius:  .5em .5em 0 0;
	border-radius: .5em .5em 0 0 ;
}
.tabbutton:hover {
	text-decoration: none;
    background-color:rgb(4, 205, 250);
}
.tabbutton:active {
	position: relative;
	top: 1px;
    background-color:rgb(4, 205, 250);
}
input {
    font-family: Tahoma;
}