/**
 *  SignaturePad: A jQuery plugin for assisting in the creation of an HTML5 canvas
 *  based signature pad. Records the drawn signature in JSON for later regeneration.
 *
 *  Primary Screen Styles
 *  @media screen
 *
 *  @project ca.thomasjbradley.applications.signaturepad
 *  @author Thomas J Bradley <hey@thomasjbradley.ca>
 *  @link http://thomasjbradley.ca/lab/signature-pad
 *  @link http://github.com/thomasjbradley/signature-pad
 *  @copyright Copyright MMXI, Thomas J Bradley
 *  @license New BSD License
 */



@font-face {
    font-family: "PhontPhreaks";  
    src: url('PhontPhreaks.eot'); /* IE 6,7,8... */  
    src: local("PhontPhreaks"), url('PhontPhreaks.ttf') format("truetype"); /* non-IE */
}



@media screen {

.sigPad .sectionText {
    border: 1px solid #e3e3e3;
    background-color: #ffffff;
    padding: 12px;
    height: 150px;
    overflow: auto;
    margin-bottom: 15px;
    overflow: auto;
    font: normal 14px/1.375 "Times New Roman", "Times New Roman", Times, serif;
}

.sigPad button {
	margin: 1em 0 0 0;
	padding: 0.6em 0.6em 0.7em;
	background-color: #DFE4EE;
	border: 0;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	cursor: pointer;
	color: #003366;
	font: bold 1em/1.375 "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-align: left;
  }
.sigPad button:hover {
	background-color: #003366;
	color: #fff;
  }
.sig {
  display: none;
  }
.sigNav {
	display: none;
	height: 2.25em;
	margin: 0;
	padding: 0;
	position: relative;
	list-style-type: none;
  }
  .sigNav li {
    display: inline;
    float: left;
    margin: 0;
    padding: 0;
    }

    .sigNav a,
    .sigNav a:link,
    .sigNav a:visited {
	display: block;
	margin: 0;
	padding: 0 0.6em;
	background-color: #fff;
	color: #003366;
	font-weight: bold;
	line-height: 2.25em;
	text-decoration: underline;
      }

    .sigNav a.current,
    .sigNav a.current:link,
    .sigNav a.current:visited {
	background-color: #DFE4EE;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	color:#003366;
	text-decoration: none;
      }

    .sigNav .typeIt a.current,
    .sigNav .typeIt a.current:link,
    .sigNav .typeIt a.current:visited {
      background-color: #eee;
      color: #555;
      }

    .sigNav .clearButton {
	bottom: 0.2em;
	display: none;
	position: absolute;
	right: 0;
	font-size: 0.75em;
	line-height: 1.375;
      }

.sigWrapper {
	min-height: 155px;
	border: 1px solid #CCCCCC;
	background-color: #fcfcfc;
  }

.sigWrapper.current {
  border-color: #003366;
  }

.signed .sigWrapper {
  border: 0;
  }

.pad {
  position: relative;
  }

  .current .pad {
    cursor: url("../images/pen.png") 8 8, crosshair;
    }

.typed {
	height: 55px;
	margin: 0;
	padding: 70px 5px 0 50px;
	position: absolute;
	z-index: 90;
	cursor: default;
	color: #145394;
	font: normal 5.875em/50px "PhontPhreaks", Georgia, Times, serif;
}
.typeItDesc, .drawItDesc {
	display: none;
	margin: 0.75em 0 0.515em;
	padding: 0.515em 0 0;
	/*color: #000;
	font: Arial normal 1em/1.375 Georgia, Times, sans-serif;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #DFE4EE;*/
}

p.error {
	display: block;
    width:auto; 
    padding: 9px 30px;
	background:url(../images/icon_warning_16x16.gif) no-repeat scroll 8px 10px #FBE3E4;
}


}