/* Standard classes */
.blue {	font-family: Arial, Helvetica, sans-serif; color: blue;}
.red {font-family: Arial, Helvetica, sans-serif; color: red;}
.white {font-family: Arial, Helvetica, sans-serif; color: white;}
.black {font-family: Arial, Helvetica, sans-serif; color: black;}
.maroon {font-family: Arial, Helvetica, sans-serif; color: maroon;}
.navy {font-family: Arial, Helvetica, sans-serif; color: navy;}
.green {font-family: Arial, Helvetica, sans-serif; color: green;}
.yellow {font-family: Arial, Helvetica, sans-serif; color: yellow;}
.dark_grey {font-family: Arial, Helvetica, sans-serif; color: #4a4a4d;}
.bold { font-weight: bold; }
.size10 { font-size: 10px; }
.size11 { font-size: 11px; }
.size12 { font-size: 12px; }
.size14 { font-size: 14px; }
.size16 { font-size: 16px; }
.size18 { font-size: 18px; }
.size20 { font-size: 20px; }
.size24 { font-size: 24px; }
.size28 { font-size: 28px; }
.link { text-decoration: underline; } 
.nolink { text-decoration: none; }
.left { text-align: left;} 
.center { text-align: center;} 
.right { text-align: right;} 
.middle { display: table-cell; vertical-align: middle;	}
.row_padding { padding-top: 3px; padding-bottom: 3px; }
.div_border {
	border: red solid 1px;
}

.btn {
	background-color: #00274E;
	color: white;
	font-size:  14px;
	font-family: Arial, Helvetica, sans-serif ;
	font-weight: bold;
	padding: 1px 5px 1px 5px;
	text-align: center;
	border: 1px solid transparent;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;	
}

.btn:hover {
	background-color: #cccccc;
	color: #00274E;
	border: 1px solid #00274E;
	text-align: center;
	text-decoration: none;
}

.mover_btn {
	background-color: #00274E;
	color: white;
	font-size:  12px;
	font-family: Arial, Helvetica, sans-serif ;
	font-weight: bold;
	padding: 2px 8px 2px 8px;
	text-align: center;
	border: 1px solid transparent;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
	width:135px;	
}

.mover_btn:hover {
	background-color: #cccccc;
	color: #00274E;
	border: 1px solid #1256A4;
	text-align: center;
	text-decoration: none;
}

.mover_select {
	width: 200px;
	height: 300px;
	font-size:  12px;
	font-family: Arial, Helvetica, sans-serif ;
	font-weight: bold;
}

/* pagination */
.pag_input { font-size:11px; color: #00274E; width: 25px;	vertical-align: middle; text-align: center; }
.pag_cell { font-family: Arial, Helvetica, sans-serif; font-weight:bold; font-size:11px; color: #00274E; }
.pag_align { vertical-align: middle; }

.title {
	color: #00274E; 
	font-weight:bold; 
	font-size:20px; 
	font-family:Georgia, 'Times New Roman', Times, serif; 
	line-height:60px;	
}

.css_button {
	background-color: #00274E;
	color: white;
	font: 12px bold Arial, Helvetica, sans-serif ;
	text-align: center;
	border: 1px solid #00274E;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 4px;
	padding-right: 4px;
}

.css_button:hover {
  background-color: #817FFF;
  color: #00274E;
  border: 1px solid black;
}

.first_tee {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-color: white;	
	color: black;
}
.back2first {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-color: #adbbe2;
	color: black;	
}
.tenth_tee {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-color: blue;
	color: white;	
}
.thirteenth_tee {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-color: orange;
	color: black;	
}
.sixteenth_tee {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	background-color: #009900;
	color: yellow;	
}

/* JQuery Alerts CSS */
#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #FFF;
	border: solid 2px #00C;
	color: #00274E;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #00274E;
	background: url(images/menu_bkgrd.png) top repeat-x;
	border: solid 1px #00274E;
	border-bottom: solid 1px #999;
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(images/info.gif);
}

#popup_content.confirm {
	background-image: url(images/important.gif);
}

#popup_content.prompt {
	background-image: url(images/help.gif);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

 /* menu style items */
#sddm {
	margin: 0;
	padding: 0;
	z-index: 30;
	}

#sddm li {	
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	font: bold 12px arial;
	}

#sddm li a {
	display: block;
	margin: 0;
	padding: 1px 4px;
	width: 120px;
	background: #00274E;
	color: white;
	text-align: left;
	text-decoration: none;
	}

#sddm li a:hover {
	color: #B69659;
	}

#sddm div {
	position: absolute;
	visibility: hidden;
	margin: 0px;
	padding: 2px;
	background: silver;
	border: 1px solid #00274E;
	}

#sddm div a {
	position: relative;
	display: block;
	margin:  0;
	padding: 1px 4px;
	width: 118px;
	white-space: nowrap;
	text-align: left;
	text-decoration: none;
	background: silver;
	color: gray;
	font: bold 12px arial;
	}

#sddm div a:hover {
	background: silver;
	color: #00274E;
	}
.tooltip_head {
	background: #00274E;
   font-family: Arial, Helvetica, sans-serif;
   font-size:11px;
   font-weight:bold;
	color: white;
   padding:1px;
   border: 1px solid #00274E;
}
.img_btn {
	cursor: pointer;
}
.tooltip_body {
   width:250;
	background-color: white;
   font-family: verdana;
   font-size:11px;
	line-height: 16px;
   border-left:1px solid #00274E;
   border-right:1px solid #00274E;
   border-bottom:1px solid #00274E;
   padding:3px;
	text-align: left;
}
.tooltip_head_index {
	background: #00274E;
   font-family: Arial, Helvetica, sans-serif;
   font-size:11px;
   font-weight:bold;
	color: white;
   padding:1px;
   border: 1px solid #00274E;
}
.tooltip_body_index {
   width:436;
	background-color: white;
   font-family: verdana;
   font-size:11px;
	line-height: 16px;
   border-left:1px solid #00274E;
   border-right:1px solid #00274E;
   border-bottom:1px solid #00274E;
   padding:3px;
	text-align: left;
}
.borderall {
	border: 1px solid black;
}
.bordertop {
	border-top: 1px solid black;
	padding: 2px;	
}
.bordertopbot {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	padding: 2px;
}
.borderbot {
	border-bottom: 1px solid black;
	padding: 2px;
}
.borderbot_white {
	border-bottom: 1px solid white;
}
.borderlbr {
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	border-right: 1px solid black;
}
.border_left {
	border-left: 1px solid black;
}
.border_right {
	border-right: 1px solid black;
}
.title_12 {
 	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #B69659;
	background-color: #00274E;
	text-align: center;
	line-height: 20px; 
}
.title_14 {
 	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #00274E;
	text-align: center;
	line-height: 20px; 
}
.title_16 {
 	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: white;
	background-color: #00274E;
	text-align: center;
	line-height: 24px; 
}
