/* General CSS for the whole login app  
 * 
 * @author Rob Martin
 * 
 *	Date		Vsn		Who				Comments
 *	----		---		---				--------
 *	07/11/2015	1.0		Rob Martin		Initial Version
 *
*/
body{
	margin:0 0 10px;
	font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
	background-color:#ffffff;
	color: #4e4e50;
}

a {
	font-weight: bold !important;
}

a:focus, button:focus, input:focus {
	outline: none;
	outline-offset: 0;
}
.xbtn,
.btn-primary,
.btn-index {
    border-radius: 4px 4px 4px 4px;
    min-width: 150px;
    box-shadow: none;
    padding: 8px 30px 8px;
    border: none;
    text-shadow: none;
    color: #333;
    font-size: 12pt;
}
.btn-index {
    background-color: #FF6405;
    background-image: none;
    color: #fff;
}
.btn-primary, .btn-sm {
    background-color: #637D85;
    background-image: none;
    color: #fff;
}
.btn-primary:hover, .btn-sm:hover, .btn-primary:focus, .btn-sm:focus {
    background-color: #3A545C;color: #fff;
}
.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin input {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}

.textLink, .btn-secondary {
    background: none;
    border: none;
    display: inline;
    font: inherit;

    padding: 0em;
    outline: none;
    outline-offset: 0em;
    /* Additional styles to look like a link */
    cursor: pointer;
    text-decoration: underline;

    max-width: 260px;
    color: #007499 !important; /* override hover color */
    font-size: 13px;
    font-weight: bold;
    border-radius: 0px;
}

.mandatory {
	color: red;
	font-weight: bold;
}

.pageMessage {
	paadding: 0 5px 0 5px;
	border-radius: 4px 4px 4px 4px;
}
.subAddr {
	margin-top:0.15em;
}

/**
 * Container
 */
@media (min-width: 768px) {
	.container {
		max-width: none;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

/**
 * Header
 */
#header {
	background: #004153;
	height:100px;
	margin:0 0 20px;
}

#header h1 {
	padding: 25px 0;
	margin:0;
}

@media (max-width: 790px) {
	#header {
		height: 80px;
	}
	
	#header h1 {
		padding: 15px 0;
	}
}

/**
 * Logo
 */
.logo {
	display:block;
	text-indent: -9999px;
	background: url(https://www.vcat.vic.gov.au/themes/custom/vcat/logo.svg) no-repeat left center;
	height:50px;
	width:450px;
	margin:0;
	border: none !important;
}

/**
 * Typeahead
 */
.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999
}

.tt-menu {    /* used to be tt-dropdown-menu in older versions */
  max-height: 150px;
  overflow-y: auto;
  width: 422px;
  margin-top: 4px;
  padding: 4px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
          box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 3px 20px;
  line-height: 24px;
}

.tt-suggestion.tt-cursor,.tt-suggestion:hover {
  color: #fff;
  background-color: #0097cf;

}

.tt-suggestion p {
  margin: 0;
}


/* extra */
span.twitter-typeahead {
	width: 100%;
}
.input-group span.twitter-typeahead {
	display: block !important;
}
.input-group span.twitter-typeahead .tt-dropdown-menu {
	top: 32px !important;
}
.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
	top: 44px !important;
}
.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
	top: 28px !important;
}

.tt-menu{ position: absolute; top: 2em !important;}