/*
	*================================================
	*	components.css v0.5
	*	Kaspersky Lab Global Experience
	*	Curator: Andres Perez
	*	Contact: andres.perez@kaspersky.com
	*================================================
*/


/* buttons */

.btn {
	color: #189176;
	display: inline-block;
	*display: inline-block;
	*zoom: 1;
	padding: 4px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	background-image: none;
	background-color: #fff;
	border: 1px solid #ccc;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
	color: #189176;
	background-color: #ebebeb;
	border-color: #adadad;
}

.btn:active,
.btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
			box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.btn.disabled,
.btn[disabled],
.btn.disabled:hover,
.btn[disabled]:hover,
.btn.disabled:focus,
.btn[disabled]:focus,
.btn.disabled:active,
.btn[disabled]:active {
	background-color: #fff;
	border-color: #ccc;
	pointer-events: none;
	cursor: not-allowed;
	-webkit-box-shadow: none;
			box-shadow: none;
	opacity: .65;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
		filter: alpha(opacity=65);
}

.btn-success,
.btn-success:hover {
	background-color: #2ecc71;
	color: #fff;
	border-color: #27ae60;
}

.btn-success:hover {
	background-color: #27ae60;
}

.btn-action,
.btn-action:hover {
	background-color: #1abc9c;
	color: #fff;
	border-color: #16a085;
}

.btn-action:hover {
	background-color: #16a085;
}

.btn-flat,
.btn-flat:hover {
	background-color: #0cb0a2;
	color: #fff;
	border: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}

.btn-flat:hover {
	background-color: #0c8f84;
}

/* tables */

table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

.table th,
.table td {
    padding: 8px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
}

.table th {
    font-weight: bold;
}

.table thead th {
    vertical-align: bottom;
}

.table tbody + tbody {
    border-top: 2px solid #ddd;
}

.table .table {
    background-color: #fff;
}

.table-bordered {
    border: 1px solid #ddd;
    border-collapse: separate;
    *border-collapse: collapse;
    border-left: 0;
}

.table-bordered th,
.table-bordered td {
    border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
    border-top: 0;
}

table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
    display: table-cell;
    float: none;
    margin-left: 0;
}

.table td.span1,
.table th.span1 {
    float: none;
    width: 44px;
    margin-left: 0;
}

.table td.span2,
.table th.span2 {
    float: none;
    width: 124px;
    margin-left: 0;
}

.table td.span3,
.table th.span3 {
    float: none;
    width: 204px;
    margin-left: 0;
}

.table td.span4,
.table th.span4 {
    float: none;
    width: 284px;
    margin-left: 0;
}

.table td.span5,
.table th.span5 {
    float: none;
    width: 364px;
    margin-left: 0;
}

.table td.span6,
.table th.span6 {
    float: none;
    width: 444px;
    margin-left: 0;
}

.table td.span7,
.table th.span7 {
    float: none;
    width: 524px;
    margin-left: 0;
}

.table td.span8,
.table th.span8 {
    float: none;
    width: 604px;
    margin-left: 0;
}

.table td.span9,
.table th.span9 {
    float: none;
    width: 684px;
    margin-left: 0;
}

.table td.span10,
.table th.span10 {
    float: none;
    width: 764px;
    margin-left: 0;
}

.table td.span11,
.table th.span11 {
    float: none;
    width: 844px;
    margin-left: 0;
}

.table td.span12,
.table th.span12 {
    float: none;
    width: 924px;
    margin-left: 0;
}

/* forms */

.form .input-label,
.form input,
.form select,
.form textarea {
	margin-bottom: 12px;
	vertical-align: middle;
}

.form label + textarea {
	vertical-align: top;
}

.form .input-label input[type="text"],
.form .input-label textarea,
.form .input-label select {
	display: block;
	margin-bottom: 0;
}


.contact table td {
	vertical-align: top;
}