/*
 * Copyright 2013 Benoit Duffez
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #333;
	font-size: 32pt;
}

table.crashes {
	font-family: 'Roboto', "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size: 10pt;
	background: #fff;
	padding: 25px;
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}
table.crashes th {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14pt;
	font-weight: normal;
	color: #666;
	padding: 10px 8px;
	border-bottom: 2px solid #6678b1;
}
table.crashes thead th {
	text-align: center;
}

table.crashes td {
	border-bottom: 2px solid #ccc;
	color: #669;
	padding: 6px 8px;
}
table.crashes tbody tr:hover td {
	color: #009;
}

/************************************************************************************ */
/** TABS -- copyright  Vincent Mimoun-Prat / https://github.com/marvinlabs */
.tab-container .nav {
  *zoom: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #d8d8d8; }
  .tab-container .nav:before, .tab-container .nav:after {
    content: " ";
    display: table; }
  .tab-container .nav:after {
    clear: both; }
  .tab-container .nav .tab {
    float: left;
    padding: 5px 15px 0;
    font-size: 1.2em;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    text-transform: uppercase; }
    .tab-container .nav .tab.first {
      padding-left: 0; }
    .tab-container .nav .tab.last {
      padding-right: 0; }
    .tab-container .nav .tab a {
      -webkit-transition: border-color, 0.5s;
      -moz-transition: border-color, 0.5s;
      transition: border-color, 0.5s;
      display: block;
      padding: 5px 0;
      margin: 0;
      border-bottom: 4px solid white;
      text-decoration: none;
      color: #333333; }
      .tab-container .nav .tab a:hover {
        color: #333333;
        border-bottom: 4px solid #acacac; }
    .tab-container .nav .tab.ui-state-active a {
      border-bottom: 4px solid #d8d8d8; }
.tab-container .content {
  padding-top: 2.35765%;
  padding-bottom: 2.35765%; }


a, a:hover, a:visited {
	text-decoration: none;
	color: #33F;
}
a:active {
	color: red;
}

a.button {
	color: #000;
	font-family:Arial,sans-serif;
	font-size:1.2em;
	width:300px;
	height:43px;
	padding:7px;
	text-shadow:0px 1px 0px rgba(255,255,255,0.2);
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
	border-radius:8px;
	background: #444;
	background: -moz-linear-gradient(top,#888,#555);
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#555));
	-webkit-box-shadow:     0 0 5px rgba(0,0,0,0.5),
				0 -1px 0 rgba(255,255,255,0.4);
	-moz-box-shadow:	0 0 5px rgba(0,0,0,0.5),
				0 -1px 0 rgba(255,255,255,0.4);
	box-shadow:	     0 0 5px rgba(0,0,0,0.5),
				0 -1px 0 rgba(255,255,255,0.4);
}
a.button:hover {
	color:#222;
	background:#555;
	background:-moz-linear-gradient( top, #777, #333);
	background:-webkit-gradient( linear, left top, left bottom, from(#777), to(#333));
}
a.button:active{
    color:#000;
    background:#444;
    background:-moz-linear-gradient( top, #555, #2C2C2C);
    background:-webkit-gradient( linear, left top, left bottom, from(#555), to(#2C2C2C));
    -webkit-box-shadow:1px 1px 10px black inset, 0 1px 0 rgba(255,255,255,0.4);
       -moz-box-shadow:1px 1px 10px black inset, 0 1px 0 rgba(255,255,255,0.4);
	    box-shadow:1px 1px 10px black inset, 0 1px 0 rgba(255,255,255,0.4);
}

.error {
	padding: 20px;
	border: 3px dashed #CCCCCC;
	background: rgb(255,128,128);
	width: 250px;
}

.form {
	margin-left: 80px;
	border-left: 3px dashed #AAAAAA;
	padding-left: 30px;
}

pre {
  font-size: 1.2em;
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	padding-left: 25px;
	margin-bottom: 25px;
	border-left: 1px lightgrey solid;
}

div.report {
  margin: 45px;
  clear:both;
}

div.report div.summary {
  float:left;
  width:30%;
}

div.report div.summary table {
}


