@charset "utf-8";
/* CSS Document */

/* FONTS */
@font-face {font-family: OSBold; src: url('bold.ttf');}
@font-face {font-family: OSRegular; src: url('regular.ttf');}

/* LINK STYLING */
A:link {color:#DD2222; text-decoration: NONE}
A:visited {color:#999999; text-decoration: NONE}
A:hover {color:#FF0000; text-decoration: NONE}
A:active {color:#AA0000; text-decoration: NONE}

/* TYPE STYLING */
body,th,tr,td,p {
  line-height: 1.3;
  letter-spacing: 0.8px;
  font-family: OSRegular, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #F4F4F4;
} 
h1 {
  line-height: 0.5;
  color: #F4F4F4;
  font-family: OSBold,helvetica,arial,sans-serif;
  font-size: 100px;
  margin: 0;
}
h2 {
  line-height: 1.1;
  color: #F4F4F4;
  font-family: OSBold,helvetica,arial,sans-serif;
  font-size: 50px;
  margin: 0;
}
h3 {
  line-height: 1.1;
  color: #F4F4F4;
  font-family: OSBold,helvetica,arial,sans-serif;
  font-size: 25px;
  margin: 0;
}
h4 {
  line-height: 1.1;
  color: #F4F4F4;
  font-family: OSBold,helvetica,arial,sans-serif;
  font-size: 36px;
  margin: 0;
}
h5 {
  line-height: 1.3;
  color: #F4F4F4;
  font-family: OSBold,helvetica,arial,sans-serif;
  font-size: 20px;
  margin: 0;
}

/* TABLE/ALIGNMENT DIV STYLES
	page = main aligner, centered @ 80% of view width
	smalltable = a less-wide table for text blocks @ 70% of view width
	center = for centering
	centerhelmet = for centering and sizing helmet images
	first = bowl name
	second = helmet
	third = radio button
	fourth = team rank
	fifth = team name
	sixth = team record
	blackbar = a black divider bar
	whitebar = a white divider bar
*/
.page {
  margin: auto;
  width: 80%;
  border: 0px;
  padding: 0px;
}
.smalltable {
  margin: auto;
  width: 70%;
  border: 0px;
  padding: 0px;
}
.center{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.centerhelmet{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
}
.first {
  margin: auto;
  max-width: 20%;
  border: 0px;
  padding: 4px;
  text-align: center;
}
.second {
  margin: auto;
  max-width: 20%;
  border: 0px;
  padding: 4px;
}
.third {
  margin: auto;
  max-width: 10px;
  border: 0px;
  padding: 4px;
}
.fourth {
  margin: auto;
  width: 10%;
  border: 0px;
  padding: 4px;
}
.fifth {
  width: 35%;
  border: 0px;
  padding: 4px;
  text-align: left;
}
.sixth {
  margin: auto;
  width: 20%;
  border: 0px;
  padding: 4px;
}
.blackbar {
  background-color: #0F0F0F;
  height: 10px;
}
.whitebar {
  background-color: #f4f4f4;
  height: 10px;
}

/* INPUT STYLING */
input[type=button],input[type=submit]{
  background-color: #F4F4F4;
  border: none;
  width: 50%;
  color: #141414;
  padding: 16px 32px;
  text-decoration: none;
  font-family: OSBold,helvetica,arial,sans-serif;
  font-size: 30px;
  margin: 4px 2px;
  cursor: pointer;
}
input[type=text]{
  border: none;
  border-bottom: 5px solid #141414;
  font-weight: bold;
  font-size: 20px;
  font-style: bold;
  font-family: OSRegular,helvetica,arial,sans-serif;
}
textarea{
  width: 500px; 
  height: 100px; 
  overflow-wrap: break-word;
  border: none;
  border-bottom: 6px solid #000000;
  border-top: 6px solid #000000;
  border-right: 6px solid #000000;
  border-left: 6px solid #000000;
  font-size: 20px;
  font-style: normal;
  font-family: helv,helvetica,arial,sans-serif;
}
/* Word wrapper */
.ow-break-word {
  overflow-wrap: break-word;
}
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #FFFFFF;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #00AAFF;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #FF0000;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: black;
}

