html {
    height: 100%;
}
body {
    height: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
body{
	font-family: 'Roboto', sans-serif;
	color: #fff;
	background: #131313; /* Old browsers */
background: -moz-linear-gradient(45deg, #131313 0%, #666666 100%) fixed; /* FF3.6-15 */
background: -webkit-linear-gradient(45deg, #131313 0%,#666666 100%) fixed; /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(45deg, #131313 0%,#666666 100%) fixed; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#131313', endColorstr='#666666',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
header{
	max-width: 1200px;
	
	margin: 0 auto;
}
header p{
	margin-bottom: 3em;
}
h1{
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 3em;
}
#footer{
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
table {
	border-spacing: 1;
	border-collapse: collapse;
	background: white;
	
	overflow: hidden;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	color: #000;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }
  thead{
	  color: #fff;
  }
  thead tr:hover{
	  background-color:#000;
  }

tr:nth-child(even){
	background-color: #eee;
}

table tr:hover{
	transform: scale(1,1);
  -webkit-transform: scale(1,1);
  -moz-transform: scale(1,1);
	box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.1)!important;
	transition-timing-function: ease-out;
	transition: 0.2s;
	z-index: 1000;

}

  table * {
	position: relative;
  }
  table td, table th {
	padding-left: 8px;
  }
  table thead tr {
	height: 60px;
	background: #000;
	font-size: 16px;
  }
  table tbody tr {
	height: 48px;
	border-bottom: 1px solid #ccc;
  }
  table tbody tr:last-child {
	border: 0;
  }
  table td, table th {
	text-align: left;
  }
  table td.l, table th.l {
	text-align: right;
  }
  table td.c, table th.c {
	text-align: center;
  }
  table td.r, table th.r {
	text-align: center;
  }
  table td {
	  padding-left: 10px;
	  padding-right: 10px;
  }
  @media screen and (max-width: 1000px) {
	table {
	  display: block;
	}
	table > *, table tr, table td, table th {
	  display: block;
	}
	table thead {
	  display: none;
	}
	table tbody tr {
	  height: auto;
	  padding: 8px 10px;
	}
	table tbody tr td {
	  padding-left: 45%;
	  margin-bottom: 12px;
	}
	table tbody tr td:last-child {
	  margin-bottom: 0;
	}
	table tbody tr td:before {
	  position: absolute;
	  font-weight: 700;
	  width: 40%;
	  left: 10px;
	  top: 0;
	}
	table tbody tr td:nth-child(1):before {
	  content: "Name";
	}
	table tbody tr td:nth-child(2):before {
	  content: "Patent No.";
	}
	
  }
