/*************************************************
 * Software overview table
 *************************************************/
.table{
    /*display: block;*/
    display: table;
    width: 750px;
    float: left;
    border: 1px solid #D0D0D0;
}

.row{
    /*width: auto;*/
}

.row.empty{
    width: inherit;
    height: 20px;
    text-align: center;
    padding-top: .3em;
    
    border-bottom: 1px solid #D0D0D0;
    border-right: 1px solid #FFF;
}

.cell{
    width: 177px;
    height: 50px;
    text-align: center;
    font-size: small;
    display: table-cell;
    vertical-align: middle;
        
    padding: 5px;
    border-right: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
}

.cell.title{
    height: 20px;
}

.cell.title.ht{
    font-style: italic;
}
.cell.title.vt{
    text-transform: uppercase;
}
/*not trivial -> .table size*/
.cell.borderleft{
  border-left: 2px solid #D0D0D0;
}
.cell.borderright{
  border-left: 2px solid #D0D0D0;
}
.cell.bordertop{
  border-left: 2px solid #D0D0D0;
}
.cell.borderbottom{
  border-left: 2px solid #D0D0D0;
}

.clearrightline{
    border-right: 1px solid #FFF;
}

.clearbottomline{
    border-bottom: 1px solid #FFF;
}

.circle{
    margin: 0 auto; /*center empty div*/
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #6E92DB;
    border: 1px solid #6E92DB;
}

.circle.empty{
    background-color: white;
    border: 1px solid #D0D0D0;
}

.cell.details{
    height: 50px;
}

.infoDetails{
    font-size: 80%;
}

/*************************************************
 * Software details table
 *************************************************/
.cell.cl3{
    width: 239px;
}

/*************************************************
 * Pricing table
 *************************************************/
.pricing_table{
  width: 730px;
  /*border: 1px solid #c4cbcc;
  border-radius:4px;
  -moz-border-radius:4px;
  -webkit-border-radius:4px;
  outline:7px solid #f2f3f3;*/
  float:left;
  font-size:14px;
  font-weight: normal;
}

/*table columns*/
.pricing_table ol { 
	list-style: none;
    list-style-type: none;
	float: left; 
	width: 200px; 
	margin: 20px 0 0 0; 
	border: 1px solid #f2f3f3;
	padding: 5px;
	text-align: center;
	background:#f3f3f3;
}

/*hover event*/
.pricing_table ol:hover { 
	-webkit-transform: scale(1.01);
  	-moz-transform: scale(1.01);
  	-o-transform: scale(1.01);
  	-moz-box-shadow:3px 5px 7px rgba(0,0,0,.7);
  	-webkit-box-shadow: 3px 5px 7px rgba(0,0,0,.7);
  	box-shadow:3px 5px 7px rgba(0,0,0,.7);
	cursor:pointer;
}
/*styling each li*/
.pricing_table ol li {  
	border-bottom:1px dashed #cfd2d2;
	padding:10px 0;
}
/*styling rows*/
.pricing_table ol li:first-child { 
	font-size:18px;
	font-weight:bold;
    /*font-family: 'Playfair Display', serif;*/  
}
.pricing_table ol li:nth-child(2) span{ 
	font-size:12px;
	font-weight:bold;
    font-style:italic;
}
.pricing_table ol li:nth-child(3) span{ 
	font-size:12px;
	font-weight:bold;
    font-style:italic;
}
.pricing_table ol li:nth-child(4) { 
	background-color: #fbfbfb;
}
.pricing_table ol li:nth-child(n+4) span{ 
	font-size:12px;
	font-weight:bold;
    font-style:italic;
}
.pricing_table ol li:last-child a { 
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border:1px solid #c4cbcc;
	padding:10px;
	margin:5px 0;
	background: #e5e696; /* Old browsers */
	background: -moz-linear-gradient(top, #e5e696 0%, #d1d360 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e5e696), color-stop(100%,#d1d360)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e5e696 0%,#d1d360 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e5e696 0%,#d1d360 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #e5e696 0%,#d1d360 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e696', endColorstr='#d1d360',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #e5e696 0%,#d1d360 100%); /* W3C */
	color:#000;
	font-style:italic;
	display:block;
}

/*************************************************
 * Tables properties for common tbody-tables
 *************************************************/
.fixedHeight tr{
  height: 45px;
}