body {
	padding-top: 70px;
}

.navbar-default .navbar-brand a {
	color: #333;
	font-size: 20px;
	cursor: pointer;
}

.navbar-default .navbar-brand:hover a {
	color: #777;
	text-decoration: none;
}

#fang {
	position: fixed;
	bottom: 5px;
	right: 10px;
	text-align: right;
}

#sidebar {
	position: fixed;
	top: 100px;
	right: 10px;
	text-align: right;
}

.margin-top-15 {
	margin-top: 15px;
}

.margin-top-20 {
	margin-top: 20px;
}

.border-top {
	border-top: 1px solid #555;
}

/* ---------------------------------------------------------------------------- */
/* link for 'hidden-div' popovers (addscore.php, editgolfer.php, editscore.php) */
/* see notes in editgolfer.php -- link in moneylist.php using this too now      */
/* ---------------------------------------------------------------------------- */
#index-popover,
table#money-list td a.money {
	text-decoration: none;
}

#index-popover:hover,
table#money-list td a.money:hover {
	font-weight: bold;
}

#index-popover:visited,
table#money-list td a.money:visited {
	color: #337ab7;
}

/* ------------------------------------------------------------------------------------------------ */
/* some popovers use a hidden div to hold the content (addscore.php, editgolfer.php, editscore.php) */
/* ------------------------------------------------------------------------------------------------ */
#popover-hidden-content {
	display: none;	/* don't display the hidden div */
}

/* ------------------------------------------------------------------------------------- */
/* these apply to all popovers (populated with content via a hidden div or an ajax call) */
/* ------------------------------------------------------------------------------------- */
.popover {
	max-width: none;	/* max-width gets auto-generated for the popover (via bootstrap), sometimes it's not wide enough... set to 'none' so it's not limited to a specific width */
}

.popover .popover-content {
	max-height: 380px;
	overflow-y: auto;
	overflow-x: hidden;
	cursor: pointer;
	padding: 2px 10px 2px 10px;
}

.popover .popover-content table {
	margin-bottom: 5px;
}

.popover .popover-content table th,
.popover .popover-content table td {
	padding: 4px;
}

/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* specific styles for the 'editgolfer' popover... when max-height was added to the 'popover-content' selector above (to enable scrolling */
/* for the 'moneylist' popover), the 'editgolfer' popover now had scrolling too (don't want a max-height with scrolling for that one) but */
/* when max-height was removed for that popover (see below), the popover position was off... had to add 'top' with important to fix that  */
/*                                                                                                                                        */
/* this approach didn't work... 'top' can't be fixed at 45px because the popover height is dynamic (depending on index data)              */
/* handling this dynamically in golfjq.js now (see notes there)                                                                           */
/* -------------------------------------------------------------------------------------------------------------------------------------- */
/*
.popover.edit-golfer {
	top: 45px !important;
}
.popover.edit-golfer .popover-content {
	max-height:  none;
}
*/

/* --------------------------------------------------------------------------------------------- */
/* specific styles for the 'moneylist' popover... for some reason, safari was sometimes wrapping */
/* the table data (just safari had this issue)... resolved by adding specific widths to the TDs  */
/* --------------------------------------------------------------------------------------------- */
.popover table#money-list-prizes td.date {
	width: 95px;
}

.popover table#money-list-prizes td.course {
	width: 165px;
}

.popover table#money-list-prizes td.name {
	width: 190px;
}

.popover table#money-list-prizes td.detail {
	width: 130px;
}
/* end */

.fa-trophy {
	color: #F4D03F;
	margin: 0 2px;
}

.fa-md {
	font-size: 1.2em;
	vertical-align: -5%;
}

td.action {
	width: 40px;
}

tr.stripe-row {
	background-color: #F9F9F9;
}

tr.comment-row {
	background-color: #FFFAF0;
}

textarea {
	resize: none;
}

input#add-message, input.side-button {
	margin-top: 24px;
}

#quickindex {
	font-family: Courier;
}

h3.title {
	color: #337AB7;
	font-size: 20px;
	margin: 0 0 10px 0;
}

ul.pagination {
	margin: 5px 0 10px 0;
}

div#chart {
	width: 100%;
	height: 350px;
}

div.registration tr.row-label td {
	font-size: 14px;
	font-weight: bold;
	padding-top: 10px;
}

div.registration tr.row-field td {
	padding: 10px 0;
}

table#tourneys td.register {
	padding-top: 6px;
}

/* ----------------------------------------------------------------------- */
/* styles for the course typeahead (created manually - see tourney.js)     */
/* no longer using this typeahead (see tourney.js)                         */
/* ----------------------------------------------------------------------- */
/*
div.relative {
	position: relative;
}

div#course-results {
	position: absolute;
	background-color: #fff;
	z-index: 100;
	width: 100%;	
}

div#course-results ul {
	padding: 0;
	width: 100%;
	list-style: none;
	border: 1px solid #ccc;
}

div#course-results ul li {
	padding: 4px 8px;
	cursor: pointer;
}

div#course-results ul li:hover {
	color: #46b8da;
	background-color: #f9f9f9;
}
*/
/* end */

/* 'div.row' selector for pages the don't use form-group (course.php, etc) */
/* 'select' selector for pages with drop-downs */
div.row input.field-error,
div.form-group input.field-error,
div.form-group select.field-error {
	border: 1px solid red;
}

/* w/o this, checkboxes align with labels correctly in regular browser but are off a little in mobile */
/* this section of the site will be used primarily on mobile so go with this for now */
div.scoring-checkboxes input[type='checkbox'] {
	margin-top: 3px;
} 

div.scoring-checkboxes span {
	display: block;
	font-weight: bold;
}

div.scoring-buttons input[type='button'],
div.scoring-buttons a[role='button'] {	
	width: 87px;
	margin-right: 15px;
	/*-webkit-appearance: none;	/* ios safari not honoring these styles, adding this was a possible resolution that didn't work */
	/*-moz-appearance: none;		/* try this if have issues in firefox */
}

table.live-scoring th,
table.live-scoring td {
	text-align: right;
}

table.live-scoring th:first-child,
table.live-scoring td:first-child {
	text-align: left;
	padding-left: 15px
}

table.live-scoring tr:last-child {
	border-bottom: 1px solid #ddd;
}

/* circle */
table.live-scoring span.under-par {
	padding: 2px 6px;
	border-radius: 50%;
	border: 1px solid #337AB7;	
}

table.live-scoring td.under-par {
	padding-right: 0;
}

/* using 'number' inputs for some inputs so mobile devices display the numeric keyboard by default but want to hide increment/decrement buttons */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

div.date-picker-icon {
	cursor: pointer;
}

/* w/o min-width, the 'moneylist' popover sometimes had wrapping issues in safari */
/* resolved instead by setting specific widths for the moneylist popover TDs (see above)
@media (min-width: 768px) {
	.popover.money-list {
		min-width: 675px;
	}	
}
*/


/* testing typeahead 0.11.1 (see notes in tourney.js) 
.typeahead, .tt-query, .tt-hint {
  width: 396px;
  height: 30px;
  padding: 8px 12px;
  font-size: 24px;
  line-height: 30px;
  border: 2px solid #ccc;
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  outline: none;
}

.typeahead {
  background-color: #fff;
}

.typeahead:focus {
  border: 2px solid #0097cf;
}

.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 {
  width: 422px;
  margin: 12px 0;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  -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;
  font-size: 18px;
  line-height: 24px;
}

.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;

}

.tt-suggestion p {
  margin: 0;
}
*/