﻿/*html {
    background-color: #ffffff;
    background-color: #777777;
    background-image: url("..\\images\\patern.png");
    background-image: url("..\\images\\pattern_vertical.png");
}

body {
    background-color: #9EBE3B;
    border-top: solid 10px #000;
    color: #333;
    font-size: .85em;
    font-family:  "Open Sans", Sans-Serif;
}*/

/*@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    src: local("Open Sans"), local("OpenSans"), url("http://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff") format("woff");
}*/

/*.restaurant-listing:hover {
	-webkit-animation:swinging 5s ease-in-out 0s 1;
	-moz-animation:swinging 5s ease-in-out 0s 1;
	animation:swinging 5s ease-in-out 0s 1;
	-webkit-transform-origin:50% 0;
	-moz-transform-origin:50% 0;
    -ms-transform-origin:50% 0;
	transform-origin:50% 0;
}*/

/*@-webkit-keyframes swinging{
	0% { -webkit-transform: rotate(0); }
	2% { -webkit-transform: rotate(1deg); }
	4% { -webkit-transform: rotate(-1deg); }
	5% { -webkit-transform: rotate(0); }
	100% { -webkit-transform: rotate(0); }
}

@-moz-keyframes swinging{
	0% { -moz-transform: rotate(0); }
	2% { -moz-transform: rotate(1deg); }
	4% { -moz-transform: rotate(-1deg); }
	5% { -moz-transform: rotate(0); }
	100% { -moz-transform: rotate(0); }
}

@keyframes swinging{
	0% { -ms-transform: rotate(0); transform: rotate(0); }
	2% { -ms-transform: rotate(1deg); transform: rotate(1deg); }
	4% { -ms-transform: rotate(-1deg); transform: rotate(-1deg); }
	5% { -ms-transform: rotate(0); transform: rotate(0); }
	100% { -ms-transform: rotate(0); transform: rotate(0); }
}*/


/*html, body, form {
    height: 100%;
    margin: 0;
    padding: 0;
}*/

        #circularG {
            position: relative;
            width: 48px;
            height: 48px;
            margin: 0 auto;
            top: 50%;
            margin-top: -24px;
        }

        .circularG {

            position: absolute;
            background-color: #2B3338;
            width: 11px;
            height: 11px;
            -moz-border-radius: 7px;
            -moz-animation-name: bounce_circularG;
            -moz-animation-duration: 0.72s;
            -moz-animation-iteration-count: infinite;
            -moz-animation-direction: linear;
            -webkit-border-radius: 7px;
            -webkit-animation-name: bounce_circularG;
            -webkit-animation-duration: 0.72s;
            -webkit-animation-iteration-count: infinite;
            -webkit-animation-direction: linear;
            -ms-border-radius: 7px;
            -ms-animation-name: bounce_circularG;
            -ms-animation-duration: 0.72s;
            -ms-animation-iteration-count: infinite;
            -ms-animation-direction: linear;
            -o-border-radius: 7px;
            -o-animation-name: bounce_circularG;
            -o-animation-duration: 0.72s;
            -o-animation-iteration-count: infinite;
            -o-animation-direction: linear;
            border-radius: 7px;
            animation-name: bounce_circularG;
            animation-duration: 0.72s;
            animation-iteration-count: infinite;
            animation-direction: linear;
        }

        

        #circularG_1 {
            left: 0;
            top: 19px;
            -moz-animation-delay: 0.27s;
            -webkit-animation-delay: 0.27s;
            -ms-animation-delay: 0.27s;
            -o-animation-delay: 0.27s;
            animation-delay: 0.27s;
        }

        #circularG_2 {
            left: 5px;
            top: 5px;
            -moz-animation-delay: 0.36s;
            -webkit-animation-delay: 0.36s;
            -ms-animation-delay: 0.36s;
            -o-animation-delay: 0.36s;
            animation-delay: 0.36s;
        }

        #circularG_3 {
            top: 0;
            left: 19px;
            -moz-animation-delay: 0.45s;
            -webkit-animation-delay: 0.45s;
            -ms-animation-delay: 0.45s;
            -o-animation-delay: 0.45s;
            animation-delay: 0.45s;
        }

        #circularG_4 {
            right: 5px;
            top: 5px;
            -moz-animation-delay: 0.54s;
            -webkit-animation-delay: 0.54s;
            -ms-animation-delay: 0.54s;
            -o-animation-delay: 0.54s;
            animation-delay: 0.54s;
        }

        #circularG_5 {
            right: 0;
            top: 19px;
            -moz-animation-delay: 0.63s;
            -webkit-animation-delay: 0.63s;
            -ms-animation-delay: 0.63s;
            -o-animation-delay: 0.63s;
            animation-delay: 0.63s;
        }

        #circularG_6 {
            right: 5px;
            bottom: 5px;
            -moz-animation-delay: 0.72s;
            -webkit-animation-delay: 0.72s;
            -ms-animation-delay: 0.72s;
            -o-animation-delay: 0.72s;
            animation-delay: 0.72s;
        }

        #circularG_7 {
            left: 19px;
            bottom: 0;
            -moz-animation-delay: 0.81s;
            -webkit-animation-delay: 0.81s;
            -ms-animation-delay: 0.81s;
            -o-animation-delay: 0.81s;
            animation-delay: 0.81s;
        }

        #circularG_8 {
            left: 5px;
            bottom: 5px;
            -moz-animation-delay: 0.9s;
            -webkit-animation-delay: 0.9s;
            -ms-animation-delay: 0.9s;
            -o-animation-delay: 0.9s;
            animation-delay: 0.9s;
        }

        @-moz-keyframes bounce_circularG {
            0% {
                -moz-transform: scale(1);
            }

            100% {
                -moz-transform: scale(.3);
            }
        }

        @-webkit-keyframes bounce_circularG {
            0% {
                -webkit-transform: scale(1);
            }

            100% {
                -webkit-transform: scale(.3);
            }
        }

        @-ms-keyframes bounce_circularG {
            0% {
                -ms-transform: scale(1);
            }

            100% {
                -ms-transform: scale(.3);
            }
        }

        @-o-keyframes bounce_circularG {
            0% {
                -o-transform: scale(1);
            }

            100% {
                -o-transform: scale(.3);
            }
        }

        @keyframes bounce_circularG {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(.3);
            }
        }

        .loadingOverlay {
            display:    none;
            position:   fixed;
            z-index:    1100;
            top:        0;
            left:       0;
            height:     100%;
            width:      100%;
            background: #000000;
            background: rgba(0, 0, 0, 0.6);
        }

/* START SQUARE WAVES*/
.loadingBlock {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    display: inline-block;
    margin: 0 2px 0 2px;
    animation-name: bounce_squaresWaveG;
    -o-animation-name: bounce_squaresWaveG;
    -ms-animation-name: bounce_squaresWaveG;
    -webkit-animation-name: bounce_squaresWaveG;
    -moz-animation-name: bounce_squaresWaveG;
    animation-duration: 0.585s;
    -o-animation-duration: 0.585s;
    -ms-animation-duration: 0.585s;
    -webkit-animation-duration: 0.585s;
    -moz-animation-duration: 0.585s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

.genericLoadingMessage {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

#genericBlockLoader {
    text-align: center;
    position: fixed;
    color: #000;
    top: 40%;
    z-index: 1000;
    margin-left: 50%;
    left: -65px;
    background: #FFFFFF;
    width: 130px;
    padding: 20px 0 20px 0;
    border-radius: 6px;
    box-shadow: 1px 1px 4px;
}

.genericBlockLoader {
    text-align: center;
    position: fixed;
    color: #000;
    top: 40%;
    z-index: 1000;
    margin-left: 50%;
    left: -65px;
    background: #FFFFFF;
    width: 130px;
    padding: 20px 0 20px 0;
    border-radius: 6px;
    box-shadow: 1px 1px 4px;
}

.customOverlay {
    background-color: #000000;
    background-color: rgba(82, 78, 78, 0.6);
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
}

.squaresWaveG_1{
	left:0;
	animation-delay:0.236s;
		-o-animation-delay:0.236s;
		-ms-animation-delay:0.236s;
		-webkit-animation-delay:0.236s;
		-moz-animation-delay:0.236s;
}

.squaresWaveG_2{
	left:29px;
	animation-delay:0.2925s;
		-o-animation-delay:0.2925s;
		-ms-animation-delay:0.2925s;
		-webkit-animation-delay:0.2925s;
		-moz-animation-delay:0.2925s;
}

.squaresWaveG_3{
	left:58px;
	animation-delay:0.349s;
		-o-animation-delay:0.349s;
		-ms-animation-delay:0.349s;
		-webkit-animation-delay:0.349s;
		-moz-animation-delay:0.349s;
}

.squaresWaveG_4{
	left:88px;
	animation-delay:0.4055s;
		-o-animation-delay:0.4055s;
		-ms-animation-delay:0.4055s;
		-webkit-animation-delay:0.4055s;
		-moz-animation-delay:0.4055s;
}
@keyframes bounce_squaresWaveG{
	0%{
        background-color: #2B3338;
	}

	100%{
		background-color: #bbb;
	}
}

@-o-keyframes bounce_squaresWaveG{
	0%{
		background-color: #2B3338;
	}

	100%{
		background-color: #bbb;
	}
}

@-ms-keyframes bounce_squaresWaveG{
	0%{
		background-color: #2B3338;
	}

    100%{
		background-color: #bbb;
	}
}

@-webkit-keyframes bounce_squaresWaveG{
	0%{
		background-color: #2B3338;
	}

	100%{
		background-color: #bbb;
	}
}

@-moz-keyframes bounce_squaresWaveG{
	0%{
		background-color: #2B3338;
	}

	100%{
		background-color: #bbb;
	}
}





        /* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading, .card2.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loadingOverlay, .card2.loading .loadingOverlay {
    display: block !important;
}

#full-page-wrap {
    min-height: 100%;
    position: relative;
    z-index: 5;
}

header, footer, hgroup,
nav, section {
    display: block;
}

header {
    margin: 0 auto;
    z-index: 1000;
    /*min-width: 960px;*/
    width: 100%;
    top: 0px;
    /*min-height: 100px;*/
}

mark {
    background-color: #7e9ac0;
    padding-left: 5px;
    padding-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin : 0;
    padding : 0;
    /*margin-bottom: 0;
    padding-bottom: 0;*/
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

/* listings */
#results
{
    margin: 0;
    padding: 0;
}
#results li
{
    list-style: none outside none;
}
.shadow {
    /*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;*/
	-moz-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, .2) inset;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=225, Color='#A5A5A5')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=225, Color='#A5A5A5');
}

.drop-shadow {
    /*background: none repeat scroll 0 0 #FFFFFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;*/
    float: left;
    padding: 0 0 12px;
    position: relative;
    /*margin: 2em 10px 4em;
    padding: 1em;
    position: relative;
    width: 40%;*/
}
.drop-shadow:before, .drop-shadow:after {
    content: "";
    position: absolute;
    z-index: 0;
}
.lifted {
    border-radius: 10px;
}
.lifted:before, .lifted:after {
    border-radius: 10px 10px 10px 10px;
    bottom: 18px;
    box-shadow: 0 8px 7px rgba(0, 0, 0, 0.7);
    height: 20px;
    left: 3px;
    max-height: 233px;
    max-width: 260px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    width: 131px;
}
.lifted:after {
    left: auto;
    right: 3px;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
}

.shadow-b-dark {
	-moz-box-shadow: 0px 2px 3px silver;
	-webkit-box-shadow: 0px 2px 3px silver;
	box-shadow: 0px 2px 3px silver;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=180, Color='silver')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=180, Color='silver');
}
.label-shadow {
	-moz-box-shadow: 2px 2px 5px -2px silver;
	-webkit-box-shadow: 2px 2px 5px -2px silver;
	box-shadow: 2px 2px 5px -2px silver;
}
.inline-block {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    _height: 1px; 
}

#results {
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
}

.restaurant-listing
{
    width: 286px;
    min-height: 219px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    _height: 180px;
    padding-right: 8px;
    padding-left: 7px;
    padding-bottom: 24px;
    /*transform: rotate(30deg);
    -ms-transform: rotate(30deg); 
    -webkit-transform: rotate(30deg);*/
    /*float: left;
    height: 180px;
    width: 200px;
    margin-right:11px;
    border: 1px solid black;
    margin-bottom:12px;
    width: 296px;*/
}
    /*.restaurant-listing:hover {
        transform: scale(1.05);
    }*/
    .restaurant-listing a
    {
        outline: none;
        color: #575757; /*#0072AB;*/
        text-shadow: -1px 1px #DDDDDD;
    }

    .restaurant-listing a:hover
    {
        color: #282828;
        text-decoration: none;
    }

    .restaurant-listing ol
    {
        float: right;
        margin: 0;
        padding: 0;
        display: inline;
    }
    
.listing-content-inner
{
    /*margin: 4px;
    width: 235px;*/
    /*height: 159px;*/
}

a.anchorclear {
    padding: 0;
    text-decoration: none;
}

a:link.anchorclear, a:visited.anchorclear,
a:active.anchorclear, a:hover.anchorclear {
}

a:hover.anchorclear {
    background-color: transparent;
}
.restaurant-label
{
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 5px 2px 0 6px;
    /*background-color: #F5F5F5;*/
    font-weight: bold;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size: 16px; /*1.2em;*/
    /*border-top: 1px solid silver;*/
    /*height: 31px;*/
}
.restaurant-label:first-letter {
    font-size: 130%;
}
    .citystate {
        /*background-color: #FFFFFF;
        border-color: #C7C7C7 #E9E9E9 #E9E9E9 #C7C7C7;
        border-radius: 10px 10px 10px 10px;
        border-style: solid;
        border-width: 1px;
        float: right;*/
        font-size: 70%;
        font-weight: normal;
        margin-bottom: 3px;
        margin-right: 1px;
        margin-top: 3px;
        padding-left: 5px;
        padding-right: 5px;
        color: #8B8B8B;
    }
.truncate-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
}
a.plain-link, a:visited.plain-link {
    text-decoration: none;
}
a:hover.plain-link, a:active.plain-link {
    text-decoration: underline;
    color: #ef910d;
}
.restaurant-header
{
    /*background-color: white;*/
    background-color: rgba(0, 0, 0, 0.2);
    height: 20px;
    /*left: 0;*/
    opacity: 1;
    /*position: absolute;*/
    /*top: 0;*/
    width: 100%;
    color: #FFFFFF; /*#555555;*/
    font-size : 13px;
    /*top: 139px;*/
    z-index: 1;
    text-shadow: 1px 1px black;
}
.HeaderRestaurantName
{
    font-size: 2em;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    top: -3px;
}
.HeaderRestaurantAddress
{
    font-size: .9em;
    font-weight: bold;
    position: relative;
    top: -3px;
}
.HeaderRestaurantMapImage
{
    margin-top: 5px;
    display: inline-block;
}
.restaurant-detail-link
{
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    padding: 0;
}
    .restaurant-detail-link a:link, a:active, a:hover
    {
        /*background-color: transparent;*/
        text-decoration: none;
        color: black;
    }
.HeaderRestaurantPhoneImage
{
    padding-top: 5px;
    padding-left: 20px;
}

.restaurant-cuisine
{
    float: right;
    margin: 0px 5px 0px 0px;
}
.restaurant-price
{
    float: left;
    margin: 0px 0px 0px 4px;
}
.listing-content {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    float:left;
    /*height: 209px;*/
    width: 260px;
    background-color: white;
    border: 1px solid #A1A1A1;
    position: relative;
    overflow: hidden;
    border-color: #C8C8C8 #C8C8C8 #C8C8C8 #E8E8E8;
    -webkit-border-image: none;
    -moz-border-image: none;
    -ms-border-image: none;
    -o-border-image: none;
    border-image: none;
    -ms-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    border-style: solid;
    border-width: 0;
    z-index: 10;
}

        .restaurant-listing li
    {
        list-style: none outside none;
        width: 36px;
        height: 36px;
        padding: 3px;
        margin-bottom : -1px;
        margin-left: -1px;
        border-top: 1px solid #A1A1A1;
        border-right: 1px solid #A1A1A1;
        border-bottom: 1px solid #A1A1A1;
        border-left: 0px;
        -webkit-border-top-right-radius:0.80em;
        -webkit-border-bottom-right-radius:0.80em;
        -moz-border-radius-topright:0.80em;
        -moz-border-radius-bottomright:0.80em;
        border-top-right-radius:0.80em;
        border-bottom-right-radius:0.80em;
        background-color: #DDDDDD;
    }

    .restaurant-listing li:hover
    {
        background-color : #b2cd5f;
    }
        .restaurant-listing li img
        {
            padding: 0;
            padding-top:3px;
            width: 32px;
            height: 32px;
        }
        .restaurant-listing li a
        {
            display: block;
        }
        .restaurant-listing li a:hover
        {
            background-color: transparent;
        }
.rest-name-region
{
}
a.listing-info:hover {
    background-color: #b2cd5f;
}
a.listing-info {
    display: inline-block;
    background-color: #AAAAAA;
    border-bottom-right-radius: 0.8em;
    border-color: #8B8B8B;
    border-style: solid solid solid none;
    border-top-right-radius: 0.8em;
    border-width: 1px 1px 1px 0;
    /*height: 36px;*/
    list-style: none outside none;
    margin-bottom: -1px;
    margin-left: -1px;
    padding: 3px;
    position: relative;
    z-index: 10;
    /*width: 36px;*/
}

.listing-info img {
    padding-top: 3px;
    padding-left: 3px;
    border: 0;
    /*width: 32px;*/
    height: 70px;
}
/* button styles */
.large-soft-button {
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    color: white;
    cursor: pointer;
    font-size: 15pt;
    padding: 5px 10px;
    position: relative;
    top: -3px;
    background-color: #7BB400;
    border: 1px solid black;
}
    

/* main layout
----------------------------------------------------------*/

#page-wrap
{
    margin: 20px auto 0;
    position: relative;
    max-width: 960px;
    padding-bottom: 114px;

    /*background-color: white;
    box-shadow: 0 0 4px black;
    -moz-box-shadow: 0px 0px 3px black;
	-webkit-box-shadow: 0px 0px 3px black;
	box-shadow: 0px 0px 3px black;
	/* For IE 8 */
}

.header-content-wrapper
{
    /*background-color: #000;
    background-image: url('../images/top_background.png');
    background-position: 0 8px;
    background-repeat: repeat-x;*/
    height: 68px;
    padding: 0;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.home-body-container {
    margin-top: 8px;
}

.sub-header-content-wrapper
{
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA6wAAAABCAIAAABVM7S+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIJJREFUeNrslFEKwCAMQ9f7H7obCEMYs00aQcF+yIgvoWidufulqHxOSNJAUa9goZhxfRnClWyPU+QYdJ6EHo7Ts2tmtB2a/KnwjlGTqnU4vtZTUPWH2b7fdZ0Ol81Ec/J8SI6Biv1vC9Kh/IxCGyWKxMIxWqPwiqFphH4pqud5CzAAWqyM/7HdH90AAAAASUVORK5CYII=") no-repeat scroll 0 100% transparent;
    height: 31px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    max-width: 948px;
    min-width: 306px;
}


.sub-header-content-wrapper .formText {
    border: 1px outset #000000;
    padding: 3px;
    font-size: 1.2em;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    margin:0;
    color: #000000;
    /*color: rgb(90, 90, 90);
    background-color: transparent;
    background-color: rgba(255,255,255,0.3);*/
}

.sub-header-content-wrapper .formText:hover {
    color: rgb(50, 50, 50);
}

.content-wrapper {
    margin: 0 auto;
    max-width: 940px;
}

footer .content-wrapper {
    margin: 0 auto;
    max-width: 940px;
}

header .content-wrapper {
    margin: 0 auto;
    max-width: 100% !important;
    width: 100%;
    /*height: 80px;*/
    background-color: black;
    border-bottom: 4px solid #7BB400;
    padding: 0;
    margin: 0;
}

.header-shadow {
    -moz-box-shadow: 0px 0px 8px black;
	-webkit-box-shadow: 0px 0px 8px black;
	box-shadow: 0px 0px 8px black;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=12, Direction=180, Color='#333333')";
}

.footer-shadow {
    -moz-box-shadow: 0px 0px 8px black;
	-webkit-box-shadow: 0px 0px 8px black;
	box-shadow: 0px 0px 8px black;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=12, Direction=180, Color='#333333')";
}

#body {
    /*background-color: white;*/

    clear: both;
    height: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 960px;
    /*border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;*/
    /*top: -2px;
    left: 2px;*/
}

.content-shadow {
    -moz-box-shadow: 0px 0px 3px black;
	-webkit-box-shadow: 0px 0px 3px black;
	box-shadow: 0px 0px 3px black;
	/* For IE 8 */
    zoom: 1;
}

    .main-content {
        padding: 18px;
        /*padding: 18px;
        background: url("../Images/accent.png") no-repeat;
        padding-left: 10px;
        padding-top: 30px;*/
    }

    .featured + .main-content {
        /*background: url("../Images/heroAccent.png") no-repeat;*/
    }

footer {
     margin: 0 auto;
    clear: both;
    background-color: #000000;
    border-top: 1px solid #858585;
    font-size: .9em;
    /*height: 113px;*/
    margin-top: -114px;
    line-height: 1.25;
    position: relative;
    z-index: 100;

    /*padding: 15px;*/
}

footer .content-wrapper {
    padding: 15px;
}
.footer-column {
    display: inline-block;
    min-height: 60px;
    vertical-align: top;
    width: 150px;
    border: 0;
    padding: 0;
    margin: 0;
}
.footer-column h4 {
    color: rgb(157, 189, 59);
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    font-weight: normal;
}
.footer-column li {
    list-style: none;
    color: white;
    padding: 0;
    padding-left: 4px;
    margin: 0;
}
.footer-column ul {
    padding: 0;
    margin: 0;
}
footer a, footer a:link, footer a:active, footer a:hover, footer a:visited {
    color: white;
    text-decoration: none;
}
/* Restaurant Detail page 
----------------------------------------------------------*/
.detail-body-container {
    margin: 18px;
}
.restaurant-detail-body
{
    margin: 18px auto;
    border: 1px dashed silver;
    height: auto;
    width: 880px;
    overflow: hidden;
}

    .restaurant-detail-label {
        border: 1px solid #A1D654;
        outline: 1px solid #4F8416;
        color: #000;
        background-color: #87BC3A;
        background-image: url("..\\images\\pattern8.png");
        padding: 4px;
        padding-left: 6px;
        text-transform: uppercase;
        font-weight: 500;
        text-align: left;
        vertical-align: middle;
        -webkit-text-shadow: 1px 1px 1px #cdcdcd;
        -text-shadow: 1px 1px 1px #cdcdcd;
        text-shadow: 1px 1px 1px #cdcdcd;
        -moz-text-shadow: 1px 1px 1px #cdcdcd;
        -o-text-shadow: 1px 1px 1px #cdcdcd;
        -ms-text-shadow: 1px 1px 1px #cdcdcd;
        -khtml-text-shadow: 1px 1px 1px #cdcdcd;
    }

.restaurant-detail-hours
{
    font-size: 1em;
    margin: 0 auto;
    padding: 10px;
    text-align: left;
}
.restaurant-detail-hours dt
{
    color: black;
    text-transform: capitalize;
}
.restaurant-detail-hours dd
{
    margin: 0;
    padding-left: 10px;
    padding-bottom: 8px;
    color: rgb(86, 86, 86);
}
.page-column
{
    min-height: 80px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    _height: 248px;
    border: 1px solid silver;
}
.column-width {
    max-width: 400px;
    width: 400px;
}
.column-image
{
    margin: 0px 14px 0 0;
    padding: 5px;
    height: 284px;
}
.column-map
{
    padding: 5px;
}
.column-hours
{
    width: 212px;
    border: 1px solid silver;
    border-top: 0;
    /*background-color: rgb(247, 247, 247);*/
}
.column-description {
    padding: 15px;
    padding-top: 5px;
    margin-right: 15px;
    width: 577px;
    min-height: 100px;
    line-height: 1.7;
}
.column-description p:first-letter {
    color: rgb(150, 178, 65);
    font-family: Times New Roman, serif;
    line-height: 1.1;
    font-size: 200%;
}

.restaurant-detail-description {
    border: 0;
    margin-top: 10px;
}

.indent-p, .indent {
    text-indent: 20px;
}
.indent:first-letter {
    color: rgb(150, 178, 65);
    font-family: Times New Roman, serif;
    line-height: 1.1;
    font-size: 200%;
}

.detail-label {
    /*border: 1px solid #A1D654;
    outline: 1px solid #4F8416;*/
    color: #000000;
    /*background-color: #87BC3A;
    background-image: url("..\\images\\pattern8.png");*/
    padding: 4px;
    padding-left: 6px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
    -webkit-text-shadow:1px 1px 1px #cdcdcd;
    -text-shadow:1px 1px 1px #cdcdcd;
    text-shadow:1px 1px 1px #cdcdcd;
    -moz-text-shadow:1px 1px 1px #cdcdcd;
    -o-text-shadow:1px 1px 1px #cdcdcd;
    -ms-text-shadow:1px 1px 1px #cdcdcd;
    -khtml-text-shadow:1px 1px 1px #cdcdcd;
}

.status-overlay
{
    position: absolute;
    background-color: transparent;
    opacity: 0.4;
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    filter: alpha(opacity = 40);
    height: 30px;
    text-shadow: -1px 1px #000000;
    color: #ffffff;
    width: 100%;
    top: 74px;
}
.make-reservation {
    background-image: url("..\\images\\pattern8.png");
    border: 1px solid #A1D654;
    padding: 9px;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
    color: black;
    outline: 1px solid #4F8416;
}
.detail-label:first-letter {
    font-size: 130%;
}

/* site title
----------------------------------------------------------*/
.site-title {
    color: #c8c8c8;
    font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
    padding: 0;
    margin: 0;
    height: 80px;
}

.site-title a, .site-title a:hover, .site-title a:active {
    background: none;
    color: #c8c8c8;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

    .site-title img
    {
        border: 0;
        margin: 0;
        padding: 0;
    }

    .logo-master
    {
        height: 33px;
        padding-bottom: 0 !important;
    }
#logoimg {
    border-width: 0px; 
    width: 100%;
    display: block; 
    position: relative;
}
/* login
----------------------------------------------------------*/
#login {
    display: block;
    /*font-size: .85em;*/
    margin: 2px 0;
    text-align: right;
    /*color: white;*/
    /*height: 14px;*/
}

    #login a {
        /*margin-left: 10px;
        margin-right: 3px;
        padding: 2px 3px;
        text-decoration: none;*/
        color: inherit;
    }

        #login a:hover
        {
            text-decoration: underline;
        }

    #login a.username {
        background: none;
        margin-left: 0px;
        text-decoration: underline;
    }

    #login ul {
        margin: 0;
    }

    #login li {
        display: inline;
        list-style: none;
    }


/* menu
----------------------------------------------------------*/
ul#menu {
    font-size: 1.3em;
    font-weight: 500;
    margin: 0;
    text-align: right;
}

    ul#menu li {
        /*background-color: #87BC3A;
        border: 1px solid #E1E19B;
        outline: 1px solid #457A00;*/
        display: inline;
        list-style: none outside none;
        padding-left: 8px;
        padding-right: 8px;
    }

        ul#menu li a {
            background: none;
            color: #87BC3A;
            text-decoration: none;
        }

        ul#menu li a:hover {
            color: #bfd874;
            text-decoration: underline;
        }


/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
    background-color: #fff;
}

    .featured .content-wrapper {
        background-color: #3b9ebe;
        /*background-image: -ms-linear-gradient(left, #CADF8A 0%, #e6f0c8 100%);
        background-image: -o-linear-gradient(left, #CADF8A 0%, #e6f0c8 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #CADF8A), color-stop(1, #e6f0c8));
        background-image: -webkit-linear-gradient(left, #CADF8A 0%, #e6f0c8 100%);
        background-image: linear-gradient(left, #CADF8A 0%, #e6f0c8 100%);*/
        color: black;
        padding: 10px 40px 20px 40px;
        font-size: 1.4em;
        font-family: Tahoma, Geneva, sans-serif;
    }

        .featured hgroup.title h1, .featured hgroup.title h2 {
            color: #fff;
        }

        .featured p {
            font-size: 1.1em;
        }

/* page titles */
hgroup.title {
    margin-bottom: 10px;
}

hgroup.title h1, hgroup.title h2 {
    display: inline;
}

hgroup.title h2 {
    font-weight: normal;
    margin-left: 3px;
}

/* features */
section.feature {
    width: 300px;
    float: left;
    padding: 10px;
}

/* ordered list */
ol.round {
    list-style-type: none;
    padding-left: 0;
}

    ol.round li {
        margin: 25px 0;
        padding-left: 45px;
    }

        ol.round li.zero {
            background: url("../Images/orderedList0.png") no-repeat;
        }

        ol.round li.one {
            background: url("../Images/orderedList1.png") no-repeat;
        }

        ol.round li.two {
            background: url("../Images/orderedList2.png") no-repeat;
        }

        ol.round li.three {
            background: url("../Images/orderedList3.png") no-repeat;
        }

        ol.round li.four {
            background: url("../Images/orderedList4.png") no-repeat;
        }

        ol.round li.five {
            background: url("../Images/orderedList5.png") no-repeat;
        }

        ol.round li.six {
            background: url("../Images/orderedList6.png") no-repeat;
        }

        ol.round li.seven {
            background: url("../Images/orderedList7.png") no-repeat;
        }

        ol.round li.eight {
            background: url("../Images/orderedList8.png") no-repeat;
        }

        ol.round li.nine {
            background: url("../Images/orderedList9.png") no-repeat;
        }

/* content */
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

    aside ul {
        list-style: none;
        padding: 0;
    }

        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }

.label {
    font-weight: 700;
}

.page-label-container {
    font-size: 2em;
    position: relative;
    margin-bottom: 7px;
    padding: 0;
    width: 100%;
    margin-top: -5px;
}
.page-label-inner {
    padding: 6px;
    color: black;
}

.page-content-container {
    border: 1px solid silver;
    border-radius: 8px;
    width: 100% !important;
    padding: 0 !important;
    /* IE10 Consumer Preview */ 
background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #FAFAFA 100%);

/* Mozilla Firefox */ 
background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #FAFAFA 100%);

/* Opera */ 
background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #FAFAFA 100%);

/* Webkit (Safari/Chrome 10) */ 
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFFFF), color-stop(1, #FAFAFA));

/* Webkit (Chrome 11+) */ 
background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #FAFAFA 100%);

/* W3C Markup, IE10 Release Preview */ 
background-image: linear-gradient(to top, #FFFFFF 0%, #FAFAFA 100%);
}
.page-content-half-container {
    width: 49% !important;
    padding: 0 !important;
}
.page-content-inner {
    width: 100%;
    padding: 20px
}
/* login page */
#loginForm {
    border-right: solid 2px #c8c8c8;
    /*float: left;
    width: 45%;*/
}

.Facebook-login {
    background-image: url("../images/f_logo80.png");
    background-size: 80px 80px;
    border: 0 none;
    height: 80px;
    left: 20px;
    position: relative;
    top: 20px;
    width: 80px;
    cursor: pointer;
}

    #loginForm .validation-error {
        display: block;
        margin-left: 15px;
    }

#socialLoginForm {
    margin-left: 40px;
    float: left;
    width: 50%;
}

/* contact */
.contact h3 {
    font-size: 1.2em;
}

.contact p {
    margin: 5px 0 0 10px;
}

.contact iframe {
    border: 1px solid #333;
    margin: 5px 0 0 10px;
}

/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

fieldset .formText {
    margin: 0;
}

    fieldset legend {
        display: none;
    }
    
    fieldset ol {
        padding: 0;
        margin-top: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

    fieldset label {
        display: block;
        font-size: 1em;
        font-weight: 500;
    }

    fieldset label.checkbox {
        display: inline;
    }

        fieldset input[type="text"]:focus,
        fieldset input[type="password"]:focus {
            /*border: 1px solid #7ac0da;*/
        }

    fieldset input[type="submit"] {
        /*background-color: #d3dce0;
        border: 1px solid #787878;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: 600;
        padding: 7px;*/
    }

/* ajax login/registration dialog */
.ui-dialog {
    font-family: inherit;
    font-size: 1.0em;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0 none;
}

    .ui-dialog input {
        font-family: inherit;
        font-size: 1.25em;
    }

.ui-dialog-titlebar {
    color: inherit;
    font-weight: inherit;
    border: 0 none;
    background: none;
    float: right;    
}

.ui-dialog-titlebar-close {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.ui-widget-header {   
    border: 0 none;
    background: none;  
}

.modal-popup {
    
}

    .modal-popup input[type="text"],
    .modal-popup input[type="password"] {
        width: 90%;
    }

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}

/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
    font-size: .8em;
}

.field-validation-valid {
    display: none;
}

input[type="text"].input-validation-error,
input[type="password"].input-validation-error {
    border: 1px solid #e80c4d;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
    padding: 0;
    margin: 0;
}

.validation-summary-valid {
    display: none;
}

ul#social li {
    display: inline;
    list-style: none;
}

    ul#social li a {
        color: #999;
        text-decoration: none;
    }

    a.facebook, a.twitter {
        display: block;
        float: left;
        height: 24px;
        padding-left: 17px;
        text-indent: -9999px;
        width: 16px;
    }

    a.facebook {
        background: url("../Images/facebook.png") no-repeat;
    }

    a.twitter {
        background: url("../Images/twitter.png") no-repeat;
    }

/* tables
----------------------------------------------------------*/
/*table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.75em;
    border: 0 none;
}*/

th {
	font-size: 1.2em;
    text-align: left;
    border: none 0px;
    padding-left: 0;
}

    th a {
        display: block;
        position: relative;
        
    }

	th a:link, th a:visited, th a:active, th a:hover {
		color: #333;
		font-weight: 600;
		text-decoration: none;
        padding: 0;
	}

	th a:hover {
		color: #000;
	}

    th.asc a, th.desc a {
        margin-right: .75em;
    }
    
    th.asc a:after, th.desc a:after {
		display: block;
        position: absolute;
        right: 0em;
        top: 0;
        font-size: 0.75em;
	}

	th.asc a:after {
		content: '▲';
	}

	th.desc a:after {
		content: '▼';
	}

td {
    padding: 0.25em 2em 0.25em 0em;
    border: 0 none;
}

tr.pager td {
    padding: 0 0.25em 0 0;
}
/* Start About Page */
.about-body-container {
    -margin: 18px;
}
/* End About Page */
/* Start Contact Page */
.contact-body-container {
    -margin: 18px;
    min-width: 500px;
    width: auto;
}
/* End Contact Page */

/* Start form */
.formText
{
    border: 1px solid #c1c1c1;
    padding:7px 7px;
    font-size:18px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    margin:0 0 10px 0;
}
.mini-form-text
{
    border: 1px solid #c1c1c1;
    padding:4px 4px;
    font-size:11px;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
    margin:0;
}
.formRbl
{
margin:0 0 10px 0;
}
.formCbx
{
padding:9px 2px 8px;
display:block;
margin:0 0 10px 0;
font-size:12px;
font-weight:normal;
}
.formCbxList 
{
font-size:12px;

}
.formCbxList td
{
height:12px;
}
.formCbxList label
{
padding:0 0 0 5px;
line-height:16px;
}
.formCbxList input
{
width: 13px;
height: 15px;
padding: 0;
margin:0;
vertical-align: bottom;
position: relative;
top: -1px;
*overflow: hidden;
}
.formText:hover,
.mini-form-text:hover
{
border: 1px solid #555;
}
.mini-form-button
{
padding:0 0 2px 0;
margin:0;
line-height:22px;
font-family:Arial;
font-size:14px;
font-weight:bold;
letter-spacing:-1px;
color:#FFF;
background: transparent url(/images/mini-button-80.png) no-repeat top left;
border:0;
height:22px;
width:80px;
cursor:pointer;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.mfb90 { background-image: url(/images/mini-button-90.png); width:90px; }
.mfb110 { background-image: url(/images/mini-button-110.png); width:110px; }
.formButton
{
    padding:3px 5px;
    font-family:Arial;
    font-size:1.2em;
    font-weight:normal;
    letter-spacing:-0.5px;

    /*-webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;*/
}
.fb60 { background-image: url(/images/button_60.png); width:60px; }
.fb80 { background-image: url(/images/button_80.png); width:80px; }
.fb100 { background-image: url(/images/button_100.png); width:100px; }
.fb120 { background-image: url(/images/button_120.png); width:120px; }
.fb140 { background-image: url(/images/button_140.png); width:140px; }
.fb160 { background-image: url(/images/button_160.png); width:160px; }
.fb180 { background-image: url(/images/button_180.png); width:180px; }
.fb200 { background-image: url(/images/button_200.png); width:200px; }
.formComment
{
font-size:11px;color:#4b4b4b;font-weight:normal;margin:-10px 0 10px 0;
}
/* End form */
#zenbox_tab #feedback_tab_text {
    color: silver !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
}

#zenbox_tab {
    border: 1px solid #FFFFFF !important;
    cursor: pointer;
    font-family: Arial,Helvetica,sans-serif;
    margin: 0;
    min-width: 110px;
    overflow: hidden;
    padding: 0 1px 25px !important;
    position: fixed;
    top: 23%;
    white-space: nowrap;
    z-index: 10000;
}
.sub-header-text {
    
}

.learn-more-container
{
    position: relative;
    left: 210px;
    top: 29px;
}
.learn-more-background
{
    background-image: url('..\\images\\videobackgroundflat.png');
    height: 555px;
    width: 900px;
    margin-top: 20px;
}
.learn-more-iframe {
    width:436px;
    height:317px
}
.detail-image {
    width: 400px;
    height: 284px;
}

    .RadTabStrip .rtsLink {
    padding-right: 0;
    text-align: center;
}

    .RadTabStripTop_Black .rtsLevel1 .rtsLI .rtsSelected {
        background-color: #333333 !important;
        background-position: 0 -26px;
    }

    .RadTabStripTop_Black .rtsLevel1 .rtsLink {
        background-color: #FFFFFF !important;
        background-position: 0 -52px;
        border-radius: 6px 6px 6px 6px !important;
    }

    .RadTabStripTop_Black .rtsLevel1 .rtsLink, .RadTabStripTop_Black .rtsLevel1 .rtsOut, .RadTabStripBottom_Black .rtsLevel1 .rtsLink, .RadTabStripBottom_Black .rtsLevel1 .rtsOut, .RadTabStripTop_Black_Baseline .rtsLevel1, .RadTabStripBottom_Black_Baseline .rtsLevel1 {
        background-image: none !important;
    }

html .RadMenu_Silk .rmRootGroup {
    border: none !important;
    border-radius: 10px 10px 10px 10px;
    padding: 0 14px !important;
}

html .RadMenu_Silk .rmRootLink {
    line-height: 26px !important;
}

html .RadMenu_Silk .rmRootLink.rmFocused {
    /*border-top: 4px solid #7BB400 !important;*/
    color: #000000 !important;
}

html .RadMenu_Silk .rmRootLink:hover {
    /*border-top: 4px solid #7E7E7E !important;*/
    color: #000000 !important;
}

.select2-search:after {
    display: none !important;
}

.select2-search__field {
    height: inherit !important;
}


/* ONE COLUMN */
@media only screen and (max-width: 670px)
{
    /*.restaurant-listing:hover {
	-webkit-animation:inherit;
	-moz-animation:inherit;
	animation:inherit;
	-webkit-transform-origin:inherit;
	-moz-transform-origin:inherit;
	transform-origin:inherit;
    }*/
        #zenbox_tab {
        display: none !important;
    }

    .sub-logo {
        width: 290px
    }

    /*.logo-master {
        left: 204px;
        text-align: center;
        top: -134px;
        width: 112px;
    }*/

    .main-content
    {
        padding: 0px;
    }

    #page-wrap
    {
        margin: 6px auto 0;
        position: relative;
        max-width: 320px;
    }

    header
    {
        max-width: 320px;
        min-width: 320px;
    }

    footer
    {
        max-width: 320px;
        min-width: 320px;
        height: 124px;
        margin-top: -124px;
    }

    ul#menu
    {
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .float-right
    {
        clear: both;
        float: none;
        margin: 0 auto;
    }

    #login
    {
        margin: 0;
        text-align: inherit;
    }

        #login ul
        {
            margin: 0;
            padding: 0;
            text-align: right;
        }

    .header-content-wrapper
    {
        height: 130px;
    }

    header .content-wrapper
    {
        height: auto;
    }

    .sub-header-content-wrapper
    {
        height: auto;
        top: 0px;
        background: none;
        width: 290px;
        min-width: 290px;
    }

    .sub-header-text
    {
        display: none;
    }

    /*.sub-header-content-wrapper
    {
        height: auto;
        top: 0px;
    }*/

    .filter-container
    {
        text-align: right;
        color: black;
    }

    #zenbox_tab
    {
        display: none;
    }

    fieldset input[type="text"], fieldset input[type="password"], fieldset input[type="email"]
    {
        width: 240px;
    }

    .page-content-inner
    {
        padding: 10px;
        width: 280px;
    }

    .page-content-half-container
    {
        padding: 0 !important;
        width: 100%!important;
    }

    .restaurant-listing
    {
        display: inline-block;
        min-height: 180px;
        padding: 5px 8px 5px 12px;
        vertical-align: top;
        width: 288px;
    }

    #loginForm
    {
        border-right: 0;
    }


    .Facebook-login
    {
        left: 0px;
        top: 0px;
    }

    .learn-more-container
    {
        left: 0px;
        width: 300px;
        height: 218px;
        top: 0px;
    }

    .learn-more-background
    {
        background-image: none;
        height: auto;
        width: auto;
        margin-top: 0;
    }

    .learn-more-iframe
    {
        width: 300px;
        height: 218px;
    }

    .restaurant-detail-body
    {
        border: 0;
        margin: 0;
        max-width: 880px;
        width: auto;
    }

    .detail-body-container
    {
        margin: 0px;
    }

    .column-image
    {
        height: 205px;
        margin: 0;
        padding: 0;
    }
    .column-map
    {
        padding: 0;
        margin-top: 10px;
    }

    .column-width
    {
        max-width: 318px;
    }

    .column-description
    {
        margin: 0;
        max-width: 577px;
        min-height: 100px;
        padding: 5px 15px 15px;
    }
    .detail-image {
        width: 100%;
        height: auto;
    }
    .column-description
    {
        margin: 0;
        width: inherit;
        text-align: justify;
    }
    .column-hours {
        width: 100%;
    }

    #login ul {
        /*font-size: 1.3em;*/
        /*padding-top: 5px;*/
    }
}

/* TWO COLUMN */
@media only screen and (min-width: 671px) and (max-width: 980px)
{
    /*.restaurant-listing:hover {
	    -webkit-animation:inherit;
	    -moz-animation:inherit;
	    animation:inherit;
	    -webkit-transform-origin:inherit;
	    -moz-transform-origin:inherit;
	    transform-origin:inherit;
    }*/
    #zenbox_tab {
        display: none !important;
    }
    /*.logo-master
    {
        margin-top: 3px;
        width: 140px;
        position: absolute;
        left: 5px;
    }*/

    .main-content
    {
        padding: 8px;
    }

    #page-wrap
    {
        margin: 6px auto 0;
        position: relative;
        max-width: 630px;
    }

    header
    {
        max-width: 630px;
        min-width: 630px;
    }
    
    footer {
        max-width: 630px;
        min-width: 630px;
    }

    .sub-header-text
    {
        display: none;
    }

    ul#menu
    {
        margin: 0;
        padding: 0;
    }

    .restaurant-detail-body
    {
        margin: 0;
        max-width: 880px;
        width: inherit;
    }

    .detail-body-container
    {
        margin: 10px;
        text-align: center;
    }

    .indent-p, .indent
    {
        margin: 6px 0px;
    }

    .column-description
    {
        width: 350px;
        text-align: left;
        padding: 10px;
        margin: 0;
    }

    .column-image
    {
        margin: 5px;
    }

    .page-content-inner
    {
        padding: 15px;
        width: 560px;
    }

    fieldset input[type="text"], fieldset input[type="password"], fieldset input[type="email"]
    {
        width: 240px;
    }

    .restaurant-detail-hours
    {
        text-align: left;
    }

    .learn-more-container
    {
        left: 0px;
        top: 0px;
        width: 593px;
        height: 431px;
    }

    .learn-more-background
    {
        background-image: none;
        height: auto;
        width: auto;
        margin-top: 0;
    }

    .learn-more-iframe
    {
        width: 593px;
        height: 431px;
    }

    .header-content-wrapper {
        height: 100px;
    }

    .sub-header-content-wrapper
    {
        background: none;
        height: 50px;
    }
}