﻿/*----------------------------------------------------------
The base color for this template is #5c87b2. If you'd like
to use a different color start by replacing all instances of
#5c87b2 with your new color.
body had:
    background-color: #5c87b2;
----------------------------------------------------------*/
body {
    font-size: .85em;
    font-family: "Trebuchet MS", Verdana, Helvetica, Sans-Serif;
    margin: 0;
    padding: 0;
    color: #696969;
}

a:link {
    color: #253b56;
    text-decoration: underline;
}

a:visited {
    color: #505abc;
}

a:hover {
    color: #1d60ff;
    text-decoration: none;
}

a:active {
    color: #12eb87;
}

p, ul {
    margin-bottom: 20px;
    line-height: 1.6em;
}

header,
footer,
nav,
section {
    display: block;
}

hr 
{
    color:#a9bdd6;
}

/* BUTTONS   
----------------------------------------------------------*/
.buttonMedium {
  border: 2px solid rgba(255,255,255,0.45);
  line-height: 2.2;
  padding: 0 14px;
  font-size: 1rem;
  text-align: center;
  color: #fafaf6;
  text-shadow: 1px 1px 1px #000;
  border-radius: 30px;
  background-color: rgb(47 119 167 / 100%);
  background-image: linear-gradient(
    to top left,
    rgb(0 0 0 / 20%),
    rgb(0 0 0 / 20%) 30%,
    rgb(0 0 0 / 0%)
  );
  box-shadow:
    inset 2px 2px 3px rgb(255 255 255 / 60%),
    inset -2px -2px 3px rgb(0 0 0 / 60%);
  margin-top: 4px;
}

.buttonMedium :hover {
  background-color: rgb(255 0 0 / 100%);
}

.buttonMedium :active {
  box-shadow:
    inset -2px -2px 3px rgb(255 255 255 / 60%),
    inset 2px 2px 3px rgb(0 0 0 / 60%);
}

.buttonSmall {
  border: 1px solid rgba(255,255,255,0.45);
  line-height: 1.5;
  padding: 0 10px;
  font-size: 0.7rem;
  text-align: center;
  color: #fafaf6;
  text-shadow: 1px 1px 1px #000;
  border-radius: 16px;
  background-color: rgb(47 119 167 / 100%);
  background-image: linear-gradient(
    to top left,
    rgb(0 0 0 / 20%),
    rgb(0 0 0 / 20%) 30%,
    rgb(0 0 0 / 0%)
  );
  box-shadow:
    inset 1px 1px 2px rgb(255 255 255 / 60%),
    inset -1px -1px 2px rgb(0 0 0 / 60%);
  margin-top: 4px;
  margin-bottom: 4px;
}

.buttonSmall :hover {
  background-color: rgb(255 0 0 / 100%);
}

.buttonSmall :active {
  box-shadow:
    inset -1px -1px 2px rgb(255 255 255 / 60%),
    inset 1px 1px 2px rgb(0 0 0 / 60%);
}

/* HEADINGS   
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em;
    color: #253b56;
}

h1 {
    font-size: 2em;
    padding-bottom: 0;
    margin-bottom: 0;
}

h2 {
    padding: 0 0 10px 0;
	clear: both;
	text-align: left;
}

h3 {
    font-size: 1.2em;
    clear: both;
    text-align: left;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
    margin-block-start: 1.3em;
    margin-block-end: 1.3em;
}

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

/* you can specify a greater or lesser percentage for the 
page width. Or, you can specify an exact pixel width. 
was:
    width: 90%;
    margin-left: auto;
    margin-right: auto;
*/
.page {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

header, #header {
    position: relative;
    margin-bottom: 0px;
    color: #253b56;
    padding: 0;
}

header h1, #header h1 {
    font-weight: bold;
    padding: 5px 0;
    margin: 0;
    color: #fafaf6;
    border: none;
    line-height: 2em;
    font-size: 32px !important;
    text-shadow: 1px 1px 2px #111;
}

#main 
{
    padding: 10px 10px 5px 10px;
    background-color: #fff;
    border-radius: 4px 0 0 0;
    -webkit-border-radius: 4px 0 0 0;
    -moz-border-radius: 4px 0 0 0;
}

footer, 
#footer {
    background-color: #fff;
    color: #999;
    padding: 10px 0;
    text-align: center;
    line-height: normal;
    margin: 0 0 30px 0;
    font-size: .9em;
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
}

/* TAB MENU   
----------------------------------------------------------*/
ul#menu {
    border-bottom: 1px #5C87B2 solid;
    padding: 0 0 2px;
    position: relative;
    margin: 0;
    text-align: right;
}

ul#menu li {
    display: inline;
    list-style: none;
}

ul#menu li#greeting {
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    line-height: 2.8em;
    color: #fafaf6;
}

ul#menu li a {
    padding: 10px 15px;
    font-weight: bold;
    text-decoration: none;
    line-height: 2.8em;
    background-color: #e8eef4;
    color: #253b56;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
}

ul#menu li a:hover {
    background-color: #fff;
    text-decoration: none;
}

ul#menu li a:active {
    background-color: #a6e2a6;
    text-decoration: none;
}

ul#menu li.selected a {
    background-color: #fff;
    color: #253b56;
}

/* FORM LAYOUT ELEMENTS   
----------------------------------------------------------*/

fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
}

textarea {
    min-height: 75px;
}

input[type="text"], 
input[type="password"] {
    border: 1px solid #ccc;
    padding: 2px;
    font-size: 1.2em;
    color: #444;
    width: 100px;
}

span.selectRecipe {
		border: 0 !important;  /*Removes border*/
		-webkit-appearance: none;  /*Removes default chrome and safari style*/
		-moz-appearance: none; /* Removes Default Firefox style*/
        /*appearance:none;*/
		background: #6fb2dc url(img/select-arrow.png) no-repeat 90% center;
		width: 280px; /*Width of select dropdown to give space for arrow image*/
		text-indent: 0.01px; /* Removes default arrow from firefox*/
		text-overflow: "";  /*Removes default arrow from firefox*/ /*My custom style for fonts */
		color: #fafaf6;
		border-radius: 15px;
		padding: 5px;
		box-shadow: inset 0 0 5px rgba(000,000,000, 0.5);
		margin: 22px;
}

span.dropdown_container 
{
}

select.my_dropdown {
    width:auto;
}

select 
{
		border: 0 !important;  /*Removes border*/
		-webkit-appearance: none;  /*Removes default chrome and safari style*/
		-moz-appearance: none; /* Removes Default Firefox style*/
        /*appearance:none;*/
		background: #6fb2dc url(img/select-arrow.png) no-repeat 90% center;
		width: 280px; /*Width of select dropdown to give space for arrow image*/
		text-indent: 0.01px; /* Removes default arrow from firefox*/
		text-overflow: "";  /*Removes default arrow from firefox*/ /*My custom style for fonts*/
		color: #fafaf6;
		border-radius: 15px;
		padding: 5px;
		box-shadow: inset 0 0 5px rgba(000,000,000, 0.5);
/**    border: 1px solid #ccc;
    padding: 2px;
    font-size: 1.2em;
    color: #444;/**/
}

/* SELECT */
.selectRecipe select {
		border: 0 !important;  /*Removes border*/
		-webkit-appearance: none;  /*Removes default chrome and safari style*/
		-moz-appearance: none; /* Removes Default Firefox style*/
        /*appearance:none;*/
		background: #0088cc url(img/select-arrow.png) no-repeat 90% center;
		width: 100px; /*Width of select dropdown to give space for arrow image*/
		text-indent: 0.01px; /* Removes default arrow from firefox*/
		text-overflow: "";  /*Removes default arrow from firefox*/ /*My custom style for fonts*/
		color: #fafaf6;
		border-radius: 15px;
		padding: 5px;
		box-shadow: inset 0 0 5px rgba(000,000,000, 0.5);
}

input[type="submit"] {
  border: 2px solid rgba(255,255,255,0.45);
  line-height: 2.2;
  padding: 0 14px;
  font-size: 1rem;
  text-align: center;
  color: #fafaf6;
  text-shadow: 1px 1px 1px #000;
  border-radius: 30px;
  background-color: rgb(47 119 167 / 100%);
  background-image: linear-gradient(
    to top left,
    rgb(0 0 0 / 20%),
    rgb(0 0 0 / 20%) 30%,
    rgb(0 0 0 / 0%)
  );
  box-shadow:
    inset 2px 2px 3px rgb(255 255 255 / 60%),
    inset -2px -2px 3px rgb(0 0 0 / 60%);
  margin-top: 4px;
}

input[type="submit"] :hover {
  background-color: rgb(255 0 0 / 100%);
}

input[type="submit"] :active {
  box-shadow:
    inset -2px -2px 3px rgb(255 255 255 / 60%),
    inset 2px 2px 3px rgb(0 0 0 / 60%);
}

/* TABLE color was #e8eef4
----------------------------------------------------------*/

table {
    border: solid 1px #686eb4;
    border-collapse: collapse;
}

table td {
    padding: 5px;
    border: solid 1px #686eb4;
}

table th {
    padding: 6px 5px;
    text-align: left;
    background-color: #e8eef4;
    border: solid 1px #686eb4;
    color: #5c87b2;
}

.invisTable {
    border: 0;
}

/* Main UI section.  
----------------------------------------------------------*/
@media screen and (max-width: 500px) {
 
.MainUISection 
{
    position: relative;
    padding: 0px 0px 0px 0px;
    left: 0px;
    min-width:310px;
}
 
}


/* MISC  
----------------------------------------------------------*/
.clear {
    clear: both;
}

.error {
    color: Red;
}

nav, 
#menucontainer {
    margin-top: 40px;
}

div#title {
    display: block;
    float: left;
    text-align: left;
}

#logindisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    margin: 10px;
    color: #253b56;
}

#logindisplay a:link {
    color: #253b56;
    text-decoration: underline;
}

#logindisplay a:visited {
    color: #253b56;
    text-decoration: underline;
}

#logindisplay a:hover {
    color: #253b56;
    text-decoration: none;
}


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid {
    display: none;
}

/* Styles for editor and display helpers
----------------------------------------------------------*/
.display-label, 
.editor-label {
    margin: 1em 0 0 0;
    width: 90%;
}

.display-field, 
.editor-field {
    margin: 0.5em 0 0 0;
}

.text-box {
    width: 30em;
}

.text-box.multi-line {
    height: 6.5em;
}

textarea.large.valid,
textarea.large {
    width: 90%;
    min-height: 60px;
}

input[type="text"].short {
    width: 100px;
}

.tri-state {
    width: 6em;
}

/* Styles for submit spinner - hahu prefix is hopefully unique
----------------------------------------------------------------*/
    .hahuloading
    {
        display:none;
        position:fixed;
        left:0;
        top:0;
        width:100%;
        height:100%;
        background:rgba(255,255,255,0.8);
        z-index:1000;
    }
  
    .hahuloadingcontent
    {
        display:table;
        position:fixed;
        left:0;
        top:0;
        width:100%;
        height:100%;
    }
  
    .hahuloadingspinner
    {
        display: table-cell;
        vertical-align:middle;
        width: 100%;
        text-align: center;
        font-size:larger;
        padding-top:80px;
    }
    
/* Style for recipe steps display:
----------------------------------*/
    .recipedisplay pre
    {
        white-space: pre-wrap;       /* Since CSS 2.1 */
        white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
        white-space: -pre-wrap;      /* Opera 4-6 */
        white-space: -o-pre-wrap;    /* Opera 7 */
        word-wrap: break-word;
        width: 100%;  
    }