﻿body {
	background-color:#dddddd;
	font-family: Arial, Verdana, Helv, Helvetica, sans-serif, sans serif;
	font-size: 11pt;
}
h1           { font-size: 18pt; margin-top:0px }
h2           { font-size: 14pt }
h3           { font-size: 12pt; font-weight: bold }
blockquote   { margin-left: 25px;}
table {
	background-color:transparent;
}

ul {
margin-left: 10px;
padding-left: 10px;
}

a:link { 
	color: #0073C6; 
	text-decoration: none; 
}
a:visited { 
	color: #0073C6; 
}

a:hover {
	text-decoration: underline;
}
/**
 *  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.
 *
 *  @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
 */
.sigWrapper {
  clear: both;
  height: 55px;
  border: 1px solid #4875CA;
}
.pad {
  /**
   * For cross browser compatibility, this should be an absolute URL
   * In IE the cursor is relative to the HTML document
   * In all other browsers the cursor is relative to the CSS file
   *
   * http://www.useragentman.com/blog/2011/12/21/cross-browser-css-cursor-images-in-depth/
   */
  cursor: url("build/pen.cur"), crosshair;
  /**
   * IE will ignore this line because of the hotspot position
   * Unfortunately we need this twice, because some browsers ignore the hotspot inside the .cur
   */
  cursor: url("pen.cur") 16 16, crosshair;
}

input[type=text],select,textarea {
	font-size:14px;
	padding:5px;
	border:1px solid #4875CA;
	border-radius: 5px;
}
input[type=submit]{
	background-color: #4875CA; /* Blue */
	border: none;
	color: white;
	padding: 10px 30px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 3px;
	-webkit-transition-duration: 0.4s; /* Safari */
	transition-duration: 0.4s;
}
input[type=submit]:hover {
	box-shadow: 0 0 10px 1px #4875CA;
}
input[type=checkbox]{
	transform: scale(1.5);
	margin-left:5px;
	margin-right:5px;
}
input[type=radio]{
	transform: scale(1.5);
	margin-left:5px;
	margin-right:5px;
}