Commit 8b3e75f8 authored by Joshua Pabalan's avatar Joshua Pabalan

parkinglot

parents
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config.
/.bundle
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
== README
This README would normally document whatever steps are necessary to get the
application up and running.
Things you may want to cover:
* Ruby version
* System dependencies
* Configuration
* Database creation
* Database initialization
* How to run the test suite
* Services (job queues, cache servers, search engines, etc.)
* Deployment instructions
* ...
Please feel free to use a different markup language if you do not plan to run
<tt>rake doc:app</tt>.
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
Rails.application.load_tasks
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require_self
*/
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end
module ApplicationHelper
end
<!DOCTYPE html>
<html>
<head>
<title>Parkinglot</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>
#!/usr/bin/env ruby.exe
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')
#!/usr/bin/env ruby.exe
APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot'
require 'rails/commands'
#!/usr/bin/env ruby.exe
require_relative '../config/boot'
require 'rake'
Rake.application.run
#!/usr/bin/env ruby.exe
require 'pathname'
# path to your application root.
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
Dir.chdir APP_ROOT do
# This script is a starting point to setup your application.
# Add necessary setup steps to this file:
puts "== Installing dependencies =="
system "gem install bundler --conservative"
system "bundle check || bundle install"
# puts "\n== Copying sample files =="
# unless File.exist?("config/database.yml")
# system "cp config/database.yml.sample config/database.yml"
# end
puts "\n== Preparing database =="
system "bin/rake db:setup"
puts "\n== Removing old logs and tempfiles =="
system "rm -f log/*"
system "rm -rf tmp/cache"
puts "\n== Restarting application server =="
system "touch tmp/restart.txt"
end
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
run Rails.application
require File.expand_path('../boot', __FILE__)
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Parkinglot
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
# Do not swallow errors in after_commit/after_rollback callbacks.
config.active_record.raise_in_transactional_callbacks = true
end
end
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
require 'bundler/setup' # Set up gems listed in the Gemfile.
# SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
<<: *default
database: db/test.sqlite3
production:
<<: *default
database: db/production.sqlite3
# Load the Rails application.
require File.expand_path('../application', __FILE__)
# Initialize the Rails application.
Rails.application.initialize!
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
# Do not eager load code on boot.
config.eager_load = false
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
config.assets.debug = true
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
config.assets.digest = true
# Adds additional error checking when serving assets at runtime.
# Checks for improperly declared sprockets dependencies.
# Raises helpful error messages.
config.assets.raise_runtime_errors = true
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.eager_load = true
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
# Enable Rack::Cache to put a simple HTTP cache in front of your application
# Add `rack-cache` to your Gemfile before enabling this.
# For large-scale production use, consider using a caching reverse proxy like
# NGINX, varnish or squid.
# config.action_dispatch.rack_cache = true
# Disable serving static files from the `/public` folder by default since
# Apache or NGINX already handles this.
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
# Compress JavaScripts and CSS.
config.assets.js_compressor = :uglifier
# config.assets.css_compressor = :sass
# Do not fallback to assets pipeline if a precompiled asset is missed.
config.assets.compile = false
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
config.assets.digest = true
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
# config.force_ssl = true
# Use the lowest log level to ensure availability of diagnostic information
# when problems arise.
config.log_level = :debug
# Prepend all log lines with the following tags.
# config.log_tags = [ :subdomain, :uuid ]
# Use a different logger for distributed setups.
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
# config.action_controller.asset_host = 'http://assets.example.com'
# Ignore bad email addresses and do not raise email delivery errors.
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
# config.action_mailer.raise_delivery_errors = false
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation cannot be found).
config.i18n.fallbacks = true
# Send deprecation notices to registered listeners.
config.active_support.deprecation = :notify
# Use default logging formatter so that PID and timestamp are not suppressed.
config.log_formatter = ::Logger::Formatter.new
# Do not dump schema after migrations.
config.active_record.dump_schema_after_migration = false
end
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data there!
config.cache_classes = true
# Do not eager load code on boot. This avoids loading your whole application
# just for the purpose of running a single test. If you are using a tool that
# preloads Rails for running tests, you may have to set it to true.
config.eager_load = false
# Configure static file server for tests with Cache-Control for performance.
config.serve_static_files = true
config.static_cache_control = 'public, max-age=3600'
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Raise exceptions instead of rendering exception templates.
config.action_dispatch.show_exceptions = false
# Disable request forgery protection in test environment.
config.action_controller.allow_forgery_protection = false
# Tell Action Mailer not to deliver emails to the real world.
# The :test delivery method accumulates sent emails in the
# ActionMailer::Base.deliveries array.
config.action_mailer.delivery_method = :test
# Randomize the order test cases are executed.
config.active_support.test_order = :random
# Print deprecation notices to the stderr.
config.active_support.deprecation = :stderr
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
end
# Be sure to restart your server when you modify this file.
# Version of your assets, change this if you want to expire all your assets.
Rails.application.config.assets.version = '1.0'
# Add additional assets to the asset load path
# Rails.application.config.assets.paths << Emoji.images_path
# Precompile additional assets.
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
# Rails.application.config.assets.precompile += %w( search.js )
# Be sure to restart your server when you modify this file.
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
# Rails.backtrace_cleaner.remove_silencers!
# Be sure to restart your server when you modify this file.
Rails.application.config.action_dispatch.cookies_serializer = :json
# Be sure to restart your server when you modify this file.
# Configure sensitive parameters which will be filtered from the log file.
Rails.application.config.filter_parameters += [:password]
# Be sure to restart your server when you modify this file.
# Add new inflection rules using the following format. Inflections
# are locale specific, and you may define rules for as many different
# locales as you wish. All of these examples are active by default:
# ActiveSupport::Inflector.inflections(:en) do |inflect|
# inflect.plural /^(ox)$/i, '\1en'
# inflect.singular /^(ox)en/i, '\1'
# inflect.irregular 'person', 'people'
# inflect.uncountable %w( fish sheep )
# end
# These inflection rules are supported but not enabled by default:
# ActiveSupport::Inflector.inflections(:en) do |inflect|
# inflect.acronym 'RESTful'
# end
# Be sure to restart your server when you modify this file.
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
# Be sure to restart your server when you modify this file.
Rails.application.config.session_store :cookie_store, key: '_parkinglot_session'
# Be sure to restart your server when you modify this file.
# This file contains settings for ActionController::ParamsWrapper which
# is enabled by default.
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
ActiveSupport.on_load(:action_controller) do
wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
end
# To enable root element in JSON for ActiveRecord objects.
# ActiveSupport.on_load(:active_record) do
# self.include_root_in_json = true
# end
# Files in the config/locales directory are used for internationalization
# and are automatically loaded by Rails. If you want to use locales other
# than English, add the necessary files in this directory.
#
# To use the locales, use `I18n.t`:
#
# I18n.t 'hello'
#
# In views, this is aliased to just `t`:
#
# <%= t('hello') %>
#
# To use a different locale, set it with `I18n.locale`:
#
# I18n.locale = :es
#
# This would use the information in config/locales/es.yml.
#
# To learn more, please read the Rails Internationalization guide
# available at http://guides.rubyonrails.org/i18n.html.
en:
hello: "Hello world"
Rails.application.routes.draw do
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".
# You can have the root of your site routed with "root"
# root 'welcome#index'
# Example of regular route:
# get 'products/:id' => 'catalog#view'
# Example of named route that can be invoked with purchase_url(id: product.id)
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
# Example resource route (maps HTTP verbs to controller actions automatically):
# resources :products
# Example resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end
# Example resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end
# Example resource route with more complex sub-resources:
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', on: :collection
# end
# end
# Example resource route with concerns:
# concern :toggleable do
# post 'toggle'
# end
# resources :posts, concerns: :toggleable
# resources :photos, concerns: :toggleable
# Example resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end
end
# Be sure to restart your server when you modify this file.
# Your secret key is used for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.
# You can use `rake secret` to generate a secure secret key.
# Make sure the secrets in this file are kept private
# if you're sharing your code publicly.
development:
secret_key_base: c487f7d49045c5bcd409af43ec0d63317f1447fcad22d45adc4953794830c2e0667c3a7321a3fbfe5b535e9108a9212ba883748c3b0a08313f04b87eaf4116cf
test:
secret_key_base: fc4fa5f5fb48a92e47753fb9ad65c718e9d0853f8d6639be53f1198a607fd3caf79994455648534e5a742723c58c8e7ecd7e1f4c18c5f2ef1dbf6f674e7f4f8c
# Do not keep production secrets in the repository,
# instead read values from the environment.
production:
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Veridical
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20131203
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li><a href="parkinglot.html.erb" accesskey="1" title="">Homepage</a></li>
<li class="current_page_item"><a href="#" accesskey="2" title="">Create new carlog</a></li>
<li><a href="recordofcarlogs.html.erb" accesskey="3" title="">All Logs</a></li>
</ul>
</div>
<div id="logo">
<h1><a href="#">Create New Carlog</a></h1>
<div align="center">
<form>
<br>
<font color=white> Plate Number: </font> <input align="center" type="text" placeholder="" name="Plate_Number" /><br>
<font color=white> Brand:</font> <select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select><br>
<font color=white> Slot Number: </font> <input align="center" type="text" placeholder="" name="Slot_Number"/><br>
<font color=white> Is Taken: </font> <input align="center" type="checkbox" name="Is_Taken" /><br>
</form>
<button> Save </button>
<button> </button>
</div>
</div>
</div>
<div id="copyright">
<p>&copy; Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)
html, body
{
height: 100%;
}
body
{
margin: 0px;
padding: 0px;
background: #333333;
font-family: 'Source Sans Pro', sans-serif;
font-size: 12pt;
font-weight: 400;
color: #000000;
}
h1, h2, h3
{
margin: 0;
padding: 0;
}
p, ol, ul
{
margin-top: 0;
}
ol, ul
{
padding: 0;
list-style: none;
}
p
{
line-height: 180%;
}
strong
{
}
a
{
color: #0000FF;
}
a:hover
{
text-decoration: none;
}
.container
{
margin: 0px auto;
width: 1200px;
}
/*********************************************************************************/
/* Form Style */
/*********************************************************************************/
form
{
}
form label
{
display: block;
text-align: left;
margin-bottom: 0.5em;
}
form .submit
{
margin-top: 2em;
background: #8DCB89;
border-radius: 8px;
line-height: 1.5em;
font-size: 1.3em;
}
form input.text,
form select,
form textarea
{
}
form input.text:hover,
form select:hover,
form textarea:hover
{
}
form input.text:focus,
form select:focus,
form textarea:focus
{
box-shadow: 0 0 2px 1px #E0E0E0;
background: #fff;
}
form textarea
{
min-height: 10em;
}
form .formerize-placeholder
{
color: #555 !important;
}
form ::-webkit-input-placeholder
{
color: #555 !important;
}
form :-moz-placeholder
{
color: #555 !important;
}
form ::-moz-placeholder
{
color: #555 !important;
}
form :-ms-input-placeholder
{
color: #555 !important;
}
form ::-moz-focus-inner
{
border: 0;
}
/*********************************************************************************/
/* Image Style */
/*********************************************************************************/
.image
{
display: inline-block;
border: 1px solid rgba(0,0,0,.1);
}
.image img
{
display: block;
width: 100%;
}
.image-full
{
display: block;
width: 100%;
margin: 0 0 3em 0;
}
.image-left
{
float: left;
margin: 0 2em 2em 0;
}
.image-centered
{
display: block;
margin: 0 0 2em 0;
}
.image-centered img
{
margin: 0 auto;
width: auto;
}
/*********************************************************************************/
/* List Styles */
/*********************************************************************************/
ul.style1
{
}
/*********************************************************************************/
/* Social Icon Styles */
/*********************************************************************************/
ul.contact
{
margin: 0;
padding: 0em 0em 3em 0em;
list-style: none;
}
ul.contact li
{
display: inline-block;
padding: 0em 0.50em;
font-size: 1.5em;
}
ul.contact li span
{
display: none;
margin: 0;
padding: 0;
}
ul.contact li a
{
}
ul.contact li a:hover:before
{
color: #FFF;
}
ul.contact li a:before
{
display: inline-block;
text-align: center;
color: rgba(255,255,255,.4);
}
/*********************************************************************************/
/* Button Style */
/*********************************************************************************/
.button
{
display: inline-block;
margin-top: 2em;
padding: 1em 2em 1em 2em;
background: #ff6816;
border-radius: 8px;
letter-spacing: 0.20em;
line-height: 1.8em;
text-decoration: none;
text-transform: uppercase;
font-weight: 400;
font-size: 1.2em;
color: #FFF;
}
.button:before
{
display: inline-block;
background: #8DCB89;
margin-right: 1em;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 20px;
text-align: center;
color: #272925;
}
.button-small
{
padding: 0.9em 2em;
background: #8DCB89;
border-radius: 5px;
line-height: 1.8em;
font-size: 1em;
}
/*********************************************************************************/
/* Heading Titles */
/*********************************************************************************/
.title
{
margin-bottom: 3em;
}
.title h2
{
font-size: 2.8em;
color: rgba(255,255,255,0.9);
}
.title .byline
{
letter-spacing: 0.15em;
text-transform: uppercase;
font-weight: 400;
font-size: 1.1em;
color: #6F6F6F;
}
/*********************************************************************************/
/* Header */
/*********************************************************************************/
#header-wrapper
{
overflow: hidden;
padding: 5em 0em;
background: #8DCB89 url(images/header.jpg) no-repeat center;
background-size: cover;
}
#header
{
}
/*********************************************************************************/
/* Logo */
/*********************************************************************************/
#logo
{
padding: 5em 0em;
text-align: center;
}
#logo h1
{
font-size: 3.5em;
}
#logo a
{
text-decoration: none;
color: #FFF;
}
#logo span
{
letter-spacing: 0.10em;
text-transform: uppercase;
font-size: 0.90em;
color: rgba(255,255,255,0.5);
}
#logo span a
{
color: rgba(255,255,255,0.8);
}
/*********************************************************************************/
/* Menu */
/*********************************************************************************/
#menu
{
}
#menu ul
{
text-align: center;
}
#menu li
{
display: inline-block;
}
#menu li a, #menu li span
{
display: inline-block;
margin-left: 0.50em;
padding: 1em 1.5em;
letter-spacing: 0.20em;
text-decoration: none;
font-size: 0.90em;
font-weight: 600;
text-transform: uppercase;
outline: 0;
color: #FFF;
}
#menu li:hover a, #menu li.active a, #menu li.active span
{
}
#menu .current_page_item a
{
background: #ff6816;
border-radius: 8px;
color: #FFF;
}
/*********************************************************************************/
/* Banner */
/*********************************************************************************/
#banner
{
}
/*********************************************************************************/
/* Wrapper */
/*********************************************************************************/
#wrapper1
{
background: #EDEDED;
}
#wrapper2
{
background: #EDEDED;
}
#wrapper3
{
overflow: hidden;
padding: 8em 0em;
background: #FFF;
}
#wrapper4
{
overflow: hidden;
padding: 8em 0em;
background: #E74E59;
}
/*********************************************************************************/
/* Welcome */
/*********************************************************************************/
#welcome
{
overflow: hidden;
padding: 8em 0em;
text-align: center;
color: rgba(0,0,0,0.5);
}
#welcome .content
{
padding: 0em 8em;
}
#welcome .title
{
text-align: center;
}
#welcome .title h2
{
color: rgba(0,0,0,0.8);
}
#welcome a,
#welcome strong
{
color: rgba(0,0,0,0.8);
}
/*********************************************************************************/
/* Page */
/*********************************************************************************/
#page
{
}
/*********************************************************************************/
/* Content */
/*********************************************************************************/
#content
{
}
/*********************************************************************************/
/* Sidebar */
/*********************************************************************************/
#sidebar
{
}
/*********************************************************************************/
/* Footer */
/*********************************************************************************/
#footer
{
text-align: center;
}
#footer .title span
{
color: rgba(255,255,255,0.4);
}
/*********************************************************************************/
/* Copyright */
/*********************************************************************************/
#copyright
{
overflow: hidden;
padding: 5em 0em;
border-top: 1px solid rgba(255,255,255,0.08);
text-align: center;
}
#copyright p
{
letter-spacing: 0.20em;
text-align: center;
text-transform: uppercase;
font-size: 0.80em;
color: rgba(255,255,255,0.3);
}
#copyright a
{
text-decoration: none;
color: rgba(255,255,255,0.6);
}
/*********************************************************************************/
/* Newsletter */
/*********************************************************************************/
#newsletter
{
overflow: hidden;
padding: 8em 0em;
background: #EDEDED;
text-align: center;
}
#newsletter .title h2
{
color: rgba(0,0,0,0.8);
}
#newsletter .content
{
width: 600px;
margin: 0px auto;
}
/*********************************************************************************/
/* Portfolio */
/*********************************************************************************/
#portfolio
{
}
#portfolio .pbox1,
#portfolio .pbox2
{
overflow: hidden;
}
#portfolio .box
{
padding: 1em 2em 1em 1em;
text-align: center;
color: rgba(0,0,0,0.5);
}
#portfolio h3
{
display: block;
margin-bottom: 1em;
padding-bottom: 1em;
border-bottom: 1px solid rgba(0,0,0,0.1);
text-transform: uppercase;
font-size: 1em;
color: rgba(0,0,0,0.6);
}
#portfolio .title
{
text-align: center;
}
#portfolio .title h2
{
color: rgba(0,0,0,0.8);
}
#portfolio .icon
{
display: block;
margin-bottom: 1em;
font-size: 2em;
color: rgba(0,0,0,0.6);
}
.column1,
.column2,
.column3,
.column4
{
width: 282px;
}
.column1,
.column2,
.column3
{
float: left;
margin-right: 23px;
border-right: 1px solid rgba(0,0,0,0.1);
}
.column4
{
float: right;
}
/*********************************************************************************/
/* Featured */
/*********************************************************************************/
#featured
{
overflow: hidden;
padding: 8em 0em;
}
#featured .box1,
#featured .box2
{
width: 570px;
color: rgba(0,0,0,0.6);
}
#featured .box1
{
float: left;
}
#featured .box2
{
float: right;
}
#featured .box1 h2,
#featured .box2 h2
{
margin-bottom: 1em;
text-transform: uppercase;
font-size: 1.8em;
font-weight: 600;
color: #3a3a3a;
}
#featured .box1 span,
#featured .box2 span
{
padding-right: 0.50em;
}
\ No newline at end of file
@charset 'UTF-8';
@font-face
{
font-family: 'FontAwesome';
src: url('fonts/fontawesome-webfont.eot?v=3.0.1');
src: url('fonts/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'),
url('fonts/fontawesome-webfont.woff?v=3.0.1') format('woff'),
url('fonts/fontawesome-webfont.ttf?v=3.0.1') format('truetype'),
url('fonts/fontawesome-webfont.svg#FontAwesome') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face
{
font-family: 'Font-Awesome-Social';
src: url('fonts/fontawesome-social-webfont.eot');
src: url('fonts/fontawesome-social-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/fontawesome-social-webfont.woff') format('woff'),
url('fonts/fontawesome-social-webfont.ttf') format('truetype'),
url('fonts/fontawesome-social-webfont.svg#Font-Awesome-More') format('svg');
font-weight: normal;
font-style: normal;
}
/*********************************************************************************/
/* Icons */
/*********************************************************************************/
/*
Powered by:
Font Awesome (http://fortawesome.github.com/Font-Awesome/)
Font Awesome More (http://gregoryloucas.github.com/Font-Awesome-More/)
*/
.icon
{
text-decoration: none;
}
.icon:before
{
font-size: 1.25em;
text-decoration: none;
font-family: FontAwesome;
font-weight: normal;
font-style: normal;
-webkit-text-rendering: optimizeLegibility;
-moz-text-rendering: optimizeLegibility;
-ms-text-rendering: optimizeLegibility;
-o-text-rendering: optimizeLegibility;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-smoothing: antialiased;
-webkit-font-feature-settings: "liga" 1, "dlig" 1;
-moz-font-feature-settings: "liga=1, dlig=1";
-ms-font-feature-settings: "liga" 1, "dlig" 1;
-o-font-feature-settings: "liga" 1, "dlig" 1;
font-feature-settings: "liga" 1, "dlig" 1;
}
.icon-glass:before { content: "\f000"; }
.icon-music:before { content: "\f001"; }
.icon-search:before { content: "\f002"; }
.icon-envelope:before { content: "\f003"; }
.icon-heart:before { content: "\f004"; }
.icon-star:before { content: "\f005"; }
.icon-star-empty:before { content: "\f006"; }
.icon-user:before { content: "\f007"; }
.icon-film:before { content: "\f008"; }
.icon-th-large:before { content: "\f009"; }
.icon-th:before { content: "\f00a"; }
.icon-th-list:before { content: "\f00b"; }
.icon-ok:before { content: "\f00c"; }
.icon-remove:before { content: "\f00d"; }
.icon-zoom-in:before { content: "\f00e"; }
.icon-zoom-out:before { content: "\f010"; }
.icon-off:before { content: "\f011"; }
.icon-signal:before { content: "\f012"; }
.icon-cog:before { content: "\f013"; }
.icon-trash:before { content: "\f014"; }
.icon-home:before { content: "\f015"; }
.icon-file:before { content: "\f016"; }
.icon-time:before { content: "\f017"; }
.icon-road:before { content: "\f018"; }
.icon-download-alt:before { content: "\f019"; }
.icon-download:before { content: "\f01a"; }
.icon-upload:before { content: "\f01b"; }
.icon-inbox:before { content: "\f01c"; }
.icon-play-circle:before { content: "\f01d"; }
.icon-repeat:before { content: "\f01e"; }
/* \f020 doesn't work in Safari. all shifted one down */
.icon-refresh:before { content: "\f021"; }
.icon-list-alt:before { content: "\f022"; }
.icon-lock:before { content: "\f023"; }
.icon-flag:before { content: "\f024"; }
.icon-headphones:before { content: "\f025"; }
.icon-volume-off:before { content: "\f026"; }
.icon-volume-down:before { content: "\f027"; }
.icon-volume-up:before { content: "\f028"; }
.icon-qrcode:before { content: "\f029"; }
.icon-barcode:before { content: "\f02a"; }
.icon-tag:before { content: "\f02b"; }
.icon-tags:before { content: "\f02c"; }
.icon-book:before { content: "\f02d"; }
.icon-bookmark:before { content: "\f02e"; }
.icon-print:before { content: "\f02f"; }
.icon-camera:before { content: "\f030"; }
.icon-font:before { content: "\f031"; }
.icon-bold:before { content: "\f032"; }
.icon-italic:before { content: "\f033"; }
.icon-text-height:before { content: "\f034"; }
.icon-text-width:before { content: "\f035"; }
.icon-align-left:before { content: "\f036"; }
.icon-align-center:before { content: "\f037"; }
.icon-align-right:before { content: "\f038"; }
.icon-align-justify:before { content: "\f039"; }
.icon-list:before { content: "\f03a"; }
.icon-indent-left:before { content: "\f03b"; }
.icon-indent-right:before { content: "\f03c"; }
.icon-facetime-video:before { content: "\f03d"; }
.icon-picture:before { content: "\f03e"; }
.icon-pencil:before { content: "\f040"; }
.icon-map-marker:before { content: "\f041"; }
.icon-adjust:before { content: "\f042"; }
.icon-tint:before { content: "\f043"; }
.icon-edit:before { content: "\f044"; }
.icon-share:before { content: "\f045"; }
.icon-check:before { content: "\f046"; }
.icon-move:before { content: "\f047"; }
.icon-step-backward:before { content: "\f048"; }
.icon-fast-backward:before { content: "\f049"; }
.icon-backward:before { content: "\f04a"; }
.icon-play:before { content: "\f04b"; }
.icon-pause:before { content: "\f04c"; }
.icon-stop:before { content: "\f04d"; }
.icon-forward:before { content: "\f04e"; }
.icon-fast-forward:before { content: "\f050"; }
.icon-step-forward:before { content: "\f051"; }
.icon-eject:before { content: "\f052"; }
.icon-chevron-left:before { content: "\f053"; }
.icon-chevron-right:before { content: "\f054"; }
.icon-plus-sign:before { content: "\f055"; }
.icon-minus-sign:before { content: "\f056"; }
.icon-remove-sign:before { content: "\f057"; }
.icon-ok-sign:before { content: "\f058"; }
.icon-question-sign:before { content: "\f059"; }
.icon-info-sign:before { content: "\f05a"; }
.icon-screenshot:before { content: "\f05b"; }
.icon-remove-circle:before { content: "\f05c"; }
.icon-ok-circle:before { content: "\f05d"; }
.icon-ban-circle:before { content: "\f05e"; }
.icon-arrow-left:before { content: "\f060"; }
.icon-arrow-right:before { content: "\f061"; }
.icon-arrow-up:before { content: "\f062"; }
.icon-arrow-down:before { content: "\f063"; }
.icon-share-alt:before { content: "\f064"; }
.icon-resize-full:before { content: "\f065"; }
.icon-resize-small:before { content: "\f066"; }
.icon-plus:before { content: "\f067"; }
.icon-minus:before { content: "\f068"; }
.icon-asterisk:before { content: "\f069"; }
.icon-exclamation-sign:before { content: "\f06a"; }
.icon-gift:before { content: "\f06b"; }
.icon-leaf:before { content: "\f06c"; }
.icon-fire:before { content: "\f06d"; }
.icon-eye-open:before { content: "\f06e"; }
.icon-eye-close:before { content: "\f070"; }
.icon-warning-sign:before { content: "\f071"; }
.icon-plane:before { content: "\f072"; }
.icon-calendar:before { content: "\f073"; }
.icon-random:before { content: "\f074"; }
.icon-comment:before { content: "\f075"; }
.icon-magnet:before { content: "\f076"; }
.icon-chevron-up:before { content: "\f077"; }
.icon-chevron-down:before { content: "\f078"; }
.icon-retweet:before { content: "\f079"; }
.icon-shopping-cart:before { content: "\f07a"; }
.icon-folder-close:before { content: "\f07b"; }
.icon-folder-open:before { content: "\f07c"; }
.icon-resize-vertical:before { content: "\f07d"; }
.icon-resize-horizontal:before { content: "\f07e"; }
.icon-bar-chart:before { content: "\f080"; }
.icon-twitter-sign:before { content: "\f081"; }
.icon-facebook-sign:before { content: "\f082"; }
.icon-camera-retro:before { content: "\f083"; }
.icon-key:before { content: "\f084"; }
.icon-cogs:before { content: "\f085"; }
.icon-comments:before { content: "\f086"; }
.icon-thumbs-up:before { content: "\f087"; }
.icon-thumbs-down:before { content: "\f088"; }
.icon-star-half:before { content: "\f089"; }
.icon-heart-empty:before { content: "\f08a"; }
.icon-signout:before { content: "\f08b"; }
.icon-linkedin-sign:before { content: "\f08c"; }
.icon-pushpin:before { content: "\f08d"; }
.icon-external-link:before { content: "\f08e"; }
.icon-signin:before { content: "\f090"; }
.icon-trophy:before { content: "\f091"; }
.icon-github-sign:before { content: "\f092"; }
.icon-upload-alt:before { content: "\f093"; }
.icon-lemon:before { content: "\f094"; }
.icon-phone:before { content: "\f095"; }
.icon-check-empty:before { content: "\f096"; }
.icon-bookmark-empty:before { content: "\f097"; }
.icon-phone-sign:before { content: "\f098"; }
.icon-twitter:before { content: "\f099"; }
.icon-facebook:before { content: "\f09a"; }
.icon-github:before { content: "\f09b"; }
.icon-unlock:before { content: "\f09c"; }
.icon-credit-card:before { content: "\f09d"; }
.icon-rss:before { content: "\f09e"; }
.icon-hdd:before { content: "\f0a0"; }
.icon-bullhorn:before { content: "\f0a1"; }
.icon-bell:before { content: "\f0a2"; }
.icon-certificate:before { content: "\f0a3"; }
.icon-hand-right:before { content: "\f0a4"; }
.icon-hand-left:before { content: "\f0a5"; }
.icon-hand-up:before { content: "\f0a6"; }
.icon-hand-down:before { content: "\f0a7"; }
.icon-circle-arrow-left:before { content: "\f0a8"; }
.icon-circle-arrow-right:before { content: "\f0a9"; }
.icon-circle-arrow-up:before { content: "\f0aa"; }
.icon-circle-arrow-down:before { content: "\f0ab"; }
.icon-globe:before { content: "\f0ac"; }
.icon-wrench:before { content: "\f0ad"; }
.icon-tasks:before { content: "\f0ae"; }
.icon-filter:before { content: "\f0b0"; }
.icon-briefcase:before { content: "\f0b1"; }
.icon-fullscreen:before { content: "\f0b2"; }
.icon-group:before { content: "\f0c0"; }
.icon-link:before { content: "\f0c1"; }
.icon-cloud:before { content: "\f0c2"; }
.icon-beaker:before { content: "\f0c3"; }
.icon-cut:before { content: "\f0c4"; }
.icon-copy:before { content: "\f0c5"; }
.icon-paper-clip:before { content: "\f0c6"; }
.icon-save:before { content: "\f0c7"; }
.icon-sign-blank:before { content: "\f0c8"; }
.icon-reorder:before { content: "\f0c9"; }
.icon-list-ul:before { content: "\f0ca"; }
.icon-list-ol:before { content: "\f0cb"; }
.icon-strikethrough:before { content: "\f0cc"; }
.icon-underline:before { content: "\f0cd"; }
.icon-table:before { content: "\f0ce"; }
.icon-magic:before { content: "\f0d0"; }
.icon-truck:before { content: "\f0d1"; }
.icon-pinterest:before { content: "\f0d2"; }
.icon-pinterest-sign:before { content: "\f0d3"; }
.icon-google-plus-sign:before { content: "\f0d4"; }
.icon-google-plus:before { content: "\f0d5"; }
.icon-money:before { content: "\f0d6"; }
.icon-caret-down:before { content: "\f0d7"; }
.icon-caret-up:before { content: "\f0d8"; }
.icon-caret-left:before { content: "\f0d9"; }
.icon-caret-right:before { content: "\f0da"; }
.icon-columns:before { content: "\f0db"; }
.icon-sort:before { content: "\f0dc"; }
.icon-sort-down:before { content: "\f0dd"; }
.icon-sort-up:before { content: "\f0de"; }
.icon-envelope-alt:before { content: "\f0e0"; }
.icon-linkedin:before { content: "\f0e1"; }
.icon-undo:before { content: "\f0e2"; }
.icon-legal:before { content: "\f0e3"; }
.icon-dashboard:before { content: "\f0e4"; }
.icon-comment-alt:before { content: "\f0e5"; }
.icon-comments-alt:before { content: "\f0e6"; }
.icon-bolt:before { content: "\f0e7"; }
.icon-sitemap:before { content: "\f0e8"; }
.icon-umbrella:before { content: "\f0e9"; }
.icon-paste:before { content: "\f0ea"; }
.icon-lightbulb:before { content: "\f0eb"; }
.icon-exchange:before { content: "\f0ec"; }
.icon-cloud-download:before { content: "\f0ed"; }
.icon-cloud-upload:before { content: "\f0ee"; }
.icon-user-md:before { content: "\f0f0"; }
.icon-stethoscope:before { content: "\f0f1"; }
.icon-suitcase:before { content: "\f0f2"; }
.icon-bell-alt:before { content: "\f0f3"; }
.icon-coffee:before { content: "\f0f4"; }
.icon-food:before { content: "\f0f5"; }
.icon-file-alt:before { content: "\f0f6"; }
.icon-building:before { content: "\f0f7"; }
.icon-hospital:before { content: "\f0f8"; }
.icon-ambulance:before { content: "\f0f9"; }
.icon-medkit:before { content: "\f0fa"; }
.icon-fighter-jet:before { content: "\f0fb"; }
.icon-beer:before { content: "\f0fc"; }
.icon-h-sign:before { content: "\f0fd"; }
.icon-plus-sign-alt:before { content: "\f0fe"; }
.icon-double-angle-left:before { content: "\f100"; }
.icon-double-angle-right:before { content: "\f101"; }
.icon-double-angle-up:before { content: "\f102"; }
.icon-double-angle-down:before { content: "\f103"; }
.icon-angle-left:before { content: "\f104"; }
.icon-angle-right:before { content: "\f105"; }
.icon-angle-up:before { content: "\f106"; }
.icon-angle-down:before { content: "\f107"; }
.icon-desktop:before { content: "\f108"; }
.icon-laptop:before { content: "\f109"; }
.icon-tablet:before { content: "\f10a"; }
.icon-mobile-phone:before { content: "\f10b"; }
.icon-circle-blank:before { content: "\f10c"; }
.icon-quote-left:before { content: "\f10d"; }
.icon-quote-right:before { content: "\f10e"; }
.icon-spinner:before { content: "\f110"; }
.icon-circle:before { content: "\f111"; }
.icon-reply:before { content: "\f112"; }
.icon-github-alt:before { content: "\f113"; }
.icon-folder-close-alt:before { content: "\f114"; }
.icon-folder-open-alt:before { content: "\f115"; }
.icon-blogger-sign:before,.icon-blogger:before,.icon-delicious:before,.icon-dribbble-sign:before,.icon-dribbble:before,.icon-dropbox:before,.icon-drupal:before,.icon-evernote-sign:before,.icon-evernote:before,.icon-flickr-sign:before,.icon-flickr:before,.icon-forrst-sign:before,.icon-forrst:before,.icon-foursquare-sign:before,.icon-foursquare:before,.icon-git-fork:before,.icon-hacker-news:before,.icon-instagram:before,.icon-lastfm-sign:before,.icon-lastfm:before,.icon-paypal:before,.icon-picasa-sign:before,.icon-picasa:before,.icon-reddit:before,.icon-share-this-sign:before,.icon-share-this:before,.icon-skype:before,.icon-soundcloud:before,.icon-spotify:before,.icon-stack-overflow:before,.icon-tumblr-sign:before,.icon-tumblr:before,.icon-vimeo-sign:before,.icon-vimeo:before,.icon-wordpress-sign:before,.icon-wordpress:before,.icon-yelp-sign:before,.icon-yelp:before,.icon-youtube-sign:before,.icon-youtube:before {font-family:'Font-Awesome-Social'; }
.icon-dropbox:before { content: "\f300"; }
.icon-drupal:before { content: "\f301"; }
.icon-git-fork:before { content: "\f302"; }
.icon-instagram:before { content: "\f303"; }
.icon-share-this-sign:before { content: "\f304"; }
.icon-share-this:before { content: "\f305"; }
.icon-foursquare-sign:before { content: "\f306"; }
.icon-foursquare:before { content: "\f307"; }
.icon-hacker-news:before { content: "\f308"; }
.icon-skype:before { content: "\f309"; }
.icon-spotify:before { content: "\f30a"; }
.icon-soundcloud:before { content: "\f30b"; }
.icon-paypal:before { content: "\f30c"; }
.icon-youtube-sign:before { content: "\f30d"; }
.icon-youtube:before { content: "\f30e"; }
.icon-reddit:before { content: "\f30f"; }
.icon-blogger-sign:before { content: "\f310"; }
.icon-blogger:before { content: "\f311"; }
.icon-dribbble-sign:before { content: "\f312"; }
.icon-dribbble:before { content: "\f313"; }
.icon-evernote-sign:before { content: "\f314"; }
.icon-evernote:before { content: "\f315"; }
.icon-flickr-sign:before { content: "\f316"; }
.icon-flickr:before { content: "\f317"; }
.icon-forrst-sign:before { content: "\f318"; }
.icon-forrst:before { content: "\f319"; }
.icon-delicious:before { content: "\f31a"; }
.icon-lastfm-sign:before { content: "\f31b"; }
.icon-lastfm:before { content: "\f31c"; }
.icon-picasa-sign:before { content: "\f31d"; }
.icon-picasa:before { content: "\f31e"; }
.icon-stack-overflow:before { content: "\f320"; }
.icon-tumblr-sign:before { content: "\f321"; }
.icon-tumblr:before { content: "\f322"; }
.icon-vimeo-sign:before { content: "\f323"; }
.icon-vimeo:before { content: "\f324"; }
.icon-wordpress-sign:before { content: "\f325"; }
.icon-wordpress:before { content: "\f326"; }
.icon-yelp-sign:before { content: "\f327"; }
.icon-yelp:before { content: "\f328"; }
.icon-cloud-upload:before { content: "\f0ee"; }
.icon-cloud-download:before { content: "\f0ed"; }
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>
This is a custom SVG font generated by IcoMoon.
<iconset grid="16"></iconset>
</metadata>
<defs>
<font id="Font-Awesome-More" horiz-adv-x="1792" >
<font-face units-per-em="1792" ascent="1541" descent="-251" />
<missing-glyph horiz-adv-x="1792" />
<glyph unicode="&#xf310;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 1325.121,828.008l-70.242,0.00 l-1.249,0.00 c-43.967,0.00-116.928,14.049-120.001,56.991l0.00,0.00c0.00,228.193-149.825,400.001-379.68,400.001
l-209.727,0.00 C 314.527,1285.00, 128.222,1100.007, 127.998,871.849L 127.998,418.12 C 127.998,189.769, 314.527,5.00, 544.226,5.00l 448.161,0.00 C 1222.368,5.00, 1408.001,189.769, 1408.001,418.12l0.00,318.367
C 1408.001,781.864, 1371.135,828.008, 1325.121,828.008z M 521.118,965.001l 219.488,0.00 c 40.32,0.00, 72.993-41.087, 72.993-91.486c0.00-50.368-32.672-91.486-72.993-91.486l-219.488,0.00
c-40.064,0.00-73.118,41.122-73.118,91.486C 448.00,923.911, 481.058,965.001, 521.118,965.001z M 1008.00,324.999l-480.00,0.00 c-44.128,0.00-79.999,41.087-79.999,91.486
c0.00,50.368, 35.872,91.486, 79.999,91.486l 480.00,0.00 c 44.128,0.00, 79.999-41.122, 79.999-91.486C 1088.00,366.088, 1052.128,324.999, 1008.00,324.999z" horiz-adv-x="1533" />
<glyph unicode="&#xf311;" d="M 1676.129,901.00l-98.336,0.00 L 1575.679,901.00 c-61.537,0.00-163.488,20.066-167.681,79.999l0.00,0.00C 1408.001,1300.68, 1198.305,1541.00, 876.449,1541.00L 582.719,1541.00 C 261.023,1541.00, 0.224,1281.993,0.00,962.345
l0.00-634.91 C0.00,7.783, 261.023-251.00, 582.719-251.00l 627.231,0.00 C 1531.873-251.00, 1792.00,7.783, 1792.00,327.431L 1792.00,772.999 C 1792.00,836.874, 1740.512,901.00, 1676.129,901.00z M 550.368,1093.00l 307.265,0.00
C 913.952,1093.00, 960.001,1035.401, 960.001,965.001s-46.05-127.998-102.368-127.998l-307.265,0.00 C 494.05,837.00, 448.00,894.599, 448.00,965.001S 494.05,1093.00, 550.368,1093.00z M 1232.00,197.00l-672.00,0.00
c-61.632,0.00-112.00,57.60-112.00,127.998s 50.368,127.998, 112.00,127.998l 672.00,0.00 c 61.632,0.00, 112.00-57.60, 112.00-127.998S 1293.631,197.00, 1232.00,197.00z" />
<glyph unicode="&#xf31a;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 768.001,645.00l0.00-672.00 l 480.00,0.00 c 54.016,0.00, 97.121,17.983, 135.744,56.609C 1422.113,67.881, 1440.001,110.921, 1440.001,165.00L 1440.001,645.00 L 768.001,645.00 z M 768.001,645.00L 768.001,1317.00 L 288.001,1317.00
C 233.919,1317.00, 190.88,1299.111, 152.513,1260.615C 113.953,1222.119, 96.001,1179.016, 96.001,1125.00l0.00-480.00 L 768.001,645.00 z" horiz-adv-x="1533" />
<glyph unicode="&#xf312;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 1408.001,645.00c0.00,172.991-72.895,337.984-187.425,452.574C 1105.983,1212.137, 940.993,1285.00, 768.001,1285.00s-337.984-72.863-452.574-187.425
S 127.998,817.991, 127.998,645.00c0.00-116.162, 28.833-222.688, 85.761-321.184C 328.255,127.56, 536.511,5.00, 768.001,5.00c 116.162,0.00, 222.688,28.801, 321.184,85.729
C 1285.441,205.256, 1408.001,413.514, 1408.001,645.00z M 1057.952,203.657c-26.401,132.16-60.032,257.12-102.498,376.45c 96.096,15.263, 208.257,14.431, 336.416-2.37
C 1271.809,423.146, 1185.313,286.954, 1057.952,203.657z M 768.001,116.329c-120.96,0.00-229.089,37.695-324.352,112.161c 109.697,170.625, 245.858,279.552, 408.447,328.384
c 45.665-126.497, 80.895-261.055, 104.927-404.45C 896.959,128.327, 833.697,116.329, 768.001,116.329z M 240.961,665.801c 217.056,10.433, 394.047,36.032, 531.839,76.895
c 15.232-30.433, 29.631-61.694, 43.264-93.727c-177.023-52.063-327.582-167.391-450.145-346.846C 281.824,400.679, 239.327,515.241, 239.327,645.00
C 239.327,649.00, 240.16,656.20, 240.961,665.801z M 530.078,1116.009c 77.728-95.329, 144.193-191.457, 199.454-289.152c-127.362-38.465-286.752-62.496-478.209-71.327
C 285.793,912.551, 389.12,1044.711, 530.078,1116.009z M 1113.217,1043.912c-77.665-74.561-170.594-134.561-279.52-180.226c-60.865,115.329-127.362,212.258-199.454,291.519
c 44.065,12.033, 88.897,17.633, 133.791,17.633C 898.558,1172.839, 1013.089,1129.641, 1113.217,1043.912z M 1295.039,673.031
c-147.361,15.263-272.321,15.263-374.048-0.766c-15.998,40.033-31.265,75.296-45.633,106.529c 116.928,48.066, 216.993,114.527, 301.151,200.256
C 1249.409,890.087, 1288.672,788.36, 1295.039,673.031z" horiz-adv-x="1533" />
<glyph unicode="&#xf313;" d="M 1153.439-20.15C 1035.234-88.408, 907.361-123.001, 768.001-123.001c-277.823,0.00-527.681,147.073-665.119,382.56C 34.626,377.768,0.00,505.64,0.00,645.00
c0.00,207.617, 87.454,405.632, 224.896,543.106C 362.369,1325.543, 560.385,1413.002, 768.001,1413.002s 405.632-87.454, 543.106-224.896C 1448.514,1050.633, 1536.00,852.616, 1536.00,645.00
C 1536.00,367.177, 1388.929,117.319, 1153.439-20.15z M 1396.64,564.297c-153.825,20.16-288.382,21.119-403.711,2.849c 50.977-143.231, 91.329-293.153, 123.039-451.745
C 1268.767,215.305, 1372.609,378.758, 1396.64,564.297z M 994.847,53.864c-28.833,172.032-71.169,333.536-125.919,485.377
c-195.136-58.593-358.529-189.343-490.175-394.079c 114.335-89.345, 244.097-134.561, 389.249-134.561C 846.814,10.601, 922.75,25.00, 994.847,53.864z
M 133.599,645.00c0.00-155.68, 50.977-293.184, 151.904-411.394c 147.073,215.327, 327.744,353.727, 540.194,416.224c-16.384,38.434-33.663,75.904-51.937,112.48
c-165.312-49.024-377.727-79.775-638.176-92.319C 134.561,658.44, 133.599,649.798, 133.599,645.00z M 148.001,777.671c 229.761,10.591, 421.026,39.361, 573.888,85.568
c-66.335,117.215-146.111,232.575-239.361,346.976C 313.344,1124.647, 189.343,966.055, 148.001,777.671z M 768.001,1278.441c-53.855,0.00-107.65-6.752-160.545-21.151
c 86.496-95.168, 166.271-211.424, 239.327-349.888c 130.721,54.817, 242.238,126.847, 335.457,216.289C 1062.113,1226.536, 924.672,1278.441, 768.001,1278.441z M 1258.177,1045.83
c-100.93-102.879-221.025-182.623-361.375-240.32c 17.28-37.502, 35.521-79.807, 54.785-127.841c 122.049,19.233, 271.999,19.233, 448.833,0.959
C 1392.737,817.032, 1345.697,939.112, 1258.177,1045.83z" horiz-adv-x="1533" />
<glyph unicode="&#xf300;" d="M 494.753,1413.002L0.00,1112.807l 338.975-276.769L 831.999,1147.943L 494.753,1413.002z M 1131.20,139.015c-8.831,0.00-17.633,2.943-24.703,8.768L 831.999,369.48l-274.463-221.76
c-7.105-5.761-15.967-8.768-24.703-8.768c-7.329,0.00-14.721,1.953-21.119,6.048l-203.329,129.602l0.00-76.478 L 831.999-123.001l 523.617,321.184l0.00,76.514 l-203.329-129.602
C 1145.921,140.968, 1138.529,139.015, 1131.20,139.015z M 1664.001,1112.807L 1169.249,1413.002L 831.999,1147.943l 492.961-311.808L 1664.001,1112.807z M 831.999,536.042l 305.666-247.202
L 1626.657,600.20l-301.633,235.84L 831.999,536.042z M 526.337,288.84L 831.999,536.042l-492.961,300.097L 37.439,600.20L 526.337,288.84z" horiz-adv-x="1662.5" />
<glyph unicode="&#xf301;" d="M 1006.015,1127.433c-25.666,16.321-63.007,35.745-112.864,57.792c-50.718,22.047-88.064,42.273-112.896,58.657
c-33.60,23.041-87.168,79.712-162.754,169.12c-10.465-93.278-35.521-138.369-76.639-173.023c-45.92-35.553-76.639-53.855-133.056-82.719
c-56.448-28.672-65.215-34.496-92.032-51.009c-27.615-16.289-82.239-58.496-125.377-100.706c-43.04-43.295-95.743-114.433-130.144-186.56
C 25.854,745.961,0.00,645.00,0.00,540.262c0.00-149.055, 50.753-291.263, 136.832-398.016c 86.24-107.552, 199.168-190.27, 334.208-232.673
C 538.079-112.407, 607.04-123.001, 677.761-123.001c 141.60,0.00, 277.536,40.383, 388.672,117.313c 111.167,75.841, 196.353,178.846, 243.071,317.055
C 1332.576,379.752, 1344.00,452.745, 1344.00,528.744c0.00,103.681-23.968,206.657-54.463,277.63c-30.782,71.264-84.353,144.225-121.695,186.592
c-38.175,42.336-96.576,90.367-118.626,106.719c-10.465,7.71-23.905,16.321-38.335,24.864C 1008.865,1125.672, 1007.104,1126.60, 1006.015,1127.433z
M 1288.417,433.544c0.00-53.791-17.119-133.633-48.738-180.768c-38.143-53.823-58.433-71.04-99.456-68.159c-23.041,2.88-70.049,46.081-108.255,88.417
c-38.209,41.248-88.897,84.672-119.648,85.60c-30.593,0.00-84.192-26.912-141.697-61.569c-57.505-35.455-117.695-74.945-184.671-99.008
c-33.663-12.575-64.159-18.273-90.975-18.273c-81.441,0.00-108.224,9.695-145.569,32.641c-91.97,62.657-87.23,208.607, 8.575,299.008
c 47.873,45.217, 105.41,67.231, 172.386,68.383c 64.159,0.00, 131.999-26.015, 183.841-59.776c 25.791-17.216, 49.697-34.626, 73.602-50.942
c 46.081-33.505, 91.137-59.521, 122.465-59.521c 31.584,0.865, 94.017,38.335, 143.615,74.977c 49.857,36.606, 110.271,72.128, 140.767,72.128
c 34.496,0.00, 62.178-18.305, 75.649-45.217C 1283.744,484.455, 1288.417,457.607, 1288.417,433.544z" horiz-adv-x="1407" />
<glyph unicode="&#xf314;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 1305.727,1049.705c0.00,81.921-127.008,90.913-127.008,90.913l-297.983,18.239c0.00,0.00-6.367,78.785-66.721,106.082
c-60.288,27.233-126.529,18.977-174.048,18.463c-47.488-0.542-58.817-59.392-58.817-115.136c0.00-55.458, 1.214-119.522, 1.214-159.999
c0.00-72.191-32.799-102.91-114.912-102.91L 298.56,905.351 c-47.358,2.849-84.161-4.672-84.161-41.758c0.00-36.928, 55.615-353.535, 131.936-426.657
c 44.447-42.367, 315.329-72.034, 372.382-72.034c 57.215,0.00, 38.209,163.583, 53.921,163.583c 15.998,0.00, 33.505-92.449, 123.361-114.111
c 89.887-21.599, 209.919-17.567, 216.289-79.744c 8.194-81.791, 15.711-187.806-39.872-195.328l-125.534-4.928c-86.111,6.143-63.199,97.44-25.056,97.44
c 38.049,0.00, 56.991,1.407, 56.991,1.407l 4.798,99.936c0.00,0.00-197.375,22.593-205.762-106.431c-7.647-118.143, 13.248-173.73, 28.542-185.951
C 821.887,28.583, 848.449,5.00, 1089.921,5.00C 1430.464,5.00, 1305.727,968.137, 1305.727,1049.705z M 1166.529,622.121C 1153.282,608.327, 1104.862,645.00, 1058.656,645.00
s-96.159-23.744-107.681-8.127c-11.742,15.586, 10.657,141.568, 97.695,141.568C 1135.743,778.441, 1179.903,636.008, 1166.529,622.121z M 460.575,1059.848
c0.00,16.128, 4.319,212.222, 4.319,212.222L 208.002,1027.529c0.00,0.00, 177.44,0.00, 212.191,0.00C 455.168,1027.529, 460.575,1043.657, 460.575,1059.848z" horiz-adv-x="1533" />
<glyph unicode="&#xf315;" d="M 1317.215,1130.726c0.00,98.144-152.257,109.056-152.257,109.056L 807.233,1261.641c0.00,0.00-7.647,94.559-79.968,127.326
c-72.289,32.672-151.809,22.785-208.799,22.176c-57.025-0.64-70.689-71.327-70.689-138.078c0.00-66.721, 1.313-143.521, 1.313-192.00
c0.00-86.688-39.33-123.648-137.697-123.648L 108.608,957.417 C 51.905,961.001, 7.679,951.975, 7.679,907.399c0.00-44.447, 66.815-424.287, 158.431-511.903
c 53.151-50.88, 378.336-86.527, 446.849-86.527c 68.45,0.00, 45.727,196.353, 64.673,196.353c 19.04,0.00, 40.033-110.943, 147.871-136.864
c 107.874-26.078, 251.905-21.248, 259.486-95.743c 9.986-98.273, 19.009-225.536-47.649-234.559l-150.784-5.824c-103.327,7.263-75.618,116.799-30.016,116.799
c 45.602,0.00, 68.513,1.824, 68.513,1.824l 5.694,119.97c0.00,0.00-236.736,27.136-246.88-127.904c-9.152-141.662, 15.935-208.481, 34.272-223.01
C 736.641-94.648, 768.449-123.001, 1058.369-123.001C 1466.945-123.001, 1317.215,1032.681, 1317.215,1130.726z M 1150.24,617.64C 1134.273,601.064, 1076.257,645.00, 1020.863,645.00
c-55.52,0.00-115.36-28.511-129.409-9.825c-14.018,18.785, 12.898,169.984, 117.345,169.984S 1166.336,634.248, 1150.24,617.64z M 303.072,1142.858
c0.00,19.358, 5.184,254.656, 5.184,254.656L0.00,1104.039c0.00,0.00, 212.93,0.00, 254.688,0.00C 296.671,1104.039, 303.072,1123.401, 303.072,1142.858z" horiz-adv-x="1407" />
<glyph unicode="&#xf316;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 159.999,645.609c0.00-93.408, 49.633-176.992, 128.768-222.145C 327.425,400.679, 370.24,389.00, 416.129,389.00
c 93.408,0.00, 176.159,48.479, 222.113,127.295C 660.639,555.785, 672.00,599.017, 672.00,645.609c0.00,92.225-48.191,174.944-126.56,220.959
C 505.985,889.321, 462.655,901.00, 416.129,901.00c-91.871,0.00-175.168-48.479-221.088-126.847C 171.392,734.761, 159.999,692.233, 159.999,645.609z M 864.00,645.609
c0.00-93.408, 49.633-176.992, 128.768-222.145C 1031.425,400.679, 1074.241,389.00, 1120.13,389.00c 93.408,0.00, 176.159,48.479, 222.113,127.295
C 1364.639,555.785, 1376.00,599.017, 1376.00,645.609c0.00,92.225-48.191,174.944-126.56,220.959C 1209.985,889.321, 1166.655,901.00, 1120.13,901.00
c-91.871,0.00-175.168-48.479-221.088-126.847C 875.392,734.761, 864.00,692.233, 864.00,645.609z" horiz-adv-x="1533" />
<glyph unicode="&#xf317;" d="M0.00,645.959c0.00-140.448, 74.529-265.57, 192.959-333.406C 251.265,278.182, 315.231,261.001, 383.999,261.001c 140.448,0.00, 264.639,72.608, 333.375,191.041
C 750.817,511.241, 768.001,576.232, 768.001,645.959c0.00,138.495-72.639,262.658-190.082,331.457C 518.689,1011.817, 453.73,1028.999, 383.999,1028.999c-137.536,0.00-262.658-72.608-331.457-190.082
C 17.216,779.687,0.00,715.689,0.00,645.959z M 1023.999,645.959c0.00-140.448, 74.529-265.57, 192.959-333.406C 1275.264,278.182, 1339.233,261.001, 1408.001,261.001
c 140.448,0.00, 264.639,72.608, 333.375,191.041C 1774.815,511.241, 1792.00,576.232, 1792.00,645.959c0.00,138.495-72.639,262.658-190.082,331.457C 1542.688,1011.817, 1477.728,1028.999, 1408.001,1028.999
c-137.536,0.00-262.658-72.608-331.457-190.082C 1041.215,779.687, 1023.999,715.689, 1023.999,645.959z" />
<glyph unicode="&#xf318;" d="M 1451.359,1328.554C 1395.202,1384.872, 1327.33,1413.002, 1247.999,1413.002L 288.001,1413.002 C 208.674,1413.002, 140.833,1384.872, 84.48,1328.554C 28.13,1272.137,0.00,1204.328,0.00,1125.00l0.00-960.001
c0.00-79.328, 28.13-147.20, 84.48-203.361C 140.833-94.778, 208.674-123.001, 288.001-123.001l 960.001,0.00 c 79.328,0.00, 147.20,28.224, 203.361,84.641C 1507.775,17.80, 1536.00,85.672, 1536.00,165.00L 1536.00,1125.00
C 1536.00,1204.328, 1507.775,1272.137, 1451.359,1328.554z M 896.00,261.001l0.00-256.00 l-256.00,0.00 l0.00,256.00 L 256.00,261.001 L 768.001,1285.00l 512.001-1023.999L 896.00,261.001 z M 640.00,645.00l 256.00,0.00 l0.00-383.999 l-256.00,0.00 L 640.00,645.00 z" horiz-adv-x="1533" />
<glyph unicode="&#xf319;" d="M 640.00,5.00L0.00,5.00 L 784.00,1541.00L 1536.00,5.00L 896.00,5.00 l0.00,256.00 l 224.00,0.00 l0.00,127.998 l-224.00,0.00 l0.00,256.00 l-256.00,0.00 L 640.00,5.00 z M 640.00,5.00l 256.00,0.00 l0.00-256.00 l-256.00,0.00 L 640.00,5.00 z" horiz-adv-x="1533" />
<glyph unicode="&#xf306;" d="M 652.225,750.76c 25.183,57.697, 27.422,115.105, 6.433,173.60l 78.368,77.858c 6.527,6.496, 15.20,10.017, 25.407,10.017
c 10.143,0.00, 18.848-3.521, 25.28-10.017l 146.72-146.433l-159.551-217.375c-9.632-11.07-21.119-11.742-26.974-8.032
c-2.975,1.505-5.856,3.647-8.032,6.367C 738.496,638.375, 709.408,676.423, 652.225,750.76z M 1536.00,1093.00L 1137.535,750.76l 39.33-39.008
c 20.321-20.255, 30.433-44.80, 30.433-73.377c0.00-28.161-10.111-52.671-30.433-72.93L 835.839,226.697C 816.063,207.08, 791.455,197.00, 762.433,197.00
s-53.599,10.08-73.343,29.697L 348.096,565.449c-19.425,19.296-29.568,42.592-30.401,70.689c-24.735,13.695-47.169,32.417-68.127,54.719
c-55.839,65.762-72.576,154.273-43.519,234.367c 28.224,80.098, 98.721,140.543, 182.752,155.456c 83.52,15.295, 169.855-13.503, 225.631-79.103
c 5.152-5.856, 9.471-10.913, 11.585-14.273l 63.105,62.559c 20.321,20.192, 44.961,30.209, 73.343,30.209c 28.354,0.00, 53.056-10.017, 73.409-30.209
l 139.265-138.40L 1344.00,1413.002l-96.001,0.00 L 288.001,1413.002 C 208.674,1413.002, 140.833,1384.872, 84.48,1328.554C 28.13,1272.137,0.00,1204.328,0.00,1125.00l0.00-960.001 c0.00-79.328, 28.13-147.20, 84.48-203.361
C 140.833-94.778, 208.674-123.001, 288.001-123.001l 960.001,0.00 c 79.328,0.00, 147.20,28.224, 203.361,84.641C 1507.775,17.80, 1536.00,85.672, 1536.00,165.00L 1536.00,1093.00 z M 399.648,610.217l 337.375-335.199
c 7.903-6.591, 15.904-10.143, 25.407-10.143c 10.143,0.00, 18.848,3.552, 25.28,10.143l 340.385,337.855c 7.168,7.361, 10.847,15.935, 10.847,25.505
c0.00,10.017-3.678,18.463-10.847,24.959l-42.945,43.361l-315.522-264.673c-9.408-7.137-17.983-7.137-26.047,0.00l-226.334,180.898
C 479.391,608.618, 440.289,604.361, 399.648,610.217z" horiz-adv-x="1533" />
<glyph unicode="&#xf307;" d="M 1313.056,563.24l-52.385,51.999L 1727.999,1024.712c0.00,72.961-11.742,145.058-38.846,213.409c-27.073,68.159-63.679,120.064-121.825,151.841
C 1538.271,1405.287, 1506.305,1413.002, 1472.608,1413.002l-428.481-583.426l-185.727,184.576c-27.104,26.912-60.064,40.352-97.825,40.352c-37.727,0.00-70.623-13.44-97.695-40.352
l-84.095-83.552c-2.912,4.672-8.673,11.424-15.55,19.201c-74.337,87.489-189.504,125.888-300.769,105.599c-112.161-20.066-206.017-100.737-243.744-207.456
c-38.752-106.754-16.415-224.896, 58.016-312.48c 28.032-29.761, 58.016-54.656, 91.007-72.961c 0.865-37.502, 14.431-68.383, 40.544-94.174l 454.625-451.777
C 689.087-109.562, 721.921-123.001, 760.61-123.001c 38.783,0.00, 71.617,13.44, 97.825,39.456l 454.657,451.777c 27.073,26.943, 40.639,59.553, 40.639,97.055
C 1353.695,503.656, 1340.129,536.297, 1313.056,563.24z M 622.272,846.761l 104.514,103.841c 8.673,8.673, 20.223,13.472, 33.824,13.472
s 25.218-4.798, 33.887-13.472l 195.489-195.136l-212.768-290.143c-12.674-14.56-28.192-15.456-35.969-10.591c-3.745,1.984-7.745,4.833-10.657,8.607
c-1.76,1.984-40.607,52.895-116.897,151.935C 647.36,692.201, 650.402,768.904, 622.272,846.761z M 1248.159,431.56L 794.465-19.128
c-8.673-8.641-20.29-13.472-33.887-13.472c-12.481,0.00-23.135,4.833-33.824,13.472L 277.025,427.814c 54.114-7.71, 106.239-1.984, 156.639,17.185
l 301.791-241.216c 10.657-9.537, 22.207-9.537, 34.85,0.00l 420.703,352.80l 57.151-57.792c 9.632-8.607, 14.528-20.066, 14.528-33.505
C 1262.688,452.713, 1257.792,441.255, 1248.159,431.56z" />
<glyph unicode="&#xf302;" d="M0.00,96.33C0.00-16.342, 104.863-123.001, 230.401-123.001c 124.674,0.00, 230.401,107.52, 230.401,219.327c0.00,57.151-20.671,106.655-60.991,148.481
c 40.352,46.946, 98.623,70.847, 176.642,70.847c 97.727,0.00, 184.706,23.873, 242.049,54.593c 60.064,35.007, 108.511,83.615, 137.249,127.998
c 31.265,48.671, 55.458,110.943, 62.657,141.662c 11.68,44.383, 17.951,86.177, 17.951,99.008c0.00,2.558,0.00,5.12, 0.865,8.543c0.00,3.391,0.00,5.985,0.00,6.815
l0.00,30.719 C 1106.242,823.336, 1152.00,894.183, 1152.00,973.545c0.00,122.017-102.207,219.327-230.401,219.327c-126.399,0.00-230.401-97.279-230.401-219.327
c0.00-79.328, 46.655-150.174, 114.72-188.608l0.00-30.719 l0.00-11.935 c-0.801-17.92-10.721-54.624-17.92-74.238c-10.752-34.111-34.048-64.001-65.439-90.433
c-33.152-26.463-84.287-42.689-146.111-42.689c-87.84,0.00-164.927-17.056-230.335-50.337L 346.111,1005.097 c 68.064,37.569, 114.72,108.385, 114.72,187.743
C 460.80,1313.161, 356.80,1413.002, 230.401,1413.002C 102.207,1413.002,0.00,1313.161,0.00,1192.841c0.00-79.359, 45.759-150.174, 114.782-187.743L 114.782,284.042 C 45.759,246.504,0.00,175.657,0.00,96.33z
M 114.782,96.33c0.00,60.609, 51.968,109.218, 115.615,109.218c 61.855,0.00, 115.679-48.639, 115.679-109.218c0.00-61.439-52.063-110.079-115.679-110.079
C 166.75-13.784, 114.782,34.887, 114.782,96.33z M 114.782,1192.841c0.00,61.439, 51.968,110.047, 115.615,110.047c 63.616,0.00, 115.679-48.639, 115.679-110.047
c0.00-60.609-53.855-109.218-115.679-109.218C 166.75,1083.623, 114.782,1132.263, 114.782,1192.841z M 805.921,973.545c0.00,60.609, 52.063,110.079, 115.679,110.079
c 63.647,0.00, 115.615-49.504, 115.615-110.079s-51.968-109.218-115.615-109.218C 857.983,864.327, 805.921,912.936, 805.921,973.545z" horiz-adv-x="1151.5" />
<glyph unicode="&#xf308;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 1071.71,1285.00L 768.001,669.672L 476.287,1285.00L 288.001,1285.00 l 398.944-816.991L 686.945,5.00 l 163.327,0.00 L 850.273,468.008 L 1247.999,1285.00L 1071.71,1285.00 z" horiz-adv-x="1533" />
<glyph unicode="&#xf303;" d="M 1223.999,741.001L 1536.00,741.001 l0.00-575.999 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,741.001 l 312.991,0.00 C 307.01,709.001, 304.00,679.72, 304.00,648.714c0.00-124.992, 52.993-248.286, 136.00-331.296
c 83.01-84.00, 201.985-135.552, 328.993-135.552c 124.992,0.00, 244.993,52.864, 327.999,136.864c 83.01,83.01, 136.00,204.736, 136.00,329.76
C 1232.991,679.496, 1230.015,709.001, 1223.999,741.001z M 1536.00,1125.00l0.00-224.00 L 1148.00,901.00 c-84.99,127.998-225.984,196.99-379.008,196.99c-155.008,0.00-295.008-68.992-379.998-196.99L0.00,901.00 l0.00,224.00
c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z
M 1414.017,1245.002c0.00,23.009-19.009,41.982-43.008,41.982l-127.998,0.00 c-24.00,0.00-43.008-19.009-43.008-41.982l0.00-128.992 c0.00-24.00, 19.009-43.008, 43.008-43.008l 127.998,0.00
c 24.00,0.00, 43.008,19.009, 43.008,43.008L 1414.017,1245.002 z M 483.007,645.00c0.00-156.992, 127.008-284.991, 286.016-284.991c 156.992,0.00, 284.991,127.998, 284.991,284.991
s-127.998,284.991-284.991,284.991S 483.007,801.992, 483.007,645.00z" horiz-adv-x="1533" />
<glyph unicode="&#xf31b;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 632.034,478.12c-27.104-24.384-78.40-73.216-164.286-73.216c-101.118,0.00-198.594,89.632-198.594,233.215
c0.00,183.998, 116.641,243.618, 205.825,243.618c 129.154,0.00, 157.409-78.785, 192.416-188.191l 47.264-149.377c 46.529-145.023, 134.754-261.887, 388.353-261.887
c 181.919,0.00, 305.025,57.057, 305.025,206.398c0.00,121.121-67.519,184.128-193.406,214.014l-93.919,20.64c-64.575,15.008-83.489,42.144-83.489,87.073
c0.00,50.624, 39.361,80.511, 103.936,80.511c 70.273,0.00, 108.671-26.625, 114.37-91.263l 146.783,18.175c-11.903,134.368-102.624,189.921-252.416,189.921
c-131.873,0.00-260.96-50.88-260.96-213.888c0.00-101.92, 48.479-165.889, 169.984-195.744l 99.743-24.00c 75.008-18.113, 99.999-49.728, 99.999-92.928
c0.00-55.458-52.801-77.858-152.513-77.858c-148.194,0.00-222.495,79.552-257.568,188.545l-48.671,149.762c-61.313,194.016-134.082,266.112-329.119,266.112
C 296.863,1007.75, 127.998,868.423, 127.998,632.232c0.00-227.328, 161.889-349.983, 332.416-349.983c 123.232,0.00, 185.727,43.809, 216.352,66.241L 632.034,478.12z" horiz-adv-x="1533" />
<glyph unicode="&#xf31c;" d="M 823.137,200.36C 777.217,166.697, 683.424,100.999, 498.656,100.999C 243.071,100.999,0.00,284.903,0.00,625.96C0.00,980.328, 253.281,1189.002, 513.986,1189.002
c 292.544,0.00, 401.569-107.712, 493.92-399.262l 72.671-224.416c 52.703-163.681, 164.385-282.625, 386.432-282.625c 149.569,0.00, 228.735,33.632, 228.735,116.609
c0.00,65.09-37.439,112.319-149.569,139.198l-149.695,35.872c-182.367,44.863-254.975,141.344-254.975,293.888C 1141.535,1112.744, 1335.008,1189.002, 1532.927,1189.002
c 224.353,0.00, 360.672-83.041, 378.207-284.897l-219.905-26.943c-8.831,96.513-65.986,136.864-171.553,136.864c-96.736,0.00-156.128-44.863-156.128-121.121
c0.00-67.392, 28.64-107.681, 125.377-130.175l 140.767-31.265C 1818.719,686.601, 1919.999,592.329, 1919.999,410.601c0.00-224.318-184.671-309.536-457.537-309.536
c-380.481,0.00-512.449,174.976-582.719,392.511l-70.368,224.385c-52.703,163.775-95.137,281.953-288.673,281.953c-134.176,0.00-308.928-88.991-308.928-364.959
c0.00-215.358, 146.209-350.017, 297.983-350.017c 128.671,0.00, 205.951,73.216, 246.144,109.76L 823.137,200.36z" horiz-adv-x="1918" />
<glyph unicode="&#xf30c;" d="M 1610.304,1183.272c 28.032-52.703, 42.654-118.881, 42.654-198.495c0.00-359.968-321.92-603.327-865.889-603.327l-63.934,0.00
c-48.223,0.00-96.45-36.992-106.529-82.975l-76.29-327.457c-12.351-45.983-60.574-84.095-106.529-84.095L 293.601-113.079 l-12.351-53.855
C 268.93-212.889, 300.352-251.00, 348.576-251.00l 224.318,0.00 c 46.014,0.00, 94.21,38.111, 106.561,84.095l 76.254,327.457c 10.08,45.983, 58.335,84.095, 106.561,84.095l 63.903,0.00
C 1473.503,244.649, 1792.00,484.616, 1792.00,846.856c0.00,160.384-60.543,265.793-164.864,328.608c-2.208,1.089-5.60,3.329-8.96,4.48
C 1614.816,1181.032, 1611.424,1182.152, 1610.304,1183.272z M 400.159,108.968l 77.374,326.337c 10.08,45.983, 58.303,84.095, 106.561,84.095l 63.934,0.00
c 547.327,0.00, 865.855,243.327, 865.855,602.175c0.00,156.992-58.303,264.673-166.016,328.577C 1236.833,1517.448, 1089.921,1541.00, 891.39,1541.00l-466.56,0.00
c-48.223,0.00-97.601-36.992-107.681-82.975L 1.984,108.968c-10.08-45.983, 19.072-84.095, 67.294-84.095l 224.318,0.00
C 341.824,24.874, 390.047,62.985, 400.159,108.968z M 584.097,891.719l 67.294,285.953c 10.08,46.014, 58.303,84.129, 106.561,84.129l 72.895,0.00
c 85.215,0.00, 150.273-14.591, 194.016-42.623c 43.743-30.271, 65.023-73.983, 65.023-131.201c0.00-180.576-142.433-280.385-383.551-280.385l-54.975,0.00
C 603.169,807.593, 571.742,845.704, 584.097,891.719z" />
<glyph unicode="&#xf31d;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 1008.00,1238.408C 933.825,1268.423, 852.831,1285.00, 768.001,1285.00c-75.618,0.00-148.127-13.153-215.617-37.215L 1008.00,792.136L 1008.00,1238.408 z
M 1361.377,405.001C 1391.359,479.177, 1408.001,560.167, 1408.001,645.00c0.00,236.862-128.671,443.681-320.002,554.368L 1088.00,405.001 L 1361.377,405.001 z M 528.00,51.624
C 602.175,21.639, 683.168,5.00, 768.001,5.00c 236.862,0.00, 443.681,128.671, 554.368,320.002L 528.00,324.999 L 528.00,51.624 z M 459.872,1205.959C 262.08,1097.063, 127.998,886.825, 127.998,645.00
c0.00-53.12, 6.559-104.671, 18.721-154.175L 660.863,1005.00L 459.872,1205.959z M 180.674,390.599c 54.751-126.305, 149.153-231.486, 267.327-299.967L 448.00,657.863 L 180.674,390.599z
" horiz-adv-x="1533" />
<glyph unicode="&#xf31e;" d="M 1055.999,821.641L 509.313,1368.296C 590.145,1397.192, 677.215,1413.002, 768.001,1413.002c 101.857,0.00, 199.073-19.873, 288.001-55.906L 1055.999,821.641 z M 1152.00,356.999L 1152.00,1310.248
C 1381.569,1177.448, 1536.00,929.256, 1536.00,645.00c0.00-101.857-19.873-199.073-55.87-288.001L 1152.00,356.999 z M 480.00,261.001l 953.214,0.00 C 1300.45,31.432, 1052.257-123.001, 768.001-123.001
c-101.857,0.00-199.073,19.873-288.001,55.87L 480.00,261.001 z M 639.359,1077.002L 22.463,460.071C 7.808,519.304,0.00,581.254,0.00,645.00c0.00,290.048, 160.832,542.559, 398.178,673.215
L 639.359,1077.002z M 383.999,660.361l0.00-680.606 C 242.081,61.833, 128.93,188.04, 63.199,339.593L 383.999,660.361z" horiz-adv-x="1533" />
<glyph unicode="&#xf30f;" d="M 448.031,535.272c0.00-60.609, 50.113-109.728, 111.969-109.728s 112.00,49.119, 112.00,109.728S 621.856,645.00, 560.00,645.00S 448.031,595.881, 448.031,535.272z
M 1120.00,535.272c0.00-60.609, 50.145-109.728, 112.00-109.728s 111.969,49.119, 111.969,109.728S 1293.856,645.00, 1232.00,645.00S 1120.00,595.881, 1120.00,535.272z M 1125.439,300.806
c 28.864,22.239, 70.623,17.409, 93.376-10.847c 22.718-28.287, 17.825-69.216-11.105-91.486c-80.287-62.017-202.657-102.014-311.714-102.014
s-231.423,40.033-311.714,102.014c-28.896,22.271-33.824,63.231-11.105,91.486c 22.754,28.256, 64.512,33.089, 93.376,10.847
c 46.207-35.679, 137.791-74.081, 229.439-74.081S 1079.232,265.127, 1125.439,300.806z M 1792.00,754.728c0.00,121.184-100.289,219.425-224.00,219.425
c-84.192,0.00-157.504-45.566-195.744-112.833c-115.168,61.694-255.391,101.566-408.223,110.751l 133.633,294.049l 255.839-72.352
c 23.072-64.032, 85.281-109.953, 158.498-109.953c 92.767,0.00, 168.00,73.696, 168.00,164.608C 1680.00,1339.305, 1604.767,1413.002, 1512.00,1413.002c-64.001,0.00-119.585-35.038-148.001-86.594
l-285.023,80.608c-31.938,9.023-65.695-6.367-79.264-36.096l-181.534-399.455c-149.023-10.273-285.761-49.791-398.401-110.113
C 381.535,928.615, 308.192,974.15, 224.00,974.15c-123.711,0.00-224.00-98.242-224.00-219.425c0.00-89.694, 54.975-166.719, 133.665-200.736C 119.522,512.777, 112.00,469.769, 112.00,425.575
C 112.00,122.601, 463.039-123.001, 896.00-123.001s 784.00,245.599, 784.00,548.576c0.00,44.222-7.521,87.199-21.634,128.383C 1737.057,587.975, 1792.00,665.031, 1792.00,754.728z
M 1512.00,1310.151c 34.783,0.00, 63.007-27.646, 63.007-61.73c0.00-34.08-28.224-61.73-63.007-61.73c-34.814,0.00-63.007,27.615-63.007,61.73
C 1448.993,1282.504, 1477.186,1310.151, 1512.00,1310.151z M 112.00,754.728c0.00,60.512, 50.239,109.728, 112.00,109.728c 44.639,0.00, 83.296-25.729, 101.216-62.85
c-58.527-43.456-107.04-93.632-142.912-148.673C 141.151,669.16, 112.00,708.648, 112.00,754.728z M 896.00,7.272c-359.488,0.00-651.007,187.296-651.007,418.271
c0.00,231.038, 291.487,418.271, 651.007,418.271s 651.007-187.264, 651.007-418.271C 1547.007,194.568, 1255.488,7.272, 896.00,7.272z M 1609.696,652.903
c-35.903,55.072-84.385,105.217-142.912,148.673c 17.983,37.121, 56.578,62.85, 101.216,62.85c 61.761,0.00, 112.00-49.217, 112.00-109.728
C 1680.00,708.648, 1650.817,669.16, 1609.696,652.903z" />
<glyph unicode="&#xf304;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 577.983,658.247l 459.263,229.246c 42.497-35.745, 90.751-54.239, 144.991-54.239c 124.002,0.00, 225.761,101.759, 225.761,225.984
C 1408.001,1183.24, 1306.238,1285.00, 1182.241,1285.00c-126.018,0.00-225.984-99.999-225.984-225.761c0.00-1.76,0.00-4.256, 0.99-6.752c0.00-2.495,0.00-4.991,0.00-5.761l-458.496-229.246
c-43.998,35.745-92.512,53.249-144.991,53.249C 228.00,870.76, 127.998,769.257, 127.998,645.00s 99.999-225.761, 225.761-225.761c 53.505,0.00, 101.759,18.239, 144.991,54.016
l 458.496-228.991c0.00-0.99,0.00-3.49,0.00-6.017c-0.99-3.266-0.99-5.761-0.99-7.486c0.00-125.758, 99.999-225.761, 225.984-225.761
C 1306.238,5.00, 1408.001,106.759, 1408.001,230.761c0.00,124.257-101.759,225.984-225.761,225.984c-54.239,0.00-102.498-17.504-144.991-53.505l-459.263,229.246
c 0.735,5.761, 1.76,9.986, 1.76,12.513S 578.753,651.751, 577.983,658.247z" horiz-adv-x="1533" />
<glyph unicode="&#xf305;" d="M 542.017,645.00c0.00-3.006-0.99-8.001-1.984-15.008l 551.009-275.009c 51.009,43.008, 108.993,64.001, 174.017,64.001c 148.992,0.00, 271.008-121.986, 271.008-271.008
S 1414.017-123.001, 1264.991-123.001c-151.008,0.00-271.008,120.001-271.008,271.008c0.00,1.984,0.00,4.991, 0.99,8.992c0.00,3.006,0.00,6.017,0.00,7.007l-550.014,275.009
c-51.999-43.008-110.016-64.992-174.017-64.992C 120.001,373.992,0.00,496.008,0.00,645.00s 120.001,271.008, 271.008,271.008c 63.007,0.00, 120.992-20.993, 174.017-64.001l 550.014,275.009
c0.00,0.99,0.00,4.00,0.00,7.007c-0.99,3.006-0.99,6.017-0.99,8.001C 993.983,1293.00, 1113.984,1413.002, 1264.991,1413.002C 1414.017,1413.002, 1536.00,1291.016, 1536.00,1141.993
s-121.986-271.008-271.008-271.008c-64.992,0.00-123.008,22.015-174.017,64.992L 540.001,660.999C 540.991,653.001, 542.017,648.007, 542.017,645.00z" horiz-adv-x="1533" />
<glyph unicode="&#xf309;" d="M 1471.999,533.991c 4.991,36.001, 8.001,72.993, 8.001,111.01c0.00,192.993-79.999,376.992-207.008,504.99c-127.998,127.008-312.00,208.002-504.99,208.002
c-39.008,0.00-75.999-3.006-112.00-8.992c-68.992,43.008-144.00,64.001-225.984,64.001c-155.998,0.00-295.998-81.984-372.001-214.014C 19.009,1132.007,0.00,1060.009,0.00,981.99
c0.00-79.999, 20.993-155.008, 64.001-225.984C 59.007,716.999, 56.00,680.007, 56.00,645.00c0.00-192.993, 79.999-376.002, 208.002-503.01c 127.008-127.998, 311.006-208.992, 504.00-208.992
c 40.992,0.00, 78.015,3.006, 110.016,8.001c 71.008-43.008, 145.985-64.001, 225.984-64.001c 156.992,0.00, 296.993,81.984, 374.017,215.008C 1516.991,157.993, 1536.00,229.991, 1536.00,308.009
C 1536.00,389.994, 1515.006,464.999, 1471.999,533.991z M 1105.983,321.001c-31.006-43.008-75.008-76.993-131.999-102.014c-59.007-24.00-127.008-36.001-206.017-36.001
c-192.00,0.00-288.992,65.986-342.016,145.985C 398.016,369.00, 383.999,408.008, 383.999,446.984c0.00,23.009, 8.992,41.982, 25.984,57.984c 15.998,16.992, 36.992,24.994, 64.001,24.994
c 40.992,0.00, 71.999-28.99, 92.001-73.983c 24.00-56.991, 47.008-92.001, 96.001-116.991c 24.994-12.002, 59.007-17.983, 99.999-17.983
c 56.991,0.00, 103.008,12.002, 137.984,36.992c 36.001,23.009, 54.016,52.993, 54.016,89.985c0.00,56.991-39.008,89.985-102.014,111.01
c-27.009,8.992-68.992,19.999-124.002,31.006c-136.993,31.006-228.991,67.007-284.00,135.009c-28.00,35.007-41.982,79.009-41.982,131.008
c0.00,100.993, 59.007,177.986, 169.984,220.993c 56.991,20.993, 121.986,31.006, 193.984,31.006c 116.991,0.00, 203.007-31.006, 260.001-75.008
c 59.007-44.992, 84.00-97.983, 84.00-145.985c0.00-43.008-39.008-86.016-89.985-86.016c-44.992,0.00-60.991,17.983-89.985,67.007
c-32.001,64.001-70.017,104.993-177.986,104.993c-99.008,0.00-164.00-44.992-164.00-100.993c0.00-32.991, 22.015-59.007, 57.984-75.999
c 40.992-20.993, 71.008-28.00, 145.985-44.992c 108.993-20.993, 199.007-49.983, 260.001-89.985c 31.006-20.993, 55.01-47.008, 73.983-78.015
C 1143.009,549.993, 1152.00,512.007, 1152.00,468.008C 1152.00,412.999, 1136.993,364.009, 1105.983,321.001z" horiz-adv-x="1533" />
<glyph unicode="&#xf30b;" d="M 1023.967,286.954L 1023.967,977.097 c 1.057,12.513, 8.159,21.119, 22.431,25.984C 1094.208,1020.329, 1143.135,1028.999, 1194.014,1028.999
c 211.743,0.00, 386.911-152.799, 406.242-349.888c 29.505,11.518, 59.073,17.311, 88.609,17.311c 127.263,0.00, 231.137-98.049, 231.137-218.176
C 1919.999,358.056, 1816.129,261.001, 1688.866,261.001c-425.631,0.00-638.431,0.00-639.426,0.959C 1034.208,262.919, 1025.024,271.561, 1023.967,286.954z M 896.00,638.312l-44.222,373.537
C 849.503,1023.241, 842.527,1028.999, 830.879,1028.999s-20.895-5.761-23.265-17.154L 768.001,638.312l 39.617-360.161C 809.984,266.696, 819.231,261.001, 830.879,261.001
s 18.623,5.694, 20.895,17.154L 896.00,638.312z M 640.00,575.43l-44.222,311.266C 593.505,896.234, 586.527,901.00, 574.879,901.00s-20.895-4.767-23.265-14.304
L 512.001,575.43l 39.617-300.129C 553.984,265.736, 563.231,261.001, 574.879,261.001s 18.623,4.736, 20.895,14.304L 640.00,575.43z M 383.999,449.672l-44.222,186.753
C 337.505,642.12, 330.529,645.00, 318.881,645.00s-20.895-2.88-23.265-8.607L 256.00,449.672l 39.617-180.065C 297.983,263.846, 307.234,261.001, 318.881,261.001
s 18.623,2.849, 20.895,8.607L 383.999,449.672z M 127.998,450.792l-44.222,124.513C 81.504,579.049, 74.529,580.999, 62.881,580.999s-20.895-1.953-23.265-5.729L0.00,450.792
l 39.617-120.064C 41.982,326.92, 51.233,324.999, 62.881,324.999s 18.623,1.922, 20.895,5.729L 127.998,450.792z" horiz-adv-x="1918" />
<glyph unicode="&#xf30a;" d="M 831.999,1476.999C 372.481,1476.999,0.00,1104.519,0.00,645.00c0.00-210.018, 77.858-401.919, 206.273-548.222c 130.144,130.175, 308.48,203.263, 513.09,196.672
c 260.96-8.607, 467.072-132.16, 585.249-333.151C 1521.632,110.343, 1664.001,360.968, 1664.001,645.00C 1664.001,1104.519, 1291.521,1476.999, 831.999,1476.999z M 1238.688,348.487
c-14.655-24.287-45.983-31.777-70.175-17.154c-192.769,117.663-435.102,144.351-720.478,79.202c-27.391-6.335-54.975,10.752-61.152,38.367
c-6.335,27.328, 10.784,54.912, 38.335,61.152c 312.417,71.424, 580.415,40.575, 796.544-91.329C 1245.888,404.039, 1253.504,372.455, 1238.688,348.487z
M 1339.167,584.457c-18.399-30.209-57.953-39.617-87.871-20.993c-220.511,135.391-556.51,174.657-817.344,95.617c-33.919-10.304-69.632,8.831-79.712,42.529
c-10.175,33.919, 8.768,69.601, 42.529,79.712c 297.826,90.59, 668.16,46.753, 921.442-108.832C 1348.319,653.704, 1357.793,614.536, 1339.167,584.457z
M 1347.713,828.872c-264.257,157.185-700.385,171.489-952.704,95.007c-40.575-12.481-83.328,10.399-95.68,50.977c-12.159,40.575, 10.721,83.489, 51.135,95.711
c 289.793,87.938, 771.264,71.008, 1075.617-109.791c 36.449-21.634, 48.447-68.673, 26.88-105.119C 1431.265,819.24, 1384.257,807.337, 1347.713,828.872z
M 713.983,44.487c-117.089,3.808-214.498-41.758-285.568-127.201C 547.872-149.143, 685.57-186.999, 831.999-186.999c 70.56,0.00, 139.233,8.768, 204.704,25.442
C 973.92-32.729, 864.51,39.784, 713.983,44.487z" horiz-adv-x="1662.5" />
<glyph unicode="&#xf320;" d="M 717.535,1337.863l 37.471,50.015c 9.986,13.31, 24.801,22.082, 41.248,24.448c 3.006,0.416, 6.017,0.672, 8.96,0.672
c 13.44,0.00, 26.625-4.319, 37.538-12.45l 652.543-486.304c 27.776-20.671, 33.407-59.776, 12.674-87.521l-37.502-49.983
c-9.95-13.216-24.801-22.015-41.216-24.479c-3.006-0.385-6.017-0.578-8.96-0.578c-13.472,0.00-26.656,4.319-37.538,12.481L 730.177,1250.535
C 702.433,1271.143, 696.801,1310.28, 717.535,1337.863z M 513.726,982.985c-5.663,15.586-4.896,32.736, 2.079,47.775l 26.526,56.609
c 10.657,22.718, 33.215,36.096, 56.801,36.096c 8.897,0.00, 17.92-1.922, 26.495-5.918L 1364.16,774.343c 31.36-14.56, 44.929-51.775, 30.271-83.041l-26.463-56.543
c-10.591-22.754-33.247-36.064-56.833-36.064c-8.865,0.00-17.92,1.922-26.401,5.856L 546.175,947.719C 531.104,954.729, 519.425,967.43, 513.726,982.985z
M 396.449,658.951l 13.534,61.022c 3.584,16.16, 13.472,30.303, 27.489,39.20c 10.143,6.401, 21.858,9.825, 33.695,9.825
c 4.543,0.00, 9.055-0.511, 13.534-1.505l 795.553-175.745c 33.792-7.392, 55.136-40.80, 47.617-74.529l-13.569-60.897
c-3.552-16.223-13.472-30.271-27.489-39.20c-10.143-6.496-21.858-9.726-33.663-9.726c-4.543,0.00-9.089,0.416-13.569,1.407L 444.031,584.52
C 410.238,591.975, 388.895,625.351, 396.449,658.951z M 1247.999,197.511C 1247.999,162.92, 1219.936,100.999, 1185.345,100.999L 350.654,100.999 C 316.064,100.999, 288.001,162.92, 288.001,197.511l0.00,66.304
C 288.001,298.311, 316.064,293.001, 350.654,293.001l 834.687,0.00 C 1219.936,293.001, 1247.999,298.311, 1247.999,263.815L 1247.999,197.511 z M 1536.00,363.912l0.00-437.248 C 1536.00-107.801, 1492.095-123.001, 1457.505-123.001L 78.529-123.001
C 43.904-123.001,0.00-107.801,0.00-73.336L0.00,363.912 C0.00,398.505, 43.904,421.00, 78.529,421.00l 62.657,0.00 C 175.84,421.00, 192.00,398.505, 192.00,363.912L 192.00,5.00 l 1152.00,0.00 L 1344.00,363.912
C 1344.00,398.505, 1360.159,421.00, 1394.816,421.00l 62.689,0.00 C 1492.095,421.00, 1536.00,398.505, 1536.00,363.912z" horiz-adv-x="1533" />
<glyph unicode="&#xf321;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 1216.001,100.999l0.00,192.00 c-68.159-42.273-157.791-79.614-226.594-79.614c-38.721,0.00-73.153,8.512-103.296,25.567
c-22.494,12.575-43.393,34.178-51.583,55.296c-8.417,21.024-7.329,63.871-7.329,137.984L 827.20,741.001 L 1152.00,741.001 l0.00,224.00 L 831.999,965.001 L 831.999,1285.00 l-198.145,0.00
c-8.673-65.951-24.448-120.575-47.649-163.135c-22.88-42.752-53.505-79.359-91.522-110.016C 456.575,981.543, 373.537,949.286, 320.002,933.001l0.00-192.00 l 206.049,0.00 l0.00-429.313
c0.00-58.559, 6.303-103.394, 19.358-134.144c 13.184-30.657, 36.449-59.84, 70.144-87.23c 33.695-27.198, 74.337-48.447, 122.049-63.329
C 785.407,12.33, 822.21,5.00, 884.289,5.00c 54.593,0.00, 105.599,5.247, 152.705,15.617C 1083.936,30.887, 1157.919,43.399, 1216.001,69.001L 1216.001,100.999 z" horiz-adv-x="1533" />
<glyph unicode="&#xf322;" d="M 1023.999-39.32c-69.601-30.849-132.80-52.577-189.248-65.055C 778.207-116.761, 717.118-123.001, 651.522-123.001c-74.561,0.00-118.626,8.831-175.871,26.495
c-57.215,17.791-106.113,43.20-146.559,75.806c-40.481,32.865-68.481,67.809-84.161,104.703c-15.617,36.992-23.359,90.689-23.359,160.895L 221.567,772.999 L0.00,772.999 l0.00,228.095
c 64.032,19.551, 138.303,47.68, 183.904,84.224c 45.791,36.673, 82.40,80.577, 110.016,131.904c 27.713,51.233, 46.721,116.609, 57.151,195.776l 231.903,0.00 l0.00-383.999 L 960.001,1028.999 l0.00-256.00 L 582.977,772.999
l0.00-383.296 c0.00-89.121-1.183-140.48, 8.799-165.76c 9.95-25.119, 34.976-51.233, 62.079-66.272c 36.127-20.384, 77.311-30.558, 123.778-30.558
c 82.561,0.00, 164.672,25.249, 246.337,75.775L 1023.967-39.32 L 1023.999-39.32z" horiz-adv-x="1022" />
<glyph unicode="&#xf323;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 128.065,895.369l 52.545-65.986c 2.849,2.079, 7.263,5.60, 12.383,9.121c 10.241,7.168, 43.008,26.625, 66.465,35.934
c 23.233,8.736, 53.12,10.881, 65.538-4.224c 10.209-11.585, 29.921-63.329, 59.199-155.138c 29.344-92.575, 59.745-189.535, 91.168-290.815
c 31.423-101.185, 54.114-165.056, 66.496-190.047c 17.504-34.657, 42.242-68.352, 78.015-96.288c 35.809-28.735, 73.79-45.024, 121.279-40.96
c 47.456,4.511, 86.625,33.152, 137.631,73.441c 51.201,39.294, 124.19,106.207, 193.631,177.762c 69.153,71.967, 144.417,167.391, 202.689,262.273
c 58.559,94.657, 106.561,211.456, 126.273,320.127c 37.345,201.506-88.225,280.543-232.001,259.84c-145.824-20.864-279.391-135.905-305.697-291.487
c 47.456,28.704, 91.263,35.679, 120.257,25.119c 29.344-11.518, 49.822-38.175, 55.615-72.447c 5.663-34.688-3.647-79.681-27.905-124.831
c-37.023-69.919-71.519-124.383-102.945-165.151c-32.063-41.023-56.704-61.887-75.04-61.887c-16.706,0.00-32.162,19.582-46.592,58.335
c-14.69,37.793-33.537,102.529-57.729,193.823c-8.768,36.288-19.072,96.673-26.271,143.454c-7.231,45.857-19.582,105.374-31.391,148.607
c-12.481,43.071-33.537,85.407-56.801,110.561c-24.00,25.025-60.032,38.017-102.945,29.376c-61.313-11.518-143.199-61.855-206.591-115.615
c-64.257-54.526-121.888-111.296-153.982-146.335C 135.327,904.007, 127.295,895.369, 128.065,895.369z" horiz-adv-x="1533" />
<glyph unicode="&#xf324;" d="M 0.063,995.43l 73.535-92.48c 4.095,3.042, 10.241,8.032, 17.377,13.055c 14.304,10.049, 60.256,37.184, 92.96,50.239
c 32.736,12.065, 74.624,15.071, 92.001-6.017c 14.273-16.065, 41.856-88.448, 82.751-217.056c 40.831-129.633, 83.713-265.31, 127.648-407.008
s 75.618-231.137, 92.992-266.305c 24.511-48.255, 59.266-95.456, 109.28-134.655c 50.046-40.191, 103.201-63.329, 169.60-57.281s 121.569,46.207, 193.056,102.498
c 71.519,55.296, 173.695,148.704, 270.721,249.218c 97.055,100.513, 202.304,234.143, 284.00,366.817c 81.76,132.671, 149.153,296.481, 176.736,448.192
c 52.129,282.433-123.585,392.959-324.863,363.839c-204.32-29.152-391.265-189.952-428.033-408.034c 66.367,40.226, 127.68,50.239, 168.577,35.20
c 40.863-16.096, 69.472-53.249, 77.633-101.504c 8.194-48.255-5.12-111.552-38.815-174.85c-52.097-97.503-100.097-173.887-144.032-231.168
c-44.961-57.281-79.681-86.401-105.217-86.401c-23.489,0.00-44.929,27.136-65.376,81.375c-20.479,53.281-47.04,143.714-80.703,271.327
c-12.289,51.264-26.562,135.649-36.768,200.991c-10.209,64.319-27.584,147.711-43.904,208.002c-17.377,60.319-47.04,119.616-79.712,154.784
c-33.695,35.168-83.745,53.249-144.032,41.184c-85.823-16.065-200.225-86.401-289.089-161.791c-89.887-76.384-170.625-155.774-215.551-204.992
C 10.273,1007.495-0.959,995.43, 0.063,995.43z" />
<glyph unicode="&#xf325;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 605.28,106.858c 51.614-14.784, 106.176-22.848, 162.719-22.848c 67.07,0.00, 131.393,11.294, 191.296,31.808
c-1.536,2.401-2.975,4.928-4.127,7.71l-177.023,472.416L 605.28,106.858z M 1273.44,914.154c 2.464-17.889, 3.871-37.023, 3.871-57.697
c0.00-56.896-10.944-120.897-43.774-200.928L 1057.599,160.134C 1228.832,257.385, 1344.00,438.055, 1344.00,645.00C 1344.00,742.57, 1318.401,834.249, 1273.44,914.154z M 516.673,140.167
L 241.889,873.319C 209.919,803.561, 192.00,726.344, 192.00,645.00C 192.00,422.985, 324.481,231.048, 516.673,140.167z M 323.809,952.457c 60.225,0.00, 153.503,7.137, 153.503,7.137
c 31.073,1.792, 34.72-42.654, 3.678-46.207c0.00,0.00-31.23-3.552-65.919-5.345l 209.758-607.649l 126.049,368.193l-89.761,239.456
c-31.041,1.792-60.417,5.345-60.417,5.345c-31.073,1.792-27.391,47.999, 3.647,46.207c0.00,0.00, 95.105-7.137, 151.68-7.137
c 60.225,0.00, 153.534,7.137, 153.534,7.137c 31.073,1.792, 34.72-42.654, 3.678-46.207c0.00,0.00-31.265-3.552-65.951-5.345l 208.19-603.039l 57.474,186.977
c 24.832,77.633, 43.809,133.343, 43.809,181.346c0.00,69.346-25.599,117.345-47.456,154.721c-29.183,46.207-56.609,85.344-56.609,131.551
c0.00,51.551, 40.159,99.55, 96.705,99.55c 2.558,0.00, 4.991-0.319, 7.455-0.448c-102.462,91.423-239.008,147.298-388.959,147.298
c-201.215,0.00-378.273-100.576-481.246-252.833C 300.255,952.713, 312.991,952.457, 323.809,952.457z M 768.001,1317.00C 396.865,1317.00, 96.001,1016.136, 96.001,645.00s 300.863-672.00, 672.00-672.00
s 672.00,300.863, 672.00,672.00S 1139.134,1317.00, 768.001,1317.00z" horiz-adv-x="1533" />
<glyph unicode="&#xf326;" d="M 192.00,645.00c0.00-222.016, 132.478-413.952, 324.671-504.833L 241.889,873.319C 209.919,803.561, 192.00,726.344, 192.00,645.00z M 1156.831,673.319
c0.00,69.346-25.599,117.345-47.456,154.721c-29.183,46.207-56.609,85.344-56.609,131.551c0.00,51.551, 40.159,99.55, 96.705,99.55
c 2.558,0.00, 4.991-0.319, 7.455-0.448c-102.462,91.423-239.008,147.298-388.959,147.298c-201.215,0.00-378.273-100.576-481.246-252.833
c 13.503-0.448, 26.239-0.672, 37.054-0.672c 60.225,0.00, 153.503,7.137, 153.503,7.137c 31.073,1.792, 34.72-42.654, 3.678-46.207
c0.00,0.00-31.23-3.552-65.919-5.345l 209.758-607.649l 126.049,368.193l-89.761,239.456c-31.041,1.792-60.417,5.345-60.417,5.345
c-31.073,1.792-27.391,47.999, 3.647,46.207c0.00,0.00, 95.105-7.137, 151.68-7.137c 60.225,0.00, 153.534,7.137, 153.534,7.137
c 31.073,1.792, 34.72-42.654, 3.678-46.207c0.00,0.00-31.265-3.552-65.951-5.345l 208.19-603.039l 57.474,186.977
C 1137.889,569.606, 1156.831,625.32, 1156.831,673.319z M 778.113,595.944l-172.834-489.087c 51.614-14.784, 106.176-22.848, 162.719-22.848
c 67.07,0.00, 131.393,11.294, 191.296,31.808c-1.536,2.401-2.975,4.928-4.127,7.71L 778.113,595.944z M 1273.44,914.154
c 2.464-17.889, 3.871-37.023, 3.871-57.697c0.00-56.896-10.944-120.897-43.774-200.928L 1057.599,160.134C 1228.832,257.385, 1344.00,438.055, 1344.00,645.00
C 1344.00,742.57, 1318.401,834.249, 1273.44,914.154z M 768.001,1413.002C 343.84,1413.002,0.00,1069.161,0.00,645.00s 343.84-768.001, 768.001-768.001s 768.001,343.84, 768.001,768.001S 1192.159,1413.002, 768.001,1413.002z M 768.001-27.00
C 396.865-27.00, 96.001,273.863, 96.001,645.00S 396.865,1317.00, 768.001,1317.00s 672.00-300.863, 672.00-672.00S 1139.134-27.00, 768.001-27.00z" horiz-adv-x="1533" />
<glyph unicode="&#xf327;" d="M 1536.00,1125.00l0.00-960.001 c0.00-79.328-28.224-147.20-84.641-203.361C 1395.202-94.778, 1327.33-123.001, 1247.999-123.001L 288.001-123.001 c-79.328,0.00-147.168,28.224-203.522,84.641
C 28.13,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.13,147.137, 84.48,203.553C 140.833,1384.872, 208.674,1413.002, 288.001,1413.002l 960.001,0.00 c 79.328,0.00, 147.20-28.13, 203.361-84.448
C 1507.775,1272.137, 1536.00,1204.328, 1536.00,1125.00z M 891.327,468.169c-21.983-21.759-3.329-61.345-3.329-61.345l 165.631-271.519c0.00,0.00, 27.265-35.84, 50.816-35.84
c 23.713,0.00, 47.103,19.04, 47.103,19.04l 130.945,183.774c0.00,0.00, 13.279,23.328, 13.503,43.488c 0.609,28.833-43.743,36.831-43.743,36.831l-310.303,97.793
C 941.92,480.36, 911.649,488.20, 891.327,468.169z M 875.679,605.034c 15.841-26.432, 59.678-18.721, 59.678-18.721l 309.438,88.767
c0.00,0.00, 42.144,16.769, 48.223,39.294c 5.856,22.494-6.976,49.535-6.976,49.535l-147.903,170.881c0.00,0.00-12.898,21.697-39.361,23.744
c-29.376,2.464-47.394-32.319-47.394-32.319l-174.944-270.014C 876.449,656.20, 861.087,629.351, 875.679,605.034z M 729.473,710.376
c 36.575,8.799, 42.242,60.672, 42.242,60.672l-2.464,432.288c0.00,0.00-5.631,53.407-29.985,67.84c-38.304,22.817-49.665,10.913-60.641,9.313l-256.767-93.695
c0.00,0.00-25.28-8.159-38.241-28.704c-18.785-29.183, 18.848-71.999, 18.848-71.999l 267.169-357.119C 669.63,728.937, 695.874,702.089, 729.473,710.376z
M 665.984,535.401c 1.089,33.247-40.768,53.281-40.768,53.281l-276.098,136.927c0.00,0.00-40.929,16.513-60.736,4.991
c-15.232-8.736-28.766-24.864-30.016-38.815L 240.32,474.407c0.00,0.00-2.688-37.569, 7.231-54.751c 14.049-24.224, 60.417-7.392, 60.417-7.392l 322.305,69.951
C 642.88,490.601, 664.738,491.207, 665.984,535.401z M 746.305,418.056c-27.744,13.919-60.834-14.945-60.834-14.945l-215.904-233.215
c0.00,0.00-26.943-35.648-20.129-57.568c 6.433-20.545, 17.185-30.625, 32.225-37.919l 216.832-67.20c0.00,0.00, 26.302-5.313, 46.207,0.385
c 28.256,8.001, 23.009,51.489, 23.009,51.489l 4.865,315.616C 772.608,374.762, 771.488,405.257, 746.305,418.056z" horiz-adv-x="1533" />
<glyph unicode="&#xf328;" d="M 789.569,432.809c-26.688-26.145-4.127-73.696-4.127-73.696l 200.799-325.857c0.00,0.00, 32.991-42.945, 61.569-42.945
c 28.672,0.00, 57.057,22.88, 57.057,22.88l 158.753,220.546c0.00,0.00, 15.998,27.808, 16.384,52.192c 0.609,34.657-53.183,44.16-53.183,44.16l-375.872,117.281
C 850.913,447.369, 814.048,456.872, 789.569,432.809z M 770.497,597.033c 19.264-31.678, 72.289-22.463, 72.289-22.463l 375.039,106.529
c0.00,0.00, 51.135,20.192, 58.433,47.135c 7.168,26.943-8.449,59.423-8.449,59.423l-179.232,205.121c0.00,0.00-15.487,25.953-47.775,28.542
c-35.521,2.943-57.376-38.846-57.376-38.846l-211.935-323.998C 771.488,658.44, 752.735,626.184, 770.497,597.033z M 593.313,723.368
c 44.16,10.559, 51.166,72.895, 51.166,72.895L 641.473,1315.047c0.00,0.00-6.657,64.001-36.257,81.344c-46.431,27.36-60.162,13.086-73.504,11.168L 220.385,1295.142
c0.00,0.00-30.527-9.793-46.368-34.496c-22.718-35.038, 23.009-86.335, 23.009-86.335l 323.68-428.641C 520.671,745.671, 552.639,713.607, 593.313,723.368z
M 516.414,513.418c 1.12,40.002-49.441,64.032-49.441,64.032L 132.289,741.736c0.00,0.00-49.599,19.873-73.696,6.017c-18.463-10.559-34.814-29.761-36.417-46.687
l-21.791-260.704c0.00,0.00-3.266-45.154, 8.768-65.727c 17.056-29.183, 73.216-8.865, 73.216-8.865l 390.719,83.937
C 488.351,459.591, 514.945,460.456, 516.414,513.418z M 613.567,372.679c-33.537,16.737-73.696-17.92-73.696-17.92l-261.601-279.87
c0.00,0.00-32.672-42.784-24.384-69.055c 7.808-24.64, 20.80-36.865, 39.105-45.503l 262.784-80.608c0.00,0.00, 31.808-6.401, 55.937,0.385
c 34.272,9.664, 27.968,61.73, 27.968,61.73l 5.918,378.913C 645.60,320.743, 644.255,357.255, 613.567,372.679z" horiz-adv-x="1277.5" />
<glyph unicode="&#xf30d;" d="M 1556.639,1413.002L 361.312,1413.002 C 161.375,1413.002,0.00,1254.889,0.00,1060.009l0.00-704.00 C0.00,161.128, 161.375,5.00, 361.312,5.00l 1195.327,0.00 C 1756.545,5.00, 1919.999,163.113, 1919.999,356.008l0.00,704.00
C 1919.999,1252.807, 1755.488,1413.002, 1556.639,1413.002z M 1318.177,709.001L 721.567,238.664L 721.567,1180.36 L 1318.177,709.001z" horiz-adv-x="1918" />
<glyph unicode="&#xf30e;" d="M 8.897,67.143C 2.975,174.089,0.00,254.312,0.00,307.785c0.00,106.978-1.505,303.072, 65.345,369.918c 34.178,32.672, 77.249,50.495, 129.248,53.473
c 99.519,4.48, 248.098,7.423, 447.135,7.423c 199.073,0.00, 347.617-2.975, 447.167-7.423c 105.473-5.954, 178.241-77.249, 185.696-182.721
c 4.448-89.121, 7.392-169.344, 7.392-240.671c0.00-142.594, 2.975-303.041-63.871-368.385c-34.143-34.178-77.249-51.999-129.216-54.975
C 989.345-120.023, 840.766-123.001, 641.728-123.001c-199.041,0.00-347.585,2.975-447.135,7.423C 89.121-109.625, 16.352-38.33, 8.897,67.143z M 99.519,598.951l0.00-81.697
l 90.59,0.00 l0.00-484.288 l 87.647,0.00 L 277.76,517.257 l 90.626,0.00 l0.00,81.697 L 99.519,598.951 z M 265.92,1185.704L 196.095,1413.002l 89.121,0.00 l 56.448-225.792l 5.954,0.00 L 401.089,1413.002l 89.121,0.00 l-68.352-219.839
c-22.271-72.80-34.143-109.953-34.143-111.391l0.00-234.721 L 300.066,847.048 l0.00,224.318 c-4.48,28.224-10.399,47.52-20.769,77.249
C 273.312,1163.43, 268.863,1175.303, 265.92,1185.704z M 368.417,450.407l0.00-352.065 c0.00-47.52, 17.825-71.327, 53.473-71.327c 31.199,0.00, 62.401,17.857, 90.626,51.999
l0.00-46.05 l 77.249,0.00 L 589.76,450.407 l-77.249,0.00 l0.00-317.919 c-20.80-20.769-35.648-31.199-46.05-31.199c-13.377,0.00-20.769,8.897-20.769,28.224L 445.697,450.407 L 368.417,450.407 z
M 485.761,952.489l0.00,216.863 c0.00,66.847, 49.024,105.473, 115.871,105.473c 65.345,0.00, 109.953-43.071, 109.953-108.447l0.00-215.393 c0.00-71.295-41.601-114.37-112.896-114.37
C 528.832,836.615, 485.761,882.696, 485.761,952.489z M 565.985,1173.832l0.00-231.745 c0.00-22.271, 10.399-34.143, 32.672-34.143s 34.143,11.872, 34.143,37.121l0.00,227.297
c0.00,17.857-16.352,31.199-34.143,31.199C 580.801,1203.526, 565.985,1191.654, 565.985,1173.832z M 665.504,598.951l0.00-565.985 l 78.719,0.00 L 744.222,64.20
c 19.327-25.28, 44.576-37.153, 74.273-37.153c 46.05,0.00, 69.825,31.199, 69.825,92.096l0.00,231.745 c0.00,69.825-25.249,105.473-75.743,105.473
c-25.249,0.00-47.52-13.377-68.352-40.127l0.00,182.721 L 665.504,598.951 z M 744.222,111.719l0.00,261.44 c 10.399,10.399, 22.271,16.352, 32.672,16.352
c 22.271,0.00, 32.672-13.377, 32.672-41.601l0.00-219.839 c0.00-23.776-8.897-35.648-28.224-35.648C 768.001,92.392, 754.625,98.345, 744.222,111.719z M 778.40,912.361L 778.40,1264.423
l 77.217,0.00 l0.00-319.361 c0.00-19.327, 7.423-28.224, 20.80-28.224s 28.224,10.399, 46.05,31.199L 922.463,1264.423 l 77.217,0.00 l0.00-417.406 l-77.217,0.00 l0.00,46.014
c-28.256-34.143-59.423-51.968-90.626-51.968C 796.226,841.094, 778.40,864.839, 778.40,912.361z M 947.744,339.016l0.00-188.671
c0.00-75.775, 37.121-129.248, 112.864-129.248c 77.249,0.00, 115.871,43.102, 115.871,129.248l0.00,31.199 l-80.224,0.00 c0.00-1.505,0.00-8.897, 1.505-19.327
c0.00-11.872,0.00-20.80-1.505-25.249c-1.474-4.48-1.474-11.903-2.975-19.327c-2.975-17.857-13.377-23.776-31.199-23.776
c-22.271,0.00-34.143,19.327-34.143,59.423l0.00,78.719 l 148.543,0.00 l0.00,106.978 c0.00,75.743-35.648,121.825-111.391,121.825C 993.793,460.809, 947.744,410.28, 947.744,339.016z
M 1096.288,297.415l-68.32,0.00 L 1027.967,341.959 c0.00,31.199, 11.872,46.014, 34.143,46.014s 34.143-14.847, 34.143-46.014L 1096.256,297.415 z" horiz-adv-x="1277.5" />
<glyph unicode="&#x20;" horiz-adv-x="896" />
<glyph class="hidden" unicode="&#xf000;" d="M0,1541L 1792 -251L0 -251 z" horiz-adv-x="0" />
</font></defs></svg>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Veridical
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20131203
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
<!--[if IE 6]><link href="default_ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li class="current_page_item"><a href="#" accesskey="1" title="">Homepage</a></li>
<li><a href="#" accesskey="2" title="">Our Clients</a></li>
<li><a href="#" accesskey="3" title="">About Us</a></li>
<li><a href="#" accesskey="4" title="">Careers</a></li>
<li><a href="#" accesskey="5" title="">Contact Us</a></li>
</ul>
</div>
<div id="logo">
<h1><a href="#">Veridical</a></h1>
<span>Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a></span> </div>
</div>
</div>
<div id="wrapper1">
<div id="welcome" class="container">
<div class="title">
<h2>Welcome to our website</h2>
<span class="byline">Mauris vulputate dolor sit amet nibh</span> </div>
<div class="content">
<p>This is <strong>Veridical</strong>, a free, fully standards-compliant CSS template designed by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>. The photos in this template are from <a href="http://fotogrph.com/"> Fotogrph</a>. This free template is released under the <a href="http://templated.co/license">Creative Commons Attribution</a> license, so you're pretty much free to do whatever you want with it (even use it commercially) provided you give us credit for it. Have fun :) </p>
<a href="#" class="button">Etiam posuere</a> </div>
</div>
</div>
<div id="wrapper3">
<div id="portfolio" class="container">
<div class="title">
<h2>Design Portfolio</h2>
<span class="byline">Integer sit amet pede vel arcu aliquet pretium</span> </div>
<div class="pbox1">
<div class="column1">
<div class="box"> <span class="icon icon-comments"></span>
<h3>Vestibulum venenatis</h3>
<p>Fermentum nibh augue praesent a lacus at urna congue rutrum.</p>
</div>
</div>
<div class="column2">
<div class="box"> <span class="icon icon-cogs"></span>
<h3>Praesent scelerisque</h3>
<p>Vivamus fermentum nibh in augue praesent urna congue rutrum.</p>
</div>
</div>
<div class="column3">
<div class="box"> <span class="icon icon-coffee"></span>
<h3>Donec dictum metus</h3>
<p>Vivamus fermentum nibh in augue praesent urna congue rutrum.</p>
</div>
</div>
<div class="column4">
<div class="box"> <span class="icon icon-cloud"></span>
<h3>Mauris vulputate dolor</h3>
<p>Rutrum fermentum nibh in augue praesent urna congue rutrum.</p>
</div>
</div>
</div>
<div class="pbox2">
<div class="column1">
<div class="box"> <span class="icon icon-asterisk"></span>
<h3>Rhoncus volutpat</h3>
<p>Fermentum nibh augue praesent a lacus at urna congue rutrum.</p>
</div>
</div>
<div class="column2">
<div class="box"> <span class="icon icon-headphones"></span>
<h3>Sed odio sagittis</h3>
<p>Vivamus fermentum nibh in augue praesent urna congue rutrum.</p>
</div>
</div>
<div class="column3">
<div class="box"> <span class="icon icon-user"></span>
<h3>Aenean elementum</h3>
<p>Vivamus fermentum nibh in augue praesent urna congue rutrum.</p>
</div>
</div>
<div class="column4">
<div class="box"> <span class="icon icon-signal"></span>
<h3>Etiam posuere augue</h3>
<p>Rutrum fermentum nibh in augue praesent urna congue rutrum.</p>
</div>
</div>
</div>
</div>
</div>
<div id="wrapper2">
<div id="featured" class="container">
<div class="box1">
<h2><span class="icon icon-group"></span>Fusce ultrices fringilla</h2>
<p>Aliquam erat volutpat. Pellentesque tristique ante ut risus. Quisque dictum. Integer nisl risus, sagittis convallis, rutrum id, elementum congue, nibh. Suspendisse dictum porta lectus. Donec placerat odio vel elit. Nullam ante orci, pellentesque eget, tempus quis, ultrices in, est. Curabitur sit amet nulla. Donec leo, vivamus fermentum nibh in augue praesent a lacus at urna congue rutrum.</p>
</div>
<div class="box2">
<h2><span class="icon icon-briefcase"></span>Etiam posuere augue</h2>
<p>Aliquam erat volutpat. Pellentesque tristique ante ut risus. Quisque dictum. Integer nisl risus, sagittis convallis, rutrum id, elementum congue, nibh. Suspendisse dictum porta lectus. Donec placerat odio vel elit. Nullam ante orci, pellentesque eget, tempus quis, ultrices in, est. Curabitur sit amet nulla. Donec leo, vivamus fermentum nibh in augue praesent a lacus at urna congue rutrum.</p>
</div>
</div>
</div>
<div id="copyright">
<div class="title">
<h2>Get in touch</h2>
<span class="byline">Phasellus nec erat sit amet nibh pellentesque congue</span> </div>
<ul class="contact">
<li><a href="#" class="icon icon-twitter"><span>Twitter</span></a></li>
<li><a href="#" class="icon icon-facebook"><span></span></a></li>
<li><a href="#" class="icon icon-dribbble"><span>Pinterest</span></a></li>
<li><a href="#" class="icon icon-tumblr"><span>Google+</span></a></li>
<li><a href="#" class="icon icon-rss"><span>Pinterest</span></a></li>
</ul>
<p>&copy; Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
Creative Commons Attribution 3.0 Unported
http://creativecommons.org/licenses/by/3.0/
===========================================================================
License
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
1. Definitions
1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License.
2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License.
3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership.
4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License.
5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast.
6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work.
7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images.
9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium.
2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws.
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections;
2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified.";
3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and,
4. to Distribute and Publicly Perform Adaptations.
5.
For the avoidance of doubt:
1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License;
2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and,
3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License.
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved.
4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:
1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested.
2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties.
3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise.
5. Representations, Warranties and Disclaimer
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
7. Termination
1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.
8. Miscellaneous
1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.
6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Veridical
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20131203
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li class="current_page_item"><a href="#" accesskey="1" title="">Homepage</a></li>
<li><a href="createcarlog.html.erb" accesskey="2" title="">Create new carlog</a></li>
<li><a href="recordofcarlogs.html.erb" accesskey="3" title="">All Logs</a></li>
</ul>
</div>
<div id="logo">
<h1><a href="#">ParkingLot</a></h1>
<font size="2" color="#FFFFFF"> Created by: Joshua Pabalan, Eldric Chua </font>
</div>
</div>
<div id="copyright">
<div class="title">
<p>&copy; Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>The page you were looking for doesn't exist (404)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
background-color: #EFEFEF;
color: #2E2F30;
text-align: center;
font-family: arial, sans-serif;
margin: 0;
}
div.dialog {
width: 95%;
max-width: 33em;
margin: 4em auto 0;
}
div.dialog > div {
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #BBB;
border-top: #B00100 solid 4px;
border-top-left-radius: 9px;
border-top-right-radius: 9px;
background-color: white;
padding: 7px 12% 0;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}
h1 {
font-size: 100%;
color: #730E15;
line-height: 1.5em;
}
div.dialog > p {
margin: 0 0 1em;
padding: 1em;
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-color: #DADADA;
color: #666;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}
</style>
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="dialog">
<div>
<h1>The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p>
</div>
<p>If you are the application owner check the logs for more information.</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>The change you wanted was rejected (422)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
background-color: #EFEFEF;
color: #2E2F30;
text-align: center;
font-family: arial, sans-serif;
margin: 0;
}
div.dialog {
width: 95%;
max-width: 33em;
margin: 4em auto 0;
}
div.dialog > div {
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #BBB;
border-top: #B00100 solid 4px;
border-top-left-radius: 9px;
border-top-right-radius: 9px;
background-color: white;
padding: 7px 12% 0;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}
h1 {
font-size: 100%;
color: #730E15;
line-height: 1.5em;
}
div.dialog > p {
margin: 0 0 1em;
padding: 1em;
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-color: #DADADA;
color: #666;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}
</style>
</head>
<body>
<!-- This file lives in public/422.html -->
<div class="dialog">
<div>
<h1>The change you wanted was rejected.</h1>
<p>Maybe you tried to change something you didn't have access to.</p>
</div>
<p>If you are the application owner check the logs for more information.</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>We're sorry, but something went wrong (500)</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {
background-color: #EFEFEF;
color: #2E2F30;
text-align: center;
font-family: arial, sans-serif;
margin: 0;
}
div.dialog {
width: 95%;
max-width: 33em;
margin: 4em auto 0;
}
div.dialog > div {
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #BBB;
border-top: #B00100 solid 4px;
border-top-left-radius: 9px;
border-top-right-radius: 9px;
background-color: white;
padding: 7px 12% 0;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}
h1 {
font-size: 100%;
color: #730E15;
line-height: 1.5em;
}
div.dialog > p {
margin: 0 0 1em;
padding: 1em;
background-color: #F7F7F7;
border: 1px solid #CCC;
border-right-color: #999;
border-left-color: #999;
border-bottom-color: #999;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-top-color: #DADADA;
color: #666;
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
}
</style>
</head>
<body>
<!-- This file lives in public/500.html -->
<div class="dialog">
<div>
<h1>We're sorry, but something went wrong.</h1>
</div>
<p>If you are the application owner check the logs for more information.</p>
</div>
</body>
</html>
# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
#
# To ban all spiders from the entire site uncomment the next two lines:
# User-agent: *
# Disallow: /
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by TEMPLATED
http://templated.co
Released for free under the Creative Commons Attribution License
Name : Veridical
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20131203
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div id="header-wrapper">
<div id="header" class="container">
<div id="menu">
<ul>
<li><a href="parkinglot.html.erb" accesskey="1" title="">Homepage</a></li>
<li ><a href="createcarlog.html.erb" accesskey="2" title="">Create new carlog</a></li>
<li class="current_page_item"><a href="recordofcarlogs.html.erb" accesskey="3" title="">All Logs</a></li>
</ul>
</div>
<div id="logo">
<h1><a href="#">All Logs</a></h1>
<br>
<table align = "center" border="2" border-style: outset; style="width:100%">
<tr>
<td align = "center"><b> <font color="#FFFFFF">Id</font></b></td>
<td align = "center"><b> <font color="#FFFFFF"> Plate Number </font></b></td>
<td align = "center"><b> <font color="#FFFFFF"> Brand </font></b></td>
<td align = "center"><b> <font color="#FFFFFF"> Slot number </font></b></td>
<td align = "center"><b> <font color="#FFFFFF"> Is taken </font></b></td>
<td align = "center"><b> <font color="white"> FCreated at </font></b></td>
</tr>
<tr>
</table>
</div>
</div>
<div id="copyright">
<p>&copy; Untitled. All rights reserved. | Photos by <a href="http://fotogrph.com/">Fotogrph</a> | Design by <a href="http://templated.co" rel="nofollow">TEMPLATED</a>.</p>
</div>
</body>
</html>
ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__)
require 'rails/test_help'
class ActiveSupport::TestCase
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
fixtures :all
# Add more helper methods to be used by all tests here...
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment