﻿@media screen and (max-width: 479px) {
	form .flbl {
		width: 90%;
		display: block;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
		text-align: left;
	}

	form .fctrl {
		width: 90%;
		display: block;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
}

@media screen and (min-width: 480px) {
	form .flbl {
		width: 20%;
		display: inline-block;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
		text-align: right;
	}

	form .fctrl {
		width: 70%;
		display: inline-block;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}

		form .fctrl input {
			width: 69% !important;
			display: inline !important;
		}
}

@media print {
}

body {
	font-family: 'Gotham Book';
	font-size: 10px;
}

.body-content {
	padding: 20px;
}

form .fgrp {
	margin-top: 5px;
	clear: both;
}

form .flbl {
	height: 35px;
	background-color: #c9c9c9;
	border: 1px solid #808080;
	vertical-align: middle;
}

form .fctrl {
	height: 35px;
	background-color: #ffffff;
	border: 1px solid #808080;
	text-align: left;
	vertical-align: central;
}

	form .fctrl input[type=text] {
		padding: 3px;
		border-radius: 4px;
		border: 1px solid #cccccc;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
	}

.redstar {
	color: red;
}

.buttonVBar {
	display: inline-block;
	width: 30px;
	text-align: center;
	color: #808080;
}