/* Shared CSS */

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
	text-decoration: underline;
	color: blue;
	cursor :pointer;
}
a:hover {
	text-decoration: underline;
	color: green;
	font-weight: bold;
	cursor: pointer;
}

body {
	font-family: Tahoma, Arial, Verdana, Helvetica, sans-serif;
	font-size: 1em;
}

h1 {
	color: #c4820e;
	font-family: "freight-sans-pro","franklin gothic book","microsoft sans-serif","segoe ui","Open Sans",sans-serif;
	font-size: 1.75em;
	font-weight: normal;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-decoration: none;
}

h2 {
	color: Navy;
	font-size: 1.25em;
	font-weight: normal;
	margin: 0 0 0 0;
	padding: 1vmin 0 0 0;
}

table {
	width: 100%;
	border: 0 none;
	border-collapse: collapse;
}

td {
	border: 1px solid gray;
	padding: 3px;
}

th {
	background-color: gray;
	font-size: .8em;
	font-style: normal;
	color: white;
}

.button {
	background-color: green;
	border: none;
	color: white;
	display: inline-block;
	font-size: 16px;
	margin-top: 2vmin;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
}
.button:hover {
	box-shadow: 0 10px 10px 0 rgba(0,0,0,0.24), 0 10px 10px 0 rgba(0,0,0,0.19);
	background-color: white;
	color: green;
	font-weight: bold;
}
.button-small {
	background-color: green;
	border: none;
	color: white;
	display: inline-block;
	font-size: 1em;
	margin-top: 0.5vmin;
	padding: 8px 15px;
	text-align: center;
	text-decoration: none;
}
.button-small:hover {
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.24), 0 5px 5px 0 rgba(0,0,0,0.19);
	background-color: white;
	color: green;
	font-weight: bold;
}
.button-red {
	background-color: red;
	border: none;
	color: white;
	display: inline-block;
	font-size: 1em;
	margin-top: 0.5vmin;
	padding: 6px 12px;
	text-align: center;
	text-decoration: none;
}
.button-red:hover {
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.24), 0 5px 5px 0 rgba(0,0,0,0.19);
	font-weight: bold;
}

.change-password{
	padding-left: 20px;
	text-align: right;
}

.form-background{
	margin-top: 2vmin;
	background-color: AliceBlue;
	max-width: 800px;
	padding: 5px;
}

.form-prompt {
	margin-top: 2vmin;
	max-width: 40vmin;
}

.form-text {
	/* for non-mobile, just use browser defaults. */
}

.form-textbox {
	width: 100%;
}

.header {
	background-color: #fff;
}

.help {
	color: slategrey;
	font-size: 0.75em;
	word-wrap: normal;
	max-width: 800px;
}

.link-button {
	border: none;
	display: inline-block;
	margin: 0 2vmin 0 2vmin;
	padding: 1vmin;
}

.list-note {
	width: 30%;
}

.logout{
	padding-left: 15px;
}

.logoUCB {
	background-color: #fff;
}


.main {
	background-color: #fff;
	padding: 10px;
}

.row-color1 {
	background-color: #fff;
}
.row-color2 {
	background-color: #eee;
}
