
/*========== Invoice Generator Table styles ==========*/
table.invoice{
	border-collapse: collapse;
	width:100%;
	margin-bottom: 15px;
}

	table.invoice tr th{
		text-align: left;
		margin:0px;
		padding:7px;
		font-size: 13px;
    	height: 18px;
    	line-height: 18px;
		border-right:1px solid #ccc;
		color:#333;
	}
	table.invoice tr td{
		text-align: right;
		width:70px;
		border:1px solid #ccc;
		padding:5px;
		vertical-align: top;
		color: #555555;
	    font-size: 13px;
    	height: 18px;
    	line-height: 18px;
	}

	table.invoice tr {
    	background: #FFF;
	}
	
	table.invoice thead, table.invoice thead > tr {
		padding:5px;
		background:#eee;
	}
		table.invoice tr{
			border:1px solid #ccc;
		}
			table.invoice thead tr td{
				color:#666;
				padding:7px;
			}
	
	table.invoice input ,
	table.invoice textarea.desc {
		margin: 0px;
		border: 0;
		
  		-webkit-border-radius: 0;
 		-moz-border-radius: 0;
  		border-radius: 0;
  
		-webkit-box-shadow: 0;
		-moz-box-shadow: 0;
		box-shadow: none;
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
		
		background: transparent;
	}
	
	table.invoice input.total{
		height: 20px;
		padding: 0;
		vertical-align: top;
		color: #666;
	}
	table.invoice textarea.desc{
		width: 100%;
		height: 40px;
		padding: 0px;
		resize: none;
	}
	
	table.invoice tr td.description_cell{
		text-align: left;
		width:450px;
	}
	table.invoice tr td input{
		width:100%;
		text-align: right;
	}
	table.invoice tr td.description_cell input{
		text-align: left;
	}
	table.invoice thead.totals tr{
		background: #FFFFFF;
	}
	table.invoice thead.totals tr td{
		color:#333;
		text-align: right;
		padding:7px;
		font-weight: bold;
	}


/*========== Invoice List styles ==========*/
/*
table.invoice_list{
	width:100%;
}
table.invoice_list thead tr th{
	text-align: left;
	padding:7px;
}
table.invoice_list thead tr th.reference{
	width:100px;
}
table.invoice_list tbody tr.paid{
	background:#edecec;	
}
table.invoice_list tbody tr.outstanding{
	background:#cbeff9;
}
table.invoice_list tbody tr.overdue{
	background:#fcd5d5;
}
table.invoice_list tbody tr td a{
	color:#666;
	text-decoration: none;
}
*?