


/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---- HsMain.css ---- */
/*UI.css.HsMain.css*/

/*
    --------------------------------------------------------------------------------------------------
    ----- Reset Exclude -> Boostrap has its own reset
*/

/*
html, body, div, span, applet, 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%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="button"], input[type="submit"], button 
{
    margin-right:5px;
}
*/

/*
    --------------------------------------------------------------------------------------------------
    ----- Layout
*/

body 
{
    font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;
    color:#333;
    font-size:14px;
}

#HS_Layout_North
{
    position:absolute; 
    top:0px;  
    left:0px; 
    right:0px; 
    height:50px; 
    background-color:#101010;
    color:#9d9d9d;
    padding:0px 15px;
    line-height:50px;
    overflow:hidden; 
}

#HS_Layout_North_Right 
{
    float: none;
    position: absolute;
    right: 15px;
    overflow: hidden;
    font-size: 14px;
}

#HS_Layout_North_Right span
{
    margin-left:25px;
}

#HS_Layout_North_Right a
{
    color:#9d9d9d;
    margin-left:25px;
}

#HS_Layout_North_Left 
{
    float: none;
    position: absolute;
    left: 0px;
    overflow: hidden;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    margin-left: 10px;
}

#HS_Layout_North_Left_ImageWrapper
{
    padding:25px 0px 10px 0px; 
    text-align:center;
}

#HS_Layout_North_Left_ImageWrapper img
{
    width:150px;
}

#HS_Layout_East
{
    position:absolute; 
    top:50px; 
    left:0px; 
    bottom:0px; 
    width:250px; /*border:solid 1px green;*/
    overflow-y:auto; 
}

#HS_Layout_East a 
{
    /*color:#787878;*/
    color:#555;
    font-size:14px; 
    line-height:20px;
    display:block;
    text-decoration:none;
}

#HS_Layout_East a:hover
{
    text-decoration:underline;
}

div.HS_Layout_East_NavigationParent
{
    /*color:#787878;*/
    color:#555;
    background-color:#eee; 
    font-size:14px; 
    line-height:20px; 
    padding: 8px 15px; 
    margin:10px;
    vertical-align:middle;
    margin-top:10px;
}

div.HS_Layout_East_NavigationChildren a
{
    margin:5px 30px; 
    
}

#HS_Layout_Center {
    position: absolute;
    top: 50px;
    left: 250px;
    right: 0px;
    bottom: 0px;
    overflow-y: auto;
    padding-bottom: 250px; /* Always put a large padding at the bottom, you can get issues with data pickers falling out of the page otherwise */
    /*border:solid 1px blue;*/
}

#HS_Layout_Center_WaterMark {
    width:300px; 
    position:fixed; 
    bottom:10px; 
    right:20px; 
    z-index:-1;  
    opacity:0.2;
}

#HS_Layout_Center_Content
{
    padding:10px 20px;
}



/*
    --------------------------------------------------------------------------------------------------
    ----- General / Site
*/

h1
{
    font-size:24px; 
    font-weight:bold; 
    color:black; 
    padding:10px 0px 10px 0px; 
    margin:0px 0px 10px 0px; 
    border-bottom:solid 1px #EEE;
}

h1:empty 
{
    display:none;
}

h2
{
    font-size:18px; 
    font-weight:bold; 
    color:black; 
    padding:5px 0px 5px 0px; 
    margin:0px 0px 5px 0px; 
    /*border-bottom:solid 1px #EEE;*/
}

h2:empty 
{
    display:none;
}

h3
{
    font-size:16px; 
    font-weight:bold; 
    color:black; 
    padding:5px 0px 5px 0px; 
    margin:0px 0px 5px 0px; 
    /*border-bottom:solid 1px #EEE;*/
}

h3:empty 
{
    display:none;
}

a 
{
    color:#00A2E8;
    text-decoration:none;
}

a:hover 
{
    text-decoration:underline;
}


/*
    --------------------------------------------------------------------------------------------------
    ----- Feedback message
*/

.HS_Action_Error
{
	/*background-color: #f87961;*/
    background-color: #d9534f;
	color: white;
	padding: 10px;
    margin-bottom: 15px;
}

.HS_Action_Error:empty 
{
    display:none;
}

.HS_Action_Warning 
{
	padding: 10px;
	/*background-color: #F0F1F3;*/
	background: #ec971f;
    color: white;
	margin-bottom: 15px;
}

.HS_Action_Warning:empty 
{
    display:none;
}

.HS_Action_Success
{
	background-color: #5cb85c;
	color: white;
	padding: 10px;
    margin-bottom: 15px;
}

.HS_Action_Success:empty 
{
    display:none;
}

.HS_Action_Info
{
	background-color: #31b0d5;
	color: white;
	padding: 10px;
    margin-bottom: 15px;
}

.HS_Action_Info:empty 
{
    display:none;
}


/*
    --------------------------------------------------------------------------------------------------
    ----- Entity General
*/

.HS_Entity_Navigation
{
    padding-bottom:15px;
}

.HS_Entity_Navigation:empty 
{
    display:none;
}

.HS_Entity_Navigation a
{
    margin-right:50px;
    padding-bottom:1px;
}

a.HS_Entity_Navigation_Focus
{
    /*text-decoration:underline;*/
    border-bottom: solid 1px #00A2E8;
}

a.HS_Entity_Navigation_Focus:hover
{
    text-decoration:none;
    border-bottom: solid 2px #00A2E8;
}

.HS_Red_AstrixAfter::after 
{
    content: "*";
    color: red;
    vertical-align: middle;
    padding-left: 5px;
    padding-right: 5px;
}

/*
    --------------------------------------------------------------------------------------------------
    ----- Entity Tables (LIST)
*/
table.HS_Entity_List {
    border-spacing: 0;
    background-color: white;
}

/* all direct cells (from thead, tbody, tfoot) */
table.HS_Entity_List>thead>tr>td, table.HS_Entity_List>tbody>tr>td, table.HS_Entity_List>tfoot>tr>td
{
    /*color:#787878;*/
    color:#555;
    padding:8px 40px 8px 5px;
    text-align: left;
    vertical-align:top;
    font-size:14px;
    border: none;
}

table.HS_Entity_List > thead > tr > td {
    background-color: white; /* need if you make the header sticky */
    border-bottom: 2px solid #ddd;
    border-top: none;
    font-weight: bold;
    color: black;
}

table.HS_Entity_List>tbody>tr>td
{
    border-bottom: 1px solid #ddd;
}

table.HS_Entity_List>tbody>tr:hover
{
    background-color:#f9f9f9;
    /*f7f7f9*/
}

div.HS_Entity_List_Filters
{
    padding:0px 0px 15px 0px;
}

div.HS_Entity_List_Filters:empty
{
    display:none;
}

div.HS_Entity_List_Paging
{
    float:right;
}


/*
    --------------------------------------------------------------------------------------------------
    ----- Entity Tables (DETAIL / UPDATE)
*/

table.HS_Entity_DetailPlain>tbody>tr>td { padding:5px; }

table.HS_Entity_Detail
{
    border-spacing:0;
}

table.HS_Entity_Detail>tbody>tr>td
{
    vertical-align:top;
    padding:8px;
    border: 1px solid #ddd;
}

.HS_Entity_Detail_Header
{
    font-weight:bold;
    /*color:black;*/
    padding-left:8px;
    padding-right:12px;
    /*text-align:right;*/
}

.HS_Entity_Detail_Value
{
    padding-left:0px;
    padding-right:16px;
    text-align:left;
}

tr.HS_Entity_Detail_SectionRow
{
    font-weight:bold;
    background-color:#eee;
}

.HS_LockScreen 
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000; /* put above 1020 as this seems to be the z-index of BS stockt-top */
    background-color: #ccc;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 8 */
    filter: alpha(opacity=50); /* IE 5-7 */
    -moz-opacity: 0.5; /* Netscape */
    -khtml-opacity: 0.5; /* Safari 1.x */
    opacity: 0.5; /* Good browsers */
}



.HS_LockScreen::after 
{
    content: "Loading...";
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    background-color: white;
    color: black;
    font-size: 12px;
}

/*
    -----------------------------------------------------------------------------------------------------------
    ---- Below is the new entity grid
*/


.HS_Grid_HeaderSection 
{
    color: #555;
    background-color: #eee;
    font-size: 1.0rem;
    padding-left: 5px;
}

.HS_Entity_Property 
{
    
}

div.HS_Entity_Property_Header
{
    font-style: italic;
    opacity: 0.75;
    margin-bottom: 0.25em;
    display: block;
}

label.HS_Entity_Property_Header 
{
    margin-bottom: 0.25em;
    display: block;
}

HS_Entity_Property_Header:empty 
{
    display: none;
}

.HS_Entity_Property_Value 
{
    margin-bottom: 0.25em;
    display: block;
}

HS_Entity_Property_Value:empty 
{
    display: none;
}

.HS_Entity_Property_Info 
{
    font-style: italic;
    opacity: 0.75;
    font-size: 0.9em;
    margin-bottom: 0.25em;
}

HS_Entity_Property_Info:empty 
{
    display: none;
}

.HS_Entity_Property_Error 
{
    color: red;
    margin-bottom: 0.25em;
}

HS_Entity_Property_Error:empty 
{
    display: none;
}

@media screen and (max-width: 992px) {
    
    #HS_Layout_Center_Content {
        padding: 5px 15px;
        /*background-color: #DDD;*/
    }

    h1 {
        padding: 5px 0px 5px 0px;
        margin: 0px 0px 5px 0px;
    }

    .HS_Entity_Navigation {
        padding-bottom: 5px;
    }

}













/*
    -------------------------------------------------------------------------------------------------------------------------------
    ----- GS_WC_AutoComplete.css
/*


/* wraps the entire control */
div.GS_WC_AutoComplete_Wrapper {
    /* remove any sapce that it takes up, it should really just be a container */
    padding: 0px;
    margin: 0px;
    border: none;
    vertical-align: middle;
    overflow-x: visible;
}

input.GS_WC_AutoComplete_TextBox {
    vertical-align: middle;
    width: 100%;
}

div.GS_WC_AutoComplete_OptionListWrapper {
    padding: 3px;
    margin-top: 2px;
    border: solid 1px #AFAFAF;
    background-color: #fff;
    text-align: left;
    /*
		wont work in ie6. below is a workaround if i want to look into it
		http://perishablepress.com/press/2007/01/16/maximum-and-minimum-height-and-width-in-internet-explorer/
	
	max-height:200px;
    overflow-y:auto;
    */
}



















/*
    -------------------------------------------------------------------------------------------------------------------------------
    ----- GS_WC_DatePicker.css
*/


div.GS_WC_DatePicker
{
	width:180px;
	height:195px;
	text-align:center;
	vertical-align:middle;
	padding:2px;
	
	font-family:tahoma,verdana,helvetica;
	border:solid 1px #aaa;
	background-color:White;
	color:#657383;
	
	font-size:11px;
	text-align:center;
	vertical-align:middle;
	cursor:pointer;
}

div.GS_WC_DatePicker td
{
    vertical-align:middle;	
}

div.GS_WC_DatePicker table
{
	width:100%;
	height:100%;
}

table.GS_WC_DatePicker_SelectDates
{
	border-collapse:collapse;
}

table.GS_WC_DatePicker_SelectDates tr
{
	height:20px;
}

table.GS_WC_DatePicker_SelectDates thead tr
{
	font-weight:bold;
}

table.GS_WC_DatePicker_SelectDates thead
{
	
}

table.GS_WC_DatePicker_SelectMonthYear
{
	
}

.GS_WC_DatePicker_Active
{
	background-color:#D0D8EF;
    color: #15428B;
}


















/*
    -------------------------------------------------------------------------------------------------------------------------------
    ----- GS_WC_Days.css
*/


/*
    // -------------------------------------------------------------
    // ---- The Header Section (Start)
*/

table.GS_WC_Days_HeaderTable {
    width: 100%;
    height: 100%;
}

    table.GS_WC_Days_HeaderTable td {
        text-align: center;
        vertical-align: bottom;
    }

/*
    // ---- The Header Section (End)
    // -------------------------------------------------------------
*/




/*
    // -------------------------------------------------------------
    // ---- The Calendar (Start)
*/

table.GS_WC_Days_DaysTable {
    width: 100%;
    border-spacing: 1px;
    border-collapse: collapse;
    margin: 3px 0px;
}

    /* All the cells within the calendar */
    table.GS_WC_Days_DaysTable td {
        border-right: solid 1px #aaa;
        text-align: left;
        margin: 0px;
        padding: 1px;
        cursor: pointer;
        font-size: 10px;
        border-right: Solid 1px #aaa;
        border-bottom: none;
        vertical-align: middle;
    }

/* WARNING DO NOT SET A POSITION ATTRIBUTE FOR EITHER CalendarCell_HourMark OR CalendarCell_NonHourMark AS IT STUFFS UP THE Z-INDEX IN IE6 OF THE WORKOUT PANELS */
/* A KNOWN BUG - http://wellknownmeats.com/handling-z-index-in-ie6/ */

.GS_WC_Days_TimeAndDayHourCell {
    border-top: Solid 1px #aaa;
}

.GS_WC_Days_TimeAndDayNonHourCell {
    border-top: 1px dotted #aaa;
}

td.GS_WC_Days_TimeCell {
    color: #aaa;
    padding-top: 6px;
    padding-left: 2px;
    width: 30px;
}

div.GS_WC_Days_TimeCellDivText {
    padding-top: 4px;
    padding-left: 2px;
    color: #aaa;
    float: left;
}

col.GS_WC_Days_ActiveColumn {
    background-color: #F1F1F1;
}

/*
    // ---- The Calendar (End)
    // -------------------------------------------------------------
*/


/*
    // -------------------------------------------------------------
	// ---- The Day Panel (Start)
*/
div.GS_WC_Days_DayPanel {
    border: 1px solid #A2B1C5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: #999 1px 1px 1px;
    -moz-box-shadow: #999 1px 1px 1px;
    box-shadow: #999 1px 1px 1px;
    /*background-color: #CED9E8;*/
    background-color: #ECAA3A;
    position: absolute;
    text-align: center;
    vertical-align: middle;
}

table.GS_WC_Days_DayPanel_TableWrapper {
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}

    table.GS_WC_Days_DayPanel_TableWrapper td {
        border-right: none;
    }

a.GS_WC_Days_DayPanel_OpenAnchor {
    float: right;
    color: white;
    padding-right: 5px;
    padding-bottom: 7px;
    font-weight: bold;
}


/*
    // ---- The Day Panel (End)
    // -------------------------------------------------------------
*/












/*
    -------------------------------------------------------------------------------------------------------------------------------
    ----- GS_WC_GridView.css
*/



div.GS_WC_GridView_LoadingDiv {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: white;
}

table.GS_WC_GridView_Table {
    width: 100%;
    border-collapse: collapse;
}

.GS_WC_GridView_Table td {
    padding: 3px;
    background: none;
    width: auto;
    height: auto;
}

/*
	Specific list styles
*/

tr.GS_WC_GridView_StandardList_HeaderRow {
    padding: 3px 0px 5px 0px;
    font-weight: bold;
    color: #15428B;
    vertical-align: top;
}

    tr.GS_WC_GridView_StandardList_HeaderRow td {
        border-bottom: solid 1px #eee;
        margin-bottom: 5px;
        font-size: 12px;
    }

tr.GS_WC_GridView_StandardList_DataRow {
    padding: 2px 1px 2px 1px;
    vertical-align: top;
    background-color: white;
    color: black;
    cursor: pointer;
}

tr.GS_WC_GridView_StandardList_FocusDataRow {
    background-color: #F5F5F5;
    cursor: pointer;
}

tr.GS_WC_GridView_StandardList_SelectedDataRow {
    background-color: #D0D8EF;
    color: #15428B;
    cursor: pointer;
}






/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---- WineShowPro.css ---- */


div.EntrySectionFooter 
{
    text-align: right;
    margin-bottom: 25px;
}

div.EntryWizardContainer 
{
    padding-bottom:3px; 
    border-bottom:solid 2px #c4d600;
    margin-bottom:20px;
    font-size:16px;
}

div.EntryWizardStep 
{
    display:inline-block;
    height:40px;
    vertical-align:middle;
    background-color:#eaeaea;
    margin-right:10px;
}

div.EntryWizardStep div
{
    line-height:40px;
    height:40px;
    display:inline-block;
    padding:0px 20px 0px 10px;
}

div.EntryWizardStep span
{
    color:white;
    background-color:#aaa;
    line-height:40px;
    display:inline-block;
    padding:0px 10px;
    font-size:20px;
}

div.EntryWizardStepActive
{
    background-color:#c4d600;
}

div.EntryWizardStepActive span 
{
    background-color:#91A300;
}

.EntryFinaliseSubTotalTable 
{
    float:right; 
    font-weight:bold; 
    font-size:1.1em;
    margin-right:20px;
}

.EntryFinaliseSubTotalTable td 
{
    padding-left:25px;
    text-align:right;
}

/*from vitimanager*/
ul
{
    padding-left:30px; 
    list-style-type: circle;
}

li
{
    padding:3px 5px;
}
