├── rails ├── benchmarker │ ├── log │ │ └── .keep │ ├── lib │ │ ├── tasks │ │ │ └── .keep │ │ └── assets │ │ │ └── .keep │ ├── app │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ ├── .keep │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── assets │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── stylesheets │ │ │ │ └── application.css │ │ │ └── javascripts │ │ │ │ └── application.js │ │ ├── controllers │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ ├── application_controller.rb │ │ │ └── pages_controller.rb │ │ ├── helpers │ │ │ └── application_helper.rb │ │ └── views │ │ │ ├── pages │ │ │ ├── _bio.html.erb │ │ │ └── index.html.erb │ │ │ └── layouts │ │ │ └── application.html.erb │ ├── public │ │ ├── favicon.ico │ │ ├── robots.txt │ │ ├── 500.html │ │ ├── 422.html │ │ └── 404.html │ ├── test │ │ ├── fixtures │ │ │ └── .keep │ │ ├── helpers │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ ├── controllers │ │ │ └── .keep │ │ ├── integration │ │ │ └── .keep │ │ └── test_helper.rb │ ├── vendor │ │ └── assets │ │ │ ├── javascripts │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ └── .keep │ ├── bin │ │ ├── rake │ │ ├── bundle │ │ └── rails │ ├── Gemfile │ ├── config │ │ ├── routes.rb │ │ ├── boot.rb │ │ ├── environment.rb │ │ ├── initializers │ │ │ ├── session_store.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── mime_types.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── wrap_parameters.rb │ │ │ ├── inflections.rb │ │ │ └── secret_token.rb │ │ ├── unicorn.rb │ │ ├── puma.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── test.rb │ │ │ └── production.rb │ │ └── application.rb │ ├── config.ru │ ├── Rakefile │ ├── db │ │ └── seeds.rb │ ├── .gitignore │ ├── README.rdoc │ └── Gemfile.lock └── .DS_Store ├── phoenix ├── benchmarker │ ├── priv │ │ └── static │ │ │ ├── css │ │ │ ├── .gitkeep │ │ │ └── app.css │ │ │ ├── images │ │ │ └── .gitkeep │ │ │ └── js │ │ │ └── phoenix.js │ ├── test │ │ ├── test_helper.exs │ │ └── benchmarker_test.exs │ ├── .gitignore │ ├── lib │ │ ├── benchmarker │ │ │ ├── templates │ │ │ │ ├── pages │ │ │ │ │ ├── bio.html.eex │ │ │ │ │ └── index.html.eex │ │ │ │ └── layouts │ │ │ │ │ └── application.html.eex │ │ │ ├── views │ │ │ │ ├── pages.ex │ │ │ │ └── layouts.ex │ │ │ ├── .DS_Store │ │ │ ├── router.ex │ │ │ ├── config │ │ │ │ ├── config.ex │ │ │ │ ├── dev.ex │ │ │ │ ├── test.ex │ │ │ │ └── prod.ex │ │ │ ├── controllers │ │ │ │ └── pages.ex │ │ │ ├── supervisor.ex │ │ │ └── views.ex │ │ ├── .DS_Store │ │ └── benchmarker.ex │ ├── .DS_Store │ ├── README.md │ ├── mix.lock │ └── mix.exs └── .DS_Store ├── .DS_Store └── README.md /rails/benchmarker/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phoenix/benchmarker/priv/static/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phoenix/benchmarker/priv/static/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rails/benchmarker/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phoenix/benchmarker/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start 2 | -------------------------------------------------------------------------------- /phoenix/benchmarker/.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /deps 3 | erl_crash.dump 4 | *.ez 5 | -------------------------------------------------------------------------------- /rails/benchmarker/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /rails/benchmarker/app/views/pages/_bio.html.erb: -------------------------------------------------------------------------------- 1 | Name: <%= member[:name] %> 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismccord/phoenix_vs_rails_showdown/HEAD/.DS_Store -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/templates/pages/bio.html.eex: -------------------------------------------------------------------------------- 1 | Name: <%= @member.name %> 2 | -------------------------------------------------------------------------------- /rails/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismccord/phoenix_vs_rails_showdown/HEAD/rails/.DS_Store -------------------------------------------------------------------------------- /phoenix/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismccord/phoenix_vs_rails_showdown/HEAD/phoenix/.DS_Store -------------------------------------------------------------------------------- /phoenix/benchmarker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismccord/phoenix_vs_rails_showdown/HEAD/phoenix/benchmarker/.DS_Store -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/views/pages.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Views.Pages do 2 | use Benchmarker.Views 3 | 4 | end 5 | -------------------------------------------------------------------------------- /rails/benchmarker/bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative '../config/boot' 3 | require 'rake' 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/views/layouts.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Views.Layouts do 2 | use Benchmarker.Views 3 | 4 | end 5 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismccord/phoenix_vs_rails_showdown/HEAD/phoenix/benchmarker/lib/.DS_Store -------------------------------------------------------------------------------- /rails/benchmarker/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rails', '4.0.4' 4 | gem "puma" 5 | # gem "unicorn" 6 | # gem "unicorn-rails" 7 | 8 | -------------------------------------------------------------------------------- /rails/benchmarker/config/routes.rb: -------------------------------------------------------------------------------- 1 | Benchmarker::Application.routes.draw do 2 | root to: "pages#index" 3 | get "/:title", to: "pages#index" 4 | end 5 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrismccord/phoenix_vs_rails_showdown/HEAD/phoenix/benchmarker/lib/benchmarker/.DS_Store -------------------------------------------------------------------------------- /phoenix/benchmarker/test/benchmarker_test.exs: -------------------------------------------------------------------------------- 1 | defmodule BenchmarkerTest do 2 | use ExUnit.Case 3 | 4 | test "the truth" do 5 | assert(true) 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /rails/benchmarker/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /rails/benchmarker/bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | APP_PATH = File.expand_path('../../config/application', __FILE__) 3 | require_relative '../config/boot' 4 | require 'rails/commands' 5 | -------------------------------------------------------------------------------- /rails/benchmarker/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run Rails.application 5 | -------------------------------------------------------------------------------- /rails/benchmarker/config/boot.rb: -------------------------------------------------------------------------------- 1 | # Set up gems listed in the Gemfile. 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | 4 | require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) 5 | -------------------------------------------------------------------------------- /rails/benchmarker/config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require File.expand_path('../application', __FILE__) 3 | 4 | # Initialize the Rails application. 5 | Benchmarker::Application.initialize! 6 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | Benchmarker::Application.config.session_store :cookie_store, key: '_benchmarker_session' 4 | -------------------------------------------------------------------------------- /rails/benchmarker/public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | # User-agent: * 5 | # Disallow: / 6 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/router.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Router do 2 | use Phoenix.Router 3 | alias Benchmarker.Controllers 4 | 5 | plug Plug.Static, at: "/static", from: :benchmarker 6 | get "/:title", Controllers.Pages, :index, as: :page 7 | end 8 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure sensitive parameters which will be filtered from the log file. 4 | Rails.application.config.filter_parameters += [:password] 5 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | # Mime::Type.register_alias "text/html", :iphone 6 | -------------------------------------------------------------------------------- /rails/benchmarker/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | # Prevent CSRF attacks by raising an exception. 3 | # For APIs, you may want to use :null_session instead. 4 | protect_from_forgery with: :exception 5 | end 6 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/config/config.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Config do 2 | use Phoenix.Config.App 3 | 4 | config :router, port: System.get_env("PORT") 5 | 6 | config :plugs, code_reload: false 7 | 8 | config :logger, level: :error 9 | end 10 | 11 | 12 | -------------------------------------------------------------------------------- /rails/benchmarker/Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require File.expand_path('../config/application', __FILE__) 5 | 6 | Benchmarker::Application.load_tasks 7 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker do 2 | use Application 3 | 4 | # See http://elixir-lang.org/docs/stable/Application.Behaviour.html 5 | # for more information on OTP Applications 6 | def start(_type, _args) do 7 | Benchmarker.Supervisor.start_link 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /rails/benchmarker/app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- 1 | class PagesController < ApplicationController 2 | 3 | def index 4 | @title = params[:title] 5 | @members = [ 6 | {name: "Chris McCord"}, 7 | {name: "Matt Sears"}, 8 | {name: "David Stump"}, 9 | {name: "Ricardo Thompson"} 10 | ] 11 | render "index" 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /rails/benchmarker/db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) 7 | # Mayor.create(name: 'Emanuel', city: cities.first) 8 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/config/dev.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Config.Dev do 2 | use Benchmarker.Config 3 | 4 | config :router, port: 4000, 5 | ssl: false, 6 | # Full error reports are enabled 7 | consider_all_requests_local: true 8 | 9 | config :plugs, code_reload: true 10 | 11 | config :logger, level: :debug 12 | end 13 | 14 | 15 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/config/test.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Config.Test do 2 | use Benchmarker.Config 3 | 4 | config :router, port: 4001, 5 | ssl: false, 6 | # Full error reports are enabled 7 | consider_all_requests_local: true 8 | 9 | config :plugs, code_reload: true 10 | 11 | config :logger, level: :debug 12 | end 13 | 14 | 15 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/controllers/pages.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Controllers.Pages do 2 | use Phoenix.Controller 3 | 4 | def index(conn, %{"title" => title}) do 5 | render conn, "index", title: title, members: [ 6 | %{name: "Chris McCord"}, 7 | %{name: "Matt Sears"}, 8 | %{name: "David Stump"}, 9 | %{name: "Ricardo Thompson"} 10 | ] 11 | end 12 | end 13 | -------------------------------------------------------------------------------- /phoenix/benchmarker/README.md: -------------------------------------------------------------------------------- 1 | # Benchmarker 2 | 3 | To start your new Phoenix application you have to: 4 | 5 | 1. Install dependencies with `mix deps.get` 6 | 2. Start Phoenix router with `mix phoenix.start` 7 | 8 | Now you can visit `localhost:4000` from your browser. 9 | 10 | 11 | ## Notes 12 | 13 | * If you choose to change the application's structure, you could manually start the router from your code like this `Benchmarker.Router.start` 14 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/supervisor.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Supervisor do 2 | use Supervisor 3 | 4 | def start_link do 5 | :supervisor.start_link(__MODULE__, []) 6 | end 7 | 8 | def init([]) do 9 | children = [] 10 | 11 | # See http://elixir-lang.org/docs/stable/Supervisor.Behaviour.html 12 | # for other strategies and supported options 13 | supervise(children, strategy: :one_for_one) 14 | end 15 | end 16 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/config/prod.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Config.Prod do 2 | use Benchmarker.Config 3 | 4 | config :router, port: System.get_env("PORT") || 4000, 5 | ssl: false, 6 | # Full error reports are disabled 7 | consider_all_requests_local: false 8 | # ip: {0, 0, 0, 0} 9 | 10 | config :plugs, code_reload: false 11 | 12 | config :logger, level: :error 13 | end 14 | 15 | 16 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/views.ex: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Views do 2 | 3 | defmacro __using__(_options) do 4 | quote do 5 | use Phoenix.View, templates_root: unquote(Path.join([__DIR__, "templates"])) 6 | import unquote(__MODULE__) 7 | 8 | # This block is expanded within all views for aliases, imports, etc 9 | alias Benchmarker.Views 10 | end 11 | end 12 | 13 | # Functions defined here are available to all other views/templates 14 | end 15 | 16 | 17 | -------------------------------------------------------------------------------- /phoenix/benchmarker/mix.lock: -------------------------------------------------------------------------------- 1 | %{"cowboy": {:git, "git://github.com/extend/cowboy.git", "1a71a733c37df70c15ebfd28157b10915cd738d1", []}, 2 | "cowlib": {:git, "git://github.com/extend/cowlib.git", "e2ffefe828b918486e2cd76e44c54ae9b62c616e", [ref: "0.6.2"]}, 3 | "ex_conf": {:package, "0.1.3"}, 4 | "inflex": {:package, "0.2.4"}, 5 | "jazz": {:package, "0.1.2"}, 6 | "phoenix": {:package, "0.3.1"}, 7 | "plug": {:package, "0.5.1"}, 8 | "ranch": {:git, "git://github.com/extend/ranch.git", "3189ef2d47843945efc96c224963380462c33d40", [ref: "0.10.0"]}} 9 | -------------------------------------------------------------------------------- /rails/benchmarker/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config. 8 | /.bundle 9 | 10 | # Ignore the default SQLite database. 11 | /db/*.sqlite3 12 | /db/*.sqlite3-journal 13 | 14 | # Ignore all logfiles and tempfiles. 15 | /log/*.log 16 | /tmp 17 | -------------------------------------------------------------------------------- /rails/benchmarker/config/unicorn.rb: -------------------------------------------------------------------------------- 1 | worker_processes 6 2 | 3 | # Load app into the master before forking workers for faster spawn times 4 | preload_app true 5 | 6 | # Restart workers when request exceeds timeout 7 | timeout 30 8 | 9 | 10 | # Properly setup and teardown connections for preload_app true 11 | 12 | before_fork do |server, worker| 13 | ActiveRecord::Base.connection.disconnect! if defined?(ActiveRecord::Base) 14 | end 15 | 16 | after_fork do |server, worker| 17 | ActiveRecord::Base.establish_connection if defined?(ActiveRecord::Base) 18 | end 19 | -------------------------------------------------------------------------------- /rails/benchmarker/test/test_helper.rb: -------------------------------------------------------------------------------- 1 | ENV["RAILS_ENV"] ||= "test" 2 | require File.expand_path('../../config/environment', __FILE__) 3 | require 'rails/test_help' 4 | 5 | class ActiveSupport::TestCase 6 | ActiveRecord::Migration.check_pending! 7 | 8 | # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. 9 | # 10 | # Note: You'll currently still have to declare fixtures explicitly in integration tests 11 | # -- they do not yet inherit this setting 12 | fixtures :all 13 | 14 | # Add more helper methods to be used by all tests here... 15 | end 16 | -------------------------------------------------------------------------------- /rails/benchmarker/README.rdoc: -------------------------------------------------------------------------------- 1 | == README 2 | 3 | This README would normally document whatever steps are necessary to get the 4 | application up and running. 5 | 6 | Things you may want to cover: 7 | 8 | * Ruby version 9 | 10 | * System dependencies 11 | 12 | * Configuration 13 | 14 | * Database creation 15 | 16 | * Database initialization 17 | 18 | * How to run the test suite 19 | 20 | * Services (job queues, cache servers, search engines, etc.) 21 | 22 | * Deployment instructions 23 | 24 | * ... 25 | 26 | 27 | Please feel free to use a different markup language if you do not plan to run 28 | rake doc:app. 29 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] if respond_to?(:wrap_parameters) 9 | end 10 | 11 | # To enable root element in JSON for ActiveRecord objects. 12 | # ActiveSupport.on_load(:active_record) do 13 | # self.include_root_in_json = true 14 | # end 15 | -------------------------------------------------------------------------------- /rails/benchmarker/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the top of the 9 | * compiled file, but it's generally better to create a new file per style scope. 10 | * 11 | *= require_self 12 | *= require_tree . 13 | */ 14 | -------------------------------------------------------------------------------- /rails/benchmarker/config/puma.rb: -------------------------------------------------------------------------------- 1 | workers Integer(ENV['PUMA_WORKERS'] || 3) 2 | threads Integer(ENV['MIN_THREADS'] || 1), Integer(ENV['MAX_THREADS'] || 16) 3 | 4 | preload_app! 5 | 6 | rackup DefaultRackup 7 | port ENV['PORT'] || 3000 8 | environment ENV['RACK_ENV'] || 'development' 9 | 10 | on_worker_boot do 11 | # worker specific setup 12 | ActiveSupport.on_load(:active_record) do 13 | config = ActiveRecord::Base.configurations[Rails.env] || 14 | Rails.application.config.database_configuration[Rails.env] 15 | config['pool'] = ENV['MAX_THREADS'] || 16 16 | ActiveRecord::Base.establish_connection(config) 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, '\1en' 8 | # inflect.singular /^(ox)en/i, '\1' 9 | # inflect.irregular 'person', 'people' 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym 'RESTful' 16 | # end 17 | -------------------------------------------------------------------------------- /rails/benchmarker/config/initializers/secret_token.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Your secret key is used for verifying the integrity of signed cookies. 4 | # If you change this key, all old signed cookies will become invalid! 5 | 6 | # Make sure the secret is at least 30 characters and all random, 7 | # no regular words or you'll be exposed to dictionary attacks. 8 | # You can use `rake secret` to generate a secure secret key. 9 | 10 | # Make sure your secret_key_base is kept private 11 | # if you're sharing your code publicly. 12 | Benchmarker::Application.config.secret_key_base = '593ff5742a85eac90d7f4dba4bb777df589c7aff705c209d34547da911b6d83374de08f6c5eed61fcce2aa8450a36c9cb2bc6b5a180808effc1cef8e6986c20a' 13 | -------------------------------------------------------------------------------- /rails/benchmarker/config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t 'hello' 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t('hello') %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # To learn more, please read the Rails Internationalization guide 20 | # available at http://guides.rubyonrails.org/i18n.html. 21 | 22 | en: 23 | hello: "Hello world" 24 | -------------------------------------------------------------------------------- /rails/benchmarker/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 5 | // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // compiled file. 9 | // 10 | // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details 11 | // about supported directives. 12 | // 13 | //= require jquery 14 | //= require jquery_ujs 15 | //= require turbolinks 16 | //= require_tree . 17 | -------------------------------------------------------------------------------- /phoenix/benchmarker/mix.exs: -------------------------------------------------------------------------------- 1 | defmodule Benchmarker.Mixfile do 2 | use Mix.Project 3 | 4 | def project do 5 | [ app: :benchmarker, 6 | version: "0.0.1", 7 | elixir: "~> 0.14.2", 8 | deps: deps ] 9 | end 10 | 11 | # Configuration for the OTP application 12 | def application do 13 | [ 14 | mod: { Benchmarker, [] }, 15 | applications: [:phoenix] 16 | ] 17 | end 18 | 19 | # Returns the list of dependencies in the format: 20 | # { :foobar, git: "https://github.com/elixir-lang/foobar.git", tag: "0.1" } 21 | # 22 | # To specify particular versions, regardless of the tag, do: 23 | # { :barbat, "~> 0.1", github: "elixir-lang/barbat" } 24 | defp deps do 25 | [ 26 | {:phoenix, "0.3.1"}, 27 | {:cowboy, "~> 0.10.0", github: "extend/cowboy", optional: true} 28 | ] 29 | end 30 | end 31 | -------------------------------------------------------------------------------- /rails/benchmarker/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Hello Phoenix! 11 | 12 | 13 | 14 |
15 |
16 | 19 | 20 |
21 | 22 | <%= yield %> 23 | 24 | 27 | 28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/templates/layouts/application.html.eex: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Hello Phoenix! 11 | 12 | 13 | 14 |
15 |
16 | 19 | 20 |
21 | 22 | <%= @inner %> 23 | 24 | 27 | 28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /rails/benchmarker/config/environments/development.rb: -------------------------------------------------------------------------------- 1 | Benchmarker::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # In the development environment your application's code is reloaded on 5 | # every request. This slows down response time but is perfect for development 6 | # since you don't have to restart the web server when you make code changes. 7 | config.cache_classes = false 8 | 9 | # Do not eager load code on boot. 10 | config.eager_load = false 11 | 12 | # Show full error reports and disable caching. 13 | config.consider_all_requests_local = true 14 | config.action_controller.perform_caching = false 15 | 16 | # Don't care if the mailer can't send. 17 | config.action_mailer.raise_delivery_errors = false 18 | 19 | # Print deprecation notices to the Rails logger. 20 | config.active_support.deprecation = :log 21 | 22 | # Debug mode disables concatenation and preprocessing of assets. 23 | # This option may cause significant delays in view rendering with a large 24 | # number of complex assets. 25 | config.assets.debug = true 26 | end 27 | -------------------------------------------------------------------------------- /rails/benchmarker/config/application.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../boot', __FILE__) 2 | 3 | require "action_controller/railtie" 4 | require "action_mailer/railtie" 5 | require "sprockets/railtie" 6 | require "rails/test_unit/railtie" 7 | 8 | # Require the gems listed in Gemfile, including any gems 9 | # you've limited to :test, :development, or :production. 10 | Bundler.require(*Rails.groups) 11 | 12 | module Benchmarker 13 | class Application < Rails::Application 14 | # Settings in config/environments/* take precedence over those specified here. 15 | # Application configuration should go into files in config/initializers 16 | # -- all .rb files in that directory are automatically loaded. 17 | 18 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. 19 | # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. 20 | # config.time_zone = 'Central Time (US & Canada)' 21 | 22 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. 23 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] 24 | # config.i18n.default_locale = :de 25 | end 26 | end 27 | -------------------------------------------------------------------------------- /rails/benchmarker/app/views/pages/index.html.erb: -------------------------------------------------------------------------------- 1 |
2 |

Welcome to Phoenix!

3 |

Phoenix is an Elixir Web Framework targeting full-featured, fault tolerant applications with realtime functionality.

4 |
5 | 6 |
7 |
8 |

Resources: <%= @title %>

9 | 17 |
18 | 19 |
20 |

Help

21 | 32 | 33 |

Team Members

34 | 41 |
42 |
43 | 44 | -------------------------------------------------------------------------------- /phoenix/benchmarker/lib/benchmarker/templates/pages/index.html.eex: -------------------------------------------------------------------------------- 1 |
2 |

Welcome to Phoenix!

3 |

Phoenix is an Elixir Web Framework targeting full-featured, fault tolerant applications with realtime functionality.

4 |
5 | 6 |
7 |
8 |

Resources: <%= @title %>

9 | 17 |
18 | 19 |
20 |

Help

21 | 32 | 33 |

Team Members

34 | 41 | 42 |
43 |
44 | 45 | -------------------------------------------------------------------------------- /rails/benchmarker/public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 48 | 49 | 50 | 51 | 52 |
53 |

We're sorry, but something went wrong.

54 |
55 |

If you are the application owner check the logs for more information.

56 | 57 | 58 | -------------------------------------------------------------------------------- /rails/benchmarker/public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 48 | 49 | 50 | 51 | 52 |
53 |

The change you wanted was rejected.

54 |

Maybe you tried to change something you didn't have access to.

55 |
56 |

If you are the application owner check the logs for more information.

57 | 58 | 59 | -------------------------------------------------------------------------------- /rails/benchmarker/public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 48 | 49 | 50 | 51 | 52 |
53 |

The page you were looking for doesn't exist.

54 |

You may have mistyped the address or the page may have moved.

55 |
56 |

If you are the application owner check the logs for more information.

57 | 58 | 59 | -------------------------------------------------------------------------------- /rails/benchmarker/config/environments/test.rb: -------------------------------------------------------------------------------- 1 | Benchmarker::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # The test environment is used exclusively to run your application's 5 | # test suite. You never need to work with it otherwise. Remember that 6 | # your test database is "scratch space" for the test suite and is wiped 7 | # and recreated between test runs. Don't rely on the data there! 8 | config.cache_classes = true 9 | 10 | # Do not eager load code on boot. This avoids loading your whole application 11 | # just for the purpose of running a single test. If you are using a tool that 12 | # preloads Rails for running tests, you may have to set it to true. 13 | config.eager_load = false 14 | 15 | # Configure static asset server for tests with Cache-Control for performance. 16 | config.serve_static_assets = true 17 | config.static_cache_control = "public, max-age=3600" 18 | 19 | # Show full error reports and disable caching. 20 | config.consider_all_requests_local = true 21 | config.action_controller.perform_caching = false 22 | 23 | # Raise exceptions instead of rendering exception templates. 24 | config.action_dispatch.show_exceptions = false 25 | 26 | # Disable request forgery protection in test environment. 27 | config.action_controller.allow_forgery_protection = false 28 | 29 | # Tell Action Mailer not to deliver emails to the real world. 30 | # The :test delivery method accumulates sent emails in the 31 | # ActionMailer::Base.deliveries array. 32 | config.action_mailer.delivery_method = :test 33 | 34 | # Print deprecation notices to the stderr. 35 | config.active_support.deprecation = :stderr 36 | end 37 | -------------------------------------------------------------------------------- /rails/benchmarker/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actionmailer (4.0.4) 5 | actionpack (= 4.0.4) 6 | mail (~> 2.5.4) 7 | actionpack (4.0.4) 8 | activesupport (= 4.0.4) 9 | builder (~> 3.1.0) 10 | erubis (~> 2.7.0) 11 | rack (~> 1.5.2) 12 | rack-test (~> 0.6.2) 13 | activemodel (4.0.4) 14 | activesupport (= 4.0.4) 15 | builder (~> 3.1.0) 16 | activerecord (4.0.4) 17 | activemodel (= 4.0.4) 18 | activerecord-deprecated_finders (~> 1.0.2) 19 | activesupport (= 4.0.4) 20 | arel (~> 4.0.0) 21 | activerecord-deprecated_finders (1.0.3) 22 | activesupport (4.0.4) 23 | i18n (~> 0.6, >= 0.6.9) 24 | minitest (~> 4.2) 25 | multi_json (~> 1.3) 26 | thread_safe (~> 0.1) 27 | tzinfo (~> 0.3.37) 28 | arel (4.0.2) 29 | builder (3.1.4) 30 | erubis (2.7.0) 31 | hike (1.2.3) 32 | i18n (0.6.9) 33 | mail (2.5.4) 34 | mime-types (~> 1.16) 35 | treetop (~> 1.4.8) 36 | mime-types (1.25.1) 37 | minitest (4.7.5) 38 | multi_json (1.10.1) 39 | polyglot (0.3.5) 40 | puma (2.8.2) 41 | rack (>= 1.1, < 2.0) 42 | puma (2.8.2-java) 43 | rack (>= 1.1, < 2.0) 44 | rack (1.5.2) 45 | rack-test (0.6.2) 46 | rack (>= 1.0) 47 | rails (4.0.4) 48 | actionmailer (= 4.0.4) 49 | actionpack (= 4.0.4) 50 | activerecord (= 4.0.4) 51 | activesupport (= 4.0.4) 52 | bundler (>= 1.3.0, < 2.0) 53 | railties (= 4.0.4) 54 | sprockets-rails (~> 2.0.0) 55 | railties (4.0.4) 56 | actionpack (= 4.0.4) 57 | activesupport (= 4.0.4) 58 | rake (>= 0.8.7) 59 | thor (>= 0.18.1, < 2.0) 60 | rake (10.3.2) 61 | sprockets (2.11.0) 62 | hike (~> 1.2) 63 | multi_json (~> 1.0) 64 | rack (~> 1.0) 65 | tilt (~> 1.1, != 1.3.0) 66 | sprockets-rails (2.0.1) 67 | actionpack (>= 3.0) 68 | activesupport (>= 3.0) 69 | sprockets (~> 2.8) 70 | thor (0.19.1) 71 | thread_safe (0.3.4) 72 | thread_safe (0.3.4-java) 73 | tilt (1.4.1) 74 | treetop (1.4.15) 75 | polyglot 76 | polyglot (>= 0.3.1) 77 | tzinfo (0.3.39) 78 | 79 | PLATFORMS 80 | java 81 | ruby 82 | 83 | DEPENDENCIES 84 | puma 85 | rails (= 4.0.4) 86 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Benchmarking Phoenix vs Rails (WIP) 2 | 3 | Machine: MacBook Pro Intel Core i7 (2.7 GHz 4 Cores) 16 GB RAM 4 | 5 | ## Benchmarking Phoenix 6 | Elixir 0.14.2 7 | 8 | ```bash 9 | $ mix do deps.get, compile 10 | $ MIX_ENV=prod mix compile.protocols 11 | $ MIX_ENV=prod elixir -pa _build/prod/consolidated -S mix phoenix.start 12 | Running Elixir.Benchmarker.Router with Cowboy on port 4000 13 | 14 | $ wrk -t4 -c100 -d30S --timeout 2000 "http://127.0.0.1:4000/showdown" 15 | Running 30s test @ http://127.0.0.1:4000/showdown 16 | 4 threads and 100 connections 17 | Thread Stats Avg Stdev Max +/- Stdev 18 | Latency 4.80ms 2.18ms 54.70ms 98.36% 19 | Req/Sec 5.61k 755.82 8.00k 71.80% 20 | 639868 requests in 30.00s, 1.31GB read 21 | Requests/sec: 21329.21 22 | Transfer/sec: 44.75MB 23 | ``` 24 | 25 | ## Benchmarking Rails 26 | MRI 2.1.2 27 | 28 | ```bash 29 | $ bundle 30 | $ PUMA_WORKERS=4 MIN_THREADS=1 MAX_THREADS=16 RACK_ENV=production bundle exec puma 31 | [51026] Puma starting in cluster mode... 32 | [51026] * Version 2.8.2 (ruby 2.1.2-p95), codename: Sir Edmund Percival Hillary 33 | [51026] * Min threads: 1, max threads: 16 34 | [51026] * Environment: production 35 | [51026] * Process workers: 4 36 | [51026] * Preloading application 37 | [51026] * Listening on tcp://0.0.0.0:3000 38 | [51026] Use Ctrl-C to stop 39 | [51027] + Gemfile in context: /Users/goyox86/Code/phoenix_vs_rails_showdown/rails/benchmarker/Gemfile 40 | [51028] + Gemfile in context: /Users/goyox86/Code/phoenix_vs_rails_showdown/rails/benchmarker/Gemfile 41 | [51026] - Worker 0 (pid: 51027) booted, phase: 0 42 | [51029] + Gemfile in context: /Users/goyox86/Code/phoenix_vs_rails_showdown/rails/benchmarker/Gemfile 43 | [51026] - Worker 1 (pid: 51028) booted, phase: 0 44 | [51026] - Worker 2 (pid: 51029) booted, phase: 0 45 | [51030] + Gemfile in context: /Users/goyox86/Code/phoenix_vs_rails_showdown/rails/benchmarker/Gemfile 46 | [51026] - Worker 3 (pid: 51030) booted, phase: 0 47 | 48 | $ wrk -t4 -c100 -d30S --timeout 2000 "http://127.0.0.1:3000/showdown" 49 | Running 30s test @ http://127.0.0.1:3000/showdown 50 | 4 threads and 100 connections 51 | Thread Stats Avg Stdev Max +/- Stdev 52 | Latency 29.48ms 12.55ms 125.61ms 72.21% 53 | Req/Sec 493.61 150.85 800.00 57.17% 54 | 57720 requests in 30.00s, 128.95MB read 55 | Requests/sec: 1923.86 56 | Transfer/sec: 4.30MB 57 | ``` 58 | 59 | 60 | -------------------------------------------------------------------------------- /rails/benchmarker/config/environments/production.rb: -------------------------------------------------------------------------------- 1 | Benchmarker::Application.configure do 2 | # Settings specified here will take precedence over those in config/application.rb. 3 | 4 | # Code is not reloaded between requests. 5 | config.cache_classes = true 6 | 7 | # Eager load code on boot. This eager loads most of Rails and 8 | # your application in memory, allowing both thread web servers 9 | # and those relying on copy on write to perform better. 10 | # Rake tasks automatically ignore this option for performance. 11 | config.eager_load = true 12 | 13 | # Full error reports are disabled and caching is turned on. 14 | config.consider_all_requests_local = false 15 | config.action_controller.perform_caching = true 16 | 17 | # Enable Rack::Cache to put a simple HTTP cache in front of your application 18 | # Add `rack-cache` to your Gemfile before enabling this. 19 | # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid. 20 | # config.action_dispatch.rack_cache = true 21 | 22 | # Disable Rails's static asset server (Apache or nginx will already do this). 23 | config.serve_static_assets = false 24 | 25 | # Compress JavaScripts and CSS. 26 | config.assets.js_compressor = :uglifier 27 | # config.assets.css_compressor = :sass 28 | 29 | # Do not fallback to assets pipeline if a precompiled asset is missed. 30 | config.assets.compile = false 31 | 32 | # Generate digests for assets URLs. 33 | config.assets.digest = true 34 | 35 | # Version of your assets, change this if you want to expire all your assets. 36 | config.assets.version = '1.0' 37 | 38 | # Specifies the header that your server uses for sending files. 39 | # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache 40 | # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx 41 | 42 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 43 | # config.force_ssl = true 44 | 45 | # Set to :debug to see everything in the log. 46 | config.log_level = :warn 47 | 48 | # Prepend all log lines with the following tags. 49 | # config.log_tags = [ :subdomain, :uuid ] 50 | 51 | # Use a different logger for distributed setups. 52 | # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new) 53 | 54 | # Use a different cache store in production. 55 | # config.cache_store = :mem_cache_store 56 | 57 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 58 | # config.action_controller.asset_host = "http://assets.example.com" 59 | 60 | # Precompile additional assets. 61 | # application.js, application.css, and all non-JS/CSS in app/assets folder are already added. 62 | # config.assets.precompile += %w( search.js ) 63 | 64 | # Ignore bad email addresses and do not raise email delivery errors. 65 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 66 | # config.action_mailer.raise_delivery_errors = false 67 | 68 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 69 | # the I18n.default_locale when a translation can not be found). 70 | config.i18n.fallbacks = true 71 | 72 | # Send deprecation notices to registered listeners. 73 | config.active_support.deprecation = :notify 74 | 75 | # Disable automatic flushing of the log to improve performance. 76 | # config.autoflush_log = false 77 | 78 | # Use default logging formatter so that PID and timestamp are not suppressed. 79 | config.log_formatter = ::Logger::Formatter.new 80 | end 81 | -------------------------------------------------------------------------------- /phoenix/benchmarker/priv/static/js/phoenix.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.7.1 2 | (function() { 3 | this.Phoenix = {}; 4 | 5 | this.Phoenix.Channel = (function() { 6 | Channel.prototype.bindings = null; 7 | 8 | function Channel(channel, topic, message, callback, socket) { 9 | this.channel = channel; 10 | this.topic = topic; 11 | this.message = message; 12 | this.callback = callback; 13 | this.socket = socket; 14 | this.reset(); 15 | } 16 | 17 | Channel.prototype.reset = function() { 18 | return this.bindings = []; 19 | }; 20 | 21 | Channel.prototype.on = function(event, callback) { 22 | return this.bindings.push({ 23 | event: event, 24 | callback: callback 25 | }); 26 | }; 27 | 28 | Channel.prototype.isMember = function(channel, topic) { 29 | return this.channel === channel && this.topic === topic; 30 | }; 31 | 32 | Channel.prototype.off = function(event) { 33 | var bind; 34 | return this.bindings = (function() { 35 | var _i, _len, _ref, _results; 36 | _ref = this.bindings; 37 | _results = []; 38 | for (_i = 0, _len = _ref.length; _i < _len; _i++) { 39 | bind = _ref[_i]; 40 | if (bind.event !== event) { 41 | _results.push(bind); 42 | } 43 | } 44 | return _results; 45 | }).call(this); 46 | }; 47 | 48 | Channel.prototype.trigger = function(triggerEvent, msg) { 49 | var callback, event, _i, _len, _ref, _ref1, _results; 50 | _ref = this.bindings; 51 | _results = []; 52 | for (_i = 0, _len = _ref.length; _i < _len; _i++) { 53 | _ref1 = _ref[_i], event = _ref1.event, callback = _ref1.callback; 54 | if (event === triggerEvent) { 55 | _results.push(callback(msg)); 56 | } 57 | } 58 | return _results; 59 | }; 60 | 61 | Channel.prototype.send = function(event, message) { 62 | return this.socket.send({ 63 | channel: this.channel, 64 | topic: this.topic, 65 | event: event, 66 | message: message 67 | }); 68 | }; 69 | 70 | Channel.prototype.leave = function(message) { 71 | if (message == null) { 72 | message = {}; 73 | } 74 | this.socket.leave(this.channel, this.topic, message); 75 | return this.reset(); 76 | }; 77 | 78 | return Channel; 79 | 80 | })(); 81 | 82 | this.Phoenix.Socket = (function() { 83 | Socket.prototype.conn = null; 84 | 85 | Socket.prototype.endPoint = null; 86 | 87 | Socket.prototype.channels = null; 88 | 89 | Socket.prototype.sendBuffer = null; 90 | 91 | Socket.prototype.sendBufferTimer = null; 92 | 93 | Socket.prototype.flushEveryMs = 50; 94 | 95 | Socket.prototype.reconnectTimer = null; 96 | 97 | Socket.prototype.reconnectAfterMs = 5000; 98 | 99 | function Socket(endPoint) { 100 | this.endPoint = endPoint; 101 | this.channels = []; 102 | this.sendBuffer = []; 103 | this.resetBufferTimer(); 104 | this.reconnect(); 105 | } 106 | 107 | Socket.prototype.close = function(callback) { 108 | if (this.conn != null) { 109 | this.conn.onclose = (function(_this) { 110 | return function() {}; 111 | })(this); 112 | this.conn.close(); 113 | this.conn = null; 114 | } 115 | return typeof callback === "function" ? callback() : void 0; 116 | }; 117 | 118 | Socket.prototype.reconnect = function() { 119 | return this.close((function(_this) { 120 | return function() { 121 | _this.conn = new WebSocket(_this.endPoint); 122 | _this.conn.onopen = function() { 123 | return _this.onOpen(); 124 | }; 125 | _this.conn.onerror = function(error) { 126 | return _this.onError(error); 127 | }; 128 | _this.conn.onmessage = function(event) { 129 | return _this.onMessage(event); 130 | }; 131 | return _this.conn.onclose = function(event) { 132 | return _this.onClose(event); 133 | }; 134 | }; 135 | })(this)); 136 | }; 137 | 138 | Socket.prototype.resetBufferTimer = function() { 139 | clearTimeout(this.sendBufferTimer); 140 | return this.sendBufferTimer = setTimeout(((function(_this) { 141 | return function() { 142 | return _this.flushSendBuffer(); 143 | }; 144 | })(this)), this.flushEveryMs); 145 | }; 146 | 147 | Socket.prototype.onOpen = function() { 148 | clearInterval(this.reconnectTimer); 149 | return this.rejoinAll(); 150 | }; 151 | 152 | Socket.prototype.onClose = function(event) { 153 | if (typeof console.log === "function") { 154 | console.log("WS close: " + event); 155 | } 156 | clearInterval(this.reconnectTimer); 157 | return this.reconnectTimer = setInterval(((function(_this) { 158 | return function() { 159 | return _this.reconnect(); 160 | }; 161 | })(this)), this.reconnectAfterMs); 162 | }; 163 | 164 | Socket.prototype.onError = function(error) { 165 | return typeof console.log === "function" ? console.log("WS error: " + error) : void 0; 166 | }; 167 | 168 | Socket.prototype.connectionState = function() { 169 | var _ref, _ref1; 170 | switch ((_ref = (_ref1 = this.conn) != null ? _ref1.readyState : void 0) != null ? _ref : 3) { 171 | case 0: 172 | return "connecting"; 173 | case 1: 174 | return "open"; 175 | case 2: 176 | return "closing"; 177 | case 3: 178 | return "closed"; 179 | } 180 | }; 181 | 182 | Socket.prototype.isConnected = function() { 183 | return this.connectionState() === "open"; 184 | }; 185 | 186 | Socket.prototype.rejoinAll = function() { 187 | var chan, _i, _len, _ref, _results; 188 | _ref = this.channels; 189 | _results = []; 190 | for (_i = 0, _len = _ref.length; _i < _len; _i++) { 191 | chan = _ref[_i]; 192 | _results.push(this.rejoin(chan)); 193 | } 194 | return _results; 195 | }; 196 | 197 | Socket.prototype.rejoin = function(chan) { 198 | var channel, message, topic; 199 | chan.reset(); 200 | channel = chan.channel, topic = chan.topic, message = chan.message; 201 | this.send({ 202 | channel: channel, 203 | topic: topic, 204 | event: "join", 205 | message: message 206 | }); 207 | return chan.callback(chan); 208 | }; 209 | 210 | Socket.prototype.join = function(channel, topic, message, callback) { 211 | var chan; 212 | chan = new Phoenix.Channel(channel, topic, message, callback, this); 213 | this.channels.push(chan); 214 | if (this.isConnected()) { 215 | return this.rejoin(chan); 216 | } 217 | }; 218 | 219 | Socket.prototype.leave = function(channel, topic, message) { 220 | var c; 221 | if (message == null) { 222 | message = {}; 223 | } 224 | this.send({ 225 | channel: channel, 226 | topic: topic, 227 | event: "leave", 228 | message: message 229 | }); 230 | return this.channels = (function() { 231 | var _i, _len, _ref, _results; 232 | _ref = this.channels; 233 | _results = []; 234 | for (_i = 0, _len = _ref.length; _i < _len; _i++) { 235 | c = _ref[_i]; 236 | if (!(c.isMember(channel, topic))) { 237 | _results.push(c); 238 | } 239 | } 240 | return _results; 241 | }).call(this); 242 | }; 243 | 244 | Socket.prototype.send = function(data) { 245 | var callback; 246 | callback = (function(_this) { 247 | return function() { 248 | return _this.conn.send(JSON.stringify(data)); 249 | }; 250 | })(this); 251 | if (this.isConnected()) { 252 | return callback(); 253 | } else { 254 | return this.sendBuffer.push(callback); 255 | } 256 | }; 257 | 258 | Socket.prototype.flushSendBuffer = function() { 259 | var callback, _i, _len, _ref; 260 | if (this.isConnected() && this.sendBuffer.length > 0) { 261 | _ref = this.sendBuffer; 262 | for (_i = 0, _len = _ref.length; _i < _len; _i++) { 263 | callback = _ref[_i]; 264 | callback(); 265 | } 266 | this.sendBuffer = []; 267 | } 268 | return this.resetBufferTimer(); 269 | }; 270 | 271 | Socket.prototype.onMessage = function(rawMessage) { 272 | var chan, channel, event, message, topic, _i, _len, _ref, _ref1, _results; 273 | if (typeof console.log === "function") { 274 | console.log(rawMessage); 275 | } 276 | _ref = JSON.parse(rawMessage.data), channel = _ref.channel, topic = _ref.topic, event = _ref.event, message = _ref.message; 277 | _ref1 = this.channels; 278 | _results = []; 279 | for (_i = 0, _len = _ref1.length; _i < _len; _i++) { 280 | chan = _ref1[_i]; 281 | if (chan.isMember(channel, topic)) { 282 | _results.push(chan.trigger(event, message)); 283 | } 284 | } 285 | return _results; 286 | }; 287 | 288 | return Socket; 289 | 290 | })(); 291 | 292 | }).call(this); 293 | -------------------------------------------------------------------------------- /phoenix/benchmarker/priv/static/css/app.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.1.1 (http://getbootstrap.com) 3 | * Copyright 2011-2014 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | /*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}@media print{.hidden-print{display:none!important}} 8 | 9 | 10 | /* Space out content a bit */ 11 | body { 12 | padding-top: 20px; 13 | padding-bottom: 20px; 14 | } 15 | 16 | /* Everything but the jumbotron gets side spacing for mobile first views */ 17 | .header, 18 | .marketing, 19 | .footer { 20 | padding-right: 15px; 21 | padding-left: 15px; 22 | } 23 | .logo { 24 | width: 463px; 25 | height: 65px; 26 | display: inline-block; 27 | margin-bottom: 1em; 28 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAc8AAABBCAIAAAA417hgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTkyMUE5OUVGMTJGMTFFM0FDNTk5QUUxQjk2QUM0ODkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTkyMUE5OUZGMTJGMTFFM0FDNTk5QUUxQjk2QUM0ODkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5OTIxQTk5Q0YxMkYxMUUzQUM1OTlBRTFCOTZBQzQ4OSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5OTIxQTk5REYxMkYxMUUzQUM1OTlBRTFCOTZBQzQ4OSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pn8OAqcAADR0SURBVHja7F0HeBTVE7/d2+t3yaX3kF5ISIAEQuhFkSJNRQVEBFEpolJUekcBBVGKdBRQEURAEKUX6YEESK+k93a97e3+Z+/CcUkuB4RA8O/Oly8fXPZ237437ze/mTdvHkKSJIMWWmihhZanLNjjfoHU6UiNitBoSJ0G0eMMlMng8lCeAOVyGQyE7lBaaKGFlmaiLaFS6vKzNNlputx0XUkeXlNBSGsJtZJBEAySYCAowsRQkRhzduP4hHDDojlhHZlie7pnaaGFFlrMBWkqkqBXyNV3rimvnVYnx+vKCkiN7P43UOoXxkKYbCPZpW5A6hl6HUlRXQxz9BRE9xQNfIMTEkn3Ly200EJLk2iLlxRK/94vv/inrigLsBRhcxAmiwQmq9ehQjuUL2LaORJyKV6WB9hqIdSA60itAuEIBF0H2o+ZymoTSPcyLbTQQks9tMWrK6QHd0pP7NfXliJsAcJi1wGoViXoNshu1BTU1p4ptgdiW7ZsmvzSUZQrbPLGAM9KKWrjYDd6mu2I8QiTSfc1LbTQQqMtJfILx6t/WKO9dxdhYgyMg3L4xqCBIayAo3bOdm9O4XXqiZAM6dG9tYe2AeF9cEFTkKvXkSq5oMcQp49XMO0c6O6mhRZa/utoS+p02pxUBMNIPa7NzVRcPa2MO8fQaxE2v+5CAic0KpRvQ7FWlbweFj9MCEUNxy/SZe63LB86qkALLbTQkYT6ok68UblhieZeEsoTmQGnnvqNMh/7KSop08nbdeFGTnAE3em00EILjbb1RC+pLlsyRZV8FeWKnvxJhEaO2bm6Lt7GCW5n+K+KkMlQHh/hcqnYBS200ELLfxZtQXRlxSWfjsYrCxEWt0UAl+Xo5bZiJ6tNoF5aW/7lJ9rcNKaDCyZ2ZHsHctp24IZ3onN1aaGFlv8i2oLIzx4tXzUN4fIZDPTJn0eoZWzvULcvf8QcXfDigpIlkzSpV1GeDUngDKC4jl6Cri/aDh3D8g6gx4YWWmj5fxLm4sWLrV/BbhOounsDL8lDMFYLoDvGwSvytdnpgh4DmPaOwp6D8LJSbV4yyrNF2FzAYnXSVcB3UqvlBEe2yBNpoYUWWv4daMtAEGC1isvHERanZeg0i6vLT9NXVQq6vYhyeYLuAxCUo0q6xtCqETYPfhi4TnnzjDrxFi+kPVP8X8wbIw2CIHTdCVpo+S9FEkDwyrKiacP1spoWXM4iFDX2b820e2eG8b/qO9crt32pSYsz7aogVDKmrZPjh0uFvQb932NrYX5+aUlJcVFhUWEh/L6Xnf3RrE9jYrv+N5VSpVJ9tWKZVCJh3t8Uo9FoXh89pmuPnvSMpaV1paSoqCA/n8Vmd4iKetzvPhJ6Yo4unMB2iusnEaawpRqN8myqf/kOc/ESDRwJ/+VGxnis/VX65y+Swz/oijIRjINyBYRSUv7lh5rk8eKxHzFFts9Vp1dXVZWXl6HoQ2LZgBdcLk8sFguETXadXCb78L0JMITgRhB6PdxTq9WqlMr/rELjOt3Fc2cryssxrE4/lQpFbPfuz7INMBD37uXgOP6IHgaYTC6X693Gh/ZI/r81c87M6VcuXRw64tWnhbYUGgZHKq4eb8mGo0yExan8fgnm4s7r2E1XkE3qtLYj3hG+MEJ+7g/52T802YmkRsVAGDW/rlNcPWUzaBSvcy/MyQ1BmXqlnFTIMGcPVCBsrX4/duTwuq9WCQSCh7wlioIZhMvcPTzbd4x6ccBAv4CGC4AESWh1OjaHjd2PUyMo+lAc/392uBCEy+Px+HwT2pIMEnu2QXyFUvnJpA8qKyuYGEYSD/f/gH2HhYfv/Hkfk96k/n/thmq0GhZMaU5zwqqPirYs32BGS2fFUsVudOryr2a6rfiB7RdS+/MmZcIV8YjxtkPH2gwepc1JU92+pkm7oyvO01eVVO9Zgx7cgbl6sJw92W2CeO27IJ6+rdrvwH4osX4ZXABEVS6VFhUUXLn0z95dO155483JH30MhNe8J1BqYx7NiZ6viaU3jDBA/6NE2whCTxAE3W3/98JE0Wa7L4+Mtq4eKJtvLGjbkoDL4ulrSsuWT3P98kfx6Cnlq2cVTh1uP2EmP7oHJzAcfii112kJpZzQaODpCMZmCkUIx3LyL6GQ6wpz8PJiQi6jfHg7B5aXH8vV82kAGVJHQB+tN5hMjEVlLON6/c4t35cWF3+5dt1/mb3+Gwg2A0wgMNYevftM+ehjlUr1MLQl+Hw+Paa0tADaoiI7VGBrWChrWX0iEY5IW5hRtniS6/Ltzp99XbVxWfGsV3iRPUUvvMKP7oW5eSEsNtPW3op7pistVN+9obp1UZ1+V19VTGhUJo+UKbTjhrS3GT6e3+m5WGABE2BjK/7r2NH2UVGjxo6j9c+yTlBhU8LIK+tcBFwPzsSzbwk0wt7BwT8wiB4UWp4h2vIFKJevl1Y243Cdh04ulCfSZN8pXTjRZdFmh6kL2IFhlevnla36AHMJ4viGcgLCWb5BLBcPptAW4XKpKg06rV4uwytKtDlpmvTbmpxUvaSCivaxuAiTaV7YgdSqFXFnFTfPiV/5wH7iZ0+78KNGo67vTgL/RVgstjnlgWZyuNxDBw68MvINDpdLq6AFWokweHwe3yxuS2lqKyVf0/EBWp412iIcHsLmMlr2yEizuATKs9Fk3imd847LvO9E/V/hhkZWbV+tuPKnMv6s6s4/VGATY1HZuJihzKMeJ7RKUqcBFoQwMSC/huJkFmYKTFwKfEmi5tdvgag4TJ7/VHuzfYcokY2NaX5CZ8mkkuzMTPBDORyOKfzHZrML8vMyMzLCI+gaPRaEzxds3L7TnNtC14nFdnTP0PLfQFtghUA0WghtSY2SJHAEYxuOhMCp4yEwDgCutiirePZYp4+WC7q/5Lpki+LqGcnBHerk6ySugRYAXJJa/f32sOArlm+u1wGlpU6dYLGpR2hV8HWUI6g9vJ0bESPo9uJTYkBAYKd/Nrttu3YN/pSdkTHvs1k52VkAsiZ6q1Gr83Pv0Whr2ZFCUVc3d7ofaPmPoi2FEC2Uk0Bqlbz23UX9R2LObqRGrUlNkJ4+pCvOArQFTCTkkrIVU2xffkf89keC2H6CmD6qxBuKc0eVCVd05fkMCnZRqpA5+OYP1vFJiibr9aReazwYjRcWzY3swvbyRbh8QqmAR8hOH1Jn3qg9sJUf2xdBWz6egBgJGMOCNfIPCho7fsLCOZ+bf6gnCIlE8ih31mm193Ky01NT8/Nyq6ur4UE+vn59X+zv7ulprZNJMj83NyU5Cb5VU1Wl1WoxFkssFnt6eYe0DfMPDGA+wmhWVVUm372bnZVZUV6uVqkABO3s7L19fMIjI6ENFldmi4uKykpLjVlQJEn4BwYJ7ycaQxsK8vLgbvC7sqJcrVaL7exiYrt2ju3aYHEJWG16aopOpzM9AoyZl7e3g6MTg3IXpJnp6fA6pjeFxwWHhrJYDUMNxYWFZWVlppQsuC00JjA4+NlMraqqqrx79/gCQXBIiHlfpaWk5GRlDho67MEQ63QV5WV5ubmlxcXQMzU1NdDbCAPhCwVu7u7BoW3D2rWrn8TyQKA3wHliczhBISGmwAvcEDo5PS01NyenqrIStNPLu02vvv18fH0b9HNxUSF05r3s7PLyMhggJyenrt17tn9YJmllRcXt+FvZmRlwcxzHeTyeq7tH2/DwdhGRjVOjamtqQIFhdKDnOZwmQ2eF+fkVFRWgCVwuF660st4ITqFUInFxcfH09m78V3jcnYT4zIz0yvJyjVYLPqWzswt0TkT7Dja2TebswzSpKK9wdnb2atPGfBJdvngBWh7TtdtjDT30J8xuXKeDFrq6uT0+2hpOfmwBDqiWC7oMcFm40RRC5UV1Fw0dW731S+mJX1CuYSMZSdQe2qKMO2f7+iRRv6G8yC7wQ4FmRqIm7bY2NxMvL8JrK0iNhkHgdcEELh9zdGW1CeJFdGpcSIzXvovN0Leqtq6UHN2hSbrFjej8jG1aG18/ILbmm3ERQ6a0FexGmcyiwoLDvx24fPEi4KZCIa+LaFJLN/gP27cuXP5Fzz59LX796qVLe3/YmXjntkwmo9wR01Q3uCYw/0H53hgztv/AQU3pdHlp6a7tW8+dOllRUa7H9YjpMsMdhCJRdOeYDz6cBsDd4Iu//rT3h21bjFs5lArFp/Pmjxk3/uaN6+dOnboVdwPeSCGXk/ebBJ7Nj9u3DX9t5NzFS81DtCql8tOPPoS592B3g1Ixf8ny194cxTD0zFcrlqWnp3ENUW+4G8DE7IWLRr452rwlUql05rSpMOtMLoVSoVy4fPkzQ9t/zp2dO2sGmIF9h/4wBuiLCguhc478ftC7jY852m7/ftOPO7bBW4DHA3bFuG/byHBggGC8/AMC3nnvg4EvD2n8lOTExMkTxtnZ2+87/Iezi+vd2wnnTp+6ce0aeE4SSS2uw8HmwV0wJrZzy+Z5S5bCoOv1RFpK0oWzZ29cu5qbkw3wBI82Kid0+M6tW96Z+P6H02dYfCmFQrFj8/fHjhwqLSmB1pqWLsGkCYQieNn3p3wIsF4PRgvyJ48fh+v1W3btjurc5NRbumBe3PVrAG0iG5s9+w+6e3hYvAyGdcbUSWCz5yxcAiTG/E9KpXLPrh1/HDwIJkRtXEExkB+UCQjO8/TyGjHyddBGjqVUWXipX/bsHjlq9Iqv1hg/AXOyY8v3Z06cGP32uMdCW8D66VMnV1dWAnBv+WFPs7gtjD2b86SRBGrgmTaD3mywWsW0ETvNWoW5eVfv/grBOADrqECsKy+sWDdL8vtOUZ+X+V36sX2pHFv4uR+LUBMqBYnjVFYDxkZ5AsRqvjEqEDlNX0GqFcobF5492oIuPlYOGkzOTevWlhQX11RXA1gAj2uwFQ1myLKF83/89YC7u0f9DibWr13z487t1NYmDsfi5gvQwsTbtxNu3rx04TzAHJ/Pb3ABwPTcmdOBasE85/H4je+gx/HzZ04Dhi5dubrPCy82sBPIfY8D1PrALz+fO30aIACQhM3mwGTm128StHP/zz+18fEdN/G9hr6UWeKeee/BS02dPmP61EnwXSr1EaFWRrdt3BDbrTswd9Nlu7ZsTklKNDFrwOvuPXuNGPnGMw2JIAjQTPB4oMf2/rhrz84dwLX1ekppwaLw7vc8dJRUUuvh5W0HvoODo42tDXBAFGUqlfKigsLsrCygwzAi5WWl4959r7FlZqIoWO6D+3+9E38r4dYtYLuG2Dff3d3T1d0d7lldXZWZlqaQy779ajXQUhi7xNsJAFuAlQBDTsD93NwcHZ1UKlVaajI0bOeW76M7d+7SrXsjpJOAFQTzD/jl5u4BjNvV1Z3FZgEEA2oD7sNAz5w2BXDw1TfeNH3L18/f2dU1OyMjKfFOU2hbkJ+XkZrC43JB1aso4nyzKbSFBwEVEPAFDaJwktra2dM/vnTxAmgOvHL7gCh4d+hYcKFKiouA/oOf8c2qlXfi479c8w3f0rwAQgH2A/4BDGPL+u+OHTkMdAEmi9rw4SMKjNGSeXOA8otEokVfrGzwFo+BtqjIliT1T5S5CvaTI2C5e1n8o92YqZiTW+X3iwl5LcoTUlFXFltXnFW1a2X1r5vYXgEcnxCWRxtEYMP29OV1iGVyHrtgjf17c6SHf3z+4zuAIKAfTIwJLNLiBVweDxz2438cmThpivnnmzd8t23zRpHIxoojRjlrPB5A1ZGDv8GDlq36yvyvwFlmz/gEXForbhdKERkhaOHS+XMBKOvtjqPADzVyYXAqy0pKigoK4B8mgtn4TfkC/pHff3t9zBhzZEcMvM7EqZH6KeXde/UeMvyV3w/8KhRS/QM4XlFevuGbtSvXrjNeAKCz/+e90EjjHcBlFtmKP5wx61luq6XeAKwsgly7fHnvrp1A3AB2xWLx4KHDR739Ns/MyAHPjezQEbxOe3t7Vv2OIgh9fNzNlcuW5GRnbd24oVuPngFBwQ3dIAwDPrx1w3ogdNAh7aOiu3Tr1rlLbGBQsL2Dg/GVd+/YvuGbNTXVVatXLNPptNBjwEO7dO3epXu34JC2ALhGhbl2+RKMfnVV1dlTJxuj7Ya1ay7/c5HH44GTARzWzsGhAadbsXhRZlrqN1+tahfZHvynOusoFEKbM8EZSU5pqq9uxcVVVFZCm4H1w8Bdv3Jl0JBhFq9MT00BDuvt4wN6Z/75V18uB6gFeB3w8hCYFD5+fuYWHbjwtk0bT5/4G94Lmjdv8VILg8XCNBrNyePHv12zuiAvDz4C4/3GW28NfeXVRxxxHMeXL1gAzwJWMWvOvOhOnRsD+iOHeO2c607KeQIFJHGtvra6qb+L+r/i8fU+QcyLcBmhqCHVlPuMcHgMrVqdfLn2yKaaA1u0WcmojZjRrNgr5ujCi+r+ICH32Qn5SB+ZCcw61Oo7gs8F/NT8E6BywJ5gvplDLRhn0CGgLUYv1Vy9AE+PHT506u+/zG8CvKYgP98cCwCqgLwA5YHf5nYeNBum5e6d263EjpkYBjzdOsaxWGxg8VkZGY/Voe9Pnebu4am7H40BtgIvcuLPY8YA8Ya1XwP0mPoBGj967LiQtm2fvU8DnGvurBkAtWA7+77Qf8fen2cvXAQmyvwyVzc3IH0urq6sRjYJdCA6JmbOosWAccBGT584YTlARxC2YrtXXx+1aceuH/ft/2jGrC5duzk4Opp6/qXBg0U2wJZI8AzA0//q2/V7D/z+2fwFPXv3heeaOgoQ1j8wEO5WWlLc4BEAIn8dO4oxsQEvv/z5gkUNoBYEDMaylavt7O3B8Tq4f5/5n9qGhcMjsjIzQBUttv/65Uu4TtshKqr/wIFgmAG4FXK5xSuTEhMB1Hx8feFBpg/jb8YBSgLGDRnxyvLVX5tDrVHVAwKDVq1d13/gILjmzyOHwFew4FByuMDNF8yeBVArEIrGvjNhz4HfwJkAf+MRh3v92q8vnD8DDxwzbvzw10Y+wSoZXOrq8aQFxRGU1EjVt69x23Vq6hK2f1vXZdvUKQnKq2c02Sn6qnIS1yF8PscnmNexB2Al0/aJMoG44dHP/mCe6qpqXK9nmYEgSU3Fh3cmTA+dVmvEFF79rUoYkwlui7lDevi338DsP6DD4MZqtaBe4e0iYOJJJJKM9DSVQgHwZwoLAvU79Nv+FwcMNK1+XDh7ll8PanE+X/D66DHBoW1VKuWpv/4CzTYRVXj01cuXqqoqHRwcH77cp9OBwwvYDV83X0uBVgCIFxUWAiF69C4FhAIKs2zhfOPimIFSo5vWr+vRp8/v+/ffirth6ge4eWh4+NsT3m2ekXyiugcIAsgFZsrL23vyR9MHDR3aPHLdLiISAPrunQSAPItKotVqPp+/cNirr1kxaaAJCqXyzTFj5y5eYuVZRg8DxqrB5zeuXpVIasFten30W019F/hy1+49Dv/+W3xcHHQ79346eVhEBLhTgOD5ebmBQcGN17US797h8vgdojtFtO/g7OJamJ8P1KFTl9jGK8aZaWnQh23D62X+nD9zBiaCs4vLOxPftzIWE96fdOWfi9XVVefPnm5sehHDfIFmR3WO+eTTz8B4PNYYHfn94E8/7AKN6d2v30czP7UMoY9+O7ZfyCMulJG4BsgpgyCpzY8sLoP54FsIiyu/9LfNyIloE2usRlDmhkXBj+FWOIW2bHZLJRIYyzk+De5qCCFanktnT58Eg2zuTYNjbPSCm1xOJAhANw6bExQaGtYugiSIc6dPAbtEzZxrwFZgcEa0BdYQfyvOfAUAoA0cyaUrV3eKqQt2Z2Wkz//sU/NcNLg+PSUFpoEx4yotNaWysgJolGkaw+95S5b1fbF/nc/78tD33xkLXzHCJSBRTVVVZlq6QzdraKtWqeBW7p6e8CJu7u7g5qclJ2FmKQTwdjKp5HH7fMTI18ExvHLpItgDY+CiuLBozszpQJN5/AevAD029ZMZ/IfVD2rKgcjLvXfyr+NNkTIT/ReLxT379G0YwCFBeXWDhw2f8fkcMHjN1i54NVs7MShZU4wPYSCNyaaldRPCSoDIfNAbS0ZaGuiki6tbQJC1Zca27dodPXKosqK8urLSlDbjHxDo4OBQVlqamZ7eGG2TE++CrQXzCRRYZGMDOHjq7+M3rl1tjLYl4AQVFXK4nAZ5lumpKdBsILBtfK3VTvELCADaW1VZmZ6aanHGgSs2bfqst9+d2FTgy8rK2NqVK3Q4HhgcsmDZcvMl32aiLcsrgGnnrJdWI8ymMZfUkxoV5u7H8Q9jisR6aY06/Q5elkediG5glIC2mnuJ8jNHbAa/+UjgiGEI9vBGEmolXpCjyc3Ulxfr5VJAGoTDYzq7cgLCOP5tEc5T37JlxNmbN64DjdXptA+C95LaSxcuXDp/zgRhRoUGn9HDy8sK1ML1Awa/PPSV18IjIoyD5+LmtuGbtaaFL8QwyU3lqSrKykC/zYmYVqMBb8gEtSAwT6Z8/MnMaVNN2RGADnK5vCA/34i2BXm5hFmdHUAKbx/f7j17PSA+fH7H6E6Jd+4Y0RZuAm57SXGR9akb3aXLqyPfAC8V5hLDsDQ/fvQbMqn0QWsRKubVjD4HGAXvD1iz8VZgPK788w90lym/DezTiNdeN3+Fx/OEuNzbN29evnjBOicFLA4NC+vWsyeKshu8PhiVseMnPAnUNl4ntGjsyUfd89bMhe7ammr4qq3Ylmt1A6SjkzMTZcKISKUSd0Yd2gLr9GrjU2BgrIOGDG0YRrh6Beg/QK2xlzrHxp4+8ffNGzcaF9QHsK6trbW3tw8w20sNz5LU1sI/nFxcHhrYcXJyhn8ARWh8c9B2dw/Pt8ZPeFyoNayMza2tldjZ2y/+YqWj4RFPiraYgxPHv53ixskm0ZYkgM/aj59tM/xtlFvnjeolNbJjP9Xs30xqVQibb0whqP11M79LX8zB+YkpJalOTZCfPapKuIKX5xEaJbUDQo+TOgUDyDWKImwRyz1I1HuIzZC3MDfPp422gIYNlB5ABBCNV3/dHz4ESw6+eZNkUK3+cPqM0W+/U993dkfN9KPBpAHlBuBjmG2+YrFZjbda+AcGAbsB5TbCEzQbv6+s1E0kEvNpTTJI4BGgzYRBjOHRxnZb2nTiMLhmwW3brt+y3TwZFmaLjY2tpKamvpPeHBcbMG7U2HFbNnxnihuYs3sdNX88Jk2b1uxhhbcW2tgAR7NeBgx63tu7DWLpFernVrRo4P/ZirHcHYyjdcMDhg5eF2ZBA/MZEtoWvJDGAVO4LD4uDjShU5c6WhDdOcZWLM7OzMjNyfb1r1eeNOnuHeAQQFM8PL3M70AY1pNYj4CSRpXT4ZRKt0htTFyHL1+4AFoLGP3ZvAXW9ys9XgST36Wf4trxpgmmXPzqJPGbk+q9HrhAYz7kRnQpW/mJvqoQ4Yiok3JKsqq3rXSevfZJ3lN990bt/i3KhIvAphE2F0AcwbgkrmZ7BPEiYlievtTymh4n5DK8sqTm5/XCvsN5HWKfqkY2TrC3WAlBqVQMGDxEJLIWSbAQZ7A64WEygAKZzwSgGI3bwzKI+a0AR0x1IxsUkGSx2IX5+ePeHGmOHVKpVGBuPACvm6al8Bg2oH79ZtTlk7ZQesC4dydePHc2KyO9cVcDCE6cNAWc32bfXKVUgoexcPkXYJ+sXwk2FWOxmmD3LQCVKIKSrQu5SJ35ASKPGuLRjS+BIaBMPhXYaGhjwiMjQA0K8vMqysudnB/QrOzMzJzsLLGdXdT9FXzgrT6+fol3bsffvNkAbY0Rg+CQ0HqFRx5tgjwl+W7tV+fPnoF5Mf79DxrT9idD29i+2E9eloMJJIFyhaK+lp/HbRfttnx76cL38QoAXD7KF8vO/AaAaPdWc3gHXlZUs+db2bnfSZ2O2hAh4DAInFBKWG4BtiPfE/UbhgosANkzSEV46BoI6IpMJo3qFPP2uxMfwqoeu+QVYsG7JC20wLDf4ZFughjSRWGGNGAH6OPE0J82RgDdBj/g04+nNfANwT/o2bvviNdefzLfiYr5wCsbYyBPW+QyWRW18U9j3mfG9QClWci+tYTNYWdnZY0d+YoV/VcqlRa3DwQFh9raiqsqKu7lZJuj7c0b12trajpERfsFBNbZeDa7fVRUwq2b169dMc/bramuzs25B5DdYImsFeXwbwd++mEXsIn+gwZPmvbxw8MDj3V3zN5J1Gd4za/fIQK7xgF4psgOtW8yOMD2DXGZt75k/gRCKaPqyHAF1XvWIBirARd+CAZp1NRpOr9uxquLUJ4IyCzFXjVSgG/xq1PEoyY1PjWSUMgISQ1VwgZjkXwh09ae8cy1ljTUHgdSAP/o80L/BUuXC4VCxr9BqMJqT2ddsQWlW89ekR06xF2/bgopGjc+vPLGGwiKPPnYPYNXuHs74acff0hNTpLU1hrooQXuzOG0csU44NdqlSolKck6xzd66ET9bFFw/908PJLv3k1OTOxstvx14+oVPaEHeDV3gOCCX/bshosBiIH2Gj/MycqsrKwQikShYWGtrnLwjsDud23bYog1iUaNfftRbOFj50LZDB8nO3tIL61qUBSGKnGvVZEKKaPpaCwnJNJpxqqyFZOpHbcohrJ5VTu/xCvL7d/7DG2gSQShK86jis/YOSBcqoq5vqJUGXcBoFaTFU8VA2NxCbUCLmPaudr0GW474h22X0g9z1paq/jnb+X1s9r8TEJeS+06g+FHmZiTBy88Wth7CLWjrKVz3cGw1z/JikSofcXgYrJAaULDwl8eNrx3v37MZ56C9iRYY3Hym0SjVuN6vHUbCfwIIMB8cQOGgCDJv47+0auJzc3PlZw9dXL+Z7OA2FI7AHk8i6s0z8NxZ+Do+Pr7j53wrvXzLIxOhpd3m3reLZcbGBR8NyEhLfkBWFeUl6UkJ/F5/M710w/aRUa6uroWFxYmJd7p3rO38cPUlBQg+IHBwQ2ylVtF9IbzA6fNmDV31nRo1daNG75ev+Gh5vCxpz3m5Cp+c2rl+tkNS3ChTL2sRp2RxPIOsPJ1QdcX7Md/XrVlKcoTGjYwCySHt2oy7zq8P8eY8mUykeBMKW9d0KQm4OUlepkEryzS15ZSUQihA3yX6ejC9g7kRcTwOnbHnN0asGzZ37/V7tuoK85iMDHgvwiKAjRjzt6ivsNYXv6kRqVJuwP624JbeI0aNnb8BE8vL1Mc00gMwQl1cXXzauNtb/9UT2snG89PCzPU+BH5SDeBl+JwuQFBQdYNjLOzcyvqPcD9+jVfK+RyLq9eTiH4syf/Ot6jd5/BQ4c9z1Ark0m/W/MVcEY7e/vXx7zVtXsPGxtbc0pujCQsnTc37vq1VocYO3uHoSNebd7Xw9pFgOudnZVpSsW9fetWeWmpu4dHeESk+ZVOzi4hYWF5ufeuXb5sQtuUpESw634Bgc1L5nsa8sJLA+5lZ2/8du3Fc2fXrPxy7qIlLYy2ILZD31LfvS6/cAhtEE9AEMXF46IXhlv/uvi1ibqCHOmfP1JfByAUiDXp8cWzRwt7DbMd/g4noG6lnuXla+vlSw56Ey8vxitLSa3GUOKWwxTaoDZ2qI3YYvKvvra6cv1CaBvC4ZmaRyhr+dEvOM1a3QJZEFbR9qVBL7cND28dL6/RcUkEYeHYNL1hNa0eqTeUPrlvMesFZHVarZ9/wM6f9hn9JivRhlbU+L0/7LqTEN94izNl6jBs8/pvjbuqnlu0vRMfb9gnyhj//gdWkvN5fH6rnF7RyBA3P64S0ratQCgsKSkpyMsNDKY80WtXLms06rbh7RoPUKeYWONWGiDU4BoCQGdlpDNRZtuw8CYJQmvo4XtTpuZkZx3/48iBX3728fVtkEfUcJI2L5jnOG0pJziKUEnr3YvDV8VfUCVcfegNHCYv4HXoTSjrvg6MFaa87MS+4hmvlc5/F5gpXpzPMExvgFeWpy+vfSy/c29ex27c8GiWTxDT3skItSSuxStKTLeFb5XMe8doBqiQ7n2o5XXs4zJ/vQlq9ZIaTUqCKv6KJv0uIZe2THzTiLitNx/A4INSmvw7w8YYXX5eXoPLSkuK5TKpCV6phFAMM5W8EQlF9dZnUFShkBsjCWjT0opom5mevmfXTtNeBoYhD8FkGFhsNgDZ5vXfPc/cNic7G5whgUDYs7e1oIdh1bQ1rZqx4sSTnGQBtNTJ2VkmkWSkpTEMJeJux8czMaxzrIVMoeiYGLFYnJuTY9zSXVRQUFJcDO5L4xQrgwYa2qZ/eF0BwjBBALVbUGlnL1gUHhkJLvWGtWsuXTjf0mgLzRXbu87bwG4TBlhmPiAkrqvZsw546EOIGJcHTJPtFWyshGD4LtNw/gKpjDtTvnZG4bRhRdPfqFw3r/a3HYpLJ9SJcdrMJO29dF1uhiYzSXXnuvzMH1WbV5TOe1eXn1NHxApzSxZM1GTeNmfcYA84gR2cP//GmKWgSb1dtnRqwfg+RTNfK5kzunjmyMIpQ6q3rbJSuuHfIs7OLja2tuYKB3q8b+/uyooK0ydAEHbv2G5eNxbQlsfjuXvUZSJ7eHvX2xyMYcVFhZfOn2uCzhOA5hXl5a341hu+WSOV1Jri4AC1waGhAoHABApghP44dPDqpX+e24GTy2TgbwB1fTZpD80W47YahVyux5sZpgf09PXzhzFKMYRu01JTCvLzxGK7jp0sBPSoPDB//9qamps3qPhJZkaaVCIBCuwb0DBQyeFwBEKqbdXVVQ9tg6S2Bn7DTGnBBA9bsXjJl6vAkChVquUL59/Lzm7JSELdN9293VbsLF89U5VwDuXXlYkBlqpKvFy9a63DB3Osf53l4uEy99uS+eP1tRUIR1DnECBMhCtEDOeJaTLi1SnX63gak0XtuKUmFWI4wUGll5dhdt4uczfwoqjSk7qyotIlk7UF6SjP9r5vgRAqCdsjEKwCZl/npxBaNSesI1hD5c3zpFoGbcariqv3faO4cd5l7jq2b/C/F22Bn4aGhRfk55uyPtlsdnpq6oTRb3br2dPR2VlaWwuOW05Wlnldap1W6x8Y5HW/KnNwSKjY3t587wOwhi+WLLp+7Wpo2zCYb4ALMpmssqK8tLQU/MH0lJR3J095b/LUVnnlQwf2/3P+nCmKB1ZEbCdeu2HT/p9/2rppozGdGSYVVaTmmzWRHaMa15Z8HoTqagQhqbK21mgjE23lfFvvNm1AG8C4lpSUeDa9DdK6hIaFnTl5wrjH4eb162Bpojp19vO3sNIDlr5Dx+j4uLi4a9fGjn83+W4itYWkjQ+wisYX+/r7w2Wg29VVVfZN72AuLioCsgxvAde3bOeAbZizaMmcmdNLS0sWzv5sw7YdAMEtxm3resTZzXX5DvHIaaReR9xnqSjPpvb3LZL9Wx/6dXZAW9dFW1BbJwKAr2G7mAibB2yX+uGJqCPRQNVwHQPXkjo1oVUJugzz3PQnvwvlfOFVFeXLpmjzUuDRpjAOoagG6u26dDvm8WBtlBfZRfzquy7z13usPcBtGwPMF8E4TKETfLd0wXvanLR/Nb0dPHQYOFXmi8Vg9svLS/ft3QNws3vnjns5OQ22AGi02oEvDzFtqnFzd4+J7apSKs2xQKPRHPx134pFC+Z+OnPB7E9XL1+6Y/P3x48cTklKUlHRtMxWednS4uJtmzaabx/SajTvfjDZydll7IR3g4KDTZUNuFxucmLij9u3PZ+jBpwIYzKVSiV1yEITAh53Xm4uq5XOwTRKh+hOHC6nqqrq7MkTzb5JWLsIGI7CgvzystKEWzdBVztERze1p6tzbCw4XulpqWVlpVlZGUawtnhl9569WSxWSVHR7wd+tfL03/fvq6gohynQrbk7ua1I3xf7vz+Foh1379z+cskii1stnpROo1yew6S5bl/s4YVR4GXEXJTNq9zxRfXWlQ8NKXBC2wNBZnsGEIoahvWgJ8IkCRwegYrsHSctcftiF8uTSgTBayrLlk1RZyQYjtql3hB4MaGoFfQY5rZqN8vLcrII2y8E7ISg2xC9HDwLPWA6XpFfuvgDTUbivxdte/bp+9LAwVKptD5HoCqRC8DXEgobpBYZmcWrr9crsD1x0hRgB+ZFWIAeAqsFCsmnhPoH3Ap+cyhh5+fe02o0z/5lN2/4rri40JSkCWjVpXv3kaPGUH6ije3UT2YyzFJlwU//efcPKUnP4+ACAEG3QvuPHTnc4E+4Tnc7/taiOZ9PnvA2WBcWqzXRNrpzTLvI9oRev2vbltMn/m7qMplMGh93o7CgwOJfA4NDwHmSSiTnz5zJzcnm8XmdYprc3hkWEeHq5l5VUXH25El4fdBe6CuLV/bo3adjp064Ht+1ZfPeH3bpGuUsgj7vNPxJj+tju3Xv8pgn3zyivDtpirEs799/Htv03bqWjCTUhQJTEzBHN177WG54J8WVU7I/f1GnxBEqGZCimn3rVMk37cd9wuvQ1XS2rgXADQhzW/1L9dYv5OcPUSv7bN6DioiAvyRhqHtAdR/L1UfYe6ho6BiWU13KF15SULbiY3X6TSrmC1isVTP0ONs7VPzGJFH/EaaHQiPVKfHcYCrLhOXlr83N4EXGoHyhy9x16DqB9MTPCIsHFgIvyyuZ/Zbt8PH8zn1YPoGmUg//IgF3RiaVXTh3BvDFyuTEcVypUIA2L1/1VQO26xcQsPiLlQs+/xSmBEAr0vTAGbAMuZeTXVJcbL32UovLhXNn//zjCKC+8b+GA8cEH82YZQrG9e7XD5j+4YMHjBuggT0pFIr1a9ds3L4DRZnP1ZBRVQp79Dxx/M/f9v2Sd+9ex06dRSIRjE5+Xm5qcnJWRrpEInF0cnJydigrLWndiMf0z2Z/9MF7VVWV82bNOPDLT5EdolzcXDlsNnhIkpra0pLigvz8wvx84KEffjJz6ifTG9/E1c3Ny8s7NSV5397dtbW1AKZh7ZrcGObo6ARkFm776097a6qrwDdv6pQjDMPmLFzy0aT3odPWrvzi6KGD7TtGe3p5gW6rVeqC/Dzg0dlZmTiuA5f/s/kLnuIEXLioIC836e7dXVu3+Pj6DaqfffikaIvZO1duXCLsO0zYc4Cw50Bhj5e02anKa+dUd69pC7LUydeKZozghsYKu7/EjejM9g1BLZUZxBycnOd8I3xhhPToT+q0eEJWTeI6QwoPF+UJWfYunMAwXnQvqritzYNoiOLyycpv5+tKMxCOEPCdKbLnh3cR9HpZ2GMAKqi3U4tp56TNSOJ37F75/TLAXF1JAaAtw5Dw4DxrFTe8s+z4z7qSPAbKpHJ1T/xGqFW2Lu9ZR1udTqeUy03rmtSZuwhC6Ju1YkuSSqUCJtiDY7gUCrxRgVGASIAME1+D/5qfmm4UkY3N1xs2/vTjLpi6QAeM9QZRwzk9pKGR1A4fkmHv6Dhy1GigsRajS8CRt/64d9N339y4elWllCGG3UHGgjikYeXXuAYFrbVzcAhtG8Y0q1Oj1WoVcoWpPotGrVarGm6YhpuoVEroPVMcQClX6MxOaYNmw98bdghedwF1AMHypfCJabkGHvHJZ5+H1s8NmvzRJ9evXoHJb7I6Z06e2LNzZ8MjeZocE6pIgkIubzZzp8ZLLketJs8ZZdbc+RUVFfE3486eOgk/iKEKAZgQjIU5ODgO6dN34pSpZ06cWLVsSeNTW+Ay6EmyUY2LxqaR6lC53PpeFaoz1Sq4DH43/lNE+w7fbtn29RfLAU3A4F04e9ZQoxmhNoMbdAt0jc3hUmXAmqjdDIrkHxh4/crlLI1aq9bEdutmb7VQZHRMl+N/HMnJyoS3Cw5t693Gp6kr4bbf79i1dtWXVy79k3T3zp2EBGO2DJUnROiZTEwoEr3Q/6Xpn882rQk3IL/w1qCW1ostGFSX6h9NE8fniGxsF3+xavKEcWB4Fs753MHJKSa26wP//Mk3JqoT40rmvs2NiLUbNYUbHm0aXvDx9SX5eC0FnQiLjdk5Yp5+TNGDhVdjnIE67sxcRytK8KJcvVIBDBdAE9Cc6eiKmLnAcDdN+l3Zqd+VcReYtnYsV2+Wext2YDg3KKKpKl9AjWt2f2sz9K3qnWuogpAuHg4fzK13Aa7Tl5cQCinCE2JObtaPODMK8A4wmCyzk19haPu+2L8ZqZ0wn//685jxUNv7E1UXE9vNr/7yK3heVy9fNgEQKDeY7gGDX7ZYAa+2pubGtat3EuKLCgqApepwHWZQODd39/DI9jGxsQ+t1QJvlJ6WeuPqlYy0tMqKCoAe6okcDgA66FAbH9/AoOCAoCCgXfUjjLdSkpJM3QKTBBjKCwMGNHCQT/x1XC6Tmd4XoDaqc+fgkNC6/2q1fx07Bqpv3iHgchr3WQCbvkydifJgky7GYvUfMLBxyi0MEAyTqTEAf2KxeMDLQx4l+wdQ6e9jR6VSaVBISOcuzSlmBGTq+uXLYFFeeGmA+UEDFgUm8PGjR65dvgxdTZ2wIBS6uLmFhbeDRxv9BhiFa1cue3l7NzgIDqgfeOUGb7q3eWWsRhiqhteRy+XtIiOt18k+d/p0UWG+u4dX3xdftHiBRqO+fuUKNKYgL08mleB6PZvFhs4Hzfdq0yYoKCQoNNS56eKH6ampt+JuwKDodFpoSVPBAaOUl5WdO30K1ADGDrhqj959HqK0BHn3TsLlixezMzNqaqp1Wh2LzbK3dwgIDu7eszfw6KaGHgxAZkaGg4ND/0GDrGz1hClw6q/jYBr9/P3BI2nqMph3MAtA+aHNvfu90JJoS+nK1dOlC8YxmBg/qg9VaiuqO2Brkza/olR547zy5gW8OJ/UqpkOLkBIbV56tQHsNtmhWg3cgbKStvbUft9HyeQgCV1RHqC2vrYKs3fCy0tYnj6M/4wYzDuBmO1iaIYYz4Jt3eza/4IYToolUSbz39Ja0C3j8WvPp9o/VxqLtFTRDfnZo+VfTyc1CgYT/B8PTmAENzgC8/Jjih3Au6DIo0yiK8zRJMerU27hNcUMhAn9wQ2LEfQYyPEL4YR2sHaaAy200ELLv1yQFixxJL/wV8XaT0mtEmGySZ2a1OOGRC6qTAEV2NGpqRQuJoayePCbUMtFfUY4z/6GHgNaaKHlvyAtWYxK2GsgJrYrWz0LL89F+eL725UIKrgMiMvhMziouXePCmzpAaCFFlpobttM0ZUWVq5fqLx+gtoVZu0EMwqFbQa9ZTN4NObujfxLAlW00EILLc8L2jIMB+VKj+yu+WWjvraM2nTQVIYjSRBqOSoQs70CWR4+mKMryhNSxz7yhZiDM8vTB3P1Qp77Uta00EILLa2GtkbBi/Nqftkkv/AHoZShXAGjKZ5L6ElcSwV5Sf39ZDeEOmSMK2B7+PGieoj6DWO1CaSHihZaaKHR1ppos1Okx35WXD2NVxUyEBRhcerCC8ZNSvd365KEnjpbQY9TtTkMGfiGcztVDK2SKfa0Gfy23TvTmSI6zksLLbTQaGud51ZXqOIuKm9e0GQl6auo0uAkiRtILJOBYgiGoUI7ptgec3DBnNyZ9k4oT0AVRlKr9DWV2sIcTfptpoPbv71MFy200EKj7bMTQiHHywrxsiK9QkbxWw4XFdlgYgfExo7ZxHEMFPPVqFUJV3RlhTaDRiGtWpuDFlpooeXfgbaPKLrSQnXSLV1eJsrjA59l+YWyXNzp0aKFFlpotH0KLFitVCfelBzYqrh+nCl25QR1EL00UthrMM1taaGFFhptn4rIThys/H6xXlKOMDF+zEtOM1Y+vcMcaaGFFlr+u2gLok6OL1sxVV9dRuIablhX12XbzEsv0kILLbQ8/4L+K1rJDevoMn8TKrRDMI46+VLV5uX0yNFCCy002j4dwG3bwXXhJszRgyQQ2al98nPH6MGjhRZa6EjC0xJdeXHtnu9kZw8xmEz3L3Y/KF5OCy200EKjbctjbkG24vIpXVmhePg4elMvLbTQQqPtUxaqOLseYWL0KNJCCy3Pv/xPgAEA1CqOtBRke1cAAAAASUVORK5CYII=); 29 | } 30 | /* Custom page header */ 31 | .header { 32 | border-bottom: 1px solid #e5e5e5; 33 | } 34 | /* Make the masthead heading the same height as the navigation */ 35 | .header h3 { 36 | padding-bottom: 19px; 37 | margin-top: 0; 38 | margin-bottom: 0; 39 | line-height: 40px; 40 | } 41 | 42 | /* Custom page footer */ 43 | .footer { 44 | padding-top: 19px; 45 | color: #777; 46 | border-top: 1px solid #e5e5e5; 47 | } 48 | 49 | /* Customize container */ 50 | @media (min-width: 768px) { 51 | .container { 52 | max-width: 730px; 53 | } 54 | } 55 | .container-narrow > hr { 56 | margin: 30px 0; 57 | } 58 | 59 | /* Main marketing message and sign up button */ 60 | .jumbotron { 61 | text-align: center; 62 | border-bottom: 1px solid #e5e5e5; 63 | } 64 | .jumbotron .btn { 65 | padding: 14px 24px; 66 | font-size: 21px; 67 | } 68 | 69 | /* Supporting marketing content */ 70 | .marketing { 71 | margin: 40px 0; 72 | } 73 | .marketing p + h4 { 74 | margin-top: 28px; 75 | } 76 | 77 | /* Responsive: Portrait tablets and up */ 78 | @media screen and (min-width: 768px) { 79 | /* Remove the padding we set earlier */ 80 | .header, 81 | .marketing, 82 | .footer { 83 | padding-right: 0; 84 | padding-left: 0; 85 | } 86 | /* Space out the masthead */ 87 | .header { 88 | margin-bottom: 30px; 89 | } 90 | /* Remove the bottom border on the jumbotron for visual effect */ 91 | .jumbotron { 92 | border-bottom: 0; 93 | } 94 | } 95 | --------------------------------------------------------------------------------