/* 
    Document   : styles_main.css
    Created on : April 10, 2015
    Author     : R. Docimo
    Description:
        Styles for styling each of the 3 restaurant sites at 
        fiestalimena.com, fiestaatlantic.com and vivacove.com
        Includes basic CSS reset to zero out native settings from browsers
*/

/***** RESET BROWSER STYLES ******/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	/*overflow-x: scroll;*/
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
	/*overflow:auto;*/

}
ol { 
	padding-left: 1.4em;
	list-style: decimal;
}
ul {
	padding-left: 1.4em;
	list-style: square;
	
}
table {
	border-collapse: collapse;
	border-spacing: 0;
} 

/* Make browser always include padding and borders when calculating widths/heights to prevent float drops */
* {
  	-moz-box-sizing: border-box;
  	-webkit-box-sizing: border-box;
  	box-sizing: border-box;
}


/****** END RESET BROWSER STYLES ******/

/****************** BEGIN CUSTOM STYLES DEFINITION ***********************/

/******************** NOTES ********************/

/*Fiesta Site Main Colors

red- all:           #c5351c RGB(197,53,28)
brown- all (text):  #653710 RGB(101,55,16)
aji orange:         #fea100 RGB(254,161,0)

blue- limena:       #0785bb RGB(7,133,187)
green- cove:        #16a164 RGB(22,161,100)
purple- atlantic:   #43449b RGB(67,68,155)

/* Order for margins when using shortcut style: top right bottom left */

/******************** END NOTES ********************/

/* STYLES FOR DESKTOP & STYLES COMMON TO ALL DEVICES HERE */


/* 62.5% x base browser text size 16 px = 10 px. With 10 as starting point it's easy to  compute what other text sizes will look like */

html {
        font: 62.5% Times New Roman, serif;
        color: rgb(101,55,16);   
        height: 100%; /* forces browser to treat bottom for bkg images as bottom of browser window rather than bottom of last paragraph */
}

img /* make images no bigger than their containers to allow for fluid images while preventing them from growing bigger than their base size */
{
	max-width: 100%;
}

