/*--  filename = recipes.css  --*/

/*----------------------------------------------------*/
/*--  Publication citations & links  --*/
/*--  Use: div class="recipes" to invoke.  --*/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0px;
	padding:0px;
	font-size: 100%;
	background: white;
	overflow-y: visible;  /*--  x-axis scrollbar  --*/
	overflow-x: visible;  /*--  y-axis scrollbar  --*/
}

a{
	display: inline;
	border-style: none;  /*--  solid, dotted, dashed  --*/
	border-width: 0px; border-color: red;
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	background-color: transparent;
	font-size: 15px;
	line-height: 25px;
	font-weight: 400;
	text-decoration: none;
/*--	text-shadow: 3px 1px 1px rgba(0,0,0,0.3);  --*/  
	padding: 1px 3px 1px 3px;  /*--  inside border.  top right bottom left --*/
}

a:hover{  /*--  mouse hover  --*/
	color: white;
	background-color: #C70603;
	text-decoration: none;
	background:    -moz-radial-gradient(ellipse, #6d0019 0%,#8f0222 56%,#a90329 100%);
	background:         radial-gradient(ellipse, #6d0019 0%,#8f0222 56%,#a90329 100%);
	-webkit-border-radius: 5px;
    	border-radius: 5px;
}

a:active{  /*--  the moment of clicking  --*/
	text-decoration: none;
	background: #6d0019;
	-webkit-box-shadow: 0px 1px 1px rgba(255,255,255,0.9);
	box-shadow:         0px 1px 1px rgba(255,255,255,0.9);
}

a:visited{
	color: #8c8c8c;
	background: #6d0019;
	text-decoration: none;
}

table {
	position: relative;
	top: 8%;
	left: 5%;
}

.txt {
	font-family: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
	background: white;
	color: black;
	font-weight: 400;
	font-size: 100%;  /*--  Allows use of "em" sizes  --*/
	border: 0px solid #6d0019;
	padding: 0px 20px 20px;
	margin: 0px;
	line-height: 18px;
}

div.h1-recipes {    /*--  Defines div class <h1>.  --*/
	position: relative;
	top: 25px;
	padding: 0px 0px 20px 0px;
	border:  0px solid green;
	font-variant: small-caps;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 35px;
	font-style: normal;
	color: #C70603;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

div.h2-recipes {    /*--  Defines div class <h2>.  --*/
	position: relative;
	top: 20px;
	padding: 0px 0px 20px 0px;
	border:  0px solid green;
        text-align: center;
        line-height: 20px;
        text-decoration: none;
        font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 25px;
	font-style: italic;
	color: #C70603;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}


