mirror of https://github.com/twbs/bootstrap.git
				
				
				
			Drop Glyphicons
This commit is contained in:
		
							parent
							
								
									b29268dc48
								
							
						
					
					
						commit
						dae5ec5416
					
				| 
						 | 
					@ -412,7 +412,7 @@ module.exports = function (grunt) {
 | 
				
			||||||
  var testSubtasks = [];
 | 
					  var testSubtasks = [];
 | 
				
			||||||
  // Skip core tests if running a different subset of the test suite
 | 
					  // Skip core tests if running a different subset of the test suite
 | 
				
			||||||
  if (runSubset('core')) {
 | 
					  if (runSubset('core')) {
 | 
				
			||||||
    testSubtasks = testSubtasks.concat(['dist-css', 'csslint', 'jshint', 'jscs', 'qunit', 'build-customizer-html']);
 | 
					    testSubtasks = testSubtasks.concat(['dist-css', 'csslint', 'jshint', 'jscs', 'qunit']);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  // Skip HTML validation if running a different subset of the test suite
 | 
					  // Skip HTML validation if running a different subset of the test suite
 | 
				
			||||||
  if (runSubset('validate-html') &&
 | 
					  if (runSubset('validate-html') &&
 | 
				
			||||||
| 
						 | 
					@ -445,7 +445,7 @@ module.exports = function (grunt) {
 | 
				
			||||||
  grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-js', 'dist-docs']);
 | 
					  grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-js', 'dist-docs']);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Default task.
 | 
					  // Default task.
 | 
				
			||||||
  grunt.registerTask('default', ['test', 'dist', 'build-customizer']);
 | 
					  grunt.registerTask('default', ['test', 'dist']);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Version numbering task.
 | 
					  // Version numbering task.
 | 
				
			||||||
  // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z
 | 
					  // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -16,11 +16,7 @@
 | 
				
			||||||
  "main": [
 | 
					  "main": [
 | 
				
			||||||
    "less/bootstrap.less",
 | 
					    "less/bootstrap.less",
 | 
				
			||||||
    "dist/css/bootstrap.css",
 | 
					    "dist/css/bootstrap.css",
 | 
				
			||||||
    "dist/js/bootstrap.js",
 | 
					    "dist/js/bootstrap.js"
 | 
				
			||||||
    "dist/fonts/glyphicons-halflings-regular.eot",
 | 
					 | 
				
			||||||
    "dist/fonts/glyphicons-halflings-regular.svg",
 | 
					 | 
				
			||||||
    "dist/fonts/glyphicons-halflings-regular.ttf",
 | 
					 | 
				
			||||||
    "dist/fonts/glyphicons-halflings-regular.woff"
 | 
					 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  "ignore": [
 | 
					  "ignore": [
 | 
				
			||||||
    "/.*",
 | 
					    "/.*",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -260,624 +260,6 @@ th {
 | 
				
			||||||
    border: 1px solid #ddd !important;
 | 
					    border: 1px solid #ddd !important;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@font-face {
 | 
					 | 
				
			||||||
  font-family: 'Glyphicons Halflings';
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  src: url('../fonts/glyphicons-halflings-regular.eot');
 | 
					 | 
				
			||||||
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon {
 | 
					 | 
				
			||||||
  position: relative;
 | 
					 | 
				
			||||||
  top: 1px;
 | 
					 | 
				
			||||||
  display: inline-block;
 | 
					 | 
				
			||||||
  font-family: 'Glyphicons Halflings';
 | 
					 | 
				
			||||||
  font-style: normal;
 | 
					 | 
				
			||||||
  font-weight: normal;
 | 
					 | 
				
			||||||
  line-height: 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  -webkit-font-smoothing: antialiased;
 | 
					 | 
				
			||||||
  -moz-osx-font-smoothing: grayscale;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-asterisk:before {
 | 
					 | 
				
			||||||
  content: "\2a";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-plus:before {
 | 
					 | 
				
			||||||
  content: "\2b";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-euro:before {
 | 
					 | 
				
			||||||
  content: "\20ac";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-minus:before {
 | 
					 | 
				
			||||||
  content: "\2212";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cloud:before {
 | 
					 | 
				
			||||||
  content: "\2601";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-envelope:before {
 | 
					 | 
				
			||||||
  content: "\2709";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-pencil:before {
 | 
					 | 
				
			||||||
  content: "\270f";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-glass:before {
 | 
					 | 
				
			||||||
  content: "\e001";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-music:before {
 | 
					 | 
				
			||||||
  content: "\e002";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-search:before {
 | 
					 | 
				
			||||||
  content: "\e003";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-heart:before {
 | 
					 | 
				
			||||||
  content: "\e005";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-star:before {
 | 
					 | 
				
			||||||
  content: "\e006";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-star-empty:before {
 | 
					 | 
				
			||||||
  content: "\e007";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-user:before {
 | 
					 | 
				
			||||||
  content: "\e008";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-film:before {
 | 
					 | 
				
			||||||
  content: "\e009";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-th-large:before {
 | 
					 | 
				
			||||||
  content: "\e010";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-th:before {
 | 
					 | 
				
			||||||
  content: "\e011";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-th-list:before {
 | 
					 | 
				
			||||||
  content: "\e012";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ok:before {
 | 
					 | 
				
			||||||
  content: "\e013";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-remove:before {
 | 
					 | 
				
			||||||
  content: "\e014";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-zoom-in:before {
 | 
					 | 
				
			||||||
  content: "\e015";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-zoom-out:before {
 | 
					 | 
				
			||||||
  content: "\e016";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-off:before {
 | 
					 | 
				
			||||||
  content: "\e017";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-signal:before {
 | 
					 | 
				
			||||||
  content: "\e018";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cog:before {
 | 
					 | 
				
			||||||
  content: "\e019";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-trash:before {
 | 
					 | 
				
			||||||
  content: "\e020";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-home:before {
 | 
					 | 
				
			||||||
  content: "\e021";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-file:before {
 | 
					 | 
				
			||||||
  content: "\e022";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-time:before {
 | 
					 | 
				
			||||||
  content: "\e023";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-road:before {
 | 
					 | 
				
			||||||
  content: "\e024";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-download-alt:before {
 | 
					 | 
				
			||||||
  content: "\e025";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-download:before {
 | 
					 | 
				
			||||||
  content: "\e026";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-upload:before {
 | 
					 | 
				
			||||||
  content: "\e027";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-inbox:before {
 | 
					 | 
				
			||||||
  content: "\e028";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-play-circle:before {
 | 
					 | 
				
			||||||
  content: "\e029";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-repeat:before {
 | 
					 | 
				
			||||||
  content: "\e030";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-refresh:before {
 | 
					 | 
				
			||||||
  content: "\e031";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-list-alt:before {
 | 
					 | 
				
			||||||
  content: "\e032";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-lock:before {
 | 
					 | 
				
			||||||
  content: "\e033";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-flag:before {
 | 
					 | 
				
			||||||
  content: "\e034";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-headphones:before {
 | 
					 | 
				
			||||||
  content: "\e035";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-volume-off:before {
 | 
					 | 
				
			||||||
  content: "\e036";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-volume-down:before {
 | 
					 | 
				
			||||||
  content: "\e037";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-volume-up:before {
 | 
					 | 
				
			||||||
  content: "\e038";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-qrcode:before {
 | 
					 | 
				
			||||||
  content: "\e039";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-barcode:before {
 | 
					 | 
				
			||||||
  content: "\e040";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tag:before {
 | 
					 | 
				
			||||||
  content: "\e041";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tags:before {
 | 
					 | 
				
			||||||
  content: "\e042";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-book:before {
 | 
					 | 
				
			||||||
  content: "\e043";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bookmark:before {
 | 
					 | 
				
			||||||
  content: "\e044";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-print:before {
 | 
					 | 
				
			||||||
  content: "\e045";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-camera:before {
 | 
					 | 
				
			||||||
  content: "\e046";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-font:before {
 | 
					 | 
				
			||||||
  content: "\e047";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bold:before {
 | 
					 | 
				
			||||||
  content: "\e048";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-italic:before {
 | 
					 | 
				
			||||||
  content: "\e049";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-text-height:before {
 | 
					 | 
				
			||||||
  content: "\e050";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-text-width:before {
 | 
					 | 
				
			||||||
  content: "\e051";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-left:before {
 | 
					 | 
				
			||||||
  content: "\e052";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-center:before {
 | 
					 | 
				
			||||||
  content: "\e053";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-right:before {
 | 
					 | 
				
			||||||
  content: "\e054";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-justify:before {
 | 
					 | 
				
			||||||
  content: "\e055";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-list:before {
 | 
					 | 
				
			||||||
  content: "\e056";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-indent-left:before {
 | 
					 | 
				
			||||||
  content: "\e057";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-indent-right:before {
 | 
					 | 
				
			||||||
  content: "\e058";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-facetime-video:before {
 | 
					 | 
				
			||||||
  content: "\e059";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-picture:before {
 | 
					 | 
				
			||||||
  content: "\e060";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-map-marker:before {
 | 
					 | 
				
			||||||
  content: "\e062";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-adjust:before {
 | 
					 | 
				
			||||||
  content: "\e063";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tint:before {
 | 
					 | 
				
			||||||
  content: "\e064";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-edit:before {
 | 
					 | 
				
			||||||
  content: "\e065";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-share:before {
 | 
					 | 
				
			||||||
  content: "\e066";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-check:before {
 | 
					 | 
				
			||||||
  content: "\e067";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-move:before {
 | 
					 | 
				
			||||||
  content: "\e068";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-step-backward:before {
 | 
					 | 
				
			||||||
  content: "\e069";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fast-backward:before {
 | 
					 | 
				
			||||||
  content: "\e070";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-backward:before {
 | 
					 | 
				
			||||||
  content: "\e071";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-play:before {
 | 
					 | 
				
			||||||
  content: "\e072";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-pause:before {
 | 
					 | 
				
			||||||
  content: "\e073";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-stop:before {
 | 
					 | 
				
			||||||
  content: "\e074";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-forward:before {
 | 
					 | 
				
			||||||
  content: "\e075";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fast-forward:before {
 | 
					 | 
				
			||||||
  content: "\e076";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-step-forward:before {
 | 
					 | 
				
			||||||
  content: "\e077";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-eject:before {
 | 
					 | 
				
			||||||
  content: "\e078";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-left:before {
 | 
					 | 
				
			||||||
  content: "\e079";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-right:before {
 | 
					 | 
				
			||||||
  content: "\e080";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-plus-sign:before {
 | 
					 | 
				
			||||||
  content: "\e081";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-minus-sign:before {
 | 
					 | 
				
			||||||
  content: "\e082";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-remove-sign:before {
 | 
					 | 
				
			||||||
  content: "\e083";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ok-sign:before {
 | 
					 | 
				
			||||||
  content: "\e084";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-question-sign:before {
 | 
					 | 
				
			||||||
  content: "\e085";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-info-sign:before {
 | 
					 | 
				
			||||||
  content: "\e086";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-screenshot:before {
 | 
					 | 
				
			||||||
  content: "\e087";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-remove-circle:before {
 | 
					 | 
				
			||||||
  content: "\e088";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ok-circle:before {
 | 
					 | 
				
			||||||
  content: "\e089";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ban-circle:before {
 | 
					 | 
				
			||||||
  content: "\e090";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-left:before {
 | 
					 | 
				
			||||||
  content: "\e091";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-right:before {
 | 
					 | 
				
			||||||
  content: "\e092";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-up:before {
 | 
					 | 
				
			||||||
  content: "\e093";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-down:before {
 | 
					 | 
				
			||||||
  content: "\e094";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-share-alt:before {
 | 
					 | 
				
			||||||
  content: "\e095";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-full:before {
 | 
					 | 
				
			||||||
  content: "\e096";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-small:before {
 | 
					 | 
				
			||||||
  content: "\e097";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-exclamation-sign:before {
 | 
					 | 
				
			||||||
  content: "\e101";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-gift:before {
 | 
					 | 
				
			||||||
  content: "\e102";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-leaf:before {
 | 
					 | 
				
			||||||
  content: "\e103";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fire:before {
 | 
					 | 
				
			||||||
  content: "\e104";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-eye-open:before {
 | 
					 | 
				
			||||||
  content: "\e105";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-eye-close:before {
 | 
					 | 
				
			||||||
  content: "\e106";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-warning-sign:before {
 | 
					 | 
				
			||||||
  content: "\e107";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-plane:before {
 | 
					 | 
				
			||||||
  content: "\e108";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-calendar:before {
 | 
					 | 
				
			||||||
  content: "\e109";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-random:before {
 | 
					 | 
				
			||||||
  content: "\e110";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-comment:before {
 | 
					 | 
				
			||||||
  content: "\e111";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-magnet:before {
 | 
					 | 
				
			||||||
  content: "\e112";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-up:before {
 | 
					 | 
				
			||||||
  content: "\e113";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-down:before {
 | 
					 | 
				
			||||||
  content: "\e114";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-retweet:before {
 | 
					 | 
				
			||||||
  content: "\e115";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-shopping-cart:before {
 | 
					 | 
				
			||||||
  content: "\e116";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-folder-close:before {
 | 
					 | 
				
			||||||
  content: "\e117";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-folder-open:before {
 | 
					 | 
				
			||||||
  content: "\e118";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-vertical:before {
 | 
					 | 
				
			||||||
  content: "\e119";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-horizontal:before {
 | 
					 | 
				
			||||||
  content: "\e120";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hdd:before {
 | 
					 | 
				
			||||||
  content: "\e121";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bullhorn:before {
 | 
					 | 
				
			||||||
  content: "\e122";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bell:before {
 | 
					 | 
				
			||||||
  content: "\e123";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-certificate:before {
 | 
					 | 
				
			||||||
  content: "\e124";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-thumbs-up:before {
 | 
					 | 
				
			||||||
  content: "\e125";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-thumbs-down:before {
 | 
					 | 
				
			||||||
  content: "\e126";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-right:before {
 | 
					 | 
				
			||||||
  content: "\e127";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-left:before {
 | 
					 | 
				
			||||||
  content: "\e128";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-up:before {
 | 
					 | 
				
			||||||
  content: "\e129";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-down:before {
 | 
					 | 
				
			||||||
  content: "\e130";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-right:before {
 | 
					 | 
				
			||||||
  content: "\e131";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-left:before {
 | 
					 | 
				
			||||||
  content: "\e132";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-up:before {
 | 
					 | 
				
			||||||
  content: "\e133";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-down:before {
 | 
					 | 
				
			||||||
  content: "\e134";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-globe:before {
 | 
					 | 
				
			||||||
  content: "\e135";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-wrench:before {
 | 
					 | 
				
			||||||
  content: "\e136";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tasks:before {
 | 
					 | 
				
			||||||
  content: "\e137";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-filter:before {
 | 
					 | 
				
			||||||
  content: "\e138";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-briefcase:before {
 | 
					 | 
				
			||||||
  content: "\e139";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fullscreen:before {
 | 
					 | 
				
			||||||
  content: "\e140";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-dashboard:before {
 | 
					 | 
				
			||||||
  content: "\e141";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-paperclip:before {
 | 
					 | 
				
			||||||
  content: "\e142";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-heart-empty:before {
 | 
					 | 
				
			||||||
  content: "\e143";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-link:before {
 | 
					 | 
				
			||||||
  content: "\e144";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-phone:before {
 | 
					 | 
				
			||||||
  content: "\e145";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-pushpin:before {
 | 
					 | 
				
			||||||
  content: "\e146";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-usd:before {
 | 
					 | 
				
			||||||
  content: "\e148";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-gbp:before {
 | 
					 | 
				
			||||||
  content: "\e149";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort:before {
 | 
					 | 
				
			||||||
  content: "\e150";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-alphabet:before {
 | 
					 | 
				
			||||||
  content: "\e151";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-alphabet-alt:before {
 | 
					 | 
				
			||||||
  content: "\e152";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-order:before {
 | 
					 | 
				
			||||||
  content: "\e153";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-order-alt:before {
 | 
					 | 
				
			||||||
  content: "\e154";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-attributes:before {
 | 
					 | 
				
			||||||
  content: "\e155";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-attributes-alt:before {
 | 
					 | 
				
			||||||
  content: "\e156";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-unchecked:before {
 | 
					 | 
				
			||||||
  content: "\e157";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-expand:before {
 | 
					 | 
				
			||||||
  content: "\e158";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-collapse-down:before {
 | 
					 | 
				
			||||||
  content: "\e159";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-collapse-up:before {
 | 
					 | 
				
			||||||
  content: "\e160";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-log-in:before {
 | 
					 | 
				
			||||||
  content: "\e161";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-flash:before {
 | 
					 | 
				
			||||||
  content: "\e162";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-log-out:before {
 | 
					 | 
				
			||||||
  content: "\e163";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-new-window:before {
 | 
					 | 
				
			||||||
  content: "\e164";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-record:before {
 | 
					 | 
				
			||||||
  content: "\e165";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-save:before {
 | 
					 | 
				
			||||||
  content: "\e166";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-open:before {
 | 
					 | 
				
			||||||
  content: "\e167";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-saved:before {
 | 
					 | 
				
			||||||
  content: "\e168";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-import:before {
 | 
					 | 
				
			||||||
  content: "\e169";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-export:before {
 | 
					 | 
				
			||||||
  content: "\e170";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-send:before {
 | 
					 | 
				
			||||||
  content: "\e171";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-disk:before {
 | 
					 | 
				
			||||||
  content: "\e172";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-saved:before {
 | 
					 | 
				
			||||||
  content: "\e173";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-remove:before {
 | 
					 | 
				
			||||||
  content: "\e174";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-save:before {
 | 
					 | 
				
			||||||
  content: "\e175";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-open:before {
 | 
					 | 
				
			||||||
  content: "\e176";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-credit-card:before {
 | 
					 | 
				
			||||||
  content: "\e177";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-transfer:before {
 | 
					 | 
				
			||||||
  content: "\e178";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cutlery:before {
 | 
					 | 
				
			||||||
  content: "\e179";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-header:before {
 | 
					 | 
				
			||||||
  content: "\e180";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-compressed:before {
 | 
					 | 
				
			||||||
  content: "\e181";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-earphone:before {
 | 
					 | 
				
			||||||
  content: "\e182";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-phone-alt:before {
 | 
					 | 
				
			||||||
  content: "\e183";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tower:before {
 | 
					 | 
				
			||||||
  content: "\e184";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-stats:before {
 | 
					 | 
				
			||||||
  content: "\e185";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sd-video:before {
 | 
					 | 
				
			||||||
  content: "\e186";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hd-video:before {
 | 
					 | 
				
			||||||
  content: "\e187";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-subtitles:before {
 | 
					 | 
				
			||||||
  content: "\e188";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-stereo:before {
 | 
					 | 
				
			||||||
  content: "\e189";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-dolby:before {
 | 
					 | 
				
			||||||
  content: "\e190";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-5-1:before {
 | 
					 | 
				
			||||||
  content: "\e191";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-6-1:before {
 | 
					 | 
				
			||||||
  content: "\e192";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-7-1:before {
 | 
					 | 
				
			||||||
  content: "\e193";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-copyright-mark:before {
 | 
					 | 
				
			||||||
  content: "\e194";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-registration-mark:before {
 | 
					 | 
				
			||||||
  content: "\e195";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cloud-download:before {
 | 
					 | 
				
			||||||
  content: "\e197";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cloud-upload:before {
 | 
					 | 
				
			||||||
  content: "\e198";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tree-conifer:before {
 | 
					 | 
				
			||||||
  content: "\e199";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tree-deciduous:before {
 | 
					 | 
				
			||||||
  content: "\e200";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
* {
 | 
					* {
 | 
				
			||||||
  -webkit-box-sizing: border-box;
 | 
					  -webkit-box-sizing: border-box;
 | 
				
			||||||
     -moz-box-sizing: border-box;
 | 
					     -moz-box-sizing: border-box;
 | 
				
			||||||
| 
						 | 
					@ -5799,31 +5181,24 @@ button.close {
 | 
				
			||||||
  opacity: .9;
 | 
					  opacity: .9;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
.carousel-control .icon-prev,
 | 
					.carousel-control .icon-prev,
 | 
				
			||||||
.carousel-control .icon-next,
 | 
					.carousel-control .icon-next {
 | 
				
			||||||
.carousel-control .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
.carousel-control .glyphicon-chevron-right {
 | 
					 | 
				
			||||||
  position: absolute;
 | 
					  position: absolute;
 | 
				
			||||||
  top: 50%;
 | 
					  top: 50%;
 | 
				
			||||||
  z-index: 5;
 | 
					  z-index: 5;
 | 
				
			||||||
  display: inline-block;
 | 
					  display: inline-block;
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.carousel-control .icon-prev,
 | 
					 | 
				
			||||||
.carousel-control .glyphicon-chevron-left {
 | 
					 | 
				
			||||||
  left: 50%;
 | 
					 | 
				
			||||||
  margin-left: -10px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.carousel-control .icon-next,
 | 
					 | 
				
			||||||
.carousel-control .glyphicon-chevron-right {
 | 
					 | 
				
			||||||
  right: 50%;
 | 
					 | 
				
			||||||
  margin-right: -10px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.carousel-control .icon-prev,
 | 
					 | 
				
			||||||
.carousel-control .icon-next {
 | 
					 | 
				
			||||||
  width: 20px;
 | 
					  width: 20px;
 | 
				
			||||||
  height: 20px;
 | 
					  height: 20px;
 | 
				
			||||||
  margin-top: -10px;
 | 
					  margin-top: -10px;
 | 
				
			||||||
  font-family: serif;
 | 
					  font-family: serif;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					.carousel-control .icon-prev {
 | 
				
			||||||
 | 
					  left: 50%;
 | 
				
			||||||
 | 
					  margin-left: -10px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.carousel-control .icon-next {
 | 
				
			||||||
 | 
					  right: 50%;
 | 
				
			||||||
 | 
					  margin-right: -10px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
.carousel-control .icon-prev:before {
 | 
					.carousel-control .icon-prev:before {
 | 
				
			||||||
  content: '\2039';
 | 
					  content: '\2039';
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -5875,8 +5250,6 @@ button.close {
 | 
				
			||||||
  text-shadow: none;
 | 
					  text-shadow: none;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@media screen and (min-width: 768px) {
 | 
					@media screen and (min-width: 768px) {
 | 
				
			||||||
  .carousel-control .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
  .carousel-control .glyphicon-chevron-right,
 | 
					 | 
				
			||||||
  .carousel-control .icon-prev,
 | 
					  .carousel-control .icon-prev,
 | 
				
			||||||
  .carousel-control .icon-next {
 | 
					  .carousel-control .icon-next {
 | 
				
			||||||
    width: 30px;
 | 
					    width: 30px;
 | 
				
			||||||
| 
						 | 
					@ -5884,11 +5257,9 @@ button.close {
 | 
				
			||||||
    margin-top: -15px;
 | 
					    margin-top: -15px;
 | 
				
			||||||
    font-size: 30px;
 | 
					    font-size: 30px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .carousel-control .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
  .carousel-control .icon-prev {
 | 
					  .carousel-control .icon-prev {
 | 
				
			||||||
    margin-left: -15px;
 | 
					    margin-left: -15px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .carousel-control .glyphicon-chevron-right,
 | 
					 | 
				
			||||||
  .carousel-control .icon-next {
 | 
					  .carousel-control .icon-next {
 | 
				
			||||||
    margin-right: -15px;
 | 
					    margin-right: -15px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| 
						 | 
					@ -1,203 +0,0 @@
 | 
				
			||||||
# This file is generated via Grunt task. **Do not edit directly.**
 | 
					 | 
				
			||||||
# See the 'build-glyphicons-data' task in Gruntfile.js.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
- glyphicon-asterisk
 | 
					 | 
				
			||||||
- glyphicon-plus
 | 
					 | 
				
			||||||
- glyphicon-euro
 | 
					 | 
				
			||||||
- glyphicon-minus
 | 
					 | 
				
			||||||
- glyphicon-cloud
 | 
					 | 
				
			||||||
- glyphicon-envelope
 | 
					 | 
				
			||||||
- glyphicon-pencil
 | 
					 | 
				
			||||||
- glyphicon-glass
 | 
					 | 
				
			||||||
- glyphicon-music
 | 
					 | 
				
			||||||
- glyphicon-search
 | 
					 | 
				
			||||||
- glyphicon-heart
 | 
					 | 
				
			||||||
- glyphicon-star
 | 
					 | 
				
			||||||
- glyphicon-star-empty
 | 
					 | 
				
			||||||
- glyphicon-user
 | 
					 | 
				
			||||||
- glyphicon-film
 | 
					 | 
				
			||||||
- glyphicon-th-large
 | 
					 | 
				
			||||||
- glyphicon-th
 | 
					 | 
				
			||||||
- glyphicon-th-list
 | 
					 | 
				
			||||||
- glyphicon-ok
 | 
					 | 
				
			||||||
- glyphicon-remove
 | 
					 | 
				
			||||||
- glyphicon-zoom-in
 | 
					 | 
				
			||||||
- glyphicon-zoom-out
 | 
					 | 
				
			||||||
- glyphicon-off
 | 
					 | 
				
			||||||
- glyphicon-signal
 | 
					 | 
				
			||||||
- glyphicon-cog
 | 
					 | 
				
			||||||
- glyphicon-trash
 | 
					 | 
				
			||||||
- glyphicon-home
 | 
					 | 
				
			||||||
- glyphicon-file
 | 
					 | 
				
			||||||
- glyphicon-time
 | 
					 | 
				
			||||||
- glyphicon-road
 | 
					 | 
				
			||||||
- glyphicon-download-alt
 | 
					 | 
				
			||||||
- glyphicon-download
 | 
					 | 
				
			||||||
- glyphicon-upload
 | 
					 | 
				
			||||||
- glyphicon-inbox
 | 
					 | 
				
			||||||
- glyphicon-play-circle
 | 
					 | 
				
			||||||
- glyphicon-repeat
 | 
					 | 
				
			||||||
- glyphicon-refresh
 | 
					 | 
				
			||||||
- glyphicon-list-alt
 | 
					 | 
				
			||||||
- glyphicon-lock
 | 
					 | 
				
			||||||
- glyphicon-flag
 | 
					 | 
				
			||||||
- glyphicon-headphones
 | 
					 | 
				
			||||||
- glyphicon-volume-off
 | 
					 | 
				
			||||||
- glyphicon-volume-down
 | 
					 | 
				
			||||||
- glyphicon-volume-up
 | 
					 | 
				
			||||||
- glyphicon-qrcode
 | 
					 | 
				
			||||||
- glyphicon-barcode
 | 
					 | 
				
			||||||
- glyphicon-tag
 | 
					 | 
				
			||||||
- glyphicon-tags
 | 
					 | 
				
			||||||
- glyphicon-book
 | 
					 | 
				
			||||||
- glyphicon-bookmark
 | 
					 | 
				
			||||||
- glyphicon-print
 | 
					 | 
				
			||||||
- glyphicon-camera
 | 
					 | 
				
			||||||
- glyphicon-font
 | 
					 | 
				
			||||||
- glyphicon-bold
 | 
					 | 
				
			||||||
- glyphicon-italic
 | 
					 | 
				
			||||||
- glyphicon-text-height
 | 
					 | 
				
			||||||
- glyphicon-text-width
 | 
					 | 
				
			||||||
- glyphicon-align-left
 | 
					 | 
				
			||||||
- glyphicon-align-center
 | 
					 | 
				
			||||||
- glyphicon-align-right
 | 
					 | 
				
			||||||
- glyphicon-align-justify
 | 
					 | 
				
			||||||
- glyphicon-list
 | 
					 | 
				
			||||||
- glyphicon-indent-left
 | 
					 | 
				
			||||||
- glyphicon-indent-right
 | 
					 | 
				
			||||||
- glyphicon-facetime-video
 | 
					 | 
				
			||||||
- glyphicon-picture
 | 
					 | 
				
			||||||
- glyphicon-map-marker
 | 
					 | 
				
			||||||
- glyphicon-adjust
 | 
					 | 
				
			||||||
- glyphicon-tint
 | 
					 | 
				
			||||||
- glyphicon-edit
 | 
					 | 
				
			||||||
- glyphicon-share
 | 
					 | 
				
			||||||
- glyphicon-check
 | 
					 | 
				
			||||||
- glyphicon-move
 | 
					 | 
				
			||||||
- glyphicon-step-backward
 | 
					 | 
				
			||||||
- glyphicon-fast-backward
 | 
					 | 
				
			||||||
- glyphicon-backward
 | 
					 | 
				
			||||||
- glyphicon-play
 | 
					 | 
				
			||||||
- glyphicon-pause
 | 
					 | 
				
			||||||
- glyphicon-stop
 | 
					 | 
				
			||||||
- glyphicon-forward
 | 
					 | 
				
			||||||
- glyphicon-fast-forward
 | 
					 | 
				
			||||||
- glyphicon-step-forward
 | 
					 | 
				
			||||||
- glyphicon-eject
 | 
					 | 
				
			||||||
- glyphicon-chevron-left
 | 
					 | 
				
			||||||
- glyphicon-chevron-right
 | 
					 | 
				
			||||||
- glyphicon-plus-sign
 | 
					 | 
				
			||||||
- glyphicon-minus-sign
 | 
					 | 
				
			||||||
- glyphicon-remove-sign
 | 
					 | 
				
			||||||
- glyphicon-ok-sign
 | 
					 | 
				
			||||||
- glyphicon-question-sign
 | 
					 | 
				
			||||||
- glyphicon-info-sign
 | 
					 | 
				
			||||||
- glyphicon-screenshot
 | 
					 | 
				
			||||||
- glyphicon-remove-circle
 | 
					 | 
				
			||||||
- glyphicon-ok-circle
 | 
					 | 
				
			||||||
- glyphicon-ban-circle
 | 
					 | 
				
			||||||
- glyphicon-arrow-left
 | 
					 | 
				
			||||||
- glyphicon-arrow-right
 | 
					 | 
				
			||||||
- glyphicon-arrow-up
 | 
					 | 
				
			||||||
- glyphicon-arrow-down
 | 
					 | 
				
			||||||
- glyphicon-share-alt
 | 
					 | 
				
			||||||
- glyphicon-resize-full
 | 
					 | 
				
			||||||
- glyphicon-resize-small
 | 
					 | 
				
			||||||
- glyphicon-exclamation-sign
 | 
					 | 
				
			||||||
- glyphicon-gift
 | 
					 | 
				
			||||||
- glyphicon-leaf
 | 
					 | 
				
			||||||
- glyphicon-fire
 | 
					 | 
				
			||||||
- glyphicon-eye-open
 | 
					 | 
				
			||||||
- glyphicon-eye-close
 | 
					 | 
				
			||||||
- glyphicon-warning-sign
 | 
					 | 
				
			||||||
- glyphicon-plane
 | 
					 | 
				
			||||||
- glyphicon-calendar
 | 
					 | 
				
			||||||
- glyphicon-random
 | 
					 | 
				
			||||||
- glyphicon-comment
 | 
					 | 
				
			||||||
- glyphicon-magnet
 | 
					 | 
				
			||||||
- glyphicon-chevron-up
 | 
					 | 
				
			||||||
- glyphicon-chevron-down
 | 
					 | 
				
			||||||
- glyphicon-retweet
 | 
					 | 
				
			||||||
- glyphicon-shopping-cart
 | 
					 | 
				
			||||||
- glyphicon-folder-close
 | 
					 | 
				
			||||||
- glyphicon-folder-open
 | 
					 | 
				
			||||||
- glyphicon-resize-vertical
 | 
					 | 
				
			||||||
- glyphicon-resize-horizontal
 | 
					 | 
				
			||||||
- glyphicon-hdd
 | 
					 | 
				
			||||||
- glyphicon-bullhorn
 | 
					 | 
				
			||||||
- glyphicon-bell
 | 
					 | 
				
			||||||
- glyphicon-certificate
 | 
					 | 
				
			||||||
- glyphicon-thumbs-up
 | 
					 | 
				
			||||||
- glyphicon-thumbs-down
 | 
					 | 
				
			||||||
- glyphicon-hand-right
 | 
					 | 
				
			||||||
- glyphicon-hand-left
 | 
					 | 
				
			||||||
- glyphicon-hand-up
 | 
					 | 
				
			||||||
- glyphicon-hand-down
 | 
					 | 
				
			||||||
- glyphicon-circle-arrow-right
 | 
					 | 
				
			||||||
- glyphicon-circle-arrow-left
 | 
					 | 
				
			||||||
- glyphicon-circle-arrow-up
 | 
					 | 
				
			||||||
- glyphicon-circle-arrow-down
 | 
					 | 
				
			||||||
- glyphicon-globe
 | 
					 | 
				
			||||||
- glyphicon-wrench
 | 
					 | 
				
			||||||
- glyphicon-tasks
 | 
					 | 
				
			||||||
- glyphicon-filter
 | 
					 | 
				
			||||||
- glyphicon-briefcase
 | 
					 | 
				
			||||||
- glyphicon-fullscreen
 | 
					 | 
				
			||||||
- glyphicon-dashboard
 | 
					 | 
				
			||||||
- glyphicon-paperclip
 | 
					 | 
				
			||||||
- glyphicon-heart-empty
 | 
					 | 
				
			||||||
- glyphicon-link
 | 
					 | 
				
			||||||
- glyphicon-phone
 | 
					 | 
				
			||||||
- glyphicon-pushpin
 | 
					 | 
				
			||||||
- glyphicon-usd
 | 
					 | 
				
			||||||
- glyphicon-gbp
 | 
					 | 
				
			||||||
- glyphicon-sort
 | 
					 | 
				
			||||||
- glyphicon-sort-by-alphabet
 | 
					 | 
				
			||||||
- glyphicon-sort-by-alphabet-alt
 | 
					 | 
				
			||||||
- glyphicon-sort-by-order
 | 
					 | 
				
			||||||
- glyphicon-sort-by-order-alt
 | 
					 | 
				
			||||||
- glyphicon-sort-by-attributes
 | 
					 | 
				
			||||||
- glyphicon-sort-by-attributes-alt
 | 
					 | 
				
			||||||
- glyphicon-unchecked
 | 
					 | 
				
			||||||
- glyphicon-expand
 | 
					 | 
				
			||||||
- glyphicon-collapse-down
 | 
					 | 
				
			||||||
- glyphicon-collapse-up
 | 
					 | 
				
			||||||
- glyphicon-log-in
 | 
					 | 
				
			||||||
- glyphicon-flash
 | 
					 | 
				
			||||||
- glyphicon-log-out
 | 
					 | 
				
			||||||
- glyphicon-new-window
 | 
					 | 
				
			||||||
- glyphicon-record
 | 
					 | 
				
			||||||
- glyphicon-save
 | 
					 | 
				
			||||||
- glyphicon-open
 | 
					 | 
				
			||||||
- glyphicon-saved
 | 
					 | 
				
			||||||
- glyphicon-import
 | 
					 | 
				
			||||||
- glyphicon-export
 | 
					 | 
				
			||||||
- glyphicon-send
 | 
					 | 
				
			||||||
- glyphicon-floppy-disk
 | 
					 | 
				
			||||||
- glyphicon-floppy-saved
 | 
					 | 
				
			||||||
- glyphicon-floppy-remove
 | 
					 | 
				
			||||||
- glyphicon-floppy-save
 | 
					 | 
				
			||||||
- glyphicon-floppy-open
 | 
					 | 
				
			||||||
- glyphicon-credit-card
 | 
					 | 
				
			||||||
- glyphicon-transfer
 | 
					 | 
				
			||||||
- glyphicon-cutlery
 | 
					 | 
				
			||||||
- glyphicon-header
 | 
					 | 
				
			||||||
- glyphicon-compressed
 | 
					 | 
				
			||||||
- glyphicon-earphone
 | 
					 | 
				
			||||||
- glyphicon-phone-alt
 | 
					 | 
				
			||||||
- glyphicon-tower
 | 
					 | 
				
			||||||
- glyphicon-stats
 | 
					 | 
				
			||||||
- glyphicon-sd-video
 | 
					 | 
				
			||||||
- glyphicon-hd-video
 | 
					 | 
				
			||||||
- glyphicon-subtitles
 | 
					 | 
				
			||||||
- glyphicon-sound-stereo
 | 
					 | 
				
			||||||
- glyphicon-sound-dolby
 | 
					 | 
				
			||||||
- glyphicon-sound-5-1
 | 
					 | 
				
			||||||
- glyphicon-sound-6-1
 | 
					 | 
				
			||||||
- glyphicon-sound-7-1
 | 
					 | 
				
			||||||
- glyphicon-copyright-mark
 | 
					 | 
				
			||||||
- glyphicon-registration-mark
 | 
					 | 
				
			||||||
- glyphicon-cloud-download
 | 
					 | 
				
			||||||
- glyphicon-cloud-upload
 | 
					 | 
				
			||||||
- glyphicon-tree-conifer
 | 
					 | 
				
			||||||
- glyphicon-tree-deciduous
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,66 +0,0 @@
 | 
				
			||||||
<div class="bs-docs-section">
 | 
					 | 
				
			||||||
  <h1 id="glyphicons" class="page-header">Glyphicons</h1>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  <h2 id="glyphicons-glyphs">Available glyphs</h2>
 | 
					 | 
				
			||||||
  <p>Includes 200 glyphs in font format from the Glyphicon Halflings set. <a href="http://glyphicons.com/">Glyphicons</a> Halflings are normally not available for free, but their creator has made them available for Bootstrap free of cost. As a thank you, we only ask that you include a link back to <a href="http://glyphicons.com/">Glyphicons</a> whenever possible.</p>
 | 
					 | 
				
			||||||
  <div class="bs-glyphicons">
 | 
					 | 
				
			||||||
    <ul class="bs-glyphicons-list">
 | 
					 | 
				
			||||||
      {% for iconClassName in site.data.glyphicons %}
 | 
					 | 
				
			||||||
        <li>
 | 
					 | 
				
			||||||
          <span class="glyphicon {{ iconClassName }}"></span>
 | 
					 | 
				
			||||||
          <span class="glyphicon-class">glyphicon {{ iconClassName }}</span>
 | 
					 | 
				
			||||||
        </li>
 | 
					 | 
				
			||||||
      {% endfor %}
 | 
					 | 
				
			||||||
    </ul>
 | 
					 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  <h2 id="glyphicons-how-to-use">How to use</h2>
 | 
					 | 
				
			||||||
  <p>For performance reasons, all icons require a base class and individual icon class. To use, place the following code just about anywhere. Be sure to leave a space between the icon and text for proper padding.</p>
 | 
					 | 
				
			||||||
  <div class="bs-callout bs-callout-danger">
 | 
					 | 
				
			||||||
    <h4>Don't mix with other components</h4>
 | 
					 | 
				
			||||||
    <p>Icon classes cannot be directly combined with other components. They should not be used along with other classes on the same element. Instead, add a nested <code><span></code> and apply the icon classes to the <code><span></code>.</p>
 | 
					 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
  <div class="bs-callout bs-callout-danger">
 | 
					 | 
				
			||||||
    <h4>Only for use on empty elements</h4>
 | 
					 | 
				
			||||||
    <p>Icon classes should only be used on elements that contain no text content and have no child elements.</p>
 | 
					 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
  <div class="bs-callout bs-callout-info">
 | 
					 | 
				
			||||||
    <h4>Changing the icon font location</h4>
 | 
					 | 
				
			||||||
    <p>Bootstrap assumes icon font files will be located in the <code>../fonts/</code> directory, relative to the compiled CSS files. Moving or renaming those font files means updating the CSS in one of three ways:</p>
 | 
					 | 
				
			||||||
    <ul>
 | 
					 | 
				
			||||||
      <li>Change the <code>@icon-font-path</code> and/or <code>@icon-font-name</code> variables in the source Less files.</li>
 | 
					 | 
				
			||||||
      <li>Utilize the <a href="http://lesscss.org/usage/#command-line-usage-relative-urls">relative URLs option</a> provided by the Less compiler.</li>
 | 
					 | 
				
			||||||
      <li>Change the <code>url()</code> paths in the compiled CSS.</li>
 | 
					 | 
				
			||||||
    </ul>
 | 
					 | 
				
			||||||
    <p>Use whatever option best suits your specific development setup.</p>
 | 
					 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
{% highlight html %}
 | 
					 | 
				
			||||||
<span class="glyphicon glyphicon-search"></span>
 | 
					 | 
				
			||||||
{% endhighlight %}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  <h2 id="glyphicons-examples">Examples</h2>
 | 
					 | 
				
			||||||
  <p>Use them in buttons, button groups for a toolbar, navigation, or prepended form inputs.</p>
 | 
					 | 
				
			||||||
  <div class="bs-example">
 | 
					 | 
				
			||||||
    <div class="btn-toolbar" role="toolbar">
 | 
					 | 
				
			||||||
      <div class="btn-group">
 | 
					 | 
				
			||||||
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-left"></span></button>
 | 
					 | 
				
			||||||
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-center"></span></button>
 | 
					 | 
				
			||||||
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-right"></span></button>
 | 
					 | 
				
			||||||
        <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-align-justify"></span></button>
 | 
					 | 
				
			||||||
      </div>
 | 
					 | 
				
			||||||
    </div>
 | 
					 | 
				
			||||||
    <div class="btn-toolbar" role="toolbar">
 | 
					 | 
				
			||||||
      <button type="button" class="btn btn-default btn-lg"><span class="glyphicon glyphicon-star"></span> Star</button>
 | 
					 | 
				
			||||||
      <button type="button" class="btn btn-default"><span class="glyphicon glyphicon-star"></span> Star</button>
 | 
					 | 
				
			||||||
      <button type="button" class="btn btn-default btn-sm"><span class="glyphicon glyphicon-star"></span> Star</button>
 | 
					 | 
				
			||||||
      <button type="button" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-star"></span> Star</button>
 | 
					 | 
				
			||||||
    </div>
 | 
					 | 
				
			||||||
  </div>
 | 
					 | 
				
			||||||
{% highlight html %}
 | 
					 | 
				
			||||||
<button type="button" class="btn btn-default btn-lg">
 | 
					 | 
				
			||||||
  <span class="glyphicon glyphicon-star"></span> Star
 | 
					 | 
				
			||||||
</button>
 | 
					 | 
				
			||||||
{% endhighlight %}
 | 
					 | 
				
			||||||
</div>
 | 
					 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,6 @@ slug: components
 | 
				
			||||||
lead: "Over a dozen reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more."
 | 
					lead: "Over a dozen reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more."
 | 
				
			||||||
---
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{% include components/glyphicons.html %}
 | 
					 | 
				
			||||||
{% include components/dropdowns.html %}
 | 
					{% include components/dropdowns.html %}
 | 
				
			||||||
{% include components/button-groups.html %}
 | 
					{% include components/button-groups.html %}
 | 
				
			||||||
{% include components/button-dropdowns.html %}
 | 
					{% include components/button-dropdowns.html %}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -260,624 +260,6 @@ th {
 | 
				
			||||||
    border: 1px solid #ddd !important;
 | 
					    border: 1px solid #ddd !important;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@font-face {
 | 
					 | 
				
			||||||
  font-family: 'Glyphicons Halflings';
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  src: url('../fonts/glyphicons-halflings-regular.eot');
 | 
					 | 
				
			||||||
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon {
 | 
					 | 
				
			||||||
  position: relative;
 | 
					 | 
				
			||||||
  top: 1px;
 | 
					 | 
				
			||||||
  display: inline-block;
 | 
					 | 
				
			||||||
  font-family: 'Glyphicons Halflings';
 | 
					 | 
				
			||||||
  font-style: normal;
 | 
					 | 
				
			||||||
  font-weight: normal;
 | 
					 | 
				
			||||||
  line-height: 1;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  -webkit-font-smoothing: antialiased;
 | 
					 | 
				
			||||||
  -moz-osx-font-smoothing: grayscale;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-asterisk:before {
 | 
					 | 
				
			||||||
  content: "\2a";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-plus:before {
 | 
					 | 
				
			||||||
  content: "\2b";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-euro:before {
 | 
					 | 
				
			||||||
  content: "\20ac";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-minus:before {
 | 
					 | 
				
			||||||
  content: "\2212";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cloud:before {
 | 
					 | 
				
			||||||
  content: "\2601";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-envelope:before {
 | 
					 | 
				
			||||||
  content: "\2709";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-pencil:before {
 | 
					 | 
				
			||||||
  content: "\270f";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-glass:before {
 | 
					 | 
				
			||||||
  content: "\e001";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-music:before {
 | 
					 | 
				
			||||||
  content: "\e002";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-search:before {
 | 
					 | 
				
			||||||
  content: "\e003";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-heart:before {
 | 
					 | 
				
			||||||
  content: "\e005";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-star:before {
 | 
					 | 
				
			||||||
  content: "\e006";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-star-empty:before {
 | 
					 | 
				
			||||||
  content: "\e007";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-user:before {
 | 
					 | 
				
			||||||
  content: "\e008";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-film:before {
 | 
					 | 
				
			||||||
  content: "\e009";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-th-large:before {
 | 
					 | 
				
			||||||
  content: "\e010";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-th:before {
 | 
					 | 
				
			||||||
  content: "\e011";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-th-list:before {
 | 
					 | 
				
			||||||
  content: "\e012";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ok:before {
 | 
					 | 
				
			||||||
  content: "\e013";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-remove:before {
 | 
					 | 
				
			||||||
  content: "\e014";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-zoom-in:before {
 | 
					 | 
				
			||||||
  content: "\e015";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-zoom-out:before {
 | 
					 | 
				
			||||||
  content: "\e016";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-off:before {
 | 
					 | 
				
			||||||
  content: "\e017";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-signal:before {
 | 
					 | 
				
			||||||
  content: "\e018";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cog:before {
 | 
					 | 
				
			||||||
  content: "\e019";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-trash:before {
 | 
					 | 
				
			||||||
  content: "\e020";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-home:before {
 | 
					 | 
				
			||||||
  content: "\e021";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-file:before {
 | 
					 | 
				
			||||||
  content: "\e022";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-time:before {
 | 
					 | 
				
			||||||
  content: "\e023";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-road:before {
 | 
					 | 
				
			||||||
  content: "\e024";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-download-alt:before {
 | 
					 | 
				
			||||||
  content: "\e025";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-download:before {
 | 
					 | 
				
			||||||
  content: "\e026";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-upload:before {
 | 
					 | 
				
			||||||
  content: "\e027";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-inbox:before {
 | 
					 | 
				
			||||||
  content: "\e028";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-play-circle:before {
 | 
					 | 
				
			||||||
  content: "\e029";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-repeat:before {
 | 
					 | 
				
			||||||
  content: "\e030";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-refresh:before {
 | 
					 | 
				
			||||||
  content: "\e031";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-list-alt:before {
 | 
					 | 
				
			||||||
  content: "\e032";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-lock:before {
 | 
					 | 
				
			||||||
  content: "\e033";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-flag:before {
 | 
					 | 
				
			||||||
  content: "\e034";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-headphones:before {
 | 
					 | 
				
			||||||
  content: "\e035";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-volume-off:before {
 | 
					 | 
				
			||||||
  content: "\e036";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-volume-down:before {
 | 
					 | 
				
			||||||
  content: "\e037";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-volume-up:before {
 | 
					 | 
				
			||||||
  content: "\e038";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-qrcode:before {
 | 
					 | 
				
			||||||
  content: "\e039";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-barcode:before {
 | 
					 | 
				
			||||||
  content: "\e040";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tag:before {
 | 
					 | 
				
			||||||
  content: "\e041";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tags:before {
 | 
					 | 
				
			||||||
  content: "\e042";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-book:before {
 | 
					 | 
				
			||||||
  content: "\e043";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bookmark:before {
 | 
					 | 
				
			||||||
  content: "\e044";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-print:before {
 | 
					 | 
				
			||||||
  content: "\e045";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-camera:before {
 | 
					 | 
				
			||||||
  content: "\e046";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-font:before {
 | 
					 | 
				
			||||||
  content: "\e047";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bold:before {
 | 
					 | 
				
			||||||
  content: "\e048";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-italic:before {
 | 
					 | 
				
			||||||
  content: "\e049";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-text-height:before {
 | 
					 | 
				
			||||||
  content: "\e050";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-text-width:before {
 | 
					 | 
				
			||||||
  content: "\e051";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-left:before {
 | 
					 | 
				
			||||||
  content: "\e052";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-center:before {
 | 
					 | 
				
			||||||
  content: "\e053";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-right:before {
 | 
					 | 
				
			||||||
  content: "\e054";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-align-justify:before {
 | 
					 | 
				
			||||||
  content: "\e055";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-list:before {
 | 
					 | 
				
			||||||
  content: "\e056";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-indent-left:before {
 | 
					 | 
				
			||||||
  content: "\e057";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-indent-right:before {
 | 
					 | 
				
			||||||
  content: "\e058";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-facetime-video:before {
 | 
					 | 
				
			||||||
  content: "\e059";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-picture:before {
 | 
					 | 
				
			||||||
  content: "\e060";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-map-marker:before {
 | 
					 | 
				
			||||||
  content: "\e062";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-adjust:before {
 | 
					 | 
				
			||||||
  content: "\e063";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tint:before {
 | 
					 | 
				
			||||||
  content: "\e064";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-edit:before {
 | 
					 | 
				
			||||||
  content: "\e065";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-share:before {
 | 
					 | 
				
			||||||
  content: "\e066";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-check:before {
 | 
					 | 
				
			||||||
  content: "\e067";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-move:before {
 | 
					 | 
				
			||||||
  content: "\e068";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-step-backward:before {
 | 
					 | 
				
			||||||
  content: "\e069";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fast-backward:before {
 | 
					 | 
				
			||||||
  content: "\e070";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-backward:before {
 | 
					 | 
				
			||||||
  content: "\e071";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-play:before {
 | 
					 | 
				
			||||||
  content: "\e072";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-pause:before {
 | 
					 | 
				
			||||||
  content: "\e073";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-stop:before {
 | 
					 | 
				
			||||||
  content: "\e074";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-forward:before {
 | 
					 | 
				
			||||||
  content: "\e075";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fast-forward:before {
 | 
					 | 
				
			||||||
  content: "\e076";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-step-forward:before {
 | 
					 | 
				
			||||||
  content: "\e077";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-eject:before {
 | 
					 | 
				
			||||||
  content: "\e078";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-left:before {
 | 
					 | 
				
			||||||
  content: "\e079";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-right:before {
 | 
					 | 
				
			||||||
  content: "\e080";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-plus-sign:before {
 | 
					 | 
				
			||||||
  content: "\e081";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-minus-sign:before {
 | 
					 | 
				
			||||||
  content: "\e082";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-remove-sign:before {
 | 
					 | 
				
			||||||
  content: "\e083";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ok-sign:before {
 | 
					 | 
				
			||||||
  content: "\e084";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-question-sign:before {
 | 
					 | 
				
			||||||
  content: "\e085";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-info-sign:before {
 | 
					 | 
				
			||||||
  content: "\e086";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-screenshot:before {
 | 
					 | 
				
			||||||
  content: "\e087";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-remove-circle:before {
 | 
					 | 
				
			||||||
  content: "\e088";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ok-circle:before {
 | 
					 | 
				
			||||||
  content: "\e089";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-ban-circle:before {
 | 
					 | 
				
			||||||
  content: "\e090";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-left:before {
 | 
					 | 
				
			||||||
  content: "\e091";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-right:before {
 | 
					 | 
				
			||||||
  content: "\e092";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-up:before {
 | 
					 | 
				
			||||||
  content: "\e093";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-arrow-down:before {
 | 
					 | 
				
			||||||
  content: "\e094";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-share-alt:before {
 | 
					 | 
				
			||||||
  content: "\e095";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-full:before {
 | 
					 | 
				
			||||||
  content: "\e096";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-small:before {
 | 
					 | 
				
			||||||
  content: "\e097";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-exclamation-sign:before {
 | 
					 | 
				
			||||||
  content: "\e101";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-gift:before {
 | 
					 | 
				
			||||||
  content: "\e102";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-leaf:before {
 | 
					 | 
				
			||||||
  content: "\e103";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fire:before {
 | 
					 | 
				
			||||||
  content: "\e104";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-eye-open:before {
 | 
					 | 
				
			||||||
  content: "\e105";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-eye-close:before {
 | 
					 | 
				
			||||||
  content: "\e106";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-warning-sign:before {
 | 
					 | 
				
			||||||
  content: "\e107";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-plane:before {
 | 
					 | 
				
			||||||
  content: "\e108";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-calendar:before {
 | 
					 | 
				
			||||||
  content: "\e109";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-random:before {
 | 
					 | 
				
			||||||
  content: "\e110";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-comment:before {
 | 
					 | 
				
			||||||
  content: "\e111";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-magnet:before {
 | 
					 | 
				
			||||||
  content: "\e112";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-up:before {
 | 
					 | 
				
			||||||
  content: "\e113";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-chevron-down:before {
 | 
					 | 
				
			||||||
  content: "\e114";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-retweet:before {
 | 
					 | 
				
			||||||
  content: "\e115";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-shopping-cart:before {
 | 
					 | 
				
			||||||
  content: "\e116";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-folder-close:before {
 | 
					 | 
				
			||||||
  content: "\e117";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-folder-open:before {
 | 
					 | 
				
			||||||
  content: "\e118";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-vertical:before {
 | 
					 | 
				
			||||||
  content: "\e119";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-resize-horizontal:before {
 | 
					 | 
				
			||||||
  content: "\e120";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hdd:before {
 | 
					 | 
				
			||||||
  content: "\e121";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bullhorn:before {
 | 
					 | 
				
			||||||
  content: "\e122";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-bell:before {
 | 
					 | 
				
			||||||
  content: "\e123";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-certificate:before {
 | 
					 | 
				
			||||||
  content: "\e124";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-thumbs-up:before {
 | 
					 | 
				
			||||||
  content: "\e125";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-thumbs-down:before {
 | 
					 | 
				
			||||||
  content: "\e126";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-right:before {
 | 
					 | 
				
			||||||
  content: "\e127";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-left:before {
 | 
					 | 
				
			||||||
  content: "\e128";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-up:before {
 | 
					 | 
				
			||||||
  content: "\e129";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hand-down:before {
 | 
					 | 
				
			||||||
  content: "\e130";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-right:before {
 | 
					 | 
				
			||||||
  content: "\e131";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-left:before {
 | 
					 | 
				
			||||||
  content: "\e132";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-up:before {
 | 
					 | 
				
			||||||
  content: "\e133";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-down:before {
 | 
					 | 
				
			||||||
  content: "\e134";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-globe:before {
 | 
					 | 
				
			||||||
  content: "\e135";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-wrench:before {
 | 
					 | 
				
			||||||
  content: "\e136";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tasks:before {
 | 
					 | 
				
			||||||
  content: "\e137";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-filter:before {
 | 
					 | 
				
			||||||
  content: "\e138";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-briefcase:before {
 | 
					 | 
				
			||||||
  content: "\e139";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-fullscreen:before {
 | 
					 | 
				
			||||||
  content: "\e140";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-dashboard:before {
 | 
					 | 
				
			||||||
  content: "\e141";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-paperclip:before {
 | 
					 | 
				
			||||||
  content: "\e142";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-heart-empty:before {
 | 
					 | 
				
			||||||
  content: "\e143";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-link:before {
 | 
					 | 
				
			||||||
  content: "\e144";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-phone:before {
 | 
					 | 
				
			||||||
  content: "\e145";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-pushpin:before {
 | 
					 | 
				
			||||||
  content: "\e146";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-usd:before {
 | 
					 | 
				
			||||||
  content: "\e148";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-gbp:before {
 | 
					 | 
				
			||||||
  content: "\e149";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort:before {
 | 
					 | 
				
			||||||
  content: "\e150";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-alphabet:before {
 | 
					 | 
				
			||||||
  content: "\e151";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-alphabet-alt:before {
 | 
					 | 
				
			||||||
  content: "\e152";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-order:before {
 | 
					 | 
				
			||||||
  content: "\e153";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-order-alt:before {
 | 
					 | 
				
			||||||
  content: "\e154";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-attributes:before {
 | 
					 | 
				
			||||||
  content: "\e155";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sort-by-attributes-alt:before {
 | 
					 | 
				
			||||||
  content: "\e156";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-unchecked:before {
 | 
					 | 
				
			||||||
  content: "\e157";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-expand:before {
 | 
					 | 
				
			||||||
  content: "\e158";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-collapse-down:before {
 | 
					 | 
				
			||||||
  content: "\e159";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-collapse-up:before {
 | 
					 | 
				
			||||||
  content: "\e160";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-log-in:before {
 | 
					 | 
				
			||||||
  content: "\e161";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-flash:before {
 | 
					 | 
				
			||||||
  content: "\e162";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-log-out:before {
 | 
					 | 
				
			||||||
  content: "\e163";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-new-window:before {
 | 
					 | 
				
			||||||
  content: "\e164";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-record:before {
 | 
					 | 
				
			||||||
  content: "\e165";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-save:before {
 | 
					 | 
				
			||||||
  content: "\e166";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-open:before {
 | 
					 | 
				
			||||||
  content: "\e167";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-saved:before {
 | 
					 | 
				
			||||||
  content: "\e168";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-import:before {
 | 
					 | 
				
			||||||
  content: "\e169";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-export:before {
 | 
					 | 
				
			||||||
  content: "\e170";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-send:before {
 | 
					 | 
				
			||||||
  content: "\e171";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-disk:before {
 | 
					 | 
				
			||||||
  content: "\e172";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-saved:before {
 | 
					 | 
				
			||||||
  content: "\e173";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-remove:before {
 | 
					 | 
				
			||||||
  content: "\e174";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-save:before {
 | 
					 | 
				
			||||||
  content: "\e175";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-floppy-open:before {
 | 
					 | 
				
			||||||
  content: "\e176";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-credit-card:before {
 | 
					 | 
				
			||||||
  content: "\e177";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-transfer:before {
 | 
					 | 
				
			||||||
  content: "\e178";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cutlery:before {
 | 
					 | 
				
			||||||
  content: "\e179";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-header:before {
 | 
					 | 
				
			||||||
  content: "\e180";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-compressed:before {
 | 
					 | 
				
			||||||
  content: "\e181";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-earphone:before {
 | 
					 | 
				
			||||||
  content: "\e182";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-phone-alt:before {
 | 
					 | 
				
			||||||
  content: "\e183";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tower:before {
 | 
					 | 
				
			||||||
  content: "\e184";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-stats:before {
 | 
					 | 
				
			||||||
  content: "\e185";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sd-video:before {
 | 
					 | 
				
			||||||
  content: "\e186";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-hd-video:before {
 | 
					 | 
				
			||||||
  content: "\e187";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-subtitles:before {
 | 
					 | 
				
			||||||
  content: "\e188";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-stereo:before {
 | 
					 | 
				
			||||||
  content: "\e189";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-dolby:before {
 | 
					 | 
				
			||||||
  content: "\e190";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-5-1:before {
 | 
					 | 
				
			||||||
  content: "\e191";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-6-1:before {
 | 
					 | 
				
			||||||
  content: "\e192";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-sound-7-1:before {
 | 
					 | 
				
			||||||
  content: "\e193";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-copyright-mark:before {
 | 
					 | 
				
			||||||
  content: "\e194";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-registration-mark:before {
 | 
					 | 
				
			||||||
  content: "\e195";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cloud-download:before {
 | 
					 | 
				
			||||||
  content: "\e197";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-cloud-upload:before {
 | 
					 | 
				
			||||||
  content: "\e198";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tree-conifer:before {
 | 
					 | 
				
			||||||
  content: "\e199";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.glyphicon-tree-deciduous:before {
 | 
					 | 
				
			||||||
  content: "\e200";
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
* {
 | 
					* {
 | 
				
			||||||
  -webkit-box-sizing: border-box;
 | 
					  -webkit-box-sizing: border-box;
 | 
				
			||||||
     -moz-box-sizing: border-box;
 | 
					     -moz-box-sizing: border-box;
 | 
				
			||||||
| 
						 | 
					@ -5799,31 +5181,24 @@ button.close {
 | 
				
			||||||
  opacity: .9;
 | 
					  opacity: .9;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
.carousel-control .icon-prev,
 | 
					.carousel-control .icon-prev,
 | 
				
			||||||
.carousel-control .icon-next,
 | 
					.carousel-control .icon-next {
 | 
				
			||||||
.carousel-control .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
.carousel-control .glyphicon-chevron-right {
 | 
					 | 
				
			||||||
  position: absolute;
 | 
					  position: absolute;
 | 
				
			||||||
  top: 50%;
 | 
					  top: 50%;
 | 
				
			||||||
  z-index: 5;
 | 
					  z-index: 5;
 | 
				
			||||||
  display: inline-block;
 | 
					  display: inline-block;
 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.carousel-control .icon-prev,
 | 
					 | 
				
			||||||
.carousel-control .glyphicon-chevron-left {
 | 
					 | 
				
			||||||
  left: 50%;
 | 
					 | 
				
			||||||
  margin-left: -10px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.carousel-control .icon-next,
 | 
					 | 
				
			||||||
.carousel-control .glyphicon-chevron-right {
 | 
					 | 
				
			||||||
  right: 50%;
 | 
					 | 
				
			||||||
  margin-right: -10px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.carousel-control .icon-prev,
 | 
					 | 
				
			||||||
.carousel-control .icon-next {
 | 
					 | 
				
			||||||
  width: 20px;
 | 
					  width: 20px;
 | 
				
			||||||
  height: 20px;
 | 
					  height: 20px;
 | 
				
			||||||
  margin-top: -10px;
 | 
					  margin-top: -10px;
 | 
				
			||||||
  font-family: serif;
 | 
					  font-family: serif;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					.carousel-control .icon-prev {
 | 
				
			||||||
 | 
					  left: 50%;
 | 
				
			||||||
 | 
					  margin-left: -10px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.carousel-control .icon-next {
 | 
				
			||||||
 | 
					  right: 50%;
 | 
				
			||||||
 | 
					  margin-right: -10px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
.carousel-control .icon-prev:before {
 | 
					.carousel-control .icon-prev:before {
 | 
				
			||||||
  content: '\2039';
 | 
					  content: '\2039';
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -5875,8 +5250,6 @@ button.close {
 | 
				
			||||||
  text-shadow: none;
 | 
					  text-shadow: none;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@media screen and (min-width: 768px) {
 | 
					@media screen and (min-width: 768px) {
 | 
				
			||||||
  .carousel-control .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
  .carousel-control .glyphicon-chevron-right,
 | 
					 | 
				
			||||||
  .carousel-control .icon-prev,
 | 
					  .carousel-control .icon-prev,
 | 
				
			||||||
  .carousel-control .icon-next {
 | 
					  .carousel-control .icon-next {
 | 
				
			||||||
    width: 30px;
 | 
					    width: 30px;
 | 
				
			||||||
| 
						 | 
					@ -5884,11 +5257,9 @@ button.close {
 | 
				
			||||||
    margin-top: -15px;
 | 
					    margin-top: -15px;
 | 
				
			||||||
    font-size: 30px;
 | 
					    font-size: 30px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .carousel-control .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
  .carousel-control .icon-prev {
 | 
					  .carousel-control .icon-prev {
 | 
				
			||||||
    margin-left: -15px;
 | 
					    margin-left: -15px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  .carousel-control .glyphicon-chevron-right,
 | 
					 | 
				
			||||||
  .carousel-control .icon-next {
 | 
					  .carousel-control .icon-next {
 | 
				
			||||||
    margin-right: -15px;
 | 
					    margin-right: -15px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| 
						 | 
					@ -5,7 +5,6 @@
 | 
				
			||||||
// Reset and dependencies
 | 
					// Reset and dependencies
 | 
				
			||||||
@import "normalize.less";
 | 
					@import "normalize.less";
 | 
				
			||||||
@import "print.less";
 | 
					@import "print.less";
 | 
				
			||||||
@import "glyphicons.less";
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Core CSS
 | 
					// Core CSS
 | 
				
			||||||
@import "scaffolding.less";
 | 
					@import "scaffolding.less";
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -101,31 +101,24 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Toggles
 | 
					  // Toggles
 | 
				
			||||||
  .icon-prev,
 | 
					  .icon-prev,
 | 
				
			||||||
  .icon-next,
 | 
					  .icon-next {
 | 
				
			||||||
  .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
  .glyphicon-chevron-right {
 | 
					 | 
				
			||||||
    position: absolute;
 | 
					    position: absolute;
 | 
				
			||||||
    top: 50%;
 | 
					    top: 50%;
 | 
				
			||||||
    z-index: 5;
 | 
					    z-index: 5;
 | 
				
			||||||
    display: inline-block;
 | 
					    display: inline-block;
 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .icon-prev,
 | 
					 | 
				
			||||||
  .glyphicon-chevron-left {
 | 
					 | 
				
			||||||
    left: 50%;
 | 
					 | 
				
			||||||
    margin-left: -10px;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .icon-next,
 | 
					 | 
				
			||||||
  .glyphicon-chevron-right {
 | 
					 | 
				
			||||||
    right: 50%;
 | 
					 | 
				
			||||||
    margin-right: -10px;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  .icon-prev,
 | 
					 | 
				
			||||||
  .icon-next {
 | 
					 | 
				
			||||||
    width:  20px;
 | 
					    width:  20px;
 | 
				
			||||||
    height: 20px;
 | 
					    height: 20px;
 | 
				
			||||||
    margin-top: -10px;
 | 
					    margin-top: -10px;
 | 
				
			||||||
    font-family: serif;
 | 
					    font-family: serif;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					  .icon-prev {
 | 
				
			||||||
 | 
					    left: 50%;
 | 
				
			||||||
 | 
					    margin-left: -10px;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					  .icon-next {
 | 
				
			||||||
 | 
					    right: 50%;
 | 
				
			||||||
 | 
					    margin-right: -10px;
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .icon-prev {
 | 
					  .icon-prev {
 | 
				
			||||||
| 
						 | 
					@ -210,8 +203,6 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Scale up the controls a smidge
 | 
					  // Scale up the controls a smidge
 | 
				
			||||||
  .carousel-control {
 | 
					  .carousel-control {
 | 
				
			||||||
    .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
    .glyphicon-chevron-right,
 | 
					 | 
				
			||||||
    .icon-prev,
 | 
					    .icon-prev,
 | 
				
			||||||
    .icon-next {
 | 
					    .icon-next {
 | 
				
			||||||
      width: 30px;
 | 
					      width: 30px;
 | 
				
			||||||
| 
						 | 
					@ -219,11 +210,9 @@
 | 
				
			||||||
      margin-top: -15px;
 | 
					      margin-top: -15px;
 | 
				
			||||||
      font-size: 30px;
 | 
					      font-size: 30px;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    .glyphicon-chevron-left,
 | 
					 | 
				
			||||||
    .icon-prev {
 | 
					    .icon-prev {
 | 
				
			||||||
      margin-left: -15px;
 | 
					      margin-left: -15px;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    .glyphicon-chevron-right,
 | 
					 | 
				
			||||||
    .icon-next {
 | 
					    .icon-next {
 | 
				
			||||||
      margin-right: -15px;
 | 
					      margin-right: -15px;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -330,7 +330,7 @@ input[type="checkbox"] {
 | 
				
			||||||
    padding-right: (@input-height-base * 1.25);
 | 
					    padding-right: (@input-height-base * 1.25);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
// Feedback icon (requires .glyphicon classes)
 | 
					// Feedback icon
 | 
				
			||||||
.form-control-feedback {
 | 
					.form-control-feedback {
 | 
				
			||||||
  position: absolute;
 | 
					  position: absolute;
 | 
				
			||||||
  top: 0;
 | 
					  top: 0;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,233 +0,0 @@
 | 
				
			||||||
//
 | 
					 | 
				
			||||||
// Glyphicons for Bootstrap
 | 
					 | 
				
			||||||
//
 | 
					 | 
				
			||||||
// Since icons are fonts, they can be placed anywhere text is placed and are
 | 
					 | 
				
			||||||
// thus automatically sized to match the surrounding child. To use, create an
 | 
					 | 
				
			||||||
// inline element with the appropriate classes, like so:
 | 
					 | 
				
			||||||
//
 | 
					 | 
				
			||||||
// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Import the fonts
 | 
					 | 
				
			||||||
@font-face {
 | 
					 | 
				
			||||||
  font-family: 'Glyphicons Halflings';
 | 
					 | 
				
			||||||
  src: url('@{icon-font-path}@{icon-font-name}.eot');
 | 
					 | 
				
			||||||
  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
 | 
					 | 
				
			||||||
       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
 | 
					 | 
				
			||||||
       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
 | 
					 | 
				
			||||||
       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Catchall baseclass
 | 
					 | 
				
			||||||
.glyphicon {
 | 
					 | 
				
			||||||
  position: relative;
 | 
					 | 
				
			||||||
  top: 1px;
 | 
					 | 
				
			||||||
  display: inline-block;
 | 
					 | 
				
			||||||
  font-family: 'Glyphicons Halflings';
 | 
					 | 
				
			||||||
  font-style: normal;
 | 
					 | 
				
			||||||
  font-weight: normal;
 | 
					 | 
				
			||||||
  line-height: 1;
 | 
					 | 
				
			||||||
  -webkit-font-smoothing: antialiased;
 | 
					 | 
				
			||||||
  -moz-osx-font-smoothing: grayscale;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
// Individual icons
 | 
					 | 
				
			||||||
.glyphicon-asterisk               { &:before { content: "\2a"; } }
 | 
					 | 
				
			||||||
.glyphicon-plus                   { &:before { content: "\2b"; } }
 | 
					 | 
				
			||||||
.glyphicon-euro                   { &:before { content: "\20ac"; } }
 | 
					 | 
				
			||||||
.glyphicon-minus                  { &:before { content: "\2212"; } }
 | 
					 | 
				
			||||||
.glyphicon-cloud                  { &:before { content: "\2601"; } }
 | 
					 | 
				
			||||||
.glyphicon-envelope               { &:before { content: "\2709"; } }
 | 
					 | 
				
			||||||
.glyphicon-pencil                 { &:before { content: "\270f"; } }
 | 
					 | 
				
			||||||
.glyphicon-glass                  { &:before { content: "\e001"; } }
 | 
					 | 
				
			||||||
.glyphicon-music                  { &:before { content: "\e002"; } }
 | 
					 | 
				
			||||||
.glyphicon-search                 { &:before { content: "\e003"; } }
 | 
					 | 
				
			||||||
.glyphicon-heart                  { &:before { content: "\e005"; } }
 | 
					 | 
				
			||||||
.glyphicon-star                   { &:before { content: "\e006"; } }
 | 
					 | 
				
			||||||
.glyphicon-star-empty             { &:before { content: "\e007"; } }
 | 
					 | 
				
			||||||
.glyphicon-user                   { &:before { content: "\e008"; } }
 | 
					 | 
				
			||||||
.glyphicon-film                   { &:before { content: "\e009"; } }
 | 
					 | 
				
			||||||
.glyphicon-th-large               { &:before { content: "\e010"; } }
 | 
					 | 
				
			||||||
.glyphicon-th                     { &:before { content: "\e011"; } }
 | 
					 | 
				
			||||||
.glyphicon-th-list                { &:before { content: "\e012"; } }
 | 
					 | 
				
			||||||
.glyphicon-ok                     { &:before { content: "\e013"; } }
 | 
					 | 
				
			||||||
.glyphicon-remove                 { &:before { content: "\e014"; } }
 | 
					 | 
				
			||||||
.glyphicon-zoom-in                { &:before { content: "\e015"; } }
 | 
					 | 
				
			||||||
.glyphicon-zoom-out               { &:before { content: "\e016"; } }
 | 
					 | 
				
			||||||
.glyphicon-off                    { &:before { content: "\e017"; } }
 | 
					 | 
				
			||||||
.glyphicon-signal                 { &:before { content: "\e018"; } }
 | 
					 | 
				
			||||||
.glyphicon-cog                    { &:before { content: "\e019"; } }
 | 
					 | 
				
			||||||
.glyphicon-trash                  { &:before { content: "\e020"; } }
 | 
					 | 
				
			||||||
.glyphicon-home                   { &:before { content: "\e021"; } }
 | 
					 | 
				
			||||||
.glyphicon-file                   { &:before { content: "\e022"; } }
 | 
					 | 
				
			||||||
.glyphicon-time                   { &:before { content: "\e023"; } }
 | 
					 | 
				
			||||||
.glyphicon-road                   { &:before { content: "\e024"; } }
 | 
					 | 
				
			||||||
.glyphicon-download-alt           { &:before { content: "\e025"; } }
 | 
					 | 
				
			||||||
.glyphicon-download               { &:before { content: "\e026"; } }
 | 
					 | 
				
			||||||
.glyphicon-upload                 { &:before { content: "\e027"; } }
 | 
					 | 
				
			||||||
.glyphicon-inbox                  { &:before { content: "\e028"; } }
 | 
					 | 
				
			||||||
.glyphicon-play-circle            { &:before { content: "\e029"; } }
 | 
					 | 
				
			||||||
.glyphicon-repeat                 { &:before { content: "\e030"; } }
 | 
					 | 
				
			||||||
.glyphicon-refresh                { &:before { content: "\e031"; } }
 | 
					 | 
				
			||||||
.glyphicon-list-alt               { &:before { content: "\e032"; } }
 | 
					 | 
				
			||||||
.glyphicon-lock                   { &:before { content: "\e033"; } }
 | 
					 | 
				
			||||||
.glyphicon-flag                   { &:before { content: "\e034"; } }
 | 
					 | 
				
			||||||
.glyphicon-headphones             { &:before { content: "\e035"; } }
 | 
					 | 
				
			||||||
.glyphicon-volume-off             { &:before { content: "\e036"; } }
 | 
					 | 
				
			||||||
.glyphicon-volume-down            { &:before { content: "\e037"; } }
 | 
					 | 
				
			||||||
.glyphicon-volume-up              { &:before { content: "\e038"; } }
 | 
					 | 
				
			||||||
.glyphicon-qrcode                 { &:before { content: "\e039"; } }
 | 
					 | 
				
			||||||
.glyphicon-barcode                { &:before { content: "\e040"; } }
 | 
					 | 
				
			||||||
.glyphicon-tag                    { &:before { content: "\e041"; } }
 | 
					 | 
				
			||||||
.glyphicon-tags                   { &:before { content: "\e042"; } }
 | 
					 | 
				
			||||||
.glyphicon-book                   { &:before { content: "\e043"; } }
 | 
					 | 
				
			||||||
.glyphicon-bookmark               { &:before { content: "\e044"; } }
 | 
					 | 
				
			||||||
.glyphicon-print                  { &:before { content: "\e045"; } }
 | 
					 | 
				
			||||||
.glyphicon-camera                 { &:before { content: "\e046"; } }
 | 
					 | 
				
			||||||
.glyphicon-font                   { &:before { content: "\e047"; } }
 | 
					 | 
				
			||||||
.glyphicon-bold                   { &:before { content: "\e048"; } }
 | 
					 | 
				
			||||||
.glyphicon-italic                 { &:before { content: "\e049"; } }
 | 
					 | 
				
			||||||
.glyphicon-text-height            { &:before { content: "\e050"; } }
 | 
					 | 
				
			||||||
.glyphicon-text-width             { &:before { content: "\e051"; } }
 | 
					 | 
				
			||||||
.glyphicon-align-left             { &:before { content: "\e052"; } }
 | 
					 | 
				
			||||||
.glyphicon-align-center           { &:before { content: "\e053"; } }
 | 
					 | 
				
			||||||
.glyphicon-align-right            { &:before { content: "\e054"; } }
 | 
					 | 
				
			||||||
.glyphicon-align-justify          { &:before { content: "\e055"; } }
 | 
					 | 
				
			||||||
.glyphicon-list                   { &:before { content: "\e056"; } }
 | 
					 | 
				
			||||||
.glyphicon-indent-left            { &:before { content: "\e057"; } }
 | 
					 | 
				
			||||||
.glyphicon-indent-right           { &:before { content: "\e058"; } }
 | 
					 | 
				
			||||||
.glyphicon-facetime-video         { &:before { content: "\e059"; } }
 | 
					 | 
				
			||||||
.glyphicon-picture                { &:before { content: "\e060"; } }
 | 
					 | 
				
			||||||
.glyphicon-map-marker             { &:before { content: "\e062"; } }
 | 
					 | 
				
			||||||
.glyphicon-adjust                 { &:before { content: "\e063"; } }
 | 
					 | 
				
			||||||
.glyphicon-tint                   { &:before { content: "\e064"; } }
 | 
					 | 
				
			||||||
.glyphicon-edit                   { &:before { content: "\e065"; } }
 | 
					 | 
				
			||||||
.glyphicon-share                  { &:before { content: "\e066"; } }
 | 
					 | 
				
			||||||
.glyphicon-check                  { &:before { content: "\e067"; } }
 | 
					 | 
				
			||||||
.glyphicon-move                   { &:before { content: "\e068"; } }
 | 
					 | 
				
			||||||
.glyphicon-step-backward          { &:before { content: "\e069"; } }
 | 
					 | 
				
			||||||
.glyphicon-fast-backward          { &:before { content: "\e070"; } }
 | 
					 | 
				
			||||||
.glyphicon-backward               { &:before { content: "\e071"; } }
 | 
					 | 
				
			||||||
.glyphicon-play                   { &:before { content: "\e072"; } }
 | 
					 | 
				
			||||||
.glyphicon-pause                  { &:before { content: "\e073"; } }
 | 
					 | 
				
			||||||
.glyphicon-stop                   { &:before { content: "\e074"; } }
 | 
					 | 
				
			||||||
.glyphicon-forward                { &:before { content: "\e075"; } }
 | 
					 | 
				
			||||||
.glyphicon-fast-forward           { &:before { content: "\e076"; } }
 | 
					 | 
				
			||||||
.glyphicon-step-forward           { &:before { content: "\e077"; } }
 | 
					 | 
				
			||||||
.glyphicon-eject                  { &:before { content: "\e078"; } }
 | 
					 | 
				
			||||||
.glyphicon-chevron-left           { &:before { content: "\e079"; } }
 | 
					 | 
				
			||||||
.glyphicon-chevron-right          { &:before { content: "\e080"; } }
 | 
					 | 
				
			||||||
.glyphicon-plus-sign              { &:before { content: "\e081"; } }
 | 
					 | 
				
			||||||
.glyphicon-minus-sign             { &:before { content: "\e082"; } }
 | 
					 | 
				
			||||||
.glyphicon-remove-sign            { &:before { content: "\e083"; } }
 | 
					 | 
				
			||||||
.glyphicon-ok-sign                { &:before { content: "\e084"; } }
 | 
					 | 
				
			||||||
.glyphicon-question-sign          { &:before { content: "\e085"; } }
 | 
					 | 
				
			||||||
.glyphicon-info-sign              { &:before { content: "\e086"; } }
 | 
					 | 
				
			||||||
.glyphicon-screenshot             { &:before { content: "\e087"; } }
 | 
					 | 
				
			||||||
.glyphicon-remove-circle          { &:before { content: "\e088"; } }
 | 
					 | 
				
			||||||
.glyphicon-ok-circle              { &:before { content: "\e089"; } }
 | 
					 | 
				
			||||||
.glyphicon-ban-circle             { &:before { content: "\e090"; } }
 | 
					 | 
				
			||||||
.glyphicon-arrow-left             { &:before { content: "\e091"; } }
 | 
					 | 
				
			||||||
.glyphicon-arrow-right            { &:before { content: "\e092"; } }
 | 
					 | 
				
			||||||
.glyphicon-arrow-up               { &:before { content: "\e093"; } }
 | 
					 | 
				
			||||||
.glyphicon-arrow-down             { &:before { content: "\e094"; } }
 | 
					 | 
				
			||||||
.glyphicon-share-alt              { &:before { content: "\e095"; } }
 | 
					 | 
				
			||||||
.glyphicon-resize-full            { &:before { content: "\e096"; } }
 | 
					 | 
				
			||||||
.glyphicon-resize-small           { &:before { content: "\e097"; } }
 | 
					 | 
				
			||||||
.glyphicon-exclamation-sign       { &:before { content: "\e101"; } }
 | 
					 | 
				
			||||||
.glyphicon-gift                   { &:before { content: "\e102"; } }
 | 
					 | 
				
			||||||
.glyphicon-leaf                   { &:before { content: "\e103"; } }
 | 
					 | 
				
			||||||
.glyphicon-fire                   { &:before { content: "\e104"; } }
 | 
					 | 
				
			||||||
.glyphicon-eye-open               { &:before { content: "\e105"; } }
 | 
					 | 
				
			||||||
.glyphicon-eye-close              { &:before { content: "\e106"; } }
 | 
					 | 
				
			||||||
.glyphicon-warning-sign           { &:before { content: "\e107"; } }
 | 
					 | 
				
			||||||
.glyphicon-plane                  { &:before { content: "\e108"; } }
 | 
					 | 
				
			||||||
.glyphicon-calendar               { &:before { content: "\e109"; } }
 | 
					 | 
				
			||||||
.glyphicon-random                 { &:before { content: "\e110"; } }
 | 
					 | 
				
			||||||
.glyphicon-comment                { &:before { content: "\e111"; } }
 | 
					 | 
				
			||||||
.glyphicon-magnet                 { &:before { content: "\e112"; } }
 | 
					 | 
				
			||||||
.glyphicon-chevron-up             { &:before { content: "\e113"; } }
 | 
					 | 
				
			||||||
.glyphicon-chevron-down           { &:before { content: "\e114"; } }
 | 
					 | 
				
			||||||
.glyphicon-retweet                { &:before { content: "\e115"; } }
 | 
					 | 
				
			||||||
.glyphicon-shopping-cart          { &:before { content: "\e116"; } }
 | 
					 | 
				
			||||||
.glyphicon-folder-close           { &:before { content: "\e117"; } }
 | 
					 | 
				
			||||||
.glyphicon-folder-open            { &:before { content: "\e118"; } }
 | 
					 | 
				
			||||||
.glyphicon-resize-vertical        { &:before { content: "\e119"; } }
 | 
					 | 
				
			||||||
.glyphicon-resize-horizontal      { &:before { content: "\e120"; } }
 | 
					 | 
				
			||||||
.glyphicon-hdd                    { &:before { content: "\e121"; } }
 | 
					 | 
				
			||||||
.glyphicon-bullhorn               { &:before { content: "\e122"; } }
 | 
					 | 
				
			||||||
.glyphicon-bell                   { &:before { content: "\e123"; } }
 | 
					 | 
				
			||||||
.glyphicon-certificate            { &:before { content: "\e124"; } }
 | 
					 | 
				
			||||||
.glyphicon-thumbs-up              { &:before { content: "\e125"; } }
 | 
					 | 
				
			||||||
.glyphicon-thumbs-down            { &:before { content: "\e126"; } }
 | 
					 | 
				
			||||||
.glyphicon-hand-right             { &:before { content: "\e127"; } }
 | 
					 | 
				
			||||||
.glyphicon-hand-left              { &:before { content: "\e128"; } }
 | 
					 | 
				
			||||||
.glyphicon-hand-up                { &:before { content: "\e129"; } }
 | 
					 | 
				
			||||||
.glyphicon-hand-down              { &:before { content: "\e130"; } }
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-right     { &:before { content: "\e131"; } }
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-left      { &:before { content: "\e132"; } }
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-up        { &:before { content: "\e133"; } }
 | 
					 | 
				
			||||||
.glyphicon-circle-arrow-down      { &:before { content: "\e134"; } }
 | 
					 | 
				
			||||||
.glyphicon-globe                  { &:before { content: "\e135"; } }
 | 
					 | 
				
			||||||
.glyphicon-wrench                 { &:before { content: "\e136"; } }
 | 
					 | 
				
			||||||
.glyphicon-tasks                  { &:before { content: "\e137"; } }
 | 
					 | 
				
			||||||
.glyphicon-filter                 { &:before { content: "\e138"; } }
 | 
					 | 
				
			||||||
.glyphicon-briefcase              { &:before { content: "\e139"; } }
 | 
					 | 
				
			||||||
.glyphicon-fullscreen             { &:before { content: "\e140"; } }
 | 
					 | 
				
			||||||
.glyphicon-dashboard              { &:before { content: "\e141"; } }
 | 
					 | 
				
			||||||
.glyphicon-paperclip              { &:before { content: "\e142"; } }
 | 
					 | 
				
			||||||
.glyphicon-heart-empty            { &:before { content: "\e143"; } }
 | 
					 | 
				
			||||||
.glyphicon-link                   { &:before { content: "\e144"; } }
 | 
					 | 
				
			||||||
.glyphicon-phone                  { &:before { content: "\e145"; } }
 | 
					 | 
				
			||||||
.glyphicon-pushpin                { &:before { content: "\e146"; } }
 | 
					 | 
				
			||||||
.glyphicon-usd                    { &:before { content: "\e148"; } }
 | 
					 | 
				
			||||||
.glyphicon-gbp                    { &:before { content: "\e149"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort                   { &:before { content: "\e150"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort-by-alphabet       { &:before { content: "\e151"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort-by-alphabet-alt   { &:before { content: "\e152"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort-by-order          { &:before { content: "\e153"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort-by-order-alt      { &:before { content: "\e154"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort-by-attributes     { &:before { content: "\e155"; } }
 | 
					 | 
				
			||||||
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
 | 
					 | 
				
			||||||
.glyphicon-unchecked              { &:before { content: "\e157"; } }
 | 
					 | 
				
			||||||
.glyphicon-expand                 { &:before { content: "\e158"; } }
 | 
					 | 
				
			||||||
.glyphicon-collapse-down          { &:before { content: "\e159"; } }
 | 
					 | 
				
			||||||
.glyphicon-collapse-up            { &:before { content: "\e160"; } }
 | 
					 | 
				
			||||||
.glyphicon-log-in                 { &:before { content: "\e161"; } }
 | 
					 | 
				
			||||||
.glyphicon-flash                  { &:before { content: "\e162"; } }
 | 
					 | 
				
			||||||
.glyphicon-log-out                { &:before { content: "\e163"; } }
 | 
					 | 
				
			||||||
.glyphicon-new-window             { &:before { content: "\e164"; } }
 | 
					 | 
				
			||||||
.glyphicon-record                 { &:before { content: "\e165"; } }
 | 
					 | 
				
			||||||
.glyphicon-save                   { &:before { content: "\e166"; } }
 | 
					 | 
				
			||||||
.glyphicon-open                   { &:before { content: "\e167"; } }
 | 
					 | 
				
			||||||
.glyphicon-saved                  { &:before { content: "\e168"; } }
 | 
					 | 
				
			||||||
.glyphicon-import                 { &:before { content: "\e169"; } }
 | 
					 | 
				
			||||||
.glyphicon-export                 { &:before { content: "\e170"; } }
 | 
					 | 
				
			||||||
.glyphicon-send                   { &:before { content: "\e171"; } }
 | 
					 | 
				
			||||||
.glyphicon-floppy-disk            { &:before { content: "\e172"; } }
 | 
					 | 
				
			||||||
.glyphicon-floppy-saved           { &:before { content: "\e173"; } }
 | 
					 | 
				
			||||||
.glyphicon-floppy-remove          { &:before { content: "\e174"; } }
 | 
					 | 
				
			||||||
.glyphicon-floppy-save            { &:before { content: "\e175"; } }
 | 
					 | 
				
			||||||
.glyphicon-floppy-open            { &:before { content: "\e176"; } }
 | 
					 | 
				
			||||||
.glyphicon-credit-card            { &:before { content: "\e177"; } }
 | 
					 | 
				
			||||||
.glyphicon-transfer               { &:before { content: "\e178"; } }
 | 
					 | 
				
			||||||
.glyphicon-cutlery                { &:before { content: "\e179"; } }
 | 
					 | 
				
			||||||
.glyphicon-header                 { &:before { content: "\e180"; } }
 | 
					 | 
				
			||||||
.glyphicon-compressed             { &:before { content: "\e181"; } }
 | 
					 | 
				
			||||||
.glyphicon-earphone               { &:before { content: "\e182"; } }
 | 
					 | 
				
			||||||
.glyphicon-phone-alt              { &:before { content: "\e183"; } }
 | 
					 | 
				
			||||||
.glyphicon-tower                  { &:before { content: "\e184"; } }
 | 
					 | 
				
			||||||
.glyphicon-stats                  { &:before { content: "\e185"; } }
 | 
					 | 
				
			||||||
.glyphicon-sd-video               { &:before { content: "\e186"; } }
 | 
					 | 
				
			||||||
.glyphicon-hd-video               { &:before { content: "\e187"; } }
 | 
					 | 
				
			||||||
.glyphicon-subtitles              { &:before { content: "\e188"; } }
 | 
					 | 
				
			||||||
.glyphicon-sound-stereo           { &:before { content: "\e189"; } }
 | 
					 | 
				
			||||||
.glyphicon-sound-dolby            { &:before { content: "\e190"; } }
 | 
					 | 
				
			||||||
.glyphicon-sound-5-1              { &:before { content: "\e191"; } }
 | 
					 | 
				
			||||||
.glyphicon-sound-6-1              { &:before { content: "\e192"; } }
 | 
					 | 
				
			||||||
.glyphicon-sound-7-1              { &:before { content: "\e193"; } }
 | 
					 | 
				
			||||||
.glyphicon-copyright-mark         { &:before { content: "\e194"; } }
 | 
					 | 
				
			||||||
.glyphicon-registration-mark      { &:before { content: "\e195"; } }
 | 
					 | 
				
			||||||
.glyphicon-cloud-download         { &:before { content: "\e197"; } }
 | 
					 | 
				
			||||||
.glyphicon-cloud-upload           { &:before { content: "\e198"; } }
 | 
					 | 
				
			||||||
.glyphicon-tree-conifer           { &:before { content: "\e199"; } }
 | 
					 | 
				
			||||||
.glyphicon-tree-deciduous         { &:before { content: "\e200"; } }
 | 
					 | 
				
			||||||
		Loading…
	
		Reference in New Issue