﻿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: #008000; 
	text-decoration: none; 
}
a:visited { 
	color: #008000; 
}

a:hover {
	text-decoration: underline;
}
input.my-url{display:none;}
/**
 *  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;
}
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
  text-decoration:none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
/*  bottom: 150%; */
  bottom: 15px;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 200px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.loader {
  border: 6px solid #ffffff;
  border-radius: 50%;
  border-top: 6px solid #0066ff;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
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;
}
