body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.logout:hover {
	background-color: #F88;
	color: black;
}
.topnav a.logout {
	float:right;
}
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}
.topnav .back {
	color: #FFF;
	background-color: #04AA6D !important;
}
.topnav .back:hover {
	color: #FFF;
	background-color: #999 !important;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav a:first-child {
	  background-color: inherit;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a.active {
	  background-color: #04AA6D;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

div#container {
	width: 100%;
	max-width: 600px;
	margin: 20px auto;
}
div.buttons {
	text-align: center;
	margin: 10px 0;
}
a.button {
  display: inline-block;
  text-decoration: none;
  background-color: white;
  color: #333333;
  padding: 5px 20px;
  margin: 0 10px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
  border-radius: 10px;
  height: 20px;
}
a.button-large {
	font-size: 1.5em;
}

.profile_notice,.profile_error {
	width: 90%;
	padding: 10px;
	padding: 1em 1em 1em 3.5em;
	background-repeat: no-repeat;
	background-size: 2.5em 2.5em;
	background-position: 5px 50%;
	border-radius: 10px;
	box-shadow: 2px 2px 8px 8px rgba(0, 0, 0, 0.1);
	font-size: 1.2em;
}
.profile_notice {
	background-image: url('thumbs_up.png');
}
.profile_error {
	background-image: url('thumbs_down.png');
}
