/*
 * Notify 0.1.1 - A Jquery Notification Extension
 * Homepage: https://github.com/jacoblwe20/Notify
 *
 * Author: Jacob Lowe (http://jacoblowe.me/)
 *
 * Copyright (c) 2010 Jacob Lowe (http://jacoblowe.me/)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * 
 * Built for jQuery library
 * http://jquery.com
 *
 * jQuery.support.transition
 * to verify that CSS3 transition is supported (or any of its browser-specific implementations)
 */

#notify{
	font-family: sans-serif;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	line-height: 50px;
	text-align: center;
	font-size: 17px;
	visibility: hidden;
	z-index: 99998;
	overflow: hidden;
	font-weight: 700;
	box-shadow: 0 1px 2px rgba(0,0,0,.3);
	white-space: nowrap;
}

#notify, #notify-placeholder{
	-webkit-transition: height 1s ease-in-out;
	-moz-transition: height 1s ease-in-out;
	-o-transition: height 1s ease-in-out;
	-ms-transition: height 1s ease-in-out;
	transition: height 1s ease-in-out;
}

#notify.notify-visible, .notify-visible{
	visibility: visible;
}

#notify.notify-hidden, .notify-hidden{
	height: 0px;
	visibility: visible;
	border: 0;
}

.notify-error{
	background: #cc0000; /* Old browsers */
	background: -moz-linear-gradient(top, #cc0000 0%, #ba0000 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cc0000), color-stop(100%,#ba0000)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #cc0000 0%,#ba0000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #cc0000 0%,#ba0000 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #cc0000 0%,#ba0000 100%); /* IE10+ */
	background: linear-gradient(top, #cc0000 0%,#ba0000 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc0000', endColorstr='#ba0000',GradientType=0 ); /* IE6-9 */
	border-bottom: 1px solid #9f0000;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.notify-success{
	background: rgb(105,201,16); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(105,201,16,1) 0%, rgba(41,154,11,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(105,201,16,1)), color-stop(100%,rgba(41,154,11,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(105,201,16,1) 0%,rgba(41,154,11,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(105,201,16,1) 0%,rgba(41,154,11,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(105,201,16,1) 0%,rgba(41,154,11,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(105,201,16,1) 0%,rgba(41,154,11,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#69c910', endColorstr='#299a0b',GradientType=0 ); /* IE6-9 */
	border-bottom: 1px solid #5FA300;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.7);
}

.notify-alert{
	background: #fcf085; /* Old browsers */
	background: -moz-linear-gradient(top, #fcf085 1%, #edda63 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#fcf085), color-stop(100%,#edda63)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #fcf085 1%,#edda63 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fcf085 1%,#edda63 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fcf085 1%,#edda63 100%); /* IE10+ */
	background: linear-gradient(top, #fcf085 1%,#edda63 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcf085', endColorstr='#edda63',GradientType=0 ); /* IE6-9 */
	border-bottom: 1px solid #e5ca1e;
	color: #222;
	text-shadow: 0 1px 2px rgba(255,255,255,.7);
}

.notify-basic{
	background: rgb(163,163,163); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(163,163,163,1) 0%, rgba(119,119,119,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(163,163,163,1)), color-stop(100%,rgba(119,119,119,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(163,163,163,1) 0%,rgba(119,119,119,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(163,163,163,1) 0%,rgba(119,119,119,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(163,163,163,1) 0%,rgba(119,119,119,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(163,163,163,1) 0%,rgba(119,119,119,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3a3a3', endColorstr='#777777',GradientType=0 ); /* IE6-9 */
	border-bottom: 1px solid #999;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.7);
}

.notify-close{
	float: right;
	margin: 5px;
	height: 40px;
	width: 40px;
	background: url(close.png) 10px 10px no-repeat;
	cursor: pointer;
}

#notify a.notify-btn{
	float: right;
	height: 38px;
	line-height: 38px;
	padding: 0 10px;
	color: inherit;
	background: -moz-linear-gradient(top,  hsla(0,0%,100%,0.1) 0%, hsla(0,0%,0%,0.1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,hsla(0,0%,100%,0.1)), color-stop(100%,hsla(0,0%,0%,0.1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  hsla(0,0%,100%,0.1) 0%,hsla(0,0%,0%,0.1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  hsla(0,0%,100%,0.1) 0%,hsla(0,0%,0%,0.1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  hsla(0,0%,100%,0.1) 0%,hsla(0,0%,0%,0.1) 100%); /* IE10+ */
	background: linear-gradient(top,  hsla(0,0%,100%,0.1) 0%,hsla(0,0%,0%,0.1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affffff', endColorstr='#1a000000',GradientType=0 ); /* IE6-9 */
	border: 1px solid hsla(0,0%,0%,0.2) ;
	border: 1px solid #33000000;
	margin: 5px;
	border-radius: 4px;
	box-shadow: 0px 1px 2px hsla(0,0%,100%,0.3);
	text-decoration: none;
}

#notify a.notify-btn:hover{
	background: -moz-linear-gradient(top,  hsla(0,0%,100%,0.2) 0%, hsla(0,0%,0%,0.2) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,hsla(0,0%,100%,0.2)), color-stop(100%,hsla(0,0%,0%,0.2))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  hsla(0,0%,100%,0.2) 0%,hsla(0,0%,0%,0.2) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  hsla(0,0%,100%,0.2) 0%,hsla(0,0%,0%,0.2) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  hsla(0,0%,100%,0.2) 0%,hsla(0,0%,0%,0.2) 100%); /* IE10+ */
	background: linear-gradient(top,  hsla(0,0%,100%,0.2) 0%,hsla(0,0%,0%,0.2) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33ffffff', endColorstr='#33000000',GradientType=0 ); /* IE6-9 */
}

.notify-hidden .notify-close{
	visibility: hidden;
}

#notify-placeholder{
	background: none;
	border: 0;
}