/**
* Bert
* Styles for the bertAlert template.
* /lib/bert-alert.html
*/

/*------------------------------------*\
  Reset & Clearfix
\*------------------------------------*/

* {
  margin: 0;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*------------------------------------*\
  .bert-alert
\*------------------------------------*/

.bert-alert {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 20px;
}

.bert-alert.visible {
  display: block;
}

.bert-alert p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 22px;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bert-alert span {
  display: inline-block;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.bert-alert span:hover {
  cursor: pointer;
}

.bert-alert.animated {
  transition-duration: .3s;
  transition-timing-function: linear;
}

/*------------------------------------*\
  .bert-alert .container
\*------------------------------------*/

.bert-alert > .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
  .bert-alert.default
\*------------------------------------*/

.bert-alert.default {
  background-color: #eee;
  color: #333;
}

/*------------------------------------*\
  .bert-alert.success
\*------------------------------------*/

.bert-alert.success {
  background-color: #75BA50;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.info
\*------------------------------------*/

.bert-alert.info {
  background-color: #1B9EDB;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.warning
\*------------------------------------*/

.bert-alert.warning {
  background-color: #FFCF50;
  color: #7B5F17;
}

/*------------------------------------*\
  .bert-alert.danger
\*------------------------------------*/

.bert-alert.danger {
  background-color: #DA5347;
  color: #fff;
}

/*------------------------------------*\
  .bert-alert.fixed-top,
  .bert-alert.fixed-bottom
\*------------------------------------*/

.bert-alert.fixed-top,
.bert-alert.fixed-bottom {
  left: 0px;
  right: 0px;
}

.bert-alert.fixed-top p,
.bert-alert.fixed-bottom p {
  float: left;
  max-width: 95%;
}

.bert-alert.fixed-top span,
.bert-alert.fixed-bottom span {
  float: right;
  font-size: 22px;
  line-height: 21px;
}

/*------------------------------------*\
  .bert-alert.fixed-top
\*------------------------------------*/

.bert-alert.fixed-top {
  top: 0px;
}

.bert-alert.fixed-top span {
  margin-top: -2px;
}

.bert-alert.fixed-bottom span {
  margin-top: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-top.animated
\*------------------------------------*/

.bert-alert.fixed-top.animated {
  top: -100px;
  transition-property: top;
}

.bert-alert.fixed-top.animated.move {
  top: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-bottom
\*------------------------------------*/

.bert-alert.fixed-bottom {
  bottom: 0px;
}

/*------------------------------------*\
  .bert-alert.fixed-bottom.animated
\*------------------------------------*/

.bert-alert.fixed-bottom.animated {
  bottom: -100px;
  transition-property: bottom;
}

.bert-alert.fixed-bottom.animated.move {
  bottom: 0px;
}

/*------------------------------------*\
  .bert-alert.growl-top-left,
  .bert-alert.growl-top-right,
  .bert-alert.growl-bottom-right,
  .bert-alert.growl-bottom-left
\*------------------------------------*/

.bert-alert.growl-top-left,
.bert-alert.growl-top-right,
.bert-alert.growl-bottom-right,
.bert-alert.growl-bottom-left {
  max-width: 300px;
}

.bert-alert.growl-top-left,
.bert-alert.growl-top-right {
  top: 20px;
}

.bert-alert.growl-bottom-left,
.bert-alert.growl-bottom-right {
  bottom: 20px;
}

.bert-alert.growl-top-left,
.bert-alert.growl-bottom-left {
  left: 20px;
}

.bert-alert.growl-top-right,
.bert-alert.growl-bottom-right {
  right: 20px;
}

.bert-alert.growl-top-left span,
.bert-alert.growl-top-right span,
.bert-alert.growl-bottom-right span,
.bert-alert.growl-bottom-left span {
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  padding: 3px 0 4px;
  top: -10px;
  font-size: 15px;
  line-height: 16px;
  text-align: center;
  background: #333;
  color: #fff;
  border-radius: 50px;
}

.bert-alert.growl-top-left span,
.bert-alert.growl-bottom-left span {
  left: -10px;
}

.bert-alert.growl-top-right span,
.bert-alert.growl-bottom-right span {
  right: -10px;
}

/*------------------------------------*\
  .growl-top-right.animated,
  .growl-bottom-right.animated
\*------------------------------------*/

.bert-alert.growl-top-right.animated,
.bert-alert.growl-bottom-right.animated {
  right: -350px;
  transition-property: right;
}

.bert-alert.growl-top-right.animated.move,
.bert-alert.growl-bottom-right.animated.move {
  right: 20px;
}

/*------------------------------------*\
  .growl-top-left.animated,
  .growl-bottom-left.animated
\*------------------------------------*/

.bert-alert.growl-top-left.animated,
.bert-alert.growl-bottom-left.animated {
  left: -350px;
  transition-property: left;
}

.bert-alert.growl-top-left.animated.move,
.bert-alert.growl-bottom-left.animated.move {
  left: 20px;
}/* CSS declarations go here */
body {
	background-color: #FFF;
	color: #000;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}
table {
	background-color:#FFFBD0;
	border-collapse:collapse;	
	border: 2px solid black;
	width:400px;
	margin:10px auto;
}
caption {
	font-variant:small-caps;
	font-size:24px;
}
h1 {
	text-align: center;
}
tr {
	vertical-align:top;
}
th {
	background-color:#B3AB75;
	color:#FFF;
	font-size:18px;
}
td {
	padding:2px 10px;
	font-size:14px;
}
#highlight {
	background: transparent;
	padding:   5px;
	border-radius: 3px;
	transition-timing-function: ease-out;
	transition: background 0.3s  
}
tr:nth-child(even){
	background-color: #E8E7B3
}
#j2 {
	background-color: blue;
	color:#FFF;
}
.flash{
	-moz-animation: flash 1s ease-out;
	-moz-animation-iteration-count: 1;

	-webkit-animation: flash 1s ease-out;
	-webkit-animation-iteration-count: 1;

	-ms-animation: flash 1s ease-out;
	-ms-animation-iteration-count: 1;
}

@-webkit-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#cccccc;}        
    100% {background-color:none;}
}
@-moz-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#cccccc;}        
    100% {background-color:none;}
}
@-ms-keyframes flash {
    0% { background-color:none;}
    50% { background-color:#cccccc;}        
    100% {background-color:none;}
}
span{
	background: transparent;
	padding: 3px 5px;
	border-radius: 3px;
	display:inline-block;
}
input[type=text], input[type=number], select {
	background: transparent;
	padding: 6px 0;
	border: none;
	border-radius: 4px;
	box-sizing: border-box;
}