/************ LIGHT VERSION (DESIGN 2) *************/


 /********** BASIC STYLING ******/

* {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

body {
	background: #eee;
}

#title {
	font: 42px 'Yanone Kaffeesatz', arial, serif;
	letter-spacing: 2px;
	margin: 40px 0;
	color: #666;
	text-align: center;
	text-shadow: 0 1px 0 #fff, 0 -1px 1px #000;
}


/***********  STYLING THE TAB SYSTEM ************/

#tab-area {
    width: 960px;
    text-align:center;
    /*margin: 40px auto 0 auto;*/
	position:relative;
}


/* Styles for the tabs */
.tab 
{
    background: #fff;
    position: relative;
    width: 180px;
    height: 38px;
	float: left;
	cursor: pointer;
	font: bold 12px  "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	border-right:  1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.tab:first-of-type {
	margin-left: 30px;
	border-left: 1px solid #888;
	-moz-border-radius: 8px 0 0 0;
    -webkit-border-radius: 8px 0 0 0;
    border-radius: 8px 8px 0 0;
}

.tab a {
    display: block;
    height: 38px;
    position: absolute;
    color:#000;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
    text-decoration: none;
	text-align: center;
	line-height: 38px;
	outline: none;
}

.nolink a
{
    text-decoration:none;
}

/* Style for span tag that causes active/current tab highlighting */
#active 
{
    background: #fff;
    position: absolute;
	display: block;
    top: -10px;
	width: 190px;
	height: 48px;
    z-index: 1;
	-moz-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
	-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}



/* Code to achieve inverted round corners at bottom of #active */
#active:before {
	content: '';
	position: absolute;
	top: 40px;
	left: -10px;
	width: 10px;
	height: 8px;
	background: transparent;
	-moz-border-radius: 0 0 18px 0;
	-webkit-border-radius: 0 0 18px 0;
	border-radius: 0 0 18px 0;
}

#active:after {
	content: '';
	position: absolute;
	top: 40px;
	left: 187px;
	width: 10px;
	height: 8px;
	background: transparent;
	-moz-border-radius: 0 0 0 18px;
	-webkit-border-radius: 0 0 0 18px;
	border-radius: 0 0 0 18px;
}

/* The strip between the tabs and the panes */
.tab-strip 
{
    background: #014464;
	content: '';
	position: relative;
	clear: both;
	z-index: 1;
	height: 10px;
	width: 962px;
	-moz-border-radius: 8px 8px 0 0;
	-webkit-border-radius: 8px 8px 0 0;
	border-radius: 8px 8px 0 0;
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.padding5
{
    padding-left:5px;
}

/* Styles for the panes and their parent wrapper */
.panes 
{
    text-align:left;
    font-size:10pt;
    background: #fff;
    width: 960px;
	overflow: hidden;
	position: relative;
	clear: both;
	border: 1px solid #aaa;
	border-top: none;
	-moz-border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
	-moz-transition: height 500ms ease-in-out ;
	-moz-transition-delay: 500ms;
	-webkit-transition: height 500ms ease-in-out ;
	-webkit-transition-delay: 500ms;
	-o-transition: height 500ms ease-in-out ;
	-o-transition-delay: 500ms;
	-ms-transition: height 500ms ease-in-out ;
	-ms-transition-delay: 500ms;
	transition: height 500ms ease-in-out ;
	transition-delay: 500ms;
}

.panes > div {
    
	font: 12px/1.4 Arial, Helvetica, sans-serif;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	-moz-transition: z-index, opacity 500ms ease-in-out;
	-webkit-transition: z-index, opacity 500ms ease-in-out;
	-o-transition: z-index, opacity 500ms ease-in-out;
	-ms-transition: z-index, opacity 500ms ease-in-out;
	transition: z-index, opacity 500ms ease-in-out;
    height: 906px;
    width: 959px;
}

/* Declare the height of each pane */
.panes > div:first-of-type { height: 600px; }

/******************** THE TAB SWITCHING FUNCTIONALITY **************/

/* On page load with no hash tag in url, display first pane and highlight first tab */
.panes { height: 740px;}   /* This is to properly display the first pane */
.panes > div:first-of-type { z-index: 2; opacity: 1;}
#active { left: 27px;}

/* On url hash change first hide all panes  */
.tab:target ~ .panes > div {z-index: 1; opacity: 0;}

/* After the previous step now display the appropriate pane */
#first:target ~ .panes > div:nth-of-type(1) {
	 z-index:2;
	 opacity: 1;
	 
}

/* Change the height of div.panes accordingly */
#first:target ~ .panes { height: 760px;}

/* And also highlight the appropriate tab */
#first:target ~ #active { left: 27px;}




.tab-product-list 
{
    top:0px;
    
    background: #014464;

    /* gecko based browsers */
    /*background: -moz-linear-gradient(top,  #d9d7d7,  #014464);*/

    /* webkit based browsers */
    /*background: -webkit-gradient(linear, left top, left bottom, from(#d9d7d7), to(#014464));*/
    -moz-border-radius: 5px 5px 0px 0px;
    
     
    position:relative;
    width: 170px;
    height:auto;
	left:28px;
	/*cursor: pointer;*/
	font:  12px "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	padding: 5px;
	 color:White;
	-moz-border-radius: 0 8px 0 0;
    -webkit-border-radius: 0 8px  0 0;
    -khtml-border-radius: 8px;
    border-radius: 0 0 8px 8px ;
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
     border-top: none 0px;
     
    /*filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#014464', startColorstr='#d9d7d7', gradientType='0');*/
    
    
    
}



.tab-product-list-detail 
{
    
    
    background: #FFF;

    /* gecko based browsers */
    /*background: -moz-linear-gradient(top,  #d9d7d7,  #014464);*/

    /* webkit based browsers */
    /*background: -webkit-gradient(linear, left top, left bottom, from(#d9d7d7), to(#014464));*/
    -moz-border-radius: 5px 5px 0px 0px;
    
    
    position:relative;
    width: 705px;
    height:auto;
	left:50px;
	float:right;
	top:10px;
	/*cursor: pointer;*/
	font:  12px  "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	padding: 5px;
	
	-moz-border-radius: 0 8px 0 0;
    -webkit-border-radius: 0 8px  0 0;
    
    border-radius: 8px 8px 8px 8px ;
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}


.tab-product-list-detail-no-border 
{
    
    
    background: #FFF;

    /* gecko based browsers */
    /*background: -moz-linear-gradient(top,  #d9d7d7,  #014464);*/

    /* webkit based browsers */
    /*background: -webkit-gradient(linear, left top, left bottom, from(#d9d7d7), to(#014464));*/
   /* -moz-border-radius: 5px 5px 0px 0px;*/
    
    
    position:relative;
    width: 705px;
    height:auto;
	left:30px;
	float:left;
	top:10px;
	/*cursor: pointer;*/
	font:  12px  "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	padding: 5px;
	
	/*-moz-border-radius: 0 8px 0 0;
    -webkit-border-radius: 0 8px  0 0;*/
    
    /*border-radius: 8px 8px 8px 8px ;*/
	/*border: 0px solid #aaa;*/
	/*-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);*/
    /*-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);*/
}


.tab-product-list-brand 
{
    
    
    background: #014464;

    /* gecko based browsers */
    /*background: -moz-linear-gradient(top,  #d9d7d7,  #014464);*/

    /* webkit based browsers */
    /*background: -webkit-gradient(linear, left top, left bottom, from(#d9d7d7), to(#014464));*/
    -moz-border-radius: 5px 5px 5px 5px;
    
     
    position:relative;
    width: 170px;
    height:auto;
	left:28px;
	
	
	/*cursor: pointer;*/
	font:  12px  "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	padding: 5px;
	color:White;
	-moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px  8px 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px 8px 8px 8px ;
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    /*filter:progid:DXImageTransform.Microsoft.Gradient(endColorstr='#014464', startColorstr='#d9d7d7', gradientType='0');*/
    
    
    
}

.productEdit
{
    -moz-border-radius: 5px 5px 5px 5px;
    width: 960px;
    height:auto;
	margin-top:20px;
	/*cursor: pointer;*/
	font:  12px  "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	padding: 5px;
	color:#000;
	-moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px  8px 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px 8px 8px 8px ;
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}


.LoginEdit
{
    -moz-border-radius: 5px 5px 5px 5px;
    width: 600px;
    height:auto;
	margin-top:150px;
	left:180px;
	position:relative;
	/*cursor: pointer;*/
	font:  12px  "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	padding: 5px;
	color:#000;
	-moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px  8px 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px 8px 8px 8px ;
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}


.LoginEdit .right
{
    width:300px;
    text-align:right;
    margin:5px;
    height:30px;
}

.LoginEdit .left
{
    width:430px;
    text-align:left;
    margin:5px;
    
}

.LoginEdit .input
{
    width:300px;
    text-align:left;
    border: 1px solid #aaa;
    padding-left:5px;
    height:25px;
    color:Black;
}

.roundedCorner
{
    -moz-border-radius: 5px 5px 5px 5px;
    width: auto;
    height:auto;
	/*cursor: pointer;*/
	padding: 0px;
	color:#000;
	-moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px  8px 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px 8px 8px 8px ;
	border: 1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.productEdit .right
{
    width:430px;
    text-align:right;
    margin:5px;
    height:30px;
}

.productEdit .pic
{
    width:400px;
    text-align:center;
    margin:5px;
    height:150px;
}

.productEdit .right2
{
    width:200px;
    text-align:right;
    margin:5px;
    }

.productEdit .right .right
{ 
    width:215px;
    text-align:right;
    margin:5px;
    height:30px;
    float:left;
}
.productEdit .left
{
    text-align:left;
    margin:5px;
    
}

.productEdit .right .left
{
    width:185px;
    text-align:left;
    margin:5px;
    height:30px;
    float:right;
    
}

.productEdit .input
{
    text-align:left;
    height:30px;
    margin:5px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:400px;
}

.productEdit .inputSearch
{
    text-align:left;
    text-transform:uppercase;
    height:30px;
    margin-left:5px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:400px;
}


.productEdit .input2
{
    width:80px;
    padding-left:5px;
    text-align:left;
    border: 1px solid #aaa;
    height:25px;
}


.productEdit .drplbx
{
    width:400px;
    margin-left:5px;
    background-color:#FFF;
    border: 1px solid #aaa;
    color:Black;
    z-index:1;
}

.productEdit .drplbxSearch
{
    border-left: 1px solid #aaa;
    border-right: 1px solid #aaa;
    border-top: 1px none #aaa;
    border-bottom: 1px solid #aaa;
    width:407px;
    margin-left:5px;
    margin-top:-5px;
    position:relative;
    text-transform:uppercase;
    background-color:#FFF;
    color:Black;
    z-index:2;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
    top: 0px;
    left: 0px;
}



.productEdit .drplbx2
{
    width:80px;
    background-color:#FFF;
    border: 1px solid #aaa;
    height:30px;
    color:#000;
}


.productEdit .btn
{
    color:#FFF;
    text-align:center;
    background: #014464;
    border: 1px solid #aaa;
    height:30px;
}

.btn
{
    color:#FFF;
    text-align:center;
    width:100px;
    background: #014464;
    border: 1px solid #aaa;
    }
  
.btn2
{
    color:#014464;
    text-align:center;
    width:100px;
    background:#FFF;
    border: 1px solid #aaa;
}

.productEdit .rightview
{
    width:430px;
    text-align:right;
    margin:0px;
    height:23px;
}
.productEdit .rightview .right
{ 
    width:215px;
    text-align:right;
    margin:0px;
    float:left;
    height:23px;
}

.productEdit .rightview .left
{
    width:210px;
    text-align:left;
    color:navy;
    margin:0px;
    float:right;
    height:23px;
}

.txt 
{
     font-family:Verdana, Geneva, century gothic, sans-serif; 
     font-size:12px; color:#333;
     text-transform:uppercase;
     height:25px;
     padding-left:10px;
     padding-top:4px;
}



.success 
{
     font-family:Verdana, Geneva, century gothic, sans-serif; 
     font-weight:bold;
     font-size:24px; color:white;
     text-transform:uppercase;
     height:25px;
     padding-left:10px;
     padding-top:4px;
}


.containerList
{
    width:860px;
}

.containerHeader
{
    width:960px;
}

.containerHeader .container
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:0px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:190px;
}
.containerHeader .container-H
{
    width:200px;
}

.container-link 
{
    text-decoration:none;
    color:White;
    padding-left:5px;
}
.container-link:hover
{
    text-decoration:none;
    color:Yellow;
    padding-left:15px;
}

.containerHeader .departure
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:0px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:88px;
}
.containerHeader .departure-H
{
    width:95px;
}

.containerHeader .arrival
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:0px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:90px;
}
.containerHeader .arrival-H
{
    width:95px;
}

.containerHeader .destination
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:0px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:193px;
}
.containerHeader .destination-H
{
    width:200px;
}


.containerHeader .expense
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:1px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:90px;
}
.containerHeader .expense-H
{
    width:95px;
}


.containerHeader .fees
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:1px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:90px;
}
.containerHeader .fees-H
{
    width:95px;
}

.containerHeader .invoice
{
    text-align:left;
    text-transform:uppercase;
    height:20px;
    margin-left:0px;
    border: 1px solid #aaa;
    padding-left:5px;
    color:Black;
    width:90px;
}
.containerHeader .invoice-H
{
    width:100px;
}


.containerHeader .UnpaidInvoice-H
{
    width:80px;
}


.invoiceHeader {width:960px;}

.invoiceHeader .Invoice-H {width:100px;}
.invoiceHeader .invoice {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:85px;}

.invoiceHeader .Client-H {width:120px;}
.invoiceHeader .client {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:113px;}

.invoiceHeader .PhoneNumber-H {width:100px;}
.invoiceHeader .phoneNumber {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:90px;}

.invoiceHeader .Container-H {width:100px;}
.invoiceHeader .container {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:93px;}

.invoiceHeader .Destination-H {width:10px;}
.invoiceHeader .destination {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:90px;}

.invoiceHeader .Departure-H {width:85px;}
.invoiceHeader .departure {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:75px;}

.invoiceHeader .Arrival-H {width:85px;}
.invoiceHeader .arrival {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:75px;}

.invoiceHeader .Consignee-H {width:120px;}
.invoiceHeader .consignee {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:110px;}

.invoiceHeader .Deposit-H {width:80px;}
.invoiceHeader .deposit {text-align:left; text-transform:uppercase; height:20px; margin-left:0px; border: 1px solid #aaa; padding-left:5px; color:Black; width:70px;}

.invoiceHeader .Fees-H {width:110px;}
.invoiceHeader .fees {text-align:left; text-transform:uppercase; height:20px; margin-left:1px; border: 1px solid #aaa; padding-left:5px; color:Black; width:65px;}


.name-link 
{
    text-decoration:none;
    color:White;
    padding-left:5px;
}

