/*
 * SimpleModal Confirm Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#confirm {display:none;padding: 0;
margin: 0;
border: 0;
height: 0px;
width: 0;
background: none;}

/* Overlay */
#confirm-overlay {background-color:#eee;}

/* Container */
#confirm-containers {
padding: 8px;
background: rgba(0,0,0,.3);
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px}
#confirm-containers .header {
height: 44px;
background-image: -webkit-linear-gradient(top, rgb(249, 249, 249), rgb(233, 233, 233));
background-image: -moz-linear-gradient(top, rgb(249, 249, 249), rgb(233, 233, 233));
background-image: -o-linear-gradient(top, rgb(249, 249, 249), rgb(233, 233, 233));
background-image: -ms-linear-gradient(top, rgb(249, 249, 249), rgb(233, 233, 233));
background-image: linear-gradient(top, rgb(249, 249, 249), rgb(233, 233, 233));
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e9e9e9');
border-bottom: 1px solid #bababa;
-webkit-box-shadow: inset 0px -1px 0px #fff, 0px 1px 3px rgba(0,0,0,.08);
-moz-box-shadow: inset 0px -1px 0px #fff, 0px 1px 3px rgba(0,0,0,.08);
box-shadow: inset 0px -1px 0px #fff, 0px 1px 3px rgba(0,0,0,.08);
-webkit-border-radius: 4px 4px 0px 0px;
-moz-border-radius: 4px 4px 0px 0px;
border-radius: 4px 4px 0px 0px;
font-size: 14px;
font-weight: bold;
text-align: center;
line-height: 44px;
color: #444444;
text-shadow: 0px 1px 0px #fff;}
#confirm-containers .header span {padding-left:8px;}
#confirm-containers .message {padding-bottom: 5%;display: inline-block;width: 100%;
background: #fcfcfc;
-webkit-box-shadow: 0px 1px 3px rgba(0,0,0,.25);
-moz-box-shadow: 0px 1px 3px rgba(0,0,0,.25);
box-shadow: 0px 1px 3px rgba(0,0,0,.25);
-webkit-border-radius: 0px 0px 4px 4px;
-moz-border-radius: 0px 0px 4px 4px;
border-radius: 0px 0px 4px 4px;}

#confirm-containers .message p {
font-size: 13px;
font-weight: normal;
text-align: center;
line-height: 22px;
color: #555555;
width: 100%;
float: left;
margin-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
}

div#confirm-containers ul.popup_view li.yes {float: right;
margin: 0px 20px 0 0px;}

#confirm-containers .buttons {} 
#confirm-containers .buttons div {float:right; margin-left:4px; width:70px; height:26px; color:#666; font-weight:bold; text-align:center; background:url(../img/confirm/button.gif) repeat-x; border:1px solid #bbb; cursor:pointer;} 
#confirm-containers a.modal-close,
#confirm-containers a.modal-close:link,
#confirm-containers a.modal-close:active,
#confirm-containers a.modal-close:visited {text-decoration:none; font-weight:bold; position:absolute; right:10px; top:2px; color:#fff;}
#confirm-containers a.modal-close:hover {color:#ccc;}



div#confirm-containers ul.popup_view li {
padding-right: 10px;

margin: 0 5px 0 20px;
width: auto;
height: 33px;
font-size: 13px;
font-weight: bold;
line-height: 33px;
color: #333;
float: right;
}



div#confirm-containers ul.popup_view li#yes {list-style-type: none;
background: -webkit-linear-gradient(top, rgba(248,114,136,1) 0%,rgba(243,71,85,1) 90%,rgba(225,65,77,1) 95%,rgba(206,59,70,1) 100%);
background: -moz-linear-gradient(top, rgba(248,114,136,1) 0%,rgba(243,71,85,1) 90%,rgba(225,65,77,1) 95%,rgba(206,59,70,1) 100%);
background: -o-linear-gradient(top, rgba(248,114,136,1) 0%,rgba(243,71,85,1) 90%,rgba(225,65,77,1) 95%,rgba(206,59,70,1) 100%);
background: -ms-linear-gradient(top, rgba(248,114,136,1) 0%,rgba(243,71,85,1) 90%,rgba(225,65,77,1) 95%,rgba(206,59,70,1) 100%);
background: linear-gradient(top, rgba(248,114,136,1) 0%,rgba(243,71,85,1) 90%,rgba(225,65,77,1) 95%,rgba(206,59,70,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f87288', endColorstr='#ce3b46',GradientType=0 );
border: 1px solid #b0333e;
margin: 0 20px 0 5px;
width: auto;
height: 33px;
font-size: 13px;
font-weight: bold;
line-height: 33px;
color: #fff;
text-shadow: 0px 1px 0px rgba(0,0,0,.2);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 2px rgba(0,0,0,.3);
-moz-box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 2px rgba(0,0,0,.3);
box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 2px rgba(0,0,0,.3);
float: right;
}


div#confirm-containers ul.popup_view li img {
float: left;
width: 33px;
height: 33px;
}




div#confirm-containers ul.popup_view li.current {}


div#confirm-containers ul.popup_view li:hover {cursor: pointer;}