@charset "UTF-8";
/* Bowls style sheet */

body {
    font-family: Verdana, sans-serif;
	font-size: 0.75em;
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 2em;
    margin-bottom: 2em;
    padding-left: 0em;
}

h3 {
	text-align: center;
}

a:hover {
    color: red;
}

img {
	border : 0em;
}

table {
	font-size: 1em;
    border: thin solid #7F7F00;
	width: 100%;
}

td {
	text-align: center;
}

input[readonly] {
  background-color: lightgray;
}

/* input form */
#tableForm fieldset, #resultForm fieldset, #teamsForm {
    display: block;
    margin: 0 0 1em 0;
    border: 0 solid #FFFFFF;
    border-top: 0.1em solid #000000;
    padding: 0 1em 1em 1em;
}

#tableForm label,  #tableForm table,  #tableForm ul,
#resultForm label, #resultForm table, #resultForm ul,
#teamsForm label,  #teamsForm table,  #teamsForm ul {
    clear: both;
    float: left;
    display: block;
/*	width: 20em;	*/	/* If input fields declared outside labels, can vertically align labels with width */
    margin-top: 1em;
	font-size: 1em;	/* Otherwise table fields are larger */
}

.Small {
	font-size: 0.75em;
}

/* Normal screen */
.MobileOnly {
	display: none;
}
.wrapper {
    position: relative;
    float: left;
    left: 0%;		/* needed for 3 columns */
    width: 100%; 	/* needed for 3 columns */
}
.col1of2 {
    position: relative;
    float: left;
    left: 0%;
    width: 52%;
}
.col2of2 {
    position: relative;
    float: right;
    right: 0%;		
    width: 46%;		
}

/* Mobile handheld overrides */
@media all and (max-width: 699px) {
body {
    margin-left: 0em;
    margin-right: 0em;
    margin-top: 0em;
    margin-bottom: 0em;
}
.opt {
	display: none;
}
.MobileOnly {
	display: inline;
}
.wrapper {
    position: static;
    float: none;
    left: auto;
    width: auto;	
}
.col1of2 {
    position: static;
    float: none;
    left: auto;
    width: auto;	
}
.col2of2 {
    position: static;
    float: none;
    right: auto;
    width: auto;	
}

}

/* Printing */
@media print
{
tr {
	line-height: 100%;
}
td {
	padding: 0;
}
.wide
{
	width: 13em;
}
.wrapper {
    position: relative;
    float: left;
    left: 0%;		/* needed for 3 columns */
    width: 100%; 	/* needed for 3 columns */
}
.col1of2 {
    position: relative;
    float: left;
    left: 0%;
    width: 52%;
}
.col2of2 {
    position: relative;
    float: right;
    right: 0%;		
    width: 46%;		
}
.noPrint {
		display: none;
}
.PrintOnly {
	display: inline;
/*	font-size: 1.333em;
	text-align: center;*/
}
}