/*HTML ELEMENTS*/
body {
  margin: 0px 10px 0px 10px;
  padding: 0px 10px 0px 10px;
  font-family: Tahoma;
  background-color: #DFDFDF;
  color: #333;
}

a {
  text-decoration: none
}
  
a:hover {
  text-decoration: underline
}

ul {
  list-style: none
}

.bolded{
  font-weight: bold
}
.centered{
  text-align: center;
}
.pad{
  padding: 10px;
}

/*NAVIGATION*/
#navbar{
  text-align: right;
}

#navbar .home {
  text-align: left;
}

#navbar ul {
  width: 400px;
  position: absolute;
  right: 10px;
}

#navbar ul li {
  list-style-type: none;
  display: inline;
  text-align: right;
  margin-left: 10px;
}

#bottombar ul li {
  display: inline;
  margin-left: 10px;
}

form.search {
  display: inline;
}

/*RECIPES*/

.pagination {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 10px;
  background: #999;
  color: #444;
}
.pagination a {
  color: white;
}

.recipe {
  border: 1px solid #333333;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background-color: white;
  padding: 10px;
}

.recipe .warning {
  border: 1px solid #333333;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-color: #ff8080;
  padding: 20px;
}

.recipe .yield{
  text-align: right;
  size: x-small;
  line-height: 0em;
  color: #777;
}

.recipe .yield .ingredients {
    left-padding: 1em
}

/*HOME PAGE SPECIFICS*/
.stats{
  font-size: xx-small
}