diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 58f7b98..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2018 Nutanix Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 862403f..0000000 --- a/README.md +++ /dev/null @@ -1,27 +0,0 @@ -# Automation Repository - -Community repository for misc things Nutanix automation, centralized to help users learn code, leverage existing work, and contribute back. - -In addition, we do have a dedicated repo for Nutanix Calm blueprints, which is here: https://github.com/nutanix/blueprints - -## Disclaimer - -Many of these are *not* production-grade scripts, and are used to either do specific tasks or simply demonstrate functionality. Also please be advised that many of these scripts may run and operate in a way that do not follow best practices. Please check through each script to ensure it meets your requirements. Please make sure you add appropriate exception handling and error-checking before running it in production. - -## Repo Admins - -* Chris Rasmussen, Developer Content Architect, Nutanix (Melbourne, AU) -* Jon Kohler, Technical Director, Nutanix (Vermont, US) - -## High Level Changelog - -* 2019.12.13 - Chris - Updated import blueprint script to work with Calm 2.9 -* 2018.09.21 - Chris - Remove blueprints (please see https://github.com/nutanix/blueprints) -* 2018.04.24 - Chris - Added detailed instructions to graphical API demo app -* 2018.04.24 - Chris - Removed a few old/legacy scripts -* 2018.04.05 - Jon - Consolidated Chris Rasmussen (digitalformula) repos -* 2018.04.05 - Jon - Consolidated random /nutanix/ org repos - -## Support - -Nutanix loves Open Source, and leverages a community supported model. Nutanix welcomes Pull Requests and Issues, which will be reviewed on a best effort basis. diff --git a/amazon-alexa-skill-nutanix/AlexaSkillArchitecture.jpg b/amazon-alexa-skill-nutanix/AlexaSkillArchitecture.jpg deleted file mode 100755 index 53f30c5..0000000 Binary files a/amazon-alexa-skill-nutanix/AlexaSkillArchitecture.jpg and /dev/null differ diff --git a/amazon-alexa-skill-nutanix/README.md b/amazon-alexa-skill-nutanix/README.md deleted file mode 100755 index b0227c3..0000000 --- a/amazon-alexa-skill-nutanix/README.md +++ /dev/null @@ -1,108 +0,0 @@ -# alexa-skill - -## Synopsis ## -The Alexa Skill for Nutanix provides natural language interaction with Nutanix cluster via AWS Alexa enabled devices. The code and samples presented below were created to be used with AWS infrastructure, specifically Alexa Skill Kit, AWS Lambda and AWS RDS MySQL. For additional information on how to use Alexa Skill for Nutanix refer to: -http://myvirtualcloud.net/getting-started-with-nutanix-skill-for-alexa/ - - -## Author ## -Andre Leibovici (@andreleibovici) - -## License ## -Licensed to the Apache Software Foundation (ASF) under one or more -contributor license agreements. See the NOTICE file distributed with -this work for additional information regarding copyright ownership. -The ASF licenses this file to You under the Apache License, Version 2.0 -(the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - -## Architecture -# -![alt text](https://github.com/nutanix/alexa-skill/blob/master/AlexaSkillArchitecture.jpg?raw=true "Architecture") -# -## Alexa Skill - -##### Intent Schema -# -`` -{ - "intents": [ - { - "slots": [ - { - "name": "property", - "type": "LIST_OF_PROPERTIES" - }, - { - "name": "type", - "type": "LIST_OF_ALERT_TYPES" - } - ], - "intent": "GetCluster" - }, - { - "intent": "AMAZON.HelpIntent" - }, - { - "intent": "AMAZON.StopIntent" - }, - { - "intent": "AMAZON.CancelIntent" - } - ] -} -`` - -##### Custom Slot Types -# -``LIST_OF_ALERT_TYPES critical | warning`` - -``LIST_OF_PROPERTIES name | utilization | health | hosts | alerts | summary | property | registration | machines`` -# -##### Sample Utterances -# -``GetCluster open Nutanix Unofficial`` - -``GetCluster ask Nutanix Unofficial to get cluster {property}`` - -``GetCluster ask Nutanix Unofficial for cluster {type} {property}`` -# ---- - -## Lambda - -**getCluster.py** -All imports must have been downloaded locally before uploading code in zip - -**rds_config.py** -Configure database connection details (**must change**) - -Note: RDS instance address for each region is hard-coded into getCluster.py (**must change**) -# ---- -## RDS # -# -Create a MySQL RDS instance and run sql below to create DB. -The RDS database must be populated with the Nutanix cluster public IP and credentials. This may be done manually, or via a public web interface. - -` -CREATE TABLE `alexa_beta` ( - `idalexa_beta` int(11) NOT NULL AUTO_INCREMENT, - `alexa_userid` varchar(500) NOT NULL, - `alexa_clusterip` varchar(45) NOT NULL, - `alexa_username` varchar(45) NOT NULL, - `alexa_password` varchar(45) NOT NULL, - `alexa_nickname` varchar(45) NOT NULL, - `alexa_clusterport` int(11) NOT NULL DEFAULT '9440', - PRIMARY KEY (`idalexa_beta`), - UNIQUE KEY `alexa_userid_UNIQUE` (`alexa_userid`) -) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=latin1 -` diff --git a/amazon-alexa-skill-nutanix/getCluster.py b/amazon-alexa-skill-nutanix/getCluster.py deleted file mode 100755 index 888ef96..0000000 --- a/amazon-alexa-skill-nutanix/getCluster.py +++ /dev/null @@ -1,504 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -from __future__ import print_function -import argparse -import time -import datetime -import json -import sys -import boto3 -import os -import requests -import logging -import rds_config -import pymysql - -# rds settings -rds_host = '' -name = rds_config.db_username -password = rds_config.db_password -db_name = rds_config.db_name - -# Cluster connection settings -ntnx_clusterIP = '' -ntnx_password = '' -ntnx_username = '' -ntnx_clusterPort = '' -ntnx_nickname = '' - -# Speechlets -NUTANIX = "newtanicks" -INTELNUC = "intel nuck" - -logger = logging.getLogger() -logger.setLevel(logging.INFO) - -API_PRISM = '/PrismGateway/services/rest/v1' -API_PRISM_V2 = "/api/nutanix/v2.0/" - - -def __supress_security(): - # supress security warnings - requests.packages.urllib3.disable_warnings() - - -def __htpp_request(base_url): - # supress security warnings - __supress_security() - - s = requests.Session() - s.auth = (ntnx_username, ntnx_password) - s.headers.update({'Content-Type': 'application/json; charset=utf-8'}) - return json.dumps(s.get(base_url, verify=False).json(), sort_keys=True) - - -def __request_clusters(cluster_ip_address, cluster_port): - base_url = "https://" + cluster_ip_address + ":" + str(cluster_port) + API_PRISM + "/clusters/" - return __htpp_request(base_url) - - -def __request_cluster_hosts(cluster_ip_address, cluster_port): - base_url = "https://" + cluster_ip_address + ":" + str(cluster_port) + API_PRISM + "/hosts/" - return __htpp_request(base_url) - - -def __request_cluster_vms(cluster_ip_address, cluster_port): - base_url = "https://" + cluster_ip_address + ":" + str(cluster_port) + API_PRISM + "/vms/" - return __htpp_request(base_url) - - -def __request_cluster_alerts(cluster_ip_address, cluster_port, type): - # Type must be'warning' or 'critical' - base_url = "https://" + cluster_ip_address + ":" + str(cluster_port) + API_PRISM + "/clusters/alerts?severity=" + type - return __htpp_request(base_url) - - -def __set_rds_host_region(event): - # Define request source and assign correct RDS instance - global rds_host - if event['request']['locale'] == "en-US": - rds_host = "nutanix-beta.cel0uwqzzgpj.us-east-1.rds.amazonaws.com" - elif event['request']['locale'] == "en-GB": - rds_host = "nutanix-beta-eu.cpdl28a97nyk.eu-west-1.rds.amazonaws.com" - - -def __request_userID_data(userId): - - global ntnx_clusterIP - global ntnx_username - global ntnx_password - global ntnx_clusterPort - global ntnx_nickname - - conn = pymysql.connect(rds_host, user=name, passwd=password, db=db_name, connect_timeout=5) - cur = conn.cursor() - logger.info("RDS connection sucessfull") - - try: - cur.execute("SELECT * FROM alexa.alexa_beta WHERE alexa_userId = (%s)", (userId)) - data = cur.fetchone() - if data: - ntnx_clusterIP = data[2] - ntnx_username = data[3] - ntnx_password = data[4] - ntnx_nickname = data[5] - ntnx_clusterPort = data[6] - return data - else: - # - # - # Must be changed once only registered clusters are accepted - # - # - logger.error(userId) - userId = "amzn1.ask.account.AGGNJ6WTSGQ5VEWK2J4FAHXPL477LF35VWR6KMIEDMFAVBYZR5CT5GO4U73ZWSEAKONHR3KW7NKUA4GATOTIZB24FP6L4BPD4UVENI23YUSCMOJAWYRWDG6ZDJNIRH4VSENFFXUEO2TJ24EEOF7NXDYR5RH7YDQA7RHIXTKEL7625UZ25YTWMZGWGV26C4PM6G7DYCZNFC7S2AY" - cur.execute("SELECT * FROM alexa.alexa_beta WHERE alexa_userId = (%s)", (userId)) - data = cur.fetchone() - if data: - ntnx_clusterIP = data[2] - ntnx_username = data[3] - ntnx_password = data[4] - ntnx_nickname = 'stranger' - ntnx_clusterPort = data[6] - return data - except Exception as e: - logger.error(e) - return None - finally: - cur.close() - conn.close() - - -def cluster_registration(intent, session): - session_attributes = {} - card_title = "Cluster Registration" - card_content = "Use the URL below to register your Nutanix cluster \n http://myvirtualcloud.net/alexa-skill-for-nutanix-registration-form \n Your Alexa ID for cluster registration is " + session['user']['userId'] - speech_output = '

Please check your Alexa card to retrieve the Alexa user id, and follow the registration instructions.

' - reprompt_text = "" - should_end_session = True - return build_response(session_attributes, build_speechlet_response( - card_title, False, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_internal_error_response(): - session_attributes = {} - card_title = "Internal Error" - card_content = "" - speech_output = '

Sorry, there was an internal error, or the Alexa userid does not have a ' + NUTANIX + ' cluster association

' - reprompt_text = "" - should_end_session = True - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_welcome_response(): - session_attributes = {} - card_title = "Welcome" - card_content = "" - speech_output = '

Hello ' + ntnx_nickname + ', welcome to the unofficial Alexa Skills for ' + NUTANIX + '

' + \ - '

If you need help, say help

' - reprompt_text = '

I didnt hear your request.

' - should_end_session = False - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_help_response(): - session_attributes = {} - card_title = "Help" - card_content = "" - speech_output = '

You may ask for the cluster summary saying, Alexa, ask ' + NUTANIX + ' unofficial for cluster summary,

' + \ - '

or you may ask for a specific property. Alexa, ask ' + NUTANIX + ' unofficial for cluster utilization.

' + \ - '

You may also combine a property and a type. Alexa, ask ' + NUTANIX + ' unofficial for cluster critical alerts.

' + \ - '

You always need to use the invocation name, ' + NUTANIX + ' unofficial.

' + \ - '

If you have not yet registered your ' + NUTANIX + 'cluster, say, Cluster Registration

' - reprompt_text = '

I didnt hear your request.

' - should_end_session = False - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_error_response(): - session_attributes = {} - card_title = "Error" - card_content = "" - speech_output = '

I am sorry, I dont understand your request

' - reprompt_text = "" - should_end_session = True - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def model_error_response(intent, session): - card_title = "CommunityEdition" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - speech_output = '

This cluster is not a ' + NUTANIX + ' community edition.

' \ - '

Only ' + NUTANIX + ' community edition can be managed with Alexa at this point in time

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_model(): - return (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['rackableUnits'][0]['modelName']) - - -def get_name(intent, session): - card_title = "Cluster Name" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - speech_output = '

The name of the cluster is ' + clusterName + '

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_memory_utilization(intent, session): - card_title = "Cluster Utilization" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - hypervisor_memory_usage_ppm = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['stats']['hypervisor_memory_usage_ppm']) - hypervisor_memory_usage_ppm = int(hypervisor_memory_usage_ppm) / 10000 - speech_output = '

The memory utilization for the cluster ' + clusterName + ' is at ' + str(hypervisor_memory_usage_ppm) + ' percent

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_cpu_utilization(intent, session): - card_title = "CPU Utilization" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - hypervisor_cpu_usage_ppm = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['stats']['hypervisor_cpu_usage_ppm']) - hypervisor_cpu_usage_ppm = int(hypervisor_cpu_usage_ppm) / 10000 - speech_output = '

The CPU utilization for the cluster ' + clusterName + ' is at ' + str(hypervisor_cpu_usage_ppm) + ' percent

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_hosts(intent, session): - card_title = "Cluster Hosts" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - totalEntities = (json.loads(__request_cluster_hosts(ntnx_clusterIP, ntnx_clusterPort))['metadata']['totalEntities']) - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - speech_output = '

The total number of hosts for the cluster ' + clusterName + ' is ' + str(totalEntities) + '

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_machines(intent, session): - card_title = "Virtual Machines" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - totalEntities = (json.loads(__request_cluster_vms(ntnx_clusterIP, ntnx_clusterPort))['metadata']['totalEntities']) - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - speech_output = '

There are ' + str(totalEntities) + ' virtual machines in the cluster ' + clusterName + '

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_health(intent, session): - card_title = "Cluster Health" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - operationMode = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['operationMode']) - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - speech_output = '

The health for cluster ' + clusterName + ' is ' + operationMode + '

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_alerts(intent, session): - card_title = "Cluster Alerts" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - - # Check if for alert type - try: - type = intent['slots']['type']['value'] - except Exception: - type = "critical" - - totalEntities = (json.loads(__request_cluster_alerts(ntnx_clusterIP, ntnx_clusterPort, type))['metadata']['totalEntities']) - clusterName = (json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort))['entities'][0]['name']) - speech_output = '

There are ' + str(totalEntities) + ' ' + type + ' alerts in the ' + clusterName + ' cluster

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_summary(intent, session): - card_title = "Cluster Summary" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - - jsonObject = json.loads(__request_clusters(ntnx_clusterIP, ntnx_clusterPort)) - - clusterName = jsonObject['entities'][0]['name'] - operationMode = jsonObject['entities'][0]['operationMode'] - hypervisor_memory_usage_ppm = int(jsonObject['entities'][0]['stats']['hypervisor_memory_usage_ppm']) / 10000 - hypervisor_cpu_usage_ppm = int(jsonObject['entities'][0]['stats']['hypervisor_cpu_usage_ppm']) / 10000 - totalEntitiesHosts = (json.loads(__request_cluster_hosts(ntnx_clusterIP, ntnx_clusterPort))['metadata']['totalEntities']) - totalEntitiesAlerts = (json.loads(__request_cluster_alerts(ntnx_clusterIP, ntnx_clusterPort, "critical"))['metadata']['totalEntities']) - totalEntitiesMachines = (json.loads(__request_cluster_vms(ntnx_clusterIP, ntnx_clusterPort))['metadata']['totalEntities']) - - speech_output = '

Todays health summary for the ' + NUTANIX + ' cluster ' + clusterName + '

' + \ - '

There are ' + str(totalEntitiesHosts) + ' hosts, and ' + str(totalEntitiesMachines) + ', virtual machines in the cluster

' + \ - '

and ' + str(totalEntitiesAlerts) + ' critical alerts

' + \ - '

The overall cluster memory utilization is at ' + str(hypervisor_memory_usage_ppm) + ' percent

' + \ - '

and the overal CPU utilization is at ' + str(hypervisor_cpu_usage_ppm) + ' percent

' + \ - '

The overal cluster health is ' + operationMode + '

' - - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_stop_response(intent, session): - card_title = "Stop" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = True - speech_output = '

Stopping

' - reprompt_text = "" - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def get_cluster_property(intent, session): - card_title = "Cluster Property" - card_content = "" - session_attributes = session.get('attributes', {}) - should_end_session = False - speech_output = '

What property would you like to retrieve?

' - reprompt_text = '

I didnt hear your request.

' - return build_response(session_attributes, build_speechlet_response( - card_title, True, card_content, speech_output, reprompt_text, should_end_session)) - - -def getCluster(intent, session): - - # Test for Community Edition - #if get_model() != "CommunityEdition": - # return model_error_response(intent, session) - - try: - type = intent['slots']['property']['value'] - except Exception: - return get_error_response() - - if 'name' in intent['slots']['property']['value']: - return get_name(intent, session) - elif 'utilization' in intent['slots']['property']['value']: - return get_memory_utilization(intent, session) - elif 'health' in intent['slots']['property']['value']: - return get_health(intent, session) - elif 'hosts' in intent['slots']['property']['value']: - return get_hosts(intent, session) - elif 'alerts' in intent['slots']['property']['value']: - return get_alerts(intent, session) - elif 'summary' in intent['slots']['property']['value']: - return get_summary(intent, session) - elif 'property' in intent['slots']['property']['value']: - return get_cluster_property(intent, session) - elif 'machines' in intent['slots']['property']['value']: - return get_machines(intent, session) - elif 'registration' in intent['slots']['property']['value']: - return cluster_registration(intent, session) - else: - return get_error_response() - - -def on_launch(launch_request, session): - print("on_launch requestId=" + launch_request['requestId'] + - ", sessionId=" + session['sessionId']) - return get_welcome_response() - - -def on_intent(intent_request, session): - print("on_intent requestId=" + intent_request['requestId'] + - ", sessionId=" + session['sessionId']) - - intent = intent_request['intent'] - intent_name = intent_request['intent']['name'] - - if intent_name == "GetCluster": - return getCluster(intent, session) - elif intent_name == "AMAZON.StopIntent" or intent_name == "AMAZON.CancelIntent": - return get_stop_response(intent, session) - elif intent_name == "AMAZON.HelpIntent": - return get_help_response() - else: - return get_welcome_response() - - -def on_session_started(session_started_request, session): - print("on_session_started requestId=" + session_started_request['requestId'] + ", sessionId=" + session['sessionId']) - - -def on_session_ended(session_ended_request, session): - print("on_session_ended requestId=" + session_ended_request['requestId'] + - ", sessionId=" + session['sessionId']) - - -def lambda_handler(event, context): - - logger.info('got event{}'.format(event)) - - # Define request source and assign correct RDS instance - __set_rds_host_region(event) - - # Retrieve cluster data for AlexaID - if __request_userID_data(event['session']['user']['userId']) is None: - return get_internal_error_response() - - if event['session']['new']: - on_session_started({'requestId': event['request']['requestId']}, event['session']) - if event['request']['type'] == "LaunchRequest": - return on_launch(event['request'], event['session']) - elif event['request']['type'] == "IntentRequest": - return on_intent(event['request'], event['session']) - elif event['request']['type'] == "SessionEndedRequest": - return on_session_ended(event['request'], event['session']) - - -# Helpers that build all of the responses - - -def build_speechlet_response(title, ignore_card, content, output, reprompt_text, should_end_session): - - if ignore_card is True: - return { - 'outputSpeech': { - 'type': 'SSML', - 'ssml': output - }, - 'reprompt': { - 'outputSpeech': { - 'type': 'SSML', - 'ssml': reprompt_text - } - }, - 'shouldEndSession': should_end_session - } - - else: - return { - 'outputSpeech': { - 'type': 'SSML', - 'ssml': output - }, - 'card': { - 'type': 'Simple', - 'title': title, - 'content': content - }, - 'reprompt': { - 'outputSpeech': { - 'type': 'SSML', - 'ssml': reprompt_text - } - }, - 'shouldEndSession': should_end_session - } - - -def build_response(session_attributes, speechlet_response): - return { - 'version': '1.0', - 'sessionAttributes': session_attributes, - 'response': speechlet_response - } diff --git a/amazon-alexa-skill-nutanix/rds_config.py b/amazon-alexa-skill-nutanix/rds_config.py deleted file mode 100755 index 0694185..0000000 --- a/amazon-alexa-skill-nutanix/rds_config.py +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#config file containing credentials for rds mysql instance -db_username = "user" -db_password = "password" -db_name = "alexa" diff --git a/automated-integrated-workflow/blobs/approve-auto-update-vm-workflow.png b/automated-integrated-workflow/blobs/approve-auto-update-vm-workflow.png new file mode 100644 index 0000000..2625de4 Binary files /dev/null and b/automated-integrated-workflow/blobs/approve-auto-update-vm-workflow.png differ diff --git a/automated-integrated-workflow/blobs/auto_upgrade_resources_v2.png b/automated-integrated-workflow/blobs/auto_upgrade_resources_v2.png new file mode 100644 index 0000000..d4782cb Binary files /dev/null and b/automated-integrated-workflow/blobs/auto_upgrade_resources_v2.png differ diff --git a/automated-integrated-workflow/blobs/enable_playbook.png b/automated-integrated-workflow/blobs/enable_playbook.png new file mode 100644 index 0000000..b12baf9 Binary files /dev/null and b/automated-integrated-workflow/blobs/enable_playbook.png differ diff --git a/automated-integrated-workflow/blobs/get_approval_rb.png b/automated-integrated-workflow/blobs/get_approval_rb.png new file mode 100644 index 0000000..c2e76c5 Binary files /dev/null and b/automated-integrated-workflow/blobs/get_approval_rb.png differ diff --git a/automated-integrated-workflow/get_Approval.json b/automated-integrated-workflow/get_Approval.json new file mode 100644 index 0000000..0c492ed --- /dev/null +++ b/automated-integrated-workflow/get_Approval.json @@ -0,0 +1 @@ +{"status":{},"contains_secrets":false,"product_version":"3.5.0","spec":{"description":"this runbook is intended to be called by other apps or x-play to get approval on task to make a follow up decision whether to proceed or not","resources":{"endpoints_information":[],"endpoint_definition_list":[],"client_attrs":{},"credential_definition_list":[{"username":"kazi.ahmed@gso.lab","description":"","type":"PASSWORD","secret":{"attrs":{"is_secret_modified":false,"secret_reference":{}}},"name":"pcAdm","cred_class":"static"}],"runbook":{"task_definition_list":[{"retries":"0","description":"","inherit_target":false,"child_tasks_local_reference_list":[{"kind":"app_task","name":"Request Approval"},{"kind":"app_task","name":"Create In"}],"name":"0424da6d_dag","attrs":{"edges":[],"type":""},"timeout_secs":"0","type":"DAG","variable_list":[]},{"retries":"0","description":"","inherit_target":false,"child_tasks_local_reference_list":[{"kind":"app_task","name":"eab85ed8_1_META"}],"name":"Request Approval","attrs":{"loop_variable":"iteration","exit_condition_type":"dont_care","type":"","iterations":"@@{waitUntilMinutes}@@"},"timeout_secs":"0","type":"WHILE_LOOP","variable_list":[]},{"retries":"0","description":"","inherit_target":false,"child_tasks_local_reference_list":[{"kind":"app_task","name":"Request Approval_1"},{"kind":"app_task","name":"Let Update"}],"name":"eab85ed8_1_META","attrs":{"type":""},"timeout_secs":"0","type":"META","variable_list":[]},{"retries":"0","description":"","inherit_target":false,"child_tasks_local_reference_list":[],"name":"Request Approval_1","attrs":{"exit_status":[],"script":"print \"Waiting {0} minutes, requesting approval for {1}\".format(@@{iteration}@@+1,\"@@{issue_name}@@\")\n## If integrating with Jira, call jira code here to check the status of an incident or ticket and\n## set the approved variable either true or false\nsleep(1*60)\napproved=True\nprint \"approved = {}\".format(approved)","eval_variables":["approved"],"eval_scope":"local","type":"","script_type":"static"},"timeout_secs":"0","type":"SET_VARIABLE","variable_list":[]},{"retries":"0","description":"","inherit_target":false,"child_tasks_local_reference_list":[],"name":"Let Update","attrs":{"script":"triggerUrl=\"https:\/\/@@{pcHost}@@:@@{pcPort}@@\/api\/nutanix\/v3\/action_rules\/trigger\"\nheadersData = {'Content-Type': 'application\/json'}\ndef update_vm(url,vmName,vmUuid):\n svcAcctPasswd = \"@@{pcAdm.secret}@@\"\n svcAcctUserName = \"@@{pcAdm.username}@@\"\n decision=\"0\"\n approved = @@{approved}@@\n if approved == True:\n decision = \"1\"\n \n payLoad = {\n \"trigger_type\": \"incoming_webhook_trigger\",\n \"trigger_instance_list\": [{\n \"webhook_id\": \"@@{webhookId}@@\",\n \"string1\": \"JIRA ticket- vm upgrade\",\n \"integer1\": decision,\n \"entity1\": \"{\\\"type\\\":\\\"vm\\\",\\\"name\\\":\\\"\"+vmName+\"\\\",\\\"uuid\\\":\\\"\"+vmUuid+\"\\\"}\"\n }]\n }\n try:\n # print(setPowerStateUrl)\n response = urlreq(url,\n user=svcAcctUserName,\n passwd=svcAcctPasswd,\n auth='BASIC',\n verb=\"POST\",\n headers=headersData,\n params=json.dumps(payLoad),\n verify=False)\n if response.ok:\n return True\n else:\n return False\n\n except Exception as e:\n print(e)\n return False\n \n \nrepairVMUuid = \"@@{vm_uuid}@@\"\nrepairVMName = \"@@{vm_name}@@\"\n#var=\"{\\\"type\\\":\\\"vm\\\",\\\"name\\\":\\\"\"+repairVMName+\"\\\",\\\"uuid\\\":\\\"\"+repairVMUuid+\"\\\"}\"\n#print json.dumps(var)\nopsResult = update_vm(triggerUrl,repairVMName,repairVMUuid)\nif opsResult == True:\n print \"Successfully triggerd update vm\"\nelse:\n print \"Triggering update vm failed\"","type":"","command_line_args":"","exit_status":[],"script_type":"static"},"timeout_secs":"0","type":"EXEC","variable_list":[]},{"retries":"0","description":"","inherit_target":false,"child_tasks_local_reference_list":[],"name":"Create In","attrs":{"script":"## create an incident on a jira ticket to request upgrade on the VM\n## or write custom logic to notify the approver on the request where could be read back in the successive tasks\nprint \"Received request to upgrade vm {0} with uuid {1}. Going to notify approver\".format(\"@@{vm_name}@@\",\"@@{vm_uuid}@@\")","type":"","command_line_args":"","exit_status":[],"script_type":"static"},"timeout_secs":"0","type":"EXEC","variable_list":[]}],"description":"","name":"33bc3a2e_runbook","main_task_local_reference":{"kind":"app_task","name":"0424da6d_dag"},"variable_list":[{"val_type":"STRING","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"webhookId","value":"95d97115-a40c-4734-7e36-587a58f20900","label":"","attrs":{"type":""},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}},{"val_type":"STRING","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"waitUntilMinutes","value":"1","label":"","attrs":{"type":""},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}},{"val_type":"STRING","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"vm_uuid","value":"","label":"","attrs":{"type":""},"editables":{"value":true},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}},{"val_type":"STRING","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"vm_name","value":"","label":"","attrs":{"type":""},"editables":{"value":true},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}},{"regex":{"should_validate":false,"value":"^[\\d]*$"},"val_type":"INT","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"pcPort","value":"9440","label":"","attrs":{"type":""},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}},{"val_type":"STRING","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"pcHost","value":"10.48.108.12","label":"","attrs":{"type":""},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}},{"val_type":"STRING","is_mandatory":false,"description":"","data_type":"BASE","type":"LOCAL","name":"issue_name","value":"","label":"","attrs":{"type":""},"editables":{"value":true},"is_hidden":false,"options":{"type":"PREDEFINED","choices":[]}}]}},"name":"get_Approval"},"api_version":"3.0","metadata":{"last_update_time":"1654880496041397","kind":"runbook","spec_version":54,"creation_time":"1654210007343663","name":"get_Approval"}} \ No newline at end of file diff --git a/automated-integrated-workflow/playbooks-auto-upgrade-resouces-v2.pbk b/automated-integrated-workflow/playbooks-auto-upgrade-resouces-v2.pbk new file mode 100644 index 0000000..b4407bd --- /dev/null +++ b/automated-integrated-workflow/playbooks-auto-upgrade-resouces-v2.pbk @@ -0,0 +1 @@ +{"pcVersion":"6.1","pcUuid":"edf58913-382f-4449-bcab-a6884fa4345a","hashValue":"NLYOXtXiYCzyUGeersShcwDmpwYqiUx6TXEsi+wHm7c=","actionRuleList":[{"uuid":"95d97115-a40c-4734-7e36-587a58f20900","name":"Auto upgrade resources v2","isEnabled":true,"validated":true,"executionUserName":"admin","executionUserUuid":"00000000-0000-0000-0000-000000000000","triggerList":[{"uuid":"b135d0be-ccb5-48ce-ad2f-3b113afc93a5","triggerType":{"type":"trigger_type","uuid":"","name":"incoming_webhook_trigger"},"displayName":"Webhook"}],"actionList":[{"uuid":"2449c85b-107f-41d3-9c8f-cf1d962794b3","actionType":{"type":"action_type","uuid":"","name":"branch_action"},"displayName":"Branch","inputParameterList":[{"name":"values","value":"[\"{{trigger[0].integer1}}\",\"0\",\"{{trigger[0].integer1}}\",\"1\"]"},{"name":"condition","value":"[\"if\",\"if\"]"},{"name":"branch","value":"[\"9d4bd8e1-939d-4805-be79-67e73834a054\",\"06893287-06c7-4a4b-affc-ba294654d144\"]"},{"name":"conditional_expression","value":"[\"{0}=={1}\",\"{2}=={3}\"]"}],"maxRetries":2,"description":"@|","childActionUuids":["9d4bd8e1-939d-4805-be79-67e73834a054","06893287-06c7-4a4b-affc-ba294654d144"]},{"uuid":"9d4bd8e1-939d-4805-be79-67e73834a054","actionType":{"type":"action_type","uuid":"","name":"email_action"},"displayName":"Email","inputParameterList":[{"name":"message_body","value":"Upgrade on VM {{trigger[0].entity1.name}} was denied."},{"name":"to_address","value":"kazi.ahmed@gso.lab"},{"name":"subject","value":"Upgrade decision on vm {{trigger[0].entity1.name}}"}],"maxRetries":2,"description":"Copy 1"},{"uuid":"06893287-06c7-4a4b-affc-ba294654d144","actionType":{"type":"action_type","uuid":"","name":"vm_power_off_action"},"displayName":"Power Off VM","inputParameterList":[{"name":"target_vm","value":"{{trigger[0].entity1}}"},{"name":"power_state_mechanism","value":"hard"}],"maxRetries":2,"description":"Copy 1","childActionUuids":["7078e9f4-80bf-4f06-9c3d-d0c483f6a2be"]},{"uuid":"7078e9f4-80bf-4f06-9c3d-d0c483f6a2be","actionType":{"type":"action_type","uuid":"","name":"wait_for_duration"},"displayName":"Wait for Some Time","inputParameterList":[{"name":"block_resume","value":"false"},{"name":"post_check_trigger_validity","value":"false"},{"name":"stop_after_time","value":"false"},{"name":"wait_duration","value":"1"}],"maxRetries":2,"description":"Copy 2","postCheckTriggerValidity":false,"childActionUuids":["bb030b08-f0d4-41b1-a9a4-dce25b2f4b50"]},{"uuid":"bb030b08-f0d4-41b1-a9a4-dce25b2f4b50","actionType":{"type":"action_type","uuid":"","name":"vm_add_memory_action"},"displayName":"VM Add Memory","inputParameterList":[{"name":"entity_info","value":"{{trigger[0].entity1}}"},{"name":"max_memory_size_gib","value":"20"},{"name":"memory_size_gib","value":"1"}],"maxRetries":2,"childActionUuids":["22be9b10-0481-4045-8634-33a5167f12df"]},{"uuid":"22be9b10-0481-4045-8634-33a5167f12df","actionType":{"type":"action_type","uuid":"","name":"vm_add_cpu_action"},"displayName":"VM Add CPU","inputParameterList":[{"name":"vcpu_increase_count","value":"1"},{"name":"entity_info","value":"{{trigger[0].entity1}}"},{"name":"max_vcpu_count","value":"8"}],"maxRetries":2,"childActionUuids":["5a5ce560-b585-4e50-991f-a0a43ab9a0cd"]},{"uuid":"5a5ce560-b585-4e50-991f-a0a43ab9a0cd","actionType":{"type":"action_type","uuid":"","name":"wait_for_duration"},"displayName":"Wait for Some Time","inputParameterList":[{"name":"block_resume","value":"false"},{"name":"post_check_trigger_validity","value":"false"},{"name":"stop_after_time","value":"false"},{"name":"wait_duration","value":"1"}],"maxRetries":2,"description":"Copy 1","postCheckTriggerValidity":false,"childActionUuids":["65011539-4987-4b6a-8d78-48480d58f943"]},{"uuid":"65011539-4987-4b6a-8d78-48480d58f943","actionType":{"type":"action_type","uuid":"","name":"vm_power_on_action"},"displayName":"Power On VM","inputParameterList":[{"name":"target_vm","value":"{{trigger[0].entity1}}"}],"maxRetries":2,"childActionUuids":["c4553602-18a4-462a-8855-ee5860110e8f"]},{"uuid":"c4553602-18a4-462a-8855-ee5860110e8f","actionType":{"type":"action_type","uuid":"","name":"email_action"},"displayName":"Email","inputParameterList":[{"name":"message_body","value":"Memory and cpu increaed by 1 Gb and 1 core respectively on VM {{trigger[0].entity1.name}} "},{"name":"to_address","value":"kazi.ahmed@nutanix.com"},{"name":"subject","value":"Upgrade status on VM {{trigger[0].entity1.name}}"}],"maxRetries":2,"description":"Copy 1"}],"lastUpdateUser":"kazi.ahmed@gso.lab","isPrepackaged":false,"checkTriggerValidity":true,"ruleType":"kXPlay"}]} \ No newline at end of file diff --git a/automated-integrated-workflow/playbooks-trigger_runbook.pbk b/automated-integrated-workflow/playbooks-trigger_runbook.pbk new file mode 100644 index 0000000..0596f7d --- /dev/null +++ b/automated-integrated-workflow/playbooks-trigger_runbook.pbk @@ -0,0 +1 @@ +{"pcVersion":"6.1","pcUuid":"edf58913-382f-4449-bcab-a6884fa4345a","hashValue":"kwFzNb2A9iKy//BWMWdSYX+QIgs8dqfLo0cxSCGXTls=","actionRuleList":[{"uuid":"c352425c-5820-4505-b6ac-6e028454ab12","name":"Execute-Rumbook","isEnabled":true,"validated":true,"executionUserName":"kazi.ahmed@gso.lab","executionUserUuid":"b745c124-88a0-5ae4-9b65-8814659ab6e4","triggerList":[{"uuid":"f429c2a3-ad71-4d37-a351-faef231f0935","triggerType":{"type":"trigger_type","uuid":"","name":"manual_trigger"},"displayName":"Manual","inputParameterList":[{"name":"entity_type","value":"vm"}]}],"actionList":[{"uuid":"35c96433-a42e-4749-bf3f-8564b5de3535","actionType":{"type":"action_type","uuid":"","name":"rest_api_action"},"displayName":"REST API","inputParameterList":[{"name":"username","value":"kazi.ahmed@gso.lab"},{"name":"request_body","value":"{\n\t\"spec\": {\n\t\t\"args\": [{\n\t\t\t\t\"val_type\": \"STRING\",\n\t\t\t\t\"is_mandatory\": true,\n\t\t\t\t\"description\": \"Enter the name of the approval item\",\n\t\t\t\t\"data_type\": \"BASE\",\n\t\t\t\t\"name\": \"issue_name\",\n\t\t\t\t\"value\": \"jira5\"\n\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"val_type\": \"STRING\",\n\t\t\t\t\"is_mandatory\": true,\n\t\t\t\t\"description\": \"VM name to upgrade\",\n\t\t\t\t\"data_type\": \"BASE\",\n\t\t\t\t\"name\": \"vm_name\",\n\t\t\t\t\"value\": \"{{trigger[0].source_entity_info.name}}\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"val_type\": \"STRING\",\n\t\t\t\t\"is_mandatory\": true,\n\t\t\t\t\"description\": \"VM uuid to upgrade\",\n\t\t\t\t\"data_type\": \"BASE\",\n\t\t\t\t\"name\": \"vm_uuid\",\n\t\t\t\t\"value\": \"{{trigger[0].source_entity_info.uuid}}\"\n\t\t\t}\n\t\t]\n\t}\n}"},{"name":"url","value":"https://10.48.108.12:9440/api/nutanix/v3/runbooks/40beac6f-5e96-c405-37e3-392e2653e2f6/run"},{"name":"headers","value":"Content-Type: application/json"},{"name":"password","value":""},{"name":"method","value":"POST"}],"maxRetries":2}],"lastUpdateUser":"kazi.ahmed@gso.lab","isPrepackaged":false,"checkTriggerValidity":true,"triggerFilterableInputParamName":"entity_type","triggerFilterableInputParamValue":"vm","ruleType":"kXPlay"}]} \ No newline at end of file diff --git a/automated-integrated-workflow/readme.md b/automated-integrated-workflow/readme.md new file mode 100644 index 0000000..3dd3fb1 --- /dev/null +++ b/automated-integrated-workflow/readme.md @@ -0,0 +1,58 @@ +# Building automated workflows leveraging Nutanix CALM Runbooks, Prism Pro Playbooks, and integration with other application like Jira or ServiceNow + +This is an example to design and build an automated workflow that could be triggered automatically and upgrade VM resources on getting approval from the authorized body. In this case it leverages Prism Pro Playbooks with a manual trigger (for demonstration) attached to any VM integrated with CALM runbooks and third party application like Atlassian Jira to get approval and decision making process whether to proceed with upgrade or not. Other automatic triggering is possible through available triggers like alerts, events, time based or a webhook for different entities of Prism. + +Here is the overview of the workflow +![conceptual overview](/automated-integrated-workflow/blobs/approve-auto-update-vm-workflow.png?raw=true) + +## Breakdown and installation of the components of the workflow: + + - A triggering playbook: A Prism Pro playbook is needed to automatically or manually trigger some actions based sourcing from any entities. It would provide decoupled approach from the playbook for independent management of versatile integration logic and freedom of customization for the workflow decision making process. Our sample playbook (playbooks-trigger_runbook.pbk) is attached with a manual trigger from any VM running in Prism central. Import the playbook in prism central then make sure to enable it as follows. By default it remains disabled. +![architectural overview](/automated-integrated-workflow/blobs/enable_playbook.png?raw=true) + + - Runbook: A runbook is constructed in order to be invoked from a REST api action from the playbook. Import the CALM runbook (get_Approval.json). Change the variable waitUntilMinutes in the configuration section to adjust the waiting time until it gets an approval or deny on the Jira ticket. Until, a decision has been made on the ticket the process would keep trying every minute until it reaches the defined waiting limit in minutes. Otherwise, it will do nothing. Update the other variables and credentials for your environment. The process would call back the following playbook as a webhook regardless. + + ![auto upgrade vm](/automated-integrated-workflow/blobs/get_approval_rb.png?raw=true) + + Note the sample code in the Request_Approval_1 task within the while integration that hardcodes the approval to True. It check every minute if it got desired state on ticket. Change code here according to your requirement whether to get approval from Jira, ServiceNow and email reply or any custom process. + +```python + print "Waiting {0} minutes, requesting approval for {1}".format(@@{iteration}@@+1,"@@{issue_name}@@") + ## If integrating with Jira, call jira code here to check the status of an incident or ticket and + ## set the approved variable either true or false + sleep(1*60) + approved=True + print "approved = {}".format(approved) +``` + - A callback playbook: Playbook (playbook-auto_upgrade_resources_v2.pbk) has trigger type webhook which allows it to be called from the runbook in previous step. The playbook would either upgrade the VM in concern if the request was approved on the Jira ticket otherwise it will skip. It will notify the system admin via email regardless of the outcome of the decision. + +![auto upgrade vm](/automated-integrated-workflow/blobs/auto_upgrade_resources_v2.png?raw=true) + + From a runbook task a sample request to trigger the upgrade playbook would look something like this. + ```json + { + "trigger_type": "incoming_webhook_trigger", + "trigger_instance_list": [{ + "webhook_id": "@@{webhookId}@@", + "string1": "JIRA ticket- vm upgrade", + "integer1": decision, + "entity1": "{\"type\":\"vm\",\"name\":\"Xplay-loc-test\",\"uuid\":\"fdbb7d56-1ec7-4655-bb25-aea209cdd05f\"}" + }] + } +``` + +It supplies + - the webhook_id for the corresponding webhook of the playbook. Grab the id from the summary page after importing the playbook (palybook-auto_upgrade_resources_v2.pbk) into your prism central. + - name of the Jira issue as string1 + - a decision variable whether or not to update either by "1" or "0" with the field integer1 + - the vm to upgrade as entity1 + + if the request was denied the runbook would set decision 0 and the called playbook would execute the first branch and just notify the requestor the decision, otherwise it will go ahead and perform the upgrade on the VM in the second branch. + +## Test it out + - After importing and configuring all the components like requestor notified email, SMTP server in Prism Central, variables in CALM Runbook you should be ready to test an update trigger. + - Go to any VM and under action click run playbook + - It would trigger the full workflow + - Sitback and watch the upgrade. Depending on your approval process, the runbook would fire the upgrade resource playbook to perform appropriate actions. + + As we seldomly get request from customers to design and build specific low-code and no-code workflows like this, this sample is intended for audience who wants to apply the concept on other similar automated workflows. \ No newline at end of file diff --git a/experimental/.DS_Store b/experimental/.DS_Store deleted file mode 100644 index 6473eb5..0000000 Binary files a/experimental/.DS_Store and /dev/null differ diff --git a/experimental/.gitignore b/experimental/.gitignore deleted file mode 100644 index 84cc03c..0000000 --- a/experimental/.gitignore +++ /dev/null @@ -1,25 +0,0 @@ -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files # -*.jar -*.war -*.ear -*.zip -*.tar.gz -*.rar - -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* - -# macOS -.DS_Store diff --git a/experimental/hello-prism/.gitignore b/experimental/hello-prism/.gitignore deleted file mode 100755 index 625212a..0000000 --- a/experimental/hello-prism/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -.DS_Store -npm-debug.log diff --git a/experimental/hello-prism/Dockerfile b/experimental/hello-prism/Dockerfile deleted file mode 100755 index 35ee91e..0000000 --- a/experimental/hello-prism/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM node:argon - -# Create app directory -RUN mkdir -p /usr/src -ADD app/ /usr/src/app -WORKDIR /usr/src/app - -# Install app dependencies -RUN npm install - -EXPOSE 3000 -CMD [ "npm", "start" ] diff --git a/experimental/hello-prism/README.md b/experimental/hello-prism/README.md deleted file mode 100755 index c987da8..0000000 --- a/experimental/hello-prism/README.md +++ /dev/null @@ -1,34 +0,0 @@ -# hello-prism -This is a sample app which can be used to get start with developing applications for Nutanix Platform. - -It uses node.js express framework. The App currently shows following: -- Authenticating to Nutanix platform using Oauth2.0 -- Access REST API using Oauth2.0 tokens -- Use Nutanix bootstrap for getting look and feel of Prism. - - -License: MIT - -### Build docker image -> docker build -t image_tag . - -### Run docker image -> docker run -d -e CLUSTER_IP='x.x.x.x' -e CLIENT_ID='test_client_app' -e CLIENT_SECRET='test_client_secret' -e CONTAINTER_VM_IP='x.x.x.x' -e PORT='3000' -p 3000:3000 image_tag - - -#### Environment variables: - CLUSTER_IP : Nutanix cluster ip address - CLIENT_ID : Client_id for Oauth2.0 generated for the container instance of app - CLIENT_SECRET: Client_secret for Oauth2.0 generated for the container instance of app - CONTAINTER_VM_IP: IP address on which the containter instance is running - PORT: Port at which app server needs to be hosted - -#### Pull docker image (sample pre-build image from docker hub) -> docker pull codervinod/hello-prism - -#### Generate Oauth credentials -> https://cluster_ip:9440/console/#execute?action=create&actionTarget=oauth_client - -#### Follow the instructions as shown in the video to boot up this app. -> https://youtu.be/QrlsUsm1NM4 - diff --git a/experimental/hello-prism/app/app.js b/experimental/hello-prism/app/app.js deleted file mode 100755 index 52d07ee..0000000 --- a/experimental/hello-prism/app/app.js +++ /dev/null @@ -1,98 +0,0 @@ -var express = require('express'); -var path = require('path'); -var favicon = require('serve-favicon'); -var logger = require('morgan'); -var cookieParser = require('cookie-parser'); -var bodyParser = require('body-parser'); -var passport = require('passport'); - -var oauth = require('./lib/oauth'); -var tokenStore = require('./lib/token_store') -var routes = require('./routes/index'); -var users = require('./routes/users'); - -//To allow self signed certificates -process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"; - -var app = express(); - -//Init passport -app.use(passport.initialize()); -app.use(passport.session()); - -// Register oauth strategy -oauth.register(); - -// Initialize token store -token_store = tokenStore.getInstance(); - -// view engine setup -app.set('views', path.join(__dirname, 'views')); -app.set('view engine', 'jade'); - -// uncomment after placing your favicon in /public -//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico'))); -app.use(logger('dev')); -app.use(bodyParser.json()); -app.use(bodyParser.urlencoded({ extended: false })); -app.use(cookieParser()); -app.use(express.static(path.join(__dirname, 'public'))); - -app.get('/auth/provider', passport.authenticate('provider', { scope: 'all' })); -app.get('/auth/provider/callback', - passport.authenticate('provider', { successRedirect: '/users', - failureRedirect: '/' })); - - -app.use('/', routes); - -var auth_route = function(req, res, next) { - if (token_store.getToken() == null) - res.redirect('/auth/provider'); - else - next(); -} - -app.use('/users', auth_route, users); - -// catch 404 and forward to error handler -app.use(function(req, res, next) { - var err = new Error('Not Found'); - err.status = 404; - next(err); -}); - -// error handlers - -// development error handler -// will print stacktrace -if (app.get('env') === 'development') { - app.use(function(err, req, res, next) { - res.status(err.status || 500); - res.render('error', { - message: err.message, - error: err - }); - }); -} - -// production error handler -// no stacktraces leaked to user -app.use(function(err, req, res, next) { - res.status(err.status || 500); - res.render('error', { - message: err.message, - error: {} - }); -}); - -passport.serializeUser(function(user, done) { - done(null, user); -}); - -passport.deserializeUser(function(user, done) { - done(null, user); -}); - - -module.exports = app; diff --git a/experimental/hello-prism/app/bin/www b/experimental/hello-prism/app/bin/www deleted file mode 100755 index ee4ceca..0000000 --- a/experimental/hello-prism/app/bin/www +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env node - -/** - * Module dependencies. - */ - -var app = require('../app'); -var debug = require('debug')('hello-world-prism-app:server'); -var http = require('http'); - -/** - * Get port from environment and store in Express. - */ - -var port = normalizePort(process.env.PORT || '3000'); -app.set('port', port); - -/** - * Create HTTP server. - */ - -var server = http.createServer(app); - -/** - * Listen on provided port, on all network interfaces. - */ - -server.listen(port); -server.on('error', onError); -server.on('listening', onListening); - -/** - * Normalize a port into a number, string, or false. - */ - -function normalizePort(val) { - var port = parseInt(val, 10); - - if (isNaN(port)) { - // named pipe - return val; - } - - if (port >= 0) { - // port number - return port; - } - - return false; -} - -/** - * Event listener for HTTP server "error" event. - */ - -function onError(error) { - if (error.syscall !== 'listen') { - throw error; - } - - var bind = typeof port === 'string' - ? 'Pipe ' + port - : 'Port ' + port; - - // handle specific listen errors with friendly messages - switch (error.code) { - case 'EACCES': - console.error(bind + ' requires elevated privileges'); - process.exit(1); - break; - case 'EADDRINUSE': - console.error(bind + ' is already in use'); - process.exit(1); - break; - default: - throw error; - } -} - -/** - * Event listener for HTTP server "listening" event. - */ - -function onListening() { - var addr = server.address(); - var bind = typeof addr === 'string' - ? 'pipe ' + addr - : 'port ' + addr.port; - debug('Listening on ' + bind); -} diff --git a/experimental/hello-prism/app/lib/app_env.js b/experimental/hello-prism/app/lib/app_env.js deleted file mode 100755 index 612da29..0000000 --- a/experimental/hello-prism/app/lib/app_env.js +++ /dev/null @@ -1,11 +0,0 @@ -/* -Application Environment helper -*/ -module.exports = { - restUrl: 'https://' + process.env.CLUSTER_IP + ':9440/api/nutanix', - authorizationURL: 'https://' + process.env.CLUSTER_IP + ':9440/console/#page/authorize/', - tokenURL: 'https://' + process.env.CLUSTER_IP + ':9440/api/nutanix/v3/oauth/token', - clientID: process.env.CLIENT_ID, - clientSecret: process.env.CLIENT_SECRET, - appBaseUrl: 'http://' + process.env.CONTAINTER_VM_IP + ':' + process.env.PORT, -} \ No newline at end of file diff --git a/experimental/hello-prism/app/lib/oauth.js b/experimental/hello-prism/app/lib/oauth.js deleted file mode 100755 index 9fed855..0000000 --- a/experimental/hello-prism/app/lib/oauth.js +++ /dev/null @@ -1,29 +0,0 @@ -var passport = require('passport') - , OAuth2Strategy = require('passport-oauth').OAuth2Strategy - , tokenStore = require('./token_store') - , appEnv = require('./app_env'); - -function register() { - passport.use('provider', new OAuth2Strategy({ - authorizationURL: appEnv.authorizationURL, - tokenURL: appEnv.tokenURL, - clientID: appEnv.clientID, - clientSecret: appEnv.clientSecret, - callbackURL: appEnv.appBaseUrl + '/auth/provider/callback' - }, - function(accessToken, refreshToken, profile, done) { - token = { - accessToken: accessToken, - refreshToken: refreshToken, - profile: profile - }; - tokenStore.getInstance().storeToken(token); - done(null, accessToken); - } - )); -}; - - -module.exports = { - register: register -} \ No newline at end of file diff --git a/experimental/hello-prism/app/lib/token_store.js b/experimental/hello-prism/app/lib/token_store.js deleted file mode 100755 index c5dfd65..0000000 --- a/experimental/hello-prism/app/lib/token_store.js +++ /dev/null @@ -1,27 +0,0 @@ -/* -Token store class -*/ -var TokenStore = function() { - this.token = null; -}; - -TokenStore.prototype.storeToken = function(token) { - this.token=token; -}; - -TokenStore.prototype.getToken = function() { - return this.token; -}; - -var _tokenInst = null; - -function getInstance() { - if(!_tokenInst) { - _tokenInst = new TokenStore(); - } - return _tokenInst; -}; - -module.exports = { - getInstance: getInstance -} diff --git a/experimental/hello-prism/app/package.json b/experimental/hello-prism/app/package.json deleted file mode 100755 index ef612a2..0000000 --- a/experimental/hello-prism/app/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "hello-world-prism-app", - "version": "0.0.0", - "private": true, - "scripts": { - "start": "node ./bin/www" - }, - "dependencies": { - "body-parser": "~1.13.2", - "cookie-parser": "~1.3.5", - "debug": "~2.2.0", - "express": "~4.13.1", - "jade": "~1.11.0", - "morgan": "~1.6.1", - "passport": "~0.3.2", - "passport-oauth": "~1.0.0", - "request": "^2.72.0", - "serve-favicon": "~2.3.0" - } -} diff --git a/experimental/hello-prism/app/public/css/bootstrap-theme.css.map b/experimental/hello-prism/app/public/css/bootstrap-theme.css.map deleted file mode 100755 index 1653491..0000000 --- a/experimental/hello-prism/app/public/css/bootstrap-theme.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/variables.less","bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"AAkGA;EACE,gCAAA;EACA,kBAAA;EACA,0DAAA;EACA,sSAAA;ECjGD;ADuGD;EACE,gCAAA;EACA,kBAAA;EACA,yDAAA;EACA,kSAAA;ECrGD;AD2GD;EACE,gCAAA;EACA,kBAAA;EACA,2DAAA;EACA,0SAAA;ECzGD;AD+GD;EACE,gCAAA;EACA,kBAAA;EACA,uDAAA;EACA,0RAAA;EC7GD;ADuHD;EACE,2BAAA;EACA,qDAAA;EACA,wSAAA;EAIA,qBAAA;EACA,oBAAA;ECxHD;ACfD;;;;;;EAME,0CAAA;EC+CA,6FAAA;EACQ,qFAAA;EF7BT;ACdC;;;;;;;;;;;;EC0CA,0DAAA;EACQ,kDAAA;EFdT;ACMC;;EAEE,wBAAA;EDJH;ACSD;EE/CI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EAEA,wHAAA;ECnBF,qEAAA;EH8BA,6BAAA;EACA,uBAAA;EA+B2C,2BAAA;EAA2B,oBAAA;EDEvE;AC/BC;;EAEE,2BAAA;EACA,8BAAA;EDiCH;AC9BC;;EAEE,2BAAA;EACA,uBAAA;EDgCH;AC7BC;;EAEE,2BAAA;EACA,wBAAA;ED+BH;AChBD;EEhDI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EAEA,wHAAA;ECnBF,qEAAA;EH8BA,6BAAA;EACA,uBAAA;EDyDD;ACvDC;;EAEE,2BAAA;EACA,8BAAA;EDyDH;ACtDC;;EAEE,2BAAA;EACA,uBAAA;EDwDH;ACrDC;;EAEE,2BAAA;EACA,wBAAA;EDuDH;ACvCD;EEjDI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EAEA,wHAAA;ECnBF,qEAAA;EH8BA,6BAAA;EACA,uBAAA;EDiFD;AC/EC;;EAEE,2BAAA;EACA,8BAAA;EDiFH;AC9EC;;EAEE,2BAAA;EACA,uBAAA;EDgFH;AC7EC;;EAEE,2BAAA;EACA,wBAAA;ED+EH;AC9DD;EElDI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EAEA,wHAAA;ECnBF,qEAAA;EH8BA,6BAAA;EACA,uBAAA;EDyGD;ACvGC;;EAEE,2BAAA;EACA,8BAAA;EDyGH;ACtGC;;EAEE,2BAAA;EACA,uBAAA;EDwGH;ACrGC;;EAEE,2BAAA;EACA,wBAAA;EDuGH;ACrFD;EEnDI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EAEA,wHAAA;ECnBF,qEAAA;EH8BA,6BAAA;EACA,uBAAA;EDiID;AC/HC;;EAEE,2BAAA;EACA,8BAAA;EDiIH;AC9HC;;EAEE,2BAAA;EACA,uBAAA;EDgIH;AC7HC;;EAEE,2BAAA;EACA,wBAAA;ED+HH;AC5GD;EEpDI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EAEA,wHAAA;ECnBF,qEAAA;EH8BA,6BAAA;EACA,uBAAA;EDyJD;ACvJC;;EAEE,2BAAA;EACA,8BAAA;EDyJH;ACtJC;;EAEE,2BAAA;EACA,uBAAA;EDwJH;ACrJC;;EAEE,2BAAA;EACA,wBAAA;EDuJH;AC5HD;;ECbE,oDAAA;EACQ,4CAAA;EF6IT;ACtHD;;EEvEI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EFsEF,2BAAA;ED4HD;AC1HD;;;EE5EI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EF4EF,2BAAA;EDgID;ACtHD;EE1FI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;ECnBF,qEAAA;EH4GA,oBAAA;EC9CA,6FAAA;EACQ,qFAAA;EF2KT;ACjID;EE1FI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;ED2CF,0DAAA;EACQ,kDAAA;EFoLT;AC9HD;;EAEE,gDAAA;EDgID;AC5HD;EE5GI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;ECnBF,qEAAA;EJ+PD;ACpID;EE5GI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;ED2CF,yDAAA;EACQ,iDAAA;EFyMT;AC7ID;;EAWI,2CAAA;EDsIH;ACjID;;;EAGE,kBAAA;EDmID;ACzHD;EACE,+CAAA;EC3FA,4FAAA;EACQ,oFAAA;EFuNT;ACjHD;EEtJI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EF8IF,uBAAA;ED6HD;ACxHD;EEvJI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EF8IF,uBAAA;EDqID;AC/HD;EExJI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EF8IF,uBAAA;ED6ID;ACtID;EEzJI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EF8IF,uBAAA;EDqJD;ACrID;EElKI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EH0SH;AClID;EE5KI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHiTH;ACxID;EE7KI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHwTH;AC9ID;EE9KI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EH+TH;ACpJD;EE/KI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHsUH;AC1JD;EEhLI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EH6UH;AC7JD;EEnJI,+MAAA;EACA,0MAAA;EACA,uMAAA;EHmTH;ACzJD;EACE,oBAAA;EC/IA,oDAAA;EACQ,4CAAA;EF2ST;AC1JD;;;EAGE,+BAAA;EEpME,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EFkMF,uBAAA;EDgKD;ACtJD;ECjKE,mDAAA;EACQ,2CAAA;EF0TT;AChJD;EE1NI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EH6WH;ACtJD;EE3NI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHoXH;AC5JD;EE5NI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EH2XH;AClKD;EE7NI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHkYH;ACxKD;EE9NI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHyYH;AC9KD;EE/NI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EHgZH;AC7KD;EEvOI,0EAAA;EACA,qEAAA;EACA,+FAAA;EAAA,wEAAA;EACA,6BAAA;EACA,wHAAA;EFqOF,uBAAA;EC1LA,2FAAA;EACQ,mFAAA;EF8WT","file":"bootstrap-theme.css","sourcesContent":["//\n// Variables\n// --------------------------------------------------\n\n\n//== Colors\n//\n//## Gray and brand colors for use across Bootstrap.\n\n// Colors\n//--------------------------------------------------\n\n@dark_1: #2d2e2f;\n@dark_2: #343536;\n@dark_3: #3f4142;\n@dark_4: #424950;\n@dark_5: #6F787E;\n@dark_6: #89949b;\n@dark_7: #9aa8b1;\n@dark_8: #A2ABB2;\n@dark_9: #C6CDD1;\n@dark_10: #D9DDE0;\n@dark_11: #E7EAEC;\n@dark_12: #F3F4F5;\n\n@blue_1: #1790BB;\n@blue_2: #11A3D7;\n@blue_3: #26BBF0;\n@blue_4: #7DD6F6;\n@blue_5: #A8E4F9;\n@blue_6: #D4F1FC;\n\n@green_1: #6eb17b;\n@green_2: #98b36a;\n@green_3: #c2d5a0;\n@green_4: #dae6c6;\n@green_5: #e7eed9;\n@green_6: #f3f7ec;\n\n@red_1: #a9484b;\n@red_2: #cc6164;\n@red_3: #cf6a6d;\n@red_4: #d88486;\n@red_5: #ebc0c1;\n@red_6: #f7e6e7;\n\n@yellow_1: #d9a92b;\n@yellow_2: #ffbc0d;\n@yellow_3: #ffd055;\n@yellow_4: #ffe49c;\n@yellow_5: #ffecbb;\n@yellow_6: #fff6dd;\n\n@turquoise_1: #9bbfb3;\n@turquoise_2: #aeccc2;\n@turquoise_3: #b9d9ce;\n@turquoise_4: #d5e8e2;\n@turquoise_5: #e3f0eb;\n@turquoise_6: #f1f7f5;\n\n\n\n@gray-darker: @dark_2;\n@gray-dark: @dark_4;\n@gray-medium: @dark_5;\n@gray: @dark_6;\n@gray-light: @dark_7;\n@gray-lighter: @dark_9;\n@gray-lightest: lighten(@dark_12, 1.5%);\n\n@brand-primary: @blue_3; // original: #428bca;\n@brand-success: @green_3; // original: #5cb85c;\n@brand-info: @dark_6; // original: #5bc0de;\n@brand-warning: @yellow_3; // original: #f0ad4e;\n@brand-danger: @red_3; // original: #d9534f;\n\n\n\n\n//== Scaffolding\n//\n//## Settings for some of the most global styles.\n\n// Background color for ``.\n@body-bg: #fff;\n// Global text color on ``.\n@text-color: @gray-medium;\n\n// Global textual link color.\n@link-color: @brand-primary;\n// Link hover color set via `darken()` function.\n@link-hover-color: darken(@link-color, 15%);\n\n\n//== Typography\n//\n//## Font, line-height, and color for body text, headings, and more.\n\n@font-face{\n font-family: 'ProximaNovaSoft';\n font-weight: 400;\n src: url('../fonts/ProximaNovaSoft-Regular-webfont.eot');\n src: url('../fonts/ProximaNovaSoft-Regular-webfont.eot?iefix') format('eot'),\n url('../fonts/ProximaNovaSoft-Regular-webfont.woff') format('woff'),\n url('../fonts/ProximaNovaSoft-Regular-webfont.ttf') format('truetype'),\n url('../fonts/ProximaNovaSoft-Regular-webfont.svg#webfont') format('svg');\n}\n\n@font-face{\n font-family: 'ProximaNovaSoft';\n font-weight: 500;\n src: url('../fonts/ProximaNovaSoft-Medium-webfont.eot');\n src: url('../fonts/ProximaNovaSoft-Medium-webfont.eot?iefix') format('eot'),\n url('../fonts/ProximaNovaSoft-Medium-webfont.woff') format('woff'),\n url('../fonts/ProximaNovaSoft-Medium-webfont.ttf') format('truetype'),\n url('../fonts/ProximaNovaSoft-Medium-webfont.svg#webfont') format('svg');\n}\n\n@font-face{\n font-family: 'ProximaNovaSoft';\n font-weight: 600;\n src: url('../fonts/ProximaNovaSoft-Semibold-webfont.eot');\n src: url('../fonts/ProximaNovaSoft-Semibold-webfont.eot?iefix') format('eot'),\n url('../fonts/ProximaNovaSoft-Semibold-webfont.woff') format('woff'),\n url('../fonts/ProximaNovaSoft-Semibold-webfont.ttf') format('truetype'),\n url('../fonts/ProximaNovaSoft-Semibold-webfont.svg#webfont') format('svg');\n}\n\n@font-face{\n font-family: 'ProximaNovaSoft';\n font-weight: 700;\n src: url('../fonts/ProximaNovaSoft-Bold-webfont.eot');\n src: url('../fonts/ProximaNovaSoft-Bold-webfont.eot?iefix') format('eot'),\n url('../fonts/ProximaNovaSoft-Bold-webfont.woff') format('woff'),\n url('../fonts/ProximaNovaSoft-Bold-webfont.ttf') format('truetype'),\n url('../fonts/ProximaNovaSoft-Bold-webfont.svg#webfont') format('svg');\n}\n\n\n// Font icons\n//--------------------------------------------------\n\n@font-face {\n font-family: 'ss-nutanix';\n src: url('../fonts/ss-nutanix-regular-webfont.eot');\n src: url('../fonts/ss-nutanix-regular-webfont.eot?#iefix') format('embedded-opentype'),\n url('../fonts/ss-nutanix-regular-webfont.woff') format('woff'),\n url('../fonts/ss-nutanix-regular-webfont.ttf') format('truetype'),\n url('../fonts/ss-nutanix-regular-webfont.svg#ss-miniregular') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n\n// Font weights\n//--------------------------------------------------\n@fontWeightRegular: 400;\n@fontWeightMedium: 500;\n@fontWeightSemiBold: 600;\n@fontWeightBold: 700;\n\n\n@font-family-sans-serif: \"ProximaNovaSoft\", Helvetica, Arial, sans-serif;\n@font-family-serif: Georgia, \"Times New Roman\", Times, serif;\n// Default monospace fonts for ``, ``, and `
`.\n@font-family-monospace:   Menlo, Monaco, Consolas, \"Courier New\", monospace;\n@font-family-base:        @font-family-sans-serif;\n\n@font-size-base:          14px;\n@font-size-large:         ceil((@font-size-base * 1.25)); // ~18px\n@font-size-small:         ceil((@font-size-base * 0.85)); // ~12px\n\n@font-size-h1:            40px; // original: floor((@font-size-base * 2.6)); // ~36px\n@font-size-h2:            30px; // original: floor((@font-size-base * 2.15)); // ~30px\n@font-size-h3:            18px; // original: ceil((@font-size-base * 1.7)); // ~24px\n@font-size-h4:            14px; // original: ceil((@font-size-base * 1.25)); // ~18px\n@font-size-h5:            12px; // original: @font-size-base;\n@font-size-h6:            12px; // original: ceil((@font-size-base * 0.85)); // ~12px\n\n// Unit-less `line-height` for use in components like buttons.\n@line-height-base:        1.57142857; // 22/14\n// Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n@line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px\n\n// By default, this inherits from 2the ``.\n@headings-font-family:    inherit;\n@headings-font-weight:    @fontWeightRegular;\n@headings-line-height:    1.1;\n@headings-color:          @gray-darker;\n\n\n//== Iconography\n//\n//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.\n\n// Load fonts from this directory.\n@icon-font-path:          \"../fonts/\";\n// File name for all font files.\n@icon-font-name:          \"glyphicons-halflings-regular\";\n// Element ID within SVG icon file.\n@icon-font-svg-id:        \"glyphicons_halflingsregular\";\n\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n@padding-base-vertical:     6px;\n@padding-base-horizontal:   12px;\n\n@padding-large-vertical:    10px;\n@padding-large-horizontal:  16px;\n\n@padding-small-vertical:    3px;\n@padding-small-horizontal:  10px;\n\n@padding-xs-vertical:       1px;\n@padding-xs-horizontal:     5px;\n\n@line-height-large:         1.3;\n@line-height-small:         1.4;\n\n@border-radius-base:        4px;\n@border-radius-large:       5px;\n@border-radius-small:       3px;\n\n// Global color for active items (e.g., navs or dropdowns).\n@component-active-color:    #fff;\n// Global background color for active items (e.g., navs or dropdowns).\n@component-active-bg:       @brand-primary;\n\n// Width of the `border` for generating carets that indicator dropdowns.\n@caret-width-base:          4px;\n// Carets increase slightly in size for larger components.\n@caret-width-large:         5px;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n// Table header\n@table-header-font-size: 71%;\n\n// Padding for ``s and ``s.\n@table-cell-padding:            8px;\n// Padding for cells in `.table-condensed`.\n@table-condensed-cell-padding:  5px;\n\n// Default background color used for all tables.\n@table-bg:                      transparent;\n// Background color used for `.table-striped`.\n@table-bg-accent:               #f9f9f7;\n// Background color used for `.table-hover`.\n@table-bg-hover:                #f5f5f5;\n@table-bg-active:               @table-bg-hover;\n\n// Border color for table and cell borders.\n@table-border-color:            #ddd;\n\n\n//== Buttons\n//\n//## For each of Bootstrap's buttons, define text, background and border color.\n\n@btn-font-weight:                @fontWeightSemiBold;\n@btn-font-size:                  12px;\n@btn-line-height:                1.3;\n\n@btn-default-color:              #6f787e;\n@btn-default-bg:                 #fff;\n@btn-default-border:             @gray;\n@btn-default-hover-bg:           #fff;\n\n@btn-primary-color:              #fff;\n@btn-primary-bg:                 @brand-primary;\n@btn-primary-border:             @brand-primary;\n@btn-primary-hover-bg:           @blue_2;\n\n@btn-success-color:              #fff;\n@btn-success-bg:                 #b2c98a;\n@btn-success-border:             #b2c98a;\n@btn-success-hover-bg:           @green_2;\n\n@btn-info-color:                 #fff;\n@btn-info-bg:                    @dark_7;\n@btn-info-border:                @dark_7;\n@btn-info-hover-bg:              @dark_5;\n\n@btn-warning-color:              #fff;\n@btn-warning-bg:                 @brand-warning;\n@btn-warning-border:             @brand-warning;\n@btn-warning-hover-bg:           @yellow_2;\n\n@btn-danger-color:               #fff;\n@btn-danger-bg:                  @brand-danger;\n@btn-danger-border:              @brand-danger;\n@btn-danger-hover-bg:            #b75355;\n\n@btn-link-disabled-color:        @gray-light;\n\n\n//== Forms\n//\n//##\n\n// `` background color\n@input-bg:                       #fff;\n// `` background color\n@input-bg-disabled:              @gray-lightest;\n\n// Text color for ``s\n@input-color:                    @dark_3;\n// `` border color\n@input-border:                   #dedede;\n// `` border radius\n@input-border-radius:            @border-radius-base;\n// Border color for inputs on focus\n@input-border-focus:             @blue_3;\n\n// Placeholder text color\n@input-color-placeholder:        @dark_9;\n\n// Default `.form-control` height\n@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2));\n// Large `.form-control` height\n@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);\n// Small `.form-control` height\n@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);\n\n@legend-color:                   @gray-darker;\n@legend-border-color:            #e5e5e5;\n\n// Background color for textual input addons\n@input-group-addon-bg:           @dark_12;\n@input-group-addon-font-weight:  @fontWeightSemiBold;\n// Border color for textual input addons\n@input-group-addon-border-color: @input-border;\n\n\n//== Dropdowns\n//\n//## Dropdown menu container and contents.\n\n// Background for the dropdown menu.\n@dropdown-bg:                    #fff;\n// Dropdown menu `border-color`.\n@dropdown-border:                rgba(0,0,0,.15);\n// Dropdown menu `border-color` **for IE8**.\n@dropdown-fallback-border:       #ccc;\n// Divider color for between dropdown items.\n@dropdown-divider-bg:            #e5e5e5;\n\n// Dropdown link text color.\n@dropdown-link-color:            @gray-medium;\n// Hover color for dropdown links.\n@dropdown-link-hover-color:      #fff;\n// Hover background for dropdown links.\n@dropdown-link-hover-bg:         @blue_3;\n\n// Active dropdown menu item text color.\n@dropdown-link-active-color:     @component-active-color;\n// Active dropdown menu item background color.\n@dropdown-link-active-bg:        @component-active-bg;\n\n// Disabled dropdown menu item background color.\n@dropdown-link-disabled-color:   @gray-light;\n\n// Text color for headers within dropdown menus.\n@dropdown-header-color:          @gray-light;\n\n// Deprecated `@dropdown-caret-color` as of v3.1.0\n@dropdown-caret-color:           #000;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n@zindex-navbar:            1000;\n@zindex-dropdown:          1000;\n@zindex-popover:           1060;\n@zindex-tooltip:           1070;\n@zindex-navbar-fixed:      1030;\n@zindex-modal-background:  1040;\n@zindex-modal:             1050;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n// Deprecated `@screen-xs` as of v3.0.1\n@screen-xs:                  480px;\n// Deprecated `@screen-xs-min` as of v3.2.0\n@screen-xs-min:              @screen-xs;\n// Deprecated `@screen-phone` as of v3.0.1\n@screen-phone:               @screen-xs-min;\n\n// Small screen / tablet\n// Deprecated `@screen-sm` as of v3.0.1\n@screen-sm:                  768px;\n@screen-sm-min:              @screen-sm;\n// Deprecated `@screen-tablet` as of v3.0.1\n@screen-tablet:              @screen-sm-min;\n\n// Medium screen / desktop\n// Deprecated `@screen-md` as of v3.0.1\n@screen-md:                  992px;\n@screen-md-min:              @screen-md;\n// Deprecated `@screen-desktop` as of v3.0.1\n@screen-desktop:             @screen-md-min;\n\n// Large screen / wide desktop\n// Deprecated `@screen-lg` as of v3.0.1\n@screen-lg:                  1200px;\n@screen-lg-min:              @screen-lg;\n// Deprecated `@screen-lg-desktop` as of v3.0.1\n@screen-lg-desktop:          @screen-lg-min;\n\n// So media queries don't overlap when required, provide a maximum\n@screen-xs-max:              (@screen-sm-min - 1);\n@screen-sm-max:              (@screen-md-min - 1);\n@screen-md-max:              (@screen-lg-min - 1);\n\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n// Number of columns in the grid.\n@grid-columns:              12;\n// Padding between columns. Gets divided in half for the left and right.\n@grid-gutter-width:         30px;\n// Navbar collapse\n// Point at which the navbar becomes uncollapsed.\n@grid-float-breakpoint:     @screen-sm-min;\n// Point at which the navbar begins collapsing.\n@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);\n\n\n//== Container sizes\n//\n//## Define the maximum width of `.container` for different screen sizes.\n\n// Small screen / tablet\n@container-tablet:             ((720px + @grid-gutter-width));\n// For `@screen-sm-min` and up.\n@container-sm:                 @container-tablet;\n\n// Medium screen / desktop\n@container-desktop:            ((940px + @grid-gutter-width));\n// For `@screen-md-min` and up.\n@container-md:                 @container-desktop;\n\n// Large screen / wide desktop\n@container-large-desktop:      ((1140px + @grid-gutter-width));\n// For `@screen-lg-min` and up.\n@container-lg:                 @container-large-desktop;\n\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n@navbar-height:                    50px;\n@navbar-margin-bottom:             @line-height-computed;\n@navbar-border-radius:             @border-radius-base;\n@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));\n@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);\n@navbar-collapse-max-height:       340px;\n\n@navbar-default-color:             #777;\n@navbar-default-bg:                #f8f8f8;\n@navbar-default-border:            darken(@navbar-default-bg, 6.5%);\n\n// Navbar links\n@navbar-default-link-color:                #777;\n@navbar-default-link-hover-color:          #333;\n@navbar-default-link-hover-bg:             transparent;\n@navbar-default-link-active-color:         #555;\n@navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);\n@navbar-default-link-disabled-color:       #ccc;\n@navbar-default-link-disabled-bg:          transparent;\n\n// Navbar Inputs\n@navbar-input-height-base:  29px;\n\n// Navbar brand label\n@navbar-default-brand-color:               @navbar-default-link-color;\n@navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);\n@navbar-default-brand-hover-bg:            transparent;\n\n// Navbar toggle\n@navbar-default-toggle-hover-bg:           #ddd;\n@navbar-default-toggle-icon-bar-bg:        #888;\n@navbar-default-toggle-border-color:       #ddd;\n\n\n// Inverted navbar\n// Reset inverted navbar basics\n@navbar-inverse-color:                      @gray-light;\n@navbar-inverse-bg:                         #222;\n@navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);\n\n// Inverted navbar links\n@navbar-inverse-link-color:                 @gray-light;\n@navbar-inverse-link-hover-color:           #fff;\n@navbar-inverse-link-hover-bg:              transparent;\n@navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;\n@navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);\n@navbar-inverse-link-disabled-color:        #444;\n@navbar-inverse-link-disabled-bg:           transparent;\n\n// Inverted navbar brand label\n@navbar-inverse-brand-color:                @navbar-inverse-link-color;\n@navbar-inverse-brand-hover-color:          #fff;\n@navbar-inverse-brand-hover-bg:             transparent;\n\n// Inverted navbar toggle\n@navbar-inverse-toggle-hover-bg:            #333;\n@navbar-inverse-toggle-icon-bar-bg:         #fff;\n@navbar-inverse-toggle-border-color:        #333;\n\n\n//== Navs\n//\n//##\n\n//=== Shared nav styles\n@nav-link-padding:                          6px 15px;\n@nav-link-hover-bg:                         @dark_12;\n@nav-font-size:                             12px;\n\n@nav-disabled-link-color:                   @gray-light;\n@nav-disabled-link-hover-color:             @gray-light;\n\n@nav-open-link-hover-color:                 #fff;\n\n//== Tabs\n@nav-tabs-border-color:                     #ddd;\n\n@nav-tabs-link-hover-border-color:          @gray-lighter;\n\n@nav-tabs-active-link-hover-bg:             @body-bg;\n@nav-tabs-active-link-hover-color:          @gray;\n@nav-tabs-active-link-hover-border-color:   #ddd;\n\n@nav-tabs-justified-link-border-color:            #ddd;\n@nav-tabs-justified-active-link-border-color:     @body-bg;\n\n//== Pills\n@nav-pills-border-radius:                   @border-radius-base;\n@nav-pills-active-link-hover-bg:            @component-active-bg;\n@nav-pills-active-link-hover-color:         @component-active-color;\n\n\n//== Pagination\n//\n//##\n\n@pagination-color:                     @link-color;\n@pagination-bg:                        #fff;\n@pagination-border:                    #ddd;\n\n@pagination-hover-color:               @link-hover-color;\n@pagination-hover-bg:                  @blue_6;\n@pagination-hover-border:              @blue_3;\n\n@pagination-active-color:              #fff;\n@pagination-active-bg:                 @brand-primary;\n@pagination-active-border:             @brand-primary;\n\n@pagination-disabled-color:            @gray-light;\n@pagination-disabled-bg:               #fff;\n@pagination-disabled-border:           #ddd;\n\n\n//== Pager\n//\n//##\n\n@pager-bg:                             @pagination-bg;\n@pager-border:                         @pagination-border;\n@pager-border-radius:                  @border-radius-base ;\n\n@pager-hover-bg:                       @pagination-hover-bg;\n\n@pager-active-bg:                      @pagination-active-bg;\n@pager-active-color:                   @pagination-active-color;\n\n@pager-disabled-color:                 @pagination-disabled-color;\n\n\n//== Jumbotron\n//\n//##\n\n@jumbotron-padding:              30px;\n@jumbotron-color:                inherit;\n@jumbotron-bg:                   @gray-lighter;\n@jumbotron-heading-color:        inherit;\n@jumbotron-font-size:            ceil((@font-size-base * 1.5));\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n@state-success-text:             @green_1;\n@state-success-bg:               darken(@green_4, 2%);\n@state-success-border:           darken(spin(@state-success-bg, -10), 5%);\n\n@state-info-text:                #31708f;\n@state-info-bg:                  #d9edf7;\n@state-info-border:              darken(spin(@state-info-bg, -10), 7%);\n\n@state-warning-text:             @yellow_1;\n@state-warning-bg:               @yellow_4;\n@state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);\n\n@state-danger-text:              @red_1;\n@state-danger-bg:                mix(@red_5,@red_6);\n@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);\n\n\n//== Tooltips\n//\n//##\n\n// Tooltip max width\n@tooltip-max-width:           200px;\n// Tooltip text color\n@tooltip-color:               #fff;\n// Tooltip background color\n@tooltip-bg:                  #000;\n@tooltip-opacity:             .9;\n\n// Tooltip arrow width\n@tooltip-arrow-width:         5px;\n// Tooltip arrow color\n@tooltip-arrow-color:         @tooltip-bg;\n\n\n//== Popovers\n//\n//##\n\n// Popover body background color\n@popover-bg:                          #fff;\n// Popover maximum width\n@popover-max-width:                   276px;\n// Popover border color\n@popover-border-color:                rgba(0,0,0,.2);\n// Popover fallback border color\n@popover-fallback-border-color:       #ccc;\n\n// Popover title background color\n@popover-title-bg:                    darken(@popover-bg, 3%);\n\n// Popover arrow width\n@popover-arrow-width:                 10px;\n// Popover arrow color\n@popover-arrow-color:                 #fff;\n\n// Popover outer arrow width\n@popover-arrow-outer-width:           (@popover-arrow-width + 1);\n// Popover outer arrow color\n@popover-arrow-outer-color:           fadein(@popover-border-color, 5%);\n// Popover outer arrow fallback color\n@popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);\n\n\n//== Labels\n//\n//##\n\n// Default label background color\n@label-default-bg:            @gray-light;\n// Primary label background color\n@label-primary-bg:            @brand-primary;\n// Success label background color\n@label-success-bg:            @brand-success;\n// Info label background color\n@label-info-bg:               @brand-info;\n// Warning label background color\n@label-warning-bg:            @brand-warning;\n// Danger label background color\n@label-danger-bg:             @brand-danger;\n\n// Default label text color\n@label-color:                 #fff;\n// Default text color of a linked label\n@label-link-hover-color:      #fff;\n\n\n//== Modals\n//\n//##\n\n// Padding applied to the modal body\n@modal-inner-padding:         15px;\n\n// Padding applied to the modal title\n@modal-title-padding:         15px;\n// Modal title line-height\n@modal-title-line-height:     @line-height-base;\n\n// Background color of modal content area\n@modal-content-bg:                             #fff;\n// Modal content border color\n@modal-content-border-color:                   rgba(0,0,0,.2);\n// Modal content border color **for IE8**\n@modal-content-fallback-border-color:          #999;\n\n// Modal backdrop background color\n@modal-backdrop-bg:           #000;\n// Modal backdrop opacity\n@modal-backdrop-opacity:      .5;\n// Modal header border color\n@modal-header-border-color:   #e5e5e5;\n// Modal footer border color\n@modal-footer-border-color:   @modal-header-border-color;\n\n@modal-lg:                    900px;\n@modal-md:                    600px;\n@modal-sm:                    300px;\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n@alert-padding:               15px;\n@alert-border-radius:         @border-radius-base;\n@alert-link-font-weight:      bold;\n\n@alert-success-bg:            @state-success-bg;\n@alert-success-text:          @state-success-text;\n@alert-success-border:        @state-success-border;\n\n@alert-info-bg:               @state-info-bg;\n@alert-info-text:             @state-info-text;\n@alert-info-border:           @state-info-border;\n\n@alert-warning-bg:            @state-warning-bg;\n@alert-warning-text:          @state-warning-text;\n@alert-warning-border:        @state-warning-border;\n\n@alert-danger-bg:             @state-danger-bg;\n@alert-danger-text:           @state-danger-text;\n@alert-danger-border:         @state-danger-border;\n\n\n//== Progress bars\n//\n//##\n\n// Background color of the whole progress component\n@progress-bg:                 #f5f5f5;\n// Progress bar text color\n@progress-bar-color:          #fff;\n\n// Default progress bar color\n@progress-bar-bg:             @brand-primary;\n// Success progress bar color\n@progress-bar-success-bg:     @brand-success;\n// Warning progress bar color\n@progress-bar-warning-bg:     @brand-warning;\n// Danger progress bar color\n@progress-bar-danger-bg:      @brand-danger;\n// Info progress bar color\n@progress-bar-info-bg:        @brand-info;\n\n\n//== List group\n//\n//##\n\n// Background color on `.list-group-item`\n@list-group-bg:                 #fff;\n// `.list-group-item` border color\n@list-group-border:             #ddd;\n// List group border radius\n@list-group-border-radius:      @border-radius-base;\n\n// Background color of single list items on hover\n@list-group-hover-bg:           #f5f5f5;\n// Text color of active list items\n@list-group-active-color:       @component-active-color;\n// Background color of active list items\n@list-group-active-bg:          @component-active-bg;\n// Border color of active list elements\n@list-group-active-border:      @list-group-active-bg;\n// Text color for content within active list items\n@list-group-active-text-color:  lighten(@list-group-active-bg, 40%);\n\n// Text color of disabled list items\n@list-group-disabled-color:      @gray-light;\n// Background color of disabled list items\n@list-group-disabled-bg:         @gray-lighter;\n// Text color for content within disabled list items\n@list-group-disabled-text-color: @list-group-disabled-color;\n\n@list-group-link-color:         #555;\n@list-group-link-hover-color:   @list-group-link-color;\n@list-group-link-heading-color: #333;\n\n\n//== Panels\n//\n//##\n\n@panel-bg:                    #fff;\n@panel-body-padding:          15px;\n@panel-heading-padding:       10px 15px;\n@panel-footer-padding:        @panel-heading-padding;\n@panel-border-radius:         @border-radius-base;\n\n// Border color for elements within panels\n@panel-inner-border:          #ddd;\n@panel-footer-bg:             #f5f5f5;\n\n@panel-default-text:          @gray-darker;\n@panel-default-border:        #ddd;\n@panel-default-heading-bg:    #f5f5f5;\n\n@panel-primary-text:          #fff;\n@panel-primary-border:        @brand-primary;\n@panel-primary-heading-bg:    @brand-primary;\n\n@panel-success-text:          @state-success-text;\n@panel-success-border:        @state-success-border;\n@panel-success-heading-bg:    @state-success-bg;\n\n@panel-info-text:             @state-info-text;\n@panel-info-border:           @state-info-border;\n@panel-info-heading-bg:       @state-info-bg;\n\n@panel-warning-text:          @state-warning-text;\n@panel-warning-border:        @state-warning-border;\n@panel-warning-heading-bg:    @state-warning-bg;\n\n@panel-danger-text:           @state-danger-text;\n@panel-danger-border:         @state-danger-border;\n@panel-danger-heading-bg:     @state-danger-bg;\n\n\n//== Thumbnails\n//\n//##\n\n// Padding around the thumbnail image\n@thumbnail-padding:           4px;\n// Thumbnail background color\n@thumbnail-bg:                @body-bg;\n// Thumbnail border color\n@thumbnail-border:            #ddd;\n// Thumbnail border radius\n@thumbnail-border-radius:     @border-radius-base;\n\n// Custom text color for thumbnail captions\n@thumbnail-caption-color:     @text-color;\n// Padding around the thumbnail caption\n@thumbnail-caption-padding:   9px;\n\n\n//== Wells\n//\n//##\n\n@well-bg:                     #f5f5f5;\n@well-border:                 darken(@well-bg, 7%);\n\n\n//== Badges\n//\n//##\n\n@badge-color:                 #fff;\n// Linked badge text color on hover\n@badge-link-hover-color:      #fff;\n@badge-bg:                    @gray-light;\n\n// Badge text color in active nav link\n@badge-active-color:          @link-color;\n// Badge background color in active nav link\n@badge-active-bg:             #fff;\n\n@badge-font-weight:           bold;\n@badge-line-height:           1;\n@badge-border-radius:         10px;\n\n\n//== Breadcrumbs\n//\n//##\n\n@breadcrumb-padding-vertical:   8px;\n@breadcrumb-padding-horizontal: 15px;\n@breadcrumb-font-weight: @fontWeightSemiBold;\n// Breadcrumb background color\n@breadcrumb-bg:                 transparent;\n// Breadcrumb bottom border\n@breadcrumb-border:             1px solid #eaeaea;\n// Breadcrumb text color\n@breadcrumb-color:              #ccc;\n// Text color of current page in the breadcrumb\n@breadcrumb-active-color:       inherit;\n// Textual separator for between breadcrumb elements\n@breadcrumb-separator:          \"\\079\"; // Glyphicon Chevron Right\n\n\n//== Carousel\n//\n//##\n\n@carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);\n\n@carousel-control-color:                      #fff;\n@carousel-control-width:                      8%;\n@carousel-control-opacity:                    .5;\n@carousel-control-font-size:                  14px;\n\n@carousel-indicator-active-bg:                #fff;\n@carousel-indicator-border-color:             #fff;\n\n@carousel-caption-color:                      #fff;\n\n\n//== Close\n//\n//##\n\n@close-font-weight:           bold;\n@close-color:                 #000;\n@close-text-shadow:           0 1px 0 #fff;\n\n\n//== Code\n//\n//##\n\n@code-color:                  #c7254e;\n@code-bg:                     #f9f2f4;\n\n@kbd-color:                   #fff;\n@kbd-bg:                      #333;\n\n@pre-bg:                      #f5f5f5;\n@pre-color:                   @gray-darker;\n@pre-border-color:            #ccc;\n@pre-scrollable-max-height:   340px;\n\n\n//== Type\n//\n//##\n\n// Horizontal offset for forms and lists.\n@component-offset-horizontal: 180px;\n// Text muted color\n@text-muted:                  @gray-light;\n// Abbreviations and acronyms border color\n@abbr-border-color:           @gray-light;\n// Headings small color\n@headings-small-color:        @gray-light;\n// Blockquote small color\n@blockquote-small-color:      @gray-light;\n// Blockquote font size\n@blockquote-font-size:        (@font-size-base * 1.25);\n// Blockquote border color\n@blockquote-border-color:     @gray-lighter;\n// Page header border color\n@page-header-border-color:    @gray-lighter;\n// Width of horizontal description list titles\n@dl-horizontal-offset:        @component-offset-horizontal;\n// Horizontal line color.\n@hr-border:                   @gray-lighter;\n\n\n",null,"\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n  text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n  .box-shadow(@shadow);\n\n  // Reset the shadow\n  &:active,\n  &.active {\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n  #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n  .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners\n  background-repeat: repeat-x;\n  border-color: darken(@btn-color, 14%);\n\n  &:hover,\n  &:focus  {\n    background-color: darken(@btn-color, 12%);\n    background-position: 0 -15px;\n  }\n\n  &:active,\n  &.active {\n    background-color: darken(@btn-color, 12%);\n    border-color: darken(@btn-color, 14%);\n  }\n\n  &:disabled,\n  &[disabled] {\n    background-color: darken(@btn-color, 12%);\n    background-image: none;\n  }\n}\n\n// Common styles\n.btn {\n  // Remove the gradient for the pressed/active state\n  &:active,\n  &.active {\n    background-image: none;\n  }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info    { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger  { .btn-styles(@btn-danger-bg); }\n\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n  .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n  #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n  background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n  #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n  background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n  border-radius: @navbar-border-radius;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n  .box-shadow(@shadow);\n\n  .navbar-nav > .active > a {\n    #gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%));\n    .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n  }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n  text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n  #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n\n  .navbar-nav > .active > a {\n    #gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%));\n    .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n  }\n\n  .navbar-brand,\n  .navbar-nav > li > a {\n    text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n  }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  border-radius: 0;\n}\n\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n  text-shadow: 0 1px 0 rgba(255,255,255,.2);\n  @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n  .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n  border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success    { .alert-styles(@alert-success-bg); }\n.alert-info       { .alert-styles(@alert-info-bg); }\n.alert-warning    { .alert-styles(@alert-warning-bg); }\n.alert-danger     { .alert-styles(@alert-danger-bg); }\n\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n  #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar            { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success    { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info       { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning    { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger     { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n  #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-radius: @border-radius-base;\n  .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n  text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n  #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n  border-color: darken(@list-group-active-border, 7.5%);\n}\n\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n  .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading   { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading   { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading   { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading      { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading   { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading    { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n  #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n  border-color: darken(@well-bg, 10%);\n  @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &::-moz-placeholder           { color: @color;   // Firefox\n                                  opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526\n  &:-ms-input-placeholder       { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]}
\ No newline at end of file
diff --git a/experimental/hello-prism/app/public/css/bootstrap-theme.min.css b/experimental/hello-prism/app/public/css/bootstrap-theme.min.css
deleted file mode 100755
index d0729dd..0000000
--- a/experimental/hello-prism/app/public/css/bootstrap-theme.min.css
+++ /dev/null
@@ -1,5 +0,0 @@
-/*!
- * Bootstrap v1.0 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */@font-face{font-family:ProximaNovaSoft;font-weight:400;src:url(../fonts/ProximaNovaSoft-Regular-webfont.eot);src:url(../fonts/ProximaNovaSoft-Regular-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Regular-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Regular-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Regular-webfont.svg#webfont) format('svg')}@font-face{font-family:ProximaNovaSoft;font-weight:500;src:url(../fonts/ProximaNovaSoft-Medium-webfont.eot);src:url(../fonts/ProximaNovaSoft-Medium-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Medium-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Medium-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Medium-webfont.svg#webfont) format('svg')}@font-face{font-family:ProximaNovaSoft;font-weight:600;src:url(../fonts/ProximaNovaSoft-Semibold-webfont.eot);src:url(../fonts/ProximaNovaSoft-Semibold-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Semibold-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Semibold-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Semibold-webfont.svg#webfont) format('svg')}@font-face{font-family:ProximaNovaSoft;font-weight:700;src:url(../fonts/ProximaNovaSoft-Bold-webfont.eot);src:url(../fonts/ProximaNovaSoft-Bold-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Bold-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Bold-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Bold-webfont.svg#webfont) format('svg')}@font-face{font-family:ss-nutanix;font-style:normal;font-weight:400;src:url(../fonts/ss-nutanix-regular-webfont.eot);src:url(../fonts/ss-nutanix-regular-webfont.eot?#iefix) format('embedded-opentype'),url(../fonts/ss-nutanix-regular-webfont.woff) format('woff'),url(../fonts/ss-nutanix-regular-webfont.ttf) format('truetype'),url(../fonts/ss-nutanix-regular-webfont.svg#ss-miniregular) format('svg')}.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn:active,.btn.active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default:disabled,.btn-default[disabled]{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#26bbf0 0,#0e99cb 100%);background-image:-o-linear-gradient(top,#26bbf0 0,#0e99cb 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#26bbf0),to(#0e99cb));background-image:linear-gradient(to bottom,#26bbf0 0,#0e99cb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff26bbf0', endColorstr='#ff0e99cb', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#0d92c1}.btn-primary:hover,.btn-primary:focus{background-color:#0e99cb;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#0e99cb;border-color:#0d92c1}.btn-primary:disabled,.btn-primary[disabled]{background-color:#0e99cb;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#b2c98a 0,#96b660 100%);background-image:-o-linear-gradient(top,#b2c98a 0,#96b660 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#b2c98a),to(#96b660));background-image:linear-gradient(to bottom,#b2c98a 0,#96b660 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb2c98a', endColorstr='#ff96b660', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#92b259}.btn-success:hover,.btn-success:focus{background-color:#96b660;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#96b660;border-color:#92b259}.btn-success:disabled,.btn-success[disabled]{background-color:#96b660;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#9aa8b1 0,#778a96 100%);background-image:-o-linear-gradient(top,#9aa8b1 0,#778a96 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#9aa8b1),to(#778a96));background-image:linear-gradient(to bottom,#9aa8b1 0,#778a96 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9aa8b1', endColorstr='#ff778a96', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#728592}.btn-info:hover,.btn-info:focus{background-color:#778a96;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#778a96;border-color:#728592}.btn-info:disabled,.btn-info[disabled]{background-color:#778a96;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#ffd055 0,#ffbf18 100%);background-image:-o-linear-gradient(top,#ffd055 0,#ffbf18 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ffd055),to(#ffbf18));background-image:linear-gradient(to bottom,#ffd055 0,#ffbf18 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd055', endColorstr='#ffffbf18', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#ffbc0e}.btn-warning:hover,.btn-warning:focus{background-color:#ffbf18;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#ffbf18;border-color:#ffbc0e}.btn-warning:disabled,.btn-warning[disabled]{background-color:#ffbf18;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#cf6a6d 0,#be3d41 100%);background-image:-o-linear-gradient(top,#cf6a6d 0,#be3d41 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#cf6a6d),to(#be3d41));background-image:linear-gradient(to bottom,#cf6a6d 0,#be3d41 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcf6a6d', endColorstr='#ffbe3d41', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b73b3f}.btn-danger:hover,.btn-danger:focus{background-color:#be3d41;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#be3d41;border-color:#b73b3f}.btn-danger:disabled,.btn-danger[disabled]{background-color:#be3d41;background-image:none}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-color:#10b2ec;background-image:-webkit-linear-gradient(top,#26bbf0 0,#10b2ec 100%);background-image:-o-linear-gradient(top,#26bbf0 0,#10b2ec 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#26bbf0),to(#10b2ec));background-image:linear-gradient(to bottom,#26bbf0 0,#10b2ec 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff26bbf0', endColorstr='#ff10b2ec', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-color:#10b2ec;background-image:-webkit-linear-gradient(top,#26bbf0 0,#10b2ec 100%);background-image:-o-linear-gradient(top,#26bbf0 0,#10b2ec 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#26bbf0),to(#10b2ec));background-image:linear-gradient(to bottom,#26bbf0 0,#10b2ec 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff26bbf0', endColorstr='#ff10b2ec', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f3f3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f3f3f3));background-image:linear-gradient(to bottom,#ebebeb 0,#f3f3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff3f3f3', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x}.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top,#222 0,#282828 100%);background-image:-o-linear-gradient(top,#222 0,#282828 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#222),to(#282828));background-image:linear-gradient(to bottom,#222 0,#282828 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff282828', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#d5e3bf 0,#c4d7a4 100%);background-image:-o-linear-gradient(top,#d5e3bf 0,#c4d7a4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d5e3bf),to(#c4d7a4));background-image:linear-gradient(to bottom,#d5e3bf 0,#c4d7a4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5e3bf', endColorstr='#ffc4d7a4', GradientType=0);background-repeat:repeat-x;border-color:#b3cc8a}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#ffe49c 0,#ffda76 100%);background-image:-o-linear-gradient(top,#ffe49c 0,#ffda76 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ffe49c),to(#ffda76));background-image:linear-gradient(to bottom,#ffe49c 0,#ffda76 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe49c', endColorstr='#ffffda76', GradientType=0);background-repeat:repeat-x;border-color:#ffcf50}.alert-danger{background-image:-webkit-linear-gradient(top,#f1d3d4 0,#e8b6b8 100%);background-image:-o-linear-gradient(top,#f1d3d4 0,#e8b6b8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f1d3d4),to(#e8b6b8));background-image:linear-gradient(to bottom,#f1d3d4 0,#e8b6b8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1d3d4', endColorstr='#ffe8b6b8', GradientType=0);background-repeat:repeat-x;border-color:#df999b}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#26bbf0 0,#0fa0d4 100%);background-image:-o-linear-gradient(top,#26bbf0 0,#0fa0d4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#26bbf0),to(#0fa0d4));background-image:linear-gradient(to bottom,#26bbf0 0,#0fa0d4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff26bbf0', endColorstr='#ff0fa0d4', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#c2d5a0 0,#abc57d 100%);background-image:-o-linear-gradient(top,#c2d5a0 0,#abc57d 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#c2d5a0),to(#abc57d));background-image:linear-gradient(to bottom,#c2d5a0 0,#abc57d 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc2d5a0', endColorstr='#ffabc57d', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#89949b 0,#6f7b82 100%);background-image:-o-linear-gradient(top,#89949b 0,#6f7b82 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#89949b),to(#6f7b82));background-image:linear-gradient(to bottom,#89949b 0,#6f7b82 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89949b', endColorstr='#ff6f7b82', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#ffd055 0,#ffc222 100%);background-image:-o-linear-gradient(top,#ffd055 0,#ffc222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ffd055),to(#ffc222));background-image:linear-gradient(to bottom,#ffd055 0,#ffc222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffd055', endColorstr='#ffffc222', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#cf6a6d 0,#c34347 100%);background-image:-o-linear-gradient(top,#cf6a6d 0,#c34347 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#cf6a6d),to(#c34347));background-image:linear-gradient(to bottom,#cf6a6d 0,#c34347 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcf6a6d', endColorstr='#ffc34347', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{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:-o-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)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #0fa0d4;background-image:-webkit-linear-gradient(top,#26bbf0 0,#10a9e0 100%);background-image:-o-linear-gradient(top,#26bbf0 0,#10a9e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#26bbf0),to(#10a9e0));background-image:linear-gradient(to bottom,#26bbf0 0,#10a9e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff26bbf0', endColorstr='#ff10a9e0', GradientType=0);background-repeat:repeat-x;border-color:#10a9e0}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#26bbf0 0,#10b2ec 100%);background-image:-o-linear-gradient(top,#26bbf0 0,#10b2ec 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#26bbf0),to(#10b2ec));background-image:linear-gradient(to bottom,#26bbf0 0,#10b2ec 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff26bbf0', endColorstr='#ff10b2ec', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#d5e3bf 0,#cadbad 100%);background-image:-o-linear-gradient(top,#d5e3bf 0,#cadbad 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d5e3bf),to(#cadbad));background-image:linear-gradient(to bottom,#d5e3bf 0,#cadbad 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd5e3bf', endColorstr='#ffcadbad', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#ffe49c 0,#ffdd83 100%);background-image:-o-linear-gradient(top,#ffe49c 0,#ffdd83 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ffe49c),to(#ffdd83));background-image:linear-gradient(to bottom,#ffe49c 0,#ffdd83 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffe49c', endColorstr='#ffffdd83', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f1d3d4 0,#ebc0c1 100%);background-image:-o-linear-gradient(top,#f1d3d4 0,#ebc0c1 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f1d3d4),to(#ebc0c1));background-image:linear-gradient(to bottom,#f1d3d4 0,#ebc0c1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff1d3d4', endColorstr='#ffebc0c1', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
\ No newline at end of file
diff --git a/experimental/hello-prism/app/public/css/bootstrap.css b/experimental/hello-prism/app/public/css/bootstrap.css
deleted file mode 100755
index caa758c..0000000
--- a/experimental/hello-prism/app/public/css/bootstrap.css
+++ /dev/null
@@ -1,6697 +0,0 @@
-@font-face {
-  font-family: 'ProximaNovaSoft';
-  font-weight: 400;
-  src: url('../fonts/ProximaNovaSoft-Regular-webfont.eot');
-  src: url('../fonts/ProximaNovaSoft-Regular-webfont.eot?iefix') format('eot'), url('../fonts/ProximaNovaSoft-Regular-webfont.woff') format('woff'), url('../fonts/ProximaNovaSoft-Regular-webfont.ttf') format('truetype'), url('../fonts/ProximaNovaSoft-Regular-webfont.svg#webfont') format('svg');
-}
-@font-face {
-  font-family: 'ProximaNovaSoft';
-  font-weight: 500;
-  src: url('../fonts/ProximaNovaSoft-Medium-webfont.eot');
-  src: url('../fonts/ProximaNovaSoft-Medium-webfont.eot?iefix') format('eot'), url('../fonts/ProximaNovaSoft-Medium-webfont.woff') format('woff'), url('../fonts/ProximaNovaSoft-Medium-webfont.ttf') format('truetype'), url('../fonts/ProximaNovaSoft-Medium-webfont.svg#webfont') format('svg');
-}
-@font-face {
-  font-family: 'ProximaNovaSoft';
-  font-weight: 600;
-  src: url('../fonts/ProximaNovaSoft-Semibold-webfont.eot');
-  src: url('../fonts/ProximaNovaSoft-Semibold-webfont.eot?iefix') format('eot'), url('../fonts/ProximaNovaSoft-Semibold-webfont.woff') format('woff'), url('../fonts/ProximaNovaSoft-Semibold-webfont.ttf') format('truetype'), url('../fonts/ProximaNovaSoft-Semibold-webfont.svg#webfont') format('svg');
-}
-@font-face {
-  font-family: 'ProximaNovaSoft';
-  font-weight: 700;
-  src: url('../fonts/ProximaNovaSoft-Bold-webfont.eot');
-  src: url('../fonts/ProximaNovaSoft-Bold-webfont.eot?iefix') format('eot'), url('../fonts/ProximaNovaSoft-Bold-webfont.woff') format('woff'), url('../fonts/ProximaNovaSoft-Bold-webfont.ttf') format('truetype'), url('../fonts/ProximaNovaSoft-Bold-webfont.svg#webfont') format('svg');
-}
-@font-face {
-  font-family: 'ss-nutanix';
-  src: url('../fonts/ss-nutanix-regular-webfont.eot');
-  src: url('../fonts/ss-nutanix-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/ss-nutanix-regular-webfont.woff') format('woff'), url('../fonts/ss-nutanix-regular-webfont.ttf') format('truetype'), url('../fonts/ss-nutanix-regular-webfont.svg#ss-miniregular') format('svg');
-  font-weight: normal;
-  font-style: normal;
-}
-/*! normalize.css v3.0.1 | 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: transparent;
-}
-a:active,
-a:hover {
-  outline: 0;
-}
-abbr[title] {
-  border-bottom: 1px dotted;
-}
-b,
-strong {
-  font-weight: bold;
-}
-dfn {
-  font-style: italic;
-}
-h1 {
-  font-size: 2em;
-  margin: 0.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: -0.5em;
-}
-sub {
-  bottom: -0.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 #c0c0c0;
-  margin: 0 2px;
-  padding: 0.35em 0.625em 0.75em;
-}
-legend {
-  border: 0;
-  padding: 0;
-}
-textarea {
-  overflow: auto;
-}
-optgroup {
-  font-weight: bold;
-}
-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;
-  }
-}
-@font-face {
-  font-family: 'Glyphicons Halflings';
-  src: url('../fonts/glyphicons-halflings-regular.eot');
-  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
-}
-.glyphicon {
-  position: relative;
-  top: 1px;
-  display: inline-block;
-  font-family: 'Glyphicons Halflings';
-  font-style: normal;
-  font-weight: normal;
-  line-height: 1;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-.glyphicon-asterisk:before {
-  content: "\2a";
-}
-.glyphicon-plus {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-plus:before {
-  content: "\048";
-}
-.glyphicon-x {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-x:before {
-  content: "\076";
-}
-.glyphicon-euro:before {
-  content: "\20ac";
-}
-.glyphicon-health {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-health:before {
-  content: "\049";
-}
-.glyphicon-checkmark {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-checkmark:before {
-  content: "\04A";
-}
-.glyphicon-minus:before {
-  content: "\2212";
-}
-.glyphicon-cloud:before {
-  content: "\2601";
-}
-.glyphicon-envelope:before {
-  content: "\2709";
-}
-.glyphicon-pencil {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-pencil:before {
-  content: "\046";
-}
-.glyphicon-glass:before {
-  content: "\e001";
-}
-.glyphicon-music:before {
-  content: "\e002";
-}
-.glyphicon-search {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-search:before {
-  content: "\042";
-}
-.glyphicon-heart:before {
-  content: "\e005";
-}
-.glyphicon-star:before {
-  content: "\e006";
-}
-.glyphicon-star-empty:before {
-  content: "\e007";
-}
-.glyphicon-user {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-user:before {
-  content: "\041";
-}
-.glyphicon-film:before {
-  content: "\e009";
-}
-.glyphicon-th-large:before {
-  content: "\e010";
-}
-.glyphicon-th:before {
-  content: "\e011";
-}
-.glyphicon-th-list:before {
-  content: "\e012";
-}
-.glyphicon-ok {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-ok:before {
-  content: "\047";
-}
-.glyphicon-remove {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-remove:before {
-  content: "\04B";
-}
-.glyphicon-zoom-in:before {
-  content: "\e015";
-}
-.glyphicon-zoom-out:before {
-  content: "\e016";
-}
-.glyphicon-off:before {
-  content: "\e017";
-}
-.glyphicon-signal:before {
-  content: "\e018";
-}
-.glyphicon-cog {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-cog:before {
-  content: "\043";
-}
-.glyphicon-trash:before {
-  content: "\e020";
-}
-.glyphicon-home:before {
-  content: "\e021";
-}
-.glyphicon-file:before {
-  content: "\e022";
-}
-.glyphicon-time {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-time:before {
-  content: "\045";
-}
-.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 {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-chevron-left:before {
-  content: "\078";
-}
-.glyphicon-chevron-right {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-chevron-right:before {
-  content: "\079";
-}
-.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 {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-chevron-up:before {
-  content: "\077";
-}
-.glyphicon-chevron-down {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-chevron-down:before {
-  content: "\07A";
-}
-.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 {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-bell:before {
-  content: "\044";
-}
-.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 {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-log-in:before {
-  content: "\04D";
-}
-.glyphicon-flash:before {
-  content: "\e162";
-}
-.glyphicon-log-out {
-  font-family: 'ss-nutanix';
-}
-.glyphicon-log-out:before {
-  content: "\04C";
-}
-.glyphicon-new-window:before {
-  content: "\e164";
-}
-.glyphicon-record:before {
-  content: "\e165";
-}
-.glyphicon-save:before {
-  content: "\e166";
-}
-.glyphicon-open:before {
-  content: "\e167";
-}
-.glyphicon-saved:before {
-  content: "\e168";
-}
-.glyphicon-import:before {
-  content: "\e169";
-}
-.glyphicon-export:before {
-  content: "\e170";
-}
-.glyphicon-send:before {
-  content: "\e171";
-}
-.glyphicon-floppy-disk:before {
-  content: "\e172";
-}
-.glyphicon-floppy-saved:before {
-  content: "\e173";
-}
-.glyphicon-floppy-remove:before {
-  content: "\e174";
-}
-.glyphicon-floppy-save:before {
-  content: "\e175";
-}
-.glyphicon-floppy-open:before {
-  content: "\e176";
-}
-.glyphicon-credit-card:before {
-  content: "\e177";
-}
-.glyphicon-transfer:before {
-  content: "\e178";
-}
-.glyphicon-cutlery:before {
-  content: "\e179";
-}
-.glyphicon-header:before {
-  content: "\e180";
-}
-.glyphicon-compressed:before {
-  content: "\e181";
-}
-.glyphicon-earphone:before {
-  content: "\e182";
-}
-.glyphicon-phone-alt:before {
-  content: "\e183";
-}
-.glyphicon-tower:before {
-  content: "\e184";
-}
-.glyphicon-stats:before {
-  content: "\e185";
-}
-.glyphicon-sd-video:before {
-  content: "\e186";
-}
-.glyphicon-hd-video:before {
-  content: "\e187";
-}
-.glyphicon-subtitles:before {
-  content: "\e188";
-}
-.glyphicon-sound-stereo:before {
-  content: "\e189";
-}
-.glyphicon-sound-dolby:before {
-  content: "\e190";
-}
-.glyphicon-sound-5-1:before {
-  content: "\e191";
-}
-.glyphicon-sound-6-1:before {
-  content: "\e192";
-}
-.glyphicon-sound-7-1:before {
-  content: "\e193";
-}
-.glyphicon-copyright-mark:before {
-  content: "\e194";
-}
-.glyphicon-registration-mark:before {
-  content: "\e195";
-}
-.glyphicon-cloud-download:before {
-  content: "\e197";
-}
-.glyphicon-cloud-upload:before {
-  content: "\e198";
-}
-.glyphicon-tree-conifer:before {
-  content: "\e199";
-}
-.glyphicon-tree-deciduous:before {
-  content: "\e200";
-}
-* {
-  -webkit-box-sizing: border-box;
-  -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: 10px;
-  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-body {
-  font-family: "ProximaNovaSoft", Helvetica, Arial, sans-serif;
-  font-size: 14px;
-  line-height: 1.57142857;
-  color: #6f787e;
-  background-color: #ffffff;
-  font-weight: 500;
-  -moz-osx-font-smoothing: grayscale;
-  -webkit-font-smoothing: antialiased;
-  -moz-font-smoothing: antialiased;
-  -o-font-smoothing: antialiased;
-  font-smoothing: antialiased;
-}
-input,
-button,
-select,
-textarea {
-  font-family: inherit;
-  font-size: inherit;
-  line-height: inherit;
-  -moz-osx-font-smoothing: grayscale;
-  -webkit-font-smoothing: antialiased;
-  -moz-font-smoothing: antialiased;
-  -o-font-smoothing: antialiased;
-  font-smoothing: antialiased;
-}
-a {
-  color: #26bbf0;
-  text-decoration: none;
-}
-a:hover,
-a:focus {
-  color: #0d8ebc;
-  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;
-  width: 100% \9;
-  max-width: 100%;
-  height: auto;
-}
-.img-rounded {
-  border-radius: 5px;
-}
-.img-thumbnail {
-  padding: 4px;
-  line-height: 1.57142857;
-  background-color: #ffffff;
-  border: 1px solid #dddddd;
-  border-radius: 4px;
-  -webkit-transition: all 0.2s ease-in-out;
-  -o-transition: all 0.2s ease-in-out;
-  transition: all 0.2s ease-in-out;
-  display: inline-block;
-  width: 100% \9;
-  max-width: 100%;
-  height: auto;
-}
-.img-circle {
-  border-radius: 50%;
-}
-hr {
-  margin-top: 21px;
-  margin-bottom: 21px;
-  border: 0;
-  border-top: 1px solid #c6cdd1;
-}
-.sr-only {
-  position: absolute;
-  width: 1px;
-  height: 1px;
-  margin: -1px;
-  padding: 0;
-  overflow: hidden;
-  clip: rect(0, 0, 0, 0);
-  border: 0;
-}
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
-  position: static;
-  width: auto;
-  height: auto;
-  margin: 0;
-  overflow: visible;
-  clip: auto;
-}
-h1,
-h2,
-h3,
-h4,
-h5,
-h6,
-.h1,
-.h2,
-.h3,
-.h4,
-.h5,
-.h6 {
-  font-family: inherit;
-  font-weight: 400;
-  line-height: 1.1;
-  color: #343536;
-}
-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: normal;
-  line-height: 1;
-  color: #9aa8b1;
-}
-h1,
-.h1,
-h2,
-.h2,
-h3,
-.h3 {
-  margin-top: 42px;
-  margin-bottom: 21px;
-}
-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: 21px;
-  margin-bottom: 10.5px;
-  font-weight: 700;
-}
-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: 40px;
-  text-transform: uppercase;
-}
-h2,
-.h2 {
-  font-size: 30px;
-  font-weight: 500;
-}
-h3,
-.h3 {
-  font-size: 18px;
-  font-weight: 600;
-}
-h4,
-.h4 {
-  font-size: 14px;
-  font-weight: 600;
-}
-h5,
-.h5 {
-  font-size: 12px;
-  font-weight: 600;
-  text-transform: uppercase;
-  color: #6f787e;
-}
-h6,
-.h6 {
-  font-size: 12px;
-  font-weight: 600;
-  color: #6f787e;
-}
-p {
-  margin: 0 0 10.5px;
-}
-.lead {
-  margin-bottom: 21px;
-  font-size: 16px;
-  font-weight: 400;
-  line-height: 1.4;
-  color: #424950;
-}
-@media (min-width: 768px) {
-  .lead {
-    font-size: 21px;
-  }
-}
-small,
-.small {
-  font-size: 85%;
-}
-cite {
-  font-style: normal;
-}
-mark,
-.mark {
-  background-color: #ffe49c;
-  padding: .2em .4em;
-  border-radius: 3px;
-}
-.text-left {
-  text-align: left;
-}
-.text-right {
-  text-align: right;
-}
-.text-center {
-  text-align: center;
-}
-.text-justify {
-  text-align: justify;
-}
-.text-nowrap {
-  white-space: nowrap;
-}
-.text-lowercase {
-  text-transform: lowercase;
-}
-.text-uppercase {
-  text-transform: uppercase;
-}
-.text-capitalize {
-  text-transform: capitalize;
-}
-.text-muted {
-  color: #9aa8b1;
-}
-.text-primary {
-  color: #26bbf0;
-}
-a.text-primary:hover {
-  color: #0fa0d4;
-}
-.text-success {
-  color: #6eb17b;
-}
-a.text-success:hover {
-  color: #539960;
-}
-.text-info {
-  color: #31708f;
-}
-a.text-info:hover {
-  color: #245269;
-}
-.text-warning {
-  color: #d9a92b;
-}
-a.text-warning:hover {
-  color: #b18920;
-}
-.text-danger {
-  color: #a9484b;
-}
-a.text-danger:hover {
-  color: #85393b;
-}
-.bg-primary {
-  color: #fff;
-  background-color: #26bbf0;
-  border-radius: 4px;
-}
-a.bg-primary:hover {
-  background-color: #0fa0d4;
-}
-.bg-success {
-  background-color: #d5e3bf;
-  border-radius: 4px;
-}
-a.bg-success:hover {
-  background-color: #bed39b;
-}
-.bg-info {
-  background-color: #d9edf7;
-  border-radius: 4px;
-}
-a.bg-info:hover {
-  background-color: #afd9ee;
-}
-.bg-warning {
-  background-color: #ffe49c;
-  border-radius: 4px;
-}
-a.bg-warning:hover {
-  background-color: #ffd669;
-}
-.bg-danger {
-  background-color: #f1d3d4;
-  border-radius: 4px;
-}
-a.bg-danger:hover {
-  background-color: #e5acae;
-}
-.page-header {
-  padding-bottom: 9.5px;
-  margin: 42px 0 21px;
-  border-bottom: 1px solid #c6cdd1;
-  text-align: center;
-  letter-spacing: 0.5em;
-}
-ul,
-ol {
-  margin-top: 0;
-  margin-bottom: 10.5px;
-}
-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: 21px;
-}
-dt,
-dd {
-  line-height: 1.57142857;
-}
-dt {
-  font-weight: bold;
-}
-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 #9aa8b1;
-}
-.initialism {
-  font-size: 90%;
-  text-transform: uppercase;
-}
-blockquote {
-  padding: 10.5px 21px;
-  margin: 0 0 21px;
-  font-size: 17.5px;
-  border-left: 5px solid #c6cdd1;
-}
-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.57142857;
-  color: #9aa8b1;
-}
-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 #c6cdd1;
-  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: 21px;
-  font-style: normal;
-  line-height: 1.57142857;
-}
-code,
-kbd,
-pre,
-samp {
-  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
-}
-code {
-  padding: 2px 4px;
-  font-size: 90%;
-  color: #c7254e;
-  background-color: #f9f2f4;
-  border-radius: 4px;
-}
-kbd {
-  padding: 2px 4px;
-  font-size: 90%;
-  color: #ffffff;
-  background-color: #333333;
-  border-radius: 3px;
-  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
-}
-kbd kbd {
-  padding: 0;
-  font-size: 100%;
-  box-shadow: none;
-}
-pre {
-  display: block;
-  padding: 10px;
-  margin: 0 0 10.5px;
-  font-size: 13px;
-  line-height: 1.57142857;
-  word-break: break-all;
-  word-wrap: break-word;
-  color: #343536;
-  background-color: #f5f5f5;
-  border: 1px solid #cccccc;
-  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: auto;
-}
-.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: auto;
-}
-.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: auto;
-  }
-  .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: auto;
-  }
-  .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: auto;
-  }
-  .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: auto;
-  }
-  .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: auto;
-  }
-  .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: auto;
-  }
-  .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 {
-  background-color: transparent;
-}
-th {
-  text-align: left;
-}
-.table {
-  width: 100%;
-  max-width: 100%;
-  margin-bottom: 21px;
-}
-.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.57142857;
-  vertical-align: top;
-  border-top: 1px solid #dddddd;
-}
-.table > thead:first-child > tr:first-child > th,
-.table > tbody:first-child > tr:first-child > th,
-.table > tfoot:first-child > tr:first-child > th,
-.table > tr:first-child > th,
-.table > thead:first-child > tr:first-child > td,
-.table > tbody:first-child > tr:first-child > td,
-.table > tfoot:first-child > tr:first-child > td,
-.table > tr:first-child > td {
-  font-size: 71%;
-  text-transform: uppercase;
-  font-weight: 600;
-}
-.table > thead > tr > th {
-  vertical-align: bottom;
-  border-bottom: 2px solid #dddddd;
-}
-.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 #dddddd;
-}
-.table .table {
-  background-color: #ffffff;
-}
-.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 #dddddd;
-  border-radius: 4px;
-  border-collapse: separate;
-}
-.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 #dddddd;
-  border-left: none;
-  border-top: none;
-}
-.table-bordered > thead > tr > th:first-child,
-.table-bordered > tbody > tr > th:first-child,
-.table-bordered > tfoot > tr > th:first-child,
-.table-bordered > thead > tr > td:first-child,
-.table-bordered > tbody > tr > td:first-child,
-.table-bordered > tfoot > tr > td:first-child {
-  border-left: none;
-}
-.table-bordered > thead > tr > th:last-child,
-.table-bordered > tbody > tr > th:last-child,
-.table-bordered > tfoot > tr > th:last-child,
-.table-bordered > thead > tr > td:last-child,
-.table-bordered > tbody > tr > td:last-child,
-.table-bordered > tfoot > tr > td:last-child {
-  border-right: none;
-  border-radius: 0 4px 0 0;
-}
-.table-bordered > thead > tr > th,
-.table-bordered > thead > tr > td {
-  border-bottom-width: 2px;
-}
-.table-bordered > thead:first-child > tr:first-child > th:first-child,
-.table-bordered > tr:first-child > th:first-child,
-.table-bordered > tbody:first-child > tr:first-child > th:first-child,
-.table-bordered > tfoot:first-child > tr:first-child > th:first-child,
-.table-bordered > thead:first-child > tr:first-child > td:first-child,
-.table-bordered > tr:first-child > td:first-child,
-.table-bordered > tbody:first-child > tr:first-child > td:first-child,
-.table-bordered > tfoot:first-child > tr:first-child > td:first-child {
-  border-radius: 4px 0 0 0;
-}
-.table-bordered > thead:first-child > tr:first-child > th:last-child,
-.table-bordered > tr:first-child > th:last-child,
-.table-bordered > tbody:first-child > tr:first-child > th:last-child,
-.table-bordered > tfoot:first-child > tr:first-child > th:last-child,
-.table-bordered > thead:first-child > tr:first-child > td:last-child,
-.table-bordered > tr:first-child > td:last-child,
-.table-bordered > tbody:first-child > tr:first-child > td:last-child,
-.table-bordered > tfoot:first-child > tr:first-child > td:last-child {
-  border-radius: 0 4px 0 0;
-}
-.table-bordered > thead:last-child > tr:last-child > th,
-.table-bordered > tr:last-child > th,
-.table-bordered > tbody:last-child > tr:last-child > th,
-.table-bordered > tfoot:last-child > tr:last-child > th,
-.table-bordered > thead:last-child > tr:last-child > td,
-.table-bordered > tr:last-child > td,
-.table-bordered > tbody:last-child > tr:last-child > td,
-.table-bordered > tfoot:last-child > tr:last-child > td {
-  border-bottom: none;
-}
-.table-bordered > thead:last-child > tr:last-child > th:first-child,
-.table-bordered > tr:last-child > th:first-child,
-.table-bordered > tbody:last-child > tr:last-child > th:first-child,
-.table-bordered > tfoot:last-child > tr:last-child > th:first-child,
-.table-bordered > thead:last-child > tr:last-child > td:first-child,
-.table-bordered > tr:last-child > td:first-child,
-.table-bordered > tbody:last-child > tr:last-child > td:first-child,
-.table-bordered > tfoot:last-child > tr:last-child > td:first-child {
-  border-radius: 0 0 0 4px;
-}
-.table-bordered > thead:last-child > tr:last-child > th:last-child,
-.table-bordered > tr:last-child > th:last-child,
-.table-bordered > tbody:last-child > tr:last-child > th:last-child,
-.table-bordered > tfoot:last-child > tr:last-child > th:last-child,
-.table-bordered > thead:last-child > tr:last-child > td:last-child,
-.table-bordered > tr:last-child > td:last-child,
-.table-bordered > tbody:last-child > tr:last-child > td:last-child,
-.table-bordered > tfoot:last-child > tr:last-child > td:last-child {
-  border-radius: 0 0 4px 0;
-}
-.table-striped > tbody > tr:nth-child(odd) > td,
-.table-striped > tbody > tr:nth-child(odd) > th {
-  background-color: #f9f9f7;
-}
-.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:hover > .active,
-.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: #d5e3bf;
-}
-.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:hover > .success,
-.table-hover > tbody > tr.success:hover > th {
-  background-color: #cadbad;
-}
-.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:hover > .info,
-.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: #ffe49c;
-}
-.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:hover > .warning,
-.table-hover > tbody > tr.warning:hover > th {
-  background-color: #ffdd83;
-}
-.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: #f1d3d4;
-}
-.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:hover > .danger,
-.table-hover > tbody > tr.danger:hover > th {
-  background-color: #ebc0c1;
-}
-@media screen and (max-width: 767px) {
-  .table-responsive {
-    width: 100%;
-    margin-bottom: 15.75px;
-    overflow-y: hidden;
-    overflow-x: auto;
-    -ms-overflow-style: -ms-autohiding-scrollbar;
-    border: 1px solid #dddddd;
-    -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: 21px;
-  font-size: 21px;
-  line-height: inherit;
-  color: #343536;
-  border: 0;
-  border-bottom: 1px solid #e5e5e5;
-}
-label {
-  display: inline-block;
-  max-width: 100%;
-  margin-bottom: 5px;
-  font-weight: bold;
-}
-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.57142857;
-  color: #3f4142;
-}
-.form-control {
-  display: block;
-  width: 100%;
-  height: 33px;
-  padding: 6px 12px;
-  font-size: 14px;
-  line-height: 1.57142857;
-  color: #3f4142;
-  background-color: #ffffff;
-  background-image: none;
-  border: 1px solid #dedede;
-  border-radius: 4px;
-  -webkit-box-shadow: inset 0 1px 0 rgba(180, 180, 180, 0.1);
-  box-shadow: inset 0 1px 0 rgba(180, 180, 180, 0.1);
-  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-  -o-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: #26bbf0;
-  outline: 0;
-  -webkit-box-shadow: none;
-  box-shadow: none;
-  box-shadow: 0 0 0 2px rgba(38, 187, 240, 0.15);
-}
-.form-control::-moz-placeholder {
-  color: #c6cdd1;
-  opacity: 1;
-}
-.form-control:-ms-input-placeholder {
-  color: #c6cdd1;
-}
-.form-control::-webkit-input-placeholder {
-  color: #c6cdd1;
-}
-.form-control[disabled],
-.form-control[readonly],
-fieldset[disabled] .form-control {
-  cursor: not-allowed;
-  background-color: #f7f8f8;
-  color: #f3f4f5;
-  opacity: 1;
-}
-textarea.form-control {
-  height: auto;
-}
-input[type="search"] {
-  -webkit-appearance: none;
-}
-input[type="date"],
-input[type="time"],
-input[type="datetime-local"],
-input[type="month"] {
-  line-height: 33px;
-  line-height: 1.57142857 \0;
-}
-input[type="date"].input-sm,
-input[type="time"].input-sm,
-input[type="datetime-local"].input-sm,
-input[type="month"].input-sm {
-  line-height: 24px;
-}
-input[type="date"].input-lg,
-input[type="time"].input-lg,
-input[type="datetime-local"].input-lg,
-input[type="month"].input-lg {
-  line-height: 46px;
-}
-.form-group {
-  margin-bottom: 15px;
-}
-.radio,
-.checkbox {
-  position: relative;
-  display: block;
-  min-height: 21px;
-  margin-top: 10px;
-  margin-bottom: 10px;
-}
-.radio label,
-.checkbox label {
-  padding-left: 20px;
-  margin-bottom: 0;
-  font-weight: normal;
-  cursor: pointer;
-}
-.radio input[type="radio"],
-.radio-inline input[type="radio"],
-.checkbox input[type="checkbox"],
-.checkbox-inline input[type="checkbox"] {
-  position: absolute;
-  margin-left: -20px;
-  margin-top: 4px \9;
-}
-.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: normal;
-  cursor: pointer;
-}
-.radio-inline + .radio-inline,
-.checkbox-inline + .checkbox-inline {
-  margin-top: 0;
-  margin-left: 10px;
-}
-input[type="radio"][disabled],
-input[type="checkbox"][disabled],
-input[type="radio"].disabled,
-input[type="checkbox"].disabled,
-fieldset[disabled] input[type="radio"],
-fieldset[disabled] input[type="checkbox"] {
-  cursor: not-allowed;
-}
-.radio-inline.disabled,
-.checkbox-inline.disabled,
-fieldset[disabled] .radio-inline,
-fieldset[disabled] .checkbox-inline {
-  cursor: not-allowed;
-}
-.radio.disabled label,
-.checkbox.disabled label,
-fieldset[disabled] .radio label,
-fieldset[disabled] .checkbox label {
-  cursor: not-allowed;
-}
-.form-control-static {
-  padding-top: 7px;
-  padding-bottom: 7px;
-  margin-bottom: 0;
-}
-.form-control-static.input-lg,
-.form-control-static.input-sm {
-  padding-left: 0;
-  padding-right: 0;
-}
-.input-sm,
-.form-horizontal .form-group-sm .form-control {
-  height: 24px;
-  padding: 3px 10px;
-  font-size: 12px;
-  line-height: 1.4;
-  border-radius: 3px;
-}
-select.input-sm {
-  height: 24px;
-  line-height: 24px;
-}
-textarea.input-sm,
-select[multiple].input-sm {
-  height: auto;
-}
-.input-lg,
-.form-horizontal .form-group-lg .form-control {
-  height: 46px;
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3;
-  border-radius: 5px;
-}
-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: 41.25px;
-}
-.form-control-feedback {
-  position: absolute;
-  top: 28px;
-  right: 0;
-  z-index: 2;
-  display: block;
-  width: 33px;
-  height: 33px;
-  line-height: 33px;
-  text-align: center;
-}
-.input-lg + .form-control-feedback {
-  width: 46px;
-  height: 46px;
-  line-height: 46px;
-}
-.input-sm + .form-control-feedback {
-  width: 24px;
-  height: 24px;
-  line-height: 24px;
-}
-.has-success .help-block,
-.has-success .control-label,
-.has-success .radio,
-.has-success .checkbox,
-.has-success .radio-inline,
-.has-success .checkbox-inline {
-  color: #6eb17b;
-}
-.has-success .form-control {
-  border-color: #d5e3bf;
-  background-color: #f8faf4;
-}
-.has-success .form-control:focus:focus {
-  border-color: #a7c478;
-  outline: 0;
-  -webkit-box-shadow: none;
-  box-shadow: none;
-  box-shadow: 0 0 0 2px rgba(167, 196, 120, 0.15);
-}
-.has-success .input-group-addon {
-  color: #6eb17b;
-  border-color: #d5e3bf;
-  background-color: #d5e3bf;
-}
-.has-success .form-control-feedback {
-  color: #6eb17b;
-}
-.has-warning .help-block,
-.has-warning .control-label,
-.has-warning .radio,
-.has-warning .checkbox,
-.has-warning .radio-inline,
-.has-warning .checkbox-inline {
-  color: #d9a92b;
-}
-.has-warning .form-control {
-  border-color: #ffe49c;
-  background-color: #fff9e9;
-}
-.has-warning .form-control:focus:focus {
-  border-color: #ffc836;
-  outline: 0;
-  -webkit-box-shadow: none;
-  box-shadow: none;
-  box-shadow: 0 0 0 2px rgba(255, 200, 54, 0.15);
-}
-.has-warning .input-group-addon {
-  color: #d9a92b;
-  border-color: #ffe49c;
-  background-color: #ffe49c;
-}
-.has-warning .form-control-feedback {
-  color: #d9a92b;
-}
-.has-error .help-block,
-.has-error .control-label,
-.has-error .radio,
-.has-error .checkbox,
-.has-error .radio-inline,
-.has-error .checkbox-inline {
-  color: #a9484b;
-}
-.has-error .form-control {
-  border-color: #f1d3d4;
-  background-color: #ffffff;
-}
-.has-error .form-control:focus:focus {
-  border-color: #d88688;
-  outline: 0;
-  -webkit-box-shadow: none;
-  box-shadow: none;
-  box-shadow: 0 0 0 2px rgba(216, 134, 136, 0.15);
-}
-.has-error .input-group-addon {
-  color: #a9484b;
-  border-color: #f1d3d4;
-  background-color: #f1d3d4;
-}
-.has-error .form-control-feedback {
-  color: #a9484b;
-}
-.has-feedback label.sr-only ~ .form-control-feedback {
-  top: 0;
-}
-.help-block {
-  display: block;
-  margin-top: 5px;
-  margin-bottom: 10px;
-  color: #b2b7bb;
-}
-@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;
-    height: 29px;
-  }
-  .form-inline .form-control-feedback {
-    height: 29px;
-    line-height: 29px;
-  }
-  .form-inline .input-group {
-    display: inline-table;
-    vertical-align: middle;
-  }
-  .form-inline .input-group .input-group-addon,
-  .form-inline .input-group .input-group-btn,
-  .form-inline .input-group .form-control {
-    width: auto;
-  }
-  .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;
-    vertical-align: middle;
-  }
-  .form-inline .radio label,
-  .form-inline .checkbox label {
-    padding-left: 0;
-  }
-  .form-inline .radio input[type="radio"],
-  .form-inline .checkbox input[type="checkbox"] {
-    position: relative;
-    margin-left: 0;
-  }
-  .form-inline .has-feedback .form-control-feedback {
-    top: 0;
-  }
-}
-.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: 28px;
-}
-.form-horizontal .form-group {
-  margin-left: -15px;
-  margin-right: -15px;
-}
-@media (min-width: 768px) {
-  .form-horizontal .control-label {
-    text-align: right;
-    margin-bottom: 0;
-    padding-top: 7px;
-  }
-}
-.form-horizontal .has-feedback .form-control-feedback {
-  top: 0;
-  right: 15px;
-}
-@media (min-width: 768px) {
-  .form-horizontal .form-group-lg .control-label {
-    padding-top: 14px;
-  }
-}
-@media (min-width: 768px) {
-  .form-horizontal .form-group-sm .control-label {
-    padding-top: 4px;
-  }
-}
-.btn {
-  display: inline-block;
-  margin-bottom: 0;
-  font-weight: 600;
-  text-align: center;
-  vertical-align: middle;
-  cursor: pointer;
-  background-image: none;
-  border: 1px solid transparent;
-  white-space: nowrap;
-  outline: 0 !important;
-  padding: 6px 12px;
-  font-size: 12px;
-  line-height: 1.3;
-  border-radius: 4px;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-.btn:not(.dropdown-toggle):not(.btn-link) {
-  min-width: 92px;
-}
-.btn-group .btn,
-.btn-group-vertical .btn {
-  min-width: inherit;
-}
-.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: #6f787e;
-  text-decoration: none;
-}
-.btn:active,
-.btn.active {
-  outline: 0;
-  background-image: none;
-  -webkit-box-shadow: inset 0 1px 3px -1px rgba(0, 0, 0, 0.18);
-  box-shadow: inset 0 1px 3px -1px rgba(0, 0, 0, 0.18);
-}
-.btn.disabled,
-.btn[disabled],
-fieldset[disabled] .btn {
-  cursor: not-allowed;
-  pointer-events: none;
-  opacity: 0.65;
-  filter: alpha(opacity=65);
-  -webkit-box-shadow: none;
-  box-shadow: none;
-}
-.btn .glyphicon {
-  font-size: 80%;
-}
-.btn-default {
-  color: #6f787e;
-  background-color: #ffffff;
-  border-color: #89949b;
-}
-.btn-default:hover,
-.btn-default:active,
-.btn-default.active {
-  color: #424950;
-  background-color: #ffffff;
-}
-.btn-default:hover:not(.btn-default),
-.btn-default:active:not(.btn-default),
-.btn-default.active:not(.btn-default) {
-  border-color: #ffffff;
-}
-.btn-default:focus {
-  color: #424950;
-}
-.btn-default:active,
-.btn-default.active {
-  background-image: none;
-}
-.btn-default:active:not(.dropdown-toggle),
-.btn-default.active:not(.dropdown-toggle) {
-  background-color: #ffffff;
-  border-color: #636e75;
-}
-.open .dropdown-toggle.btn-default {
-  color: #424950;
-}
-.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: #ffffff;
-  border-color: #89949b;
-  opacity: 0.3;
-}
-.btn-default .badge {
-  color: #ffffff;
-  background-color: #6f787e;
-}
-.btn-default.selected {
-  background-color: #89949b;
-  color: #fff;
-}
-.btn-default.selected:active,
-.btn-default.selected.active {
-  color: #6f787e;
-}
-.btn-primary {
-  color: #ffffff;
-  background-color: #26bbf0;
-  border-color: #26bbf0;
-}
-.btn-primary:hover,
-.btn-primary:active,
-.btn-primary.active {
-  color: #ffffff;
-  background-color: #11a3d7;
-}
-.btn-primary:hover:not(.btn-default),
-.btn-primary:active:not(.btn-default),
-.btn-primary.active:not(.btn-default) {
-  border-color: #11a3d7;
-}
-.btn-primary:focus {
-  color: #ffffff;
-}
-.btn-primary:active,
-.btn-primary.active {
-  background-image: none;
-}
-.btn-primary:active:not(.dropdown-toggle),
-.btn-primary.active:not(.dropdown-toggle) {
-  background-color: #11a3d7;
-  border-color: #0d8ebc;
-}
-.open .dropdown-toggle.btn-primary {
-  color: #ffffff;
-}
-.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: #11a3d7;
-  border-color: #26bbf0;
-  opacity: 0.3;
-}
-.btn-primary .badge {
-  color: #26bbf0;
-  background-color: #ffffff;
-}
-.btn-primary.selected {
-  background-color: #26bbf0;
-  color: #fff;
-}
-.btn-primary.selected:active,
-.btn-primary.selected.active {
-  color: #ffffff;
-}
-.btn-success {
-  color: #ffffff;
-  background-color: #b2c98a;
-  border-color: #b2c98a;
-}
-.btn-success:hover,
-.btn-success:active,
-.btn-success.active {
-  color: #ffffff;
-  background-color: #98b36a;
-}
-.btn-success:hover:not(.btn-default),
-.btn-success:active:not(.btn-default),
-.btn-success.active:not(.btn-default) {
-  border-color: #98b36a;
-}
-.btn-success:focus {
-  color: #ffffff;
-}
-.btn-success:active,
-.btn-success.active {
-  background-image: none;
-}
-.btn-success:active:not(.dropdown-toggle),
-.btn-success.active:not(.dropdown-toggle) {
-  background-color: #98b36a;
-  border-color: #90b156;
-}
-.open .dropdown-toggle.btn-success {
-  color: #ffffff;
-}
-.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: #98b36a;
-  border-color: #b2c98a;
-  opacity: 0.3;
-}
-.btn-success .badge {
-  color: #b2c98a;
-  background-color: #ffffff;
-}
-.btn-success.selected {
-  background-color: #b2c98a;
-  color: #fff;
-}
-.btn-success.selected:active,
-.btn-success.selected.active {
-  color: #ffffff;
-}
-.btn-info {
-  color: #ffffff;
-  background-color: #9aa8b1;
-  border-color: #9aa8b1;
-}
-.btn-info:hover,
-.btn-info:active,
-.btn-info.active {
-  color: #ffffff;
-  background-color: #6f787e;
-}
-.btn-info:hover:not(.btn-default),
-.btn-info:active:not(.btn-default),
-.btn-info.active:not(.btn-default) {
-  border-color: #6f787e;
-}
-.btn-info:focus {
-  color: #ffffff;
-}
-.btn-info:active,
-.btn-info.active {
-  background-image: none;
-}
-.btn-info:active:not(.dropdown-toggle),
-.btn-info.active:not(.dropdown-toggle) {
-  background-color: #6f787e;
-  border-color: #6f8390;
-}
-.open .dropdown-toggle.btn-info {
-  color: #ffffff;
-}
-.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: #6f787e;
-  border-color: #9aa8b1;
-  opacity: 0.3;
-}
-.btn-info .badge {
-  color: #9aa8b1;
-  background-color: #ffffff;
-}
-.btn-info.selected {
-  background-color: #9aa8b1;
-  color: #fff;
-}
-.btn-info.selected:active,
-.btn-info.selected.active {
-  color: #ffffff;
-}
-.btn-warning {
-  color: #ffffff;
-  background-color: #ffd055;
-  border-color: #ffd055;
-}
-.btn-warning:hover,
-.btn-warning:active,
-.btn-warning.active {
-  color: #ffffff;
-  background-color: #ffbc0d;
-}
-.btn-warning:hover:not(.btn-default),
-.btn-warning:active:not(.btn-default),
-.btn-warning.active:not(.btn-default) {
-  border-color: #ffbc0d;
-}
-.btn-warning:focus {
-  color: #ffffff;
-}
-.btn-warning:active,
-.btn-warning.active {
-  background-image: none;
-}
-.btn-warning:active:not(.dropdown-toggle),
-.btn-warning.active:not(.dropdown-toggle) {
-  background-color: #ffbc0d;
-  border-color: #ffbb08;
-}
-.open .dropdown-toggle.btn-warning {
-  color: #ffffff;
-}
-.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: #ffbc0d;
-  border-color: #ffd055;
-  opacity: 0.3;
-}
-.btn-warning .badge {
-  color: #ffd055;
-  background-color: #ffffff;
-}
-.btn-warning.selected {
-  background-color: #ffd055;
-  color: #fff;
-}
-.btn-warning.selected:active,
-.btn-warning.selected.active {
-  color: #ffffff;
-}
-.btn-danger {
-  color: #ffffff;
-  background-color: #cf6a6d;
-  border-color: #cf6a6d;
-}
-.btn-danger:hover,
-.btn-danger:active,
-.btn-danger.active {
-  color: #ffffff;
-  background-color: #b75355;
-}
-.btn-danger:hover:not(.btn-default),
-.btn-danger:active:not(.btn-default),
-.btn-danger.active:not(.btn-default) {
-  border-color: #b75355;
-}
-.btn-danger:focus {
-  color: #ffffff;
-}
-.btn-danger:active,
-.btn-danger.active {
-  background-image: none;
-}
-.btn-danger:active:not(.dropdown-toggle),
-.btn-danger.active:not(.dropdown-toggle) {
-  background-color: #b75355;
-  border-color: #b33a3d;
-}
-.open .dropdown-toggle.btn-danger {
-  color: #ffffff;
-}
-.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: #b75355;
-  border-color: #cf6a6d;
-  opacity: 0.3;
-}
-.btn-danger .badge {
-  color: #cf6a6d;
-  background-color: #ffffff;
-}
-.btn-danger.selected {
-  background-color: #cf6a6d;
-  color: #fff;
-}
-.btn-danger.selected:active,
-.btn-danger.selected.active {
-  color: #ffffff;
-}
-.btn-link {
-  color: #26bbf0;
-  font-weight: normal;
-  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: #0d8ebc;
-  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: #9aa8b1;
-  text-decoration: none;
-}
-.btn-lg,
-.btn-group-lg > .btn {
-  padding: 10px 16px;
-  font-size: 18px;
-  line-height: 1.3;
-  border-radius: 5px;
-}
-.btn-sm,
-.btn-group-sm > .btn {
-  padding: 3px 10px;
-  font-size: 12px;
-  line-height: 1.4;
-  border-radius: 3px;
-}
-.btn-xs,
-.btn-group-xs > .btn {
-  padding: 1px 5px;
-  font-size: 12px;
-  line-height: 1.4;
-  border-radius: 3px;
-}
-.btn-block {
-  display: block;
-  width: 100%;
-}
-.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 0.15s linear;
-  -o-transition: opacity 0.15s linear;
-  transition: opacity 0.15s linear;
-}
-.fade.in {
-  opacity: 1;
-}
-.collapse {
-  display: none;
-}
-.collapse.in {
-  display: block;
-}
-tr.collapse.in {
-  display: table-row;
-}
-tbody.collapse.in {
-  display: table-row-group;
-}
-.collapsing {
-  position: relative;
-  height: 0;
-  overflow: hidden;
-  -webkit-transition: height 0.35s ease;
-  -o-transition: height 0.35s ease;
-  transition: height 0.35s ease;
-}
-.caret {
-  display: inline-block;
-  width: 1em;
-  height: 1em;
-  margin-left: 2px;
-  vertical-align: middle;
-  position: relative;
-}
-.caret::after {
-  content: '\07A';
-  display: inline-block;
-  position: relative;
-  font-family: 'ss-nutanix';
-  font-size: 50%;
-  top: -0.7em;
-}
-.dropdown {
-  position: relative;
-}
-.dropdown .dropdown-toggle {
-  position: relative;
-  border: none;
-  color: #6f787e;
-  font-weight: 700;
-  -webkit-box-shadow: none;
-  box-shadow: none;
-  z-index: 1001;
-}
-.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: 12px;
-  text-align: left;
-  background-color: #ffffff;
-  border: 1px solid #cccccc;
-  border: 1px solid rgba(0, 0, 0, 0.15);
-  border-radius: 4px;
-  -webkit-box-shadow: 0.5px 0.866px 2px 0px rgba(0, 0, 0, 0.07);
-  box-shadow: 0.5px 0.866px 2px 0px rgba(0, 0, 0, 0.07);
-  background-clip: padding-box;
-  font-weight: 600;
-  line-height: 1.57142857;
-  color: #6f787e;
-}
-.dropdown .dropdown-menu {
-  margin: 0;
-}
-.btn-group-vertical .dropdown-menu {
-  margin-left: 2px;
-}
-.dropdown-menu.pull-right {
-  right: 0;
-  left: auto;
-}
-.dropdown-menu .divider {
-  height: 1px;
-  margin: 3.5px 0;
-  overflow: hidden;
-  background-color: #e5e5e5;
-}
-.dropdown-menu > li > a {
-  display: block;
-  padding: 5px 20px;
-  margin-top: 2px;
-  margin-bottom: 2px;
-  clear: both;
-  white-space: nowrap;
-  font-weight: 600;
-  line-height: 1.57142857;
-  color: inherit;
-}
-.dropdown-menu > li:first-child a {
-  margin-top: 0;
-}
-.dropdown-menu > li:last-child a {
-  margin-bottom: 0;
-}
-.dropdown-menu > li > a:hover,
-.dropdown-menu > li > a:focus {
-  text-decoration: none;
-  color: #ffffff;
-  background-color: #26bbf0;
-}
-.dropdown-menu > .active > a,
-.dropdown-menu > .active > a:hover,
-.dropdown-menu > .active > a:focus {
-  color: #ffffff;
-  text-decoration: none;
-  outline: 0;
-  background-color: #26bbf0;
-}
-.dropdown-menu > .disabled > a,
-.dropdown-menu > .disabled > a:hover,
-.dropdown-menu > .disabled > a:focus {
-  color: #9aa8b1;
-}
-.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.open .dropdown-toggle::before,
-.dropdown.open .dropdown-toggle::after {
-  content: '';
-  display: inline-block;
-  position: absolute;
-  height: 0;
-  width: 0;
-  border: 1px solid;
-  border-width: 4px 5px;
-  right: 1.1em;
-  z-index: 1002;
-}
-.dropdown.open .dropdown-toggle::before {
-  border-color: transparent transparent #c5c5c5 transparent;
-  bottom: -1px;
-}
-.dropdown.open .dropdown-toggle::after {
-  border-color: transparent transparent #fff transparent;
-  bottom: -2px;
-}
-.dropdown-menu-right {
-  left: auto;
-  right: 0;
-}
-.dropdown-menu-left {
-  left: 0;
-  right: auto;
-}
-.dropdown-header {
-  display: block;
-  text-transform: uppercase;
-  padding: 3px 20px;
-  margin-top: 8px;
-  font-size: 11px;
-  font-weight: 500;
-  line-height: 1.57142857;
-  color: #9aa8b1;
-  white-space: nowrap;
-}
-.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;
-  content: "";
-  font-family: 'ss-nutanix';
-}
-.dropup .caret:after,
-.navbar-fixed-bottom .dropdown .caret:after {
-  content: "\077";
-}
-.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:not(.dropdown-toggle):hover,
-.btn-group-vertical > .btn:not(.dropdown-toggle):hover,
-.btn-group > .btn:not(.dropdown-toggle):focus,
-.btn-group-vertical > .btn:not(.dropdown-toggle):focus,
-.btn-group > .btn:not(.dropdown-toggle):active,
-.btn-group-vertical > .btn:not(.dropdown-toggle):active,
-.btn-group > .btn:not(.dropdown-toggle).active,
-.btn-group-vertical > .btn:not(.dropdown-toggle).active {
-  z-index: 2;
-}
-.btn-group > .btn:not(.dropdown-toggle):focus,
-.btn-group-vertical > .btn:not(.dropdown-toggle):focus {
-  outline: 0;
-}
-.btn-group.btn-group-primary > .btn,
-.btn-group-vertical.btn-group-primary > .btn {
-  background-color: #fff;
-  color: #6f787e;
-  border-color: #26bbf0;
-}
-.btn-group.btn-group-primary > .btn:hover,
-.btn-group-vertical.btn-group-primary > .btn:hover {
-  background-color: #dbf4fd;
-}
-.btn-group.btn-group-primary > .btn.selected,
-.btn-group-vertical.btn-group-primary > .btn.selected,
-.btn-group.btn-group-primary > .btn.selected:hover,
-.btn-group-vertical.btn-group-primary > .btn.selected:hover {
-  background-color: #26bbf0;
-  color: #fff;
-}
-.btn-group.btn-group-success > .btn,
-.btn-group-vertical.btn-group-success > .btn {
-  background-color: #fff;
-  color: #6f787e;
-  border-color: #b2c98a;
-}
-.btn-group.btn-group-success > .btn:hover,
-.btn-group-vertical.btn-group-success > .btn:hover {
-  background-color: #ffffff;
-}
-.btn-group.btn-group-success > .btn.selected,
-.btn-group-vertical.btn-group-success > .btn.selected,
-.btn-group.btn-group-success > .btn.selected:hover,
-.btn-group-vertical.btn-group-success > .btn.selected:hover {
-  background-color: #b2c98a;
-  color: #fff;
-}
-.btn-group.btn-group-warning > .btn,
-.btn-group-vertical.btn-group-warning > .btn {
-  background-color: #fff;
-  color: #6f787e;
-  border-color: #ffd055;
-}
-.btn-group.btn-group-warning > .btn:hover,
-.btn-group-vertical.btn-group-warning > .btn:hover {
-  background-color: #ffffff;
-}
-.btn-group.btn-group-warning > .btn.selected,
-.btn-group-vertical.btn-group-warning > .btn.selected,
-.btn-group.btn-group-warning > .btn.selected:hover,
-.btn-group-vertical.btn-group-warning > .btn.selected:hover {
-  background-color: #ffd055;
-  color: #fff;
-}
-.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 1px 1px 4px rgba(0, 0, 0, 0.075);
-  box-shadow: inset 1px 1px 4px rgba(0, 0, 0, 0.075);
-}
-.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 .dropdown-toggle::before,
-.btn-group-vertical .dropdown-toggle::after {
-  display: none !important;
-}
-.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%;
-}
-.btn-group-justified > .btn-group .dropdown-menu {
-  left: auto;
-}
-.btn-group-justified > .btn + .btn,
-.btn-group-justified > .btn + .btn-group > .btn,
-.btn-group-justified > .btn-group > .btn + .btn,
-.btn-group-justified > .btn-group + .btn-group > .btn {
-  border-left: none;
-}
-[data-toggle="buttons"] > .btn > input[type="radio"],
-[data-toggle="buttons"] > .btn > input[type="checkbox"] {
-  position: absolute;
-  z-index: -1;
-  opacity: 0;
-  filter: alpha(opacity=0);
-}
-.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.3;
-  border-radius: 5px;
-}
-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: 24px;
-  padding: 3px 10px;
-  font-size: 12px;
-  line-height: 1.4;
-  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: 24px;
-  line-height: 24px;
-}
-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: 600;
-  line-height: 1;
-  color: #3f4142;
-  text-align: center;
-  background-color: #f3f4f5;
-  border: 1px solid #dedede;
-  border-radius: 4px;
-}
-.input-group-addon.input-sm {
-  padding: 3px 10px;
-  font-size: 12px;
-  border-radius: 3px;
-}
-.input-group-addon.input-lg {
-  padding: 10px 16px;
-  font-size: 18px;
-  border-radius: 5px;
-}
-.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;
-  height: 100%;
-  box-sizing: content-box;
-}
-.input-group-btn > .btn.btn-default {
-  border-color: #dedede;
-}
-.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;
-  font-weight: 600;
-}
-.nav > li > a {
-  position: relative;
-  display: block;
-  padding: 6px 15px;
-  font-size: 12px;
-  font-weight: inherit;
-}
-.nav > li > a:hover,
-.nav > li > a:focus {
-  text-decoration: none;
-  background-color: #f3f4f5;
-}
-.nav > li > a.dropdown-toggle {
-  font-weight: inherit;
-}
-.nav > li.disabled > a {
-  color: #9aa8b1;
-}
-.nav > li.disabled > a:hover,
-.nav > li.disabled > a:focus {
-  color: #9aa8b1;
-  text-decoration: none;
-  background-color: transparent;
-  cursor: not-allowed;
-}
-.nav .open > a,
-.nav .open > a:hover,
-.nav .open > a:focus {
-  background-color: #f3f4f5;
-  border-color: #26bbf0;
-}
-.nav .nav-divider {
-  height: 1px;
-  margin: 3.5px 0;
-  overflow: hidden;
-  background-color: #e5e5e5;
-}
-.nav > li > a > img {
-  max-width: none;
-}
-.nav-tabs.nav {
-  border-bottom: 1px solid #dddddd;
-}
-.nav-tabs.nav > li {
-  float: left;
-  margin-bottom: -1px;
-}
-.nav-tabs.nav > li:first-child > a {
-  border-radius: 4px 0 0 0;
-}
-.nav-tabs.nav > li:last-child > a {
-  border-radius: 0 4px 0 0;
-  border-right-width: 1px;
-}
-.nav-tabs.nav > li > a {
-  line-height: 1.57142857;
-  border: 1px solid #dddddd;
-  border-width: 1px 0 1px 1px;
-  color: #6f787e;
-}
-.nav-tabs.nav > li > a:hover {
-  color: #424950;
-}
-.nav-tabs.nav > li.active > a,
-.nav-tabs.nav > li.active > a:hover,
-.nav-tabs.nav > li.active > a:focus {
-  color: #89949b;
-  background-color: #ffffff;
-  cursor: default;
-  z-index: 2;
-}
-.nav-tabs.nav > li.active > a:after,
-.nav-tabs.nav > li.active > a:hover:after,
-.nav-tabs.nav > li.active > a:focus:after {
-  content: '';
-  display: block;
-  height: 2px;
-  background-color: #26bbf0;
-  position: absolute;
-  left: -1px;
-  right: -1px;
-  bottom: -1px;
-}
-.nav-tabs.nav.nav-justified {
-  width: 100%;
-  border-bottom: 0;
-}
-.nav-tabs.nav.nav-justified > li {
-  float: none;
-}
-.nav-tabs.nav.nav-justified > li > a {
-  text-align: center;
-  margin-bottom: 5px;
-}
-.nav-tabs.nav.nav-justified > .dropdown .dropdown-menu {
-  top: auto;
-  left: auto;
-}
-@media (min-width: 768px) {
-  .nav-tabs.nav.nav-justified > li {
-    display: table-cell;
-    width: 1%;
-  }
-  .nav-tabs.nav.nav-justified > li > a {
-    margin-bottom: 0;
-  }
-}
-.nav-tabs.nav.nav-justified > li > a {
-  margin-right: 0;
-}
-@media (min-width: 768px) {
-  .nav-tabs.nav.nav-justified > li > a {
-    border-bottom: 1px solid #dddddd;
-  }
-  .nav-tabs.nav.nav-justified > .active > a,
-  .nav-tabs.nav.nav-justified > .active > a:hover,
-  .nav-tabs.nav.nav-justified > .active > a:focus {
-    border-bottom-color: #ffffff;
-  }
-}
-.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: #ffffff;
-  background-color: #26bbf0;
-}
-.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;
-}
-@media (min-width: 768px) {
-  .nav-tabs-justified > li > a {
-    border-bottom: 1px solid #dddddd;
-  }
-  .nav-tabs-justified > .active > a,
-  .nav-tabs-justified > .active > a:hover,
-  .nav-tabs-justified > .active > a:focus {
-    border-bottom-color: #ffffff;
-  }
-}
-.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: 21px;
-  border: 1px solid transparent;
-}
-@media (min-width: 768px) {
-  .navbar {
-    border-radius: 4px;
-  }
-}
-@media (min-width: 768px) {
-  .navbar-header {
-    float: left;
-  }
-}
-.navbar-collapse {
-  overflow-x: visible;
-  padding-right: 15px;
-  padding-left: 15px;
-  border-top: 1px solid transparent;
-  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.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;
-  }
-}
-.navbar-fixed-top .navbar-collapse,
-.navbar-fixed-bottom .navbar-collapse {
-  max-height: 340px;
-}
-@media (max-width: 480px) and (orientation: landscape) {
-  .navbar-fixed-top .navbar-collapse,
-  .navbar-fixed-bottom .navbar-collapse {
-    max-height: 200px;
-  }
-}
-.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;
-  -webkit-transform: translate3d(0, 0, 0);
-  transform: translate3d(0, 0, 0);
-}
-@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: 14.5px 15px;
-  font-size: 18px;
-  line-height: 21px;
-  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.25px -15px;
-}
-.navbar-nav > li > a {
-  padding-top: 10px;
-  padding-bottom: 10px;
-  line-height: 21px;
-}
-@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: 21px;
-  }
-  .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: 14.5px;
-    padding-bottom: 14.5px;
-  }
-  .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, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
-  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
-  margin-top: 10.5px;
-  margin-bottom: 10.5px;
-}
-@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;
-    height: 29px;
-  }
-  .navbar-form .form-control-feedback {
-    height: 29px;
-    line-height: 29px;
-  }
-  .navbar-form .input-group {
-    display: inline-table;
-    vertical-align: middle;
-  }
-  .navbar-form .input-group .input-group-addon,
-  .navbar-form .input-group .input-group-btn,
-  .navbar-form .input-group .form-control {
-    width: auto;
-  }
-  .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;
-    vertical-align: middle;
-  }
-  .navbar-form .radio label,
-  .navbar-form .checkbox label {
-    padding-left: 0;
-  }
-  .navbar-form .radio input[type="radio"],
-  .navbar-form .checkbox input[type="checkbox"] {
-    position: relative;
-    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: 10.5px;
-  margin-bottom: 10.5px;
-}
-.navbar-btn.btn-sm {
-  margin-top: 13px;
-  margin-bottom: 13px;
-}
-.navbar-btn.btn-xs {
-  margin-top: 14px;
-  margin-bottom: 14px;
-}
-.navbar-text {
-  margin-top: 14.5px;
-  margin-bottom: 14.5px;
-}
-@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: #777777;
-}
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
-  color: #5e5e5e;
-  background-color: transparent;
-}
-.navbar-default .navbar-text {
-  color: #777777;
-}
-.navbar-default .navbar-nav > li > a {
-  color: #777777;
-}
-.navbar-default .navbar-nav > li > a:hover,
-.navbar-default .navbar-nav > li > a:focus {
-  color: #333333;
-  background-color: transparent;
-}
-.navbar-default .navbar-nav > .active > a,
-.navbar-default .navbar-nav > .active > a:hover,
-.navbar-default .navbar-nav > .active > a:focus {
-  color: #555555;
-  background-color: #e7e7e7;
-}
-.navbar-default .navbar-nav > .disabled > a,
-.navbar-default .navbar-nav > .disabled > a:hover,
-.navbar-default .navbar-nav > .disabled > a:focus {
-  color: #cccccc;
-  background-color: transparent;
-}
-.navbar-default .navbar-toggle {
-  border-color: #dddddd;
-}
-.navbar-default .navbar-toggle:hover,
-.navbar-default .navbar-toggle:focus {
-  background-color: #dddddd;
-}
-.navbar-default .navbar-toggle .icon-bar {
-  background-color: #888888;
-}
-.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: #555555;
-}
-@media (max-width: 767px) {
-  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
-    color: #777777;
-  }
-  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
-  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
-    color: #333333;
-    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: #555555;
-    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: #cccccc;
-    background-color: transparent;
-  }
-}
-.navbar-default .navbar-link {
-  color: #777777;
-}
-.navbar-default .navbar-link:hover {
-  color: #333333;
-}
-.navbar-default .btn-link {
-  color: #777777;
-}
-.navbar-default .btn-link:hover,
-.navbar-default .btn-link:focus {
-  color: #333333;
-}
-.navbar-default .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-default .btn-link:hover,
-.navbar-default .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-default .btn-link:focus {
-  color: #cccccc;
-}
-.navbar-inverse {
-  background-color: #222222;
-  border-color: #080808;
-}
-.navbar-inverse .navbar-brand {
-  color: #9aa8b1;
-}
-.navbar-inverse .navbar-brand:hover,
-.navbar-inverse .navbar-brand:focus {
-  color: #ffffff;
-  background-color: transparent;
-}
-.navbar-inverse .navbar-text {
-  color: #9aa8b1;
-}
-.navbar-inverse .navbar-nav > li > a {
-  color: #9aa8b1;
-}
-.navbar-inverse .navbar-nav > li > a:hover,
-.navbar-inverse .navbar-nav > li > a:focus {
-  color: #ffffff;
-  background-color: transparent;
-}
-.navbar-inverse .navbar-nav > .active > a,
-.navbar-inverse .navbar-nav > .active > a:hover,
-.navbar-inverse .navbar-nav > .active > a:focus {
-  color: #ffffff;
-  background-color: #080808;
-}
-.navbar-inverse .navbar-nav > .disabled > a,
-.navbar-inverse .navbar-nav > .disabled > a:hover,
-.navbar-inverse .navbar-nav > .disabled > a:focus {
-  color: #444444;
-  background-color: transparent;
-}
-.navbar-inverse .navbar-toggle {
-  border-color: #333333;
-}
-.navbar-inverse .navbar-toggle:hover,
-.navbar-inverse .navbar-toggle:focus {
-  background-color: #333333;
-}
-.navbar-inverse .navbar-toggle .icon-bar {
-  background-color: #ffffff;
-}
-.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: #ffffff;
-}
-@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: #9aa8b1;
-  }
-  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
-  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
-    color: #ffffff;
-    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: #ffffff;
-    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: #444444;
-    background-color: transparent;
-  }
-}
-.navbar-inverse .navbar-link {
-  color: #9aa8b1;
-}
-.navbar-inverse .navbar-link:hover {
-  color: #ffffff;
-}
-.navbar-inverse .btn-link {
-  color: #9aa8b1;
-}
-.navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link:focus {
-  color: #ffffff;
-}
-.navbar-inverse .btn-link[disabled]:hover,
-fieldset[disabled] .navbar-inverse .btn-link:hover,
-.navbar-inverse .btn-link[disabled]:focus,
-fieldset[disabled] .navbar-inverse .btn-link:focus {
-  color: #444444;
-}
-.breadcrumb {
-  padding: 8px 15px;
-  margin-bottom: 21px;
-  list-style: none;
-  background-color: transparent;
-  border-bottom: 1px solid #eaeaea;
-  border-radius: 4px;
-  font-weight: 600;
-}
-.breadcrumb > li {
-  display: inline-block;
-}
-.breadcrumb > li > a:hover {
-  text-decoration: none;
-}
-.breadcrumb > li + li:before {
-  content: "\079\00a0";
-  padding: 0 5px;
-  color: #cccccc;
-  font-family: 'ss-nutanix';
-  font-size: 60%;
-  font-weight: 400;
-}
-.breadcrumb > .active {
-  color: inherit;
-}
-.pagination {
-  display: inline-block;
-  padding-left: 0;
-  margin: 21px 0;
-  border-radius: 4px;
-}
-.pagination > li {
-  display: inline;
-}
-.pagination > li > a,
-.pagination > li > span {
-  position: relative;
-  float: left;
-  padding: 6px 12px;
-  line-height: 1.57142857;
-  text-decoration: none;
-  color: #26bbf0;
-  background-color: #ffffff;
-  border: 1px solid #dddddd;
-  margin-left: -1px;
-}
-.pagination > li > a .glyphicon,
-.pagination > li > span .glyphicon {
-  font-size: 70%;
-}
-.pagination > li > a .glyphicon::before,
-.pagination > li > span .glyphicon::before {
-  vertical-align: middle;
-}
-.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: #0d8ebc;
-  background-color: #d4f1fc;
-  border-color: #26bbf0;
-  z-index: 1;
-}
-.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: #ffffff;
-  background-color: #26bbf0;
-  border-color: #26bbf0;
-  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: #9aa8b1;
-  background-color: #ffffff;
-  border-color: #dddddd;
-  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: 5px;
-  border-top-left-radius: 5px;
-}
-.pagination-lg > li:last-child > a,
-.pagination-lg > li:last-child > span {
-  border-bottom-right-radius: 5px;
-  border-top-right-radius: 5px;
-}
-.pagination-sm > li > a,
-.pagination-sm > li > span {
-  padding: 3px 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: 21px 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: #ffffff;
-  border: 1px solid #dddddd;
-  border-radius: 4px;
-}
-.pager li > a:hover,
-.pager li > a:focus {
-  text-decoration: none;
-  background-color: #d4f1fc;
-  border-color: #26bbf0;
-}
-.pager .next .glyphicon,
-.pager .previous .glyphicon {
-  font-size: 70%;
-  font-weight: 400;
-}
-.pager .next .glyphicon:before,
-.pager .previous .glyphicon:before {
-  vertical-align: middle;
-}
-.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: #9aa8b1;
-  background-color: #ffffff;
-  cursor: not-allowed;
-}
-.label {
-  display: inline;
-  padding: .2em .6em;
-  font-size: 75%;
-  font-weight: bold;
-  line-height: 1;
-  color: #ffffff;
-  text-align: center;
-  white-space: nowrap;
-  vertical-align: baseline;
-  border-radius: .25em;
-}
-a.label:hover,
-a.label:focus {
-  color: #ffffff;
-  text-decoration: none;
-  cursor: pointer;
-}
-.label:empty {
-  display: none;
-}
-.btn .label {
-  position: relative;
-  top: -1px;
-}
-.label-default {
-  background-color: #9aa8b1;
-}
-.label-default[href]:hover,
-.label-default[href]:focus {
-  background-color: #7d8f9b;
-}
-.label-primary {
-  background-color: #26bbf0;
-}
-.label-primary[href]:hover,
-.label-primary[href]:focus {
-  background-color: #0fa0d4;
-}
-.label-success {
-  background-color: #c2d5a0;
-}
-.label-success[href]:hover,
-.label-success[href]:focus {
-  background-color: #abc57d;
-}
-.label-info {
-  background-color: #89949b;
-}
-.label-info[href]:hover,
-.label-info[href]:focus {
-  background-color: #6f7b82;
-}
-.label-warning {
-  background-color: #ffd055;
-}
-.label-warning[href]:hover,
-.label-warning[href]:focus {
-  background-color: #ffc222;
-}
-.label-danger {
-  background-color: #cf6a6d;
-}
-.label-danger[href]:hover,
-.label-danger[href]:focus {
-  background-color: #c34347;
-}
-.badge {
-  display: inline-block;
-  min-width: 10px;
-  padding: 4px 7px 2px;
-  font-size: 12px;
-  font-weight: bold;
-  color: #ffffff;
-  line-height: 1;
-  vertical-align: baseline;
-  white-space: nowrap;
-  text-align: center;
-  background-color: #9aa8b1;
-  border-radius: 10px;
-}
-.badge.primary {
-  background-color: #26bbf0;
-}
-.badge.success {
-  background-color: #c2d5a0;
-}
-.badge.warning {
-  background-color: #ffd055;
-}
-.badge.danger {
-  background-color: #cf6a6d;
-}
-.badge.info {
-  background-color: #89949b;
-}
-.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: #ffffff;
-  text-decoration: none;
-  cursor: pointer;
-}
-a.list-group-item.active > .badge,
-.nav-pills > .active > a > .badge {
-  color: #26bbf0;
-  background-color: #ffffff;
-}
-.nav-pills > li > a > .badge {
-  margin-left: 3px;
-}
-.jumbotron {
-  padding: 30px;
-  margin-bottom: 30px;
-  color: inherit;
-  background-color: #c6cdd1;
-}
-.jumbotron h1,
-.jumbotron .h1 {
-  color: inherit;
-}
-.jumbotron p {
-  margin-bottom: 15px;
-  font-size: 21px;
-  font-weight: 200;
-}
-.jumbotron > hr {
-  border-top-color: #aab4ba;
-}
-.container .jumbotron {
-  border-radius: 5px;
-}
-.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: 21px;
-  line-height: 1.57142857;
-  background-color: #ffffff;
-  border: 1px solid #dddddd;
-  border-radius: 4px;
-}
-.thumbnail > img,
-.thumbnail a > img {
-  margin-left: auto;
-  margin-right: auto;
-}
-a.thumbnail:hover,
-a.thumbnail:focus,
-a.thumbnail.active {
-  border-color: #26bbf0;
-}
-.thumbnail .caption {
-  padding: 9px;
-  color: #6f787e;
-}
-.alert {
-  padding: 15px;
-  margin-bottom: 21px;
-  border: 1px solid transparent;
-  border-radius: 4px;
-}
-.alert h4 {
-  margin-top: 0;
-  color: inherit;
-}
-.alert .alert-link {
-  font-weight: bold;
-}
-.alert > p,
-.alert > ul {
-  margin-bottom: 0;
-}
-.alert > p + p {
-  margin-top: 5px;
-}
-.alert > a {
-  text-decoration: underline;
-}
-.alert > a:hover {
-  text-decoration: none;
-}
-.alert-dismissable,
-.alert-dismissible {
-  padding-right: 35px;
-}
-.alert-dismissable .close,
-.alert-dismissible .close {
-  position: relative;
-  top: -2px;
-  right: -21px;
-  color: inherit;
-}
-.alert-success {
-  background-color: #d5e3bf;
-  border-color: #d2dbad;
-  color: #6eb17b;
-}
-.alert-success hr {
-  border-top-color: #c8d39b;
-}
-.alert-success .alert-link {
-  color: #539960;
-}
-.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: #ffe49c;
-  border-color: #ffc883;
-  color: #d9a92b;
-}
-.alert-warning hr {
-  border-top-color: #ffbd69;
-}
-.alert-warning .alert-link {
-  color: #b18920;
-}
-.alert-danger {
-  background-color: #f1d3d4;
-  border-color: #ebc0c8;
-  color: #a9484b;
-}
-.alert-danger hr {
-  border-top-color: #e5acb8;
-}
-.alert-danger .alert-link {
-  color: #85393b;
-}
-@-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: 23.1px;
-  margin-bottom: 21px;
-  background-color: #f5f5f5;
-  border-radius: 4px;
-  -webkit-box-shadow: inset 0 0px 0px 1px rgba(0, 0, 0, 0.1);
-  box-shadow: inset 0 0px 0px 1px rgba(0, 0, 0, 0.1);
-}
-.progress-bar {
-  float: left;
-  width: 0%;
-  height: 100%;
-  font-size: 12px;
-  line-height: 23.1px;
-  color: #ffffff;
-  text-align: center;
-  background-color: #26bbf0;
-  -webkit-box-shadow: inset 0 1px 0px 0px rgba(0, 0, 0, 0.2), inset -1px -1px 0px 0px rgba(0, 0, 0, 0.2);
-  box-shadow: inset 0 1px 0px 0px rgba(0, 0, 0, 0.2), inset -1px -1px 0px 0px rgba(0, 0, 0, 0.2);
-  -webkit-transition: width 0.6s ease;
-  -o-transition: width 0.6s ease;
-  transition: width 0.6s ease;
-}
-.progress-bar:first-child {
-  border-radius: 4px 0 0 4px;
-  -webkit-box-shadow: inset 0 0px 0px 1px rgba(0, 0, 0, 0.2);
-  box-shadow: inset 0 0px 0px 1px rgba(0, 0, 0, 0.2);
-}
-.progress-striped .progress-bar,
-.progress-bar-striped {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-size: 40px 40px;
-}
-.progress.active .progress-bar,
-.progress-bar.active {
-  -webkit-animation: progress-bar-stripes 2s linear infinite;
-  -o-animation: progress-bar-stripes 2s linear infinite;
-  animation: progress-bar-stripes 2s linear infinite;
-}
-.progress-bar[aria-valuenow="1"],
-.progress-bar[aria-valuenow="2"] {
-  min-width: 30px;
-}
-.progress-bar[aria-valuenow="0"] {
-  color: #9aa8b1;
-  min-width: 30px;
-  background-color: transparent;
-  background-image: none;
-  box-shadow: none;
-}
-.progress-bar-success {
-  background-color: #c2d5a0;
-}
-.progress-striped .progress-bar-success {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-bar-info {
-  background-color: #89949b;
-}
-.progress-striped .progress-bar-info {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-bar-warning {
-  background-color: #ffd055;
-}
-.progress-striped .progress-bar-warning {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-}
-.progress-bar-danger {
-  background-color: #cf6a6d;
-}
-.progress-striped .progress-bar-danger {
-  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.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: #ffffff;
-  border: 1px solid #dddddd;
-}
-.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: #555555;
-}
-a.list-group-item .list-group-item-heading {
-  color: #333333;
-}
-a.list-group-item:hover,
-a.list-group-item:focus {
-  text-decoration: none;
-  color: #555555;
-  background-color: #f5f5f5;
-}
-.list-group-item.disabled,
-.list-group-item.disabled:hover,
-.list-group-item.disabled:focus {
-  background-color: #c6cdd1;
-  color: #9aa8b1;
-}
-.list-group-item.disabled .list-group-item-heading,
-.list-group-item.disabled:hover .list-group-item-heading,
-.list-group-item.disabled:focus .list-group-item-heading {
-  color: inherit;
-}
-.list-group-item.disabled .list-group-item-text,
-.list-group-item.disabled:hover .list-group-item-text,
-.list-group-item.disabled:focus .list-group-item-text {
-  color: #9aa8b1;
-}
-.list-group-item.active,
-.list-group-item.active:hover,
-.list-group-item.active:focus {
-  z-index: 2;
-  color: #ffffff;
-  background-color: #26bbf0;
-  border-color: #26bbf0;
-}
-.list-group-item.active .list-group-item-heading,
-.list-group-item.active:hover .list-group-item-heading,
-.list-group-item.active:focus .list-group-item-heading,
-.list-group-item.active .list-group-item-heading > small,
-.list-group-item.active:hover .list-group-item-heading > small,
-.list-group-item.active:focus .list-group-item-heading > small,
-.list-group-item.active .list-group-item-heading > .small,
-.list-group-item.active:hover .list-group-item-heading > .small,
-.list-group-item.active:focus .list-group-item-heading > .small {
-  color: inherit;
-}
-.list-group-item.active .list-group-item-text,
-.list-group-item.active:hover .list-group-item-text,
-.list-group-item.active:focus .list-group-item-text {
-  color: #e5f7fd;
-}
-.list-group-item-success {
-  color: #6eb17b;
-  background-color: #d5e3bf;
-}
-a.list-group-item-success {
-  color: #6eb17b;
-}
-a.list-group-item-success .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-success:hover,
-a.list-group-item-success:focus {
-  color: #6eb17b;
-  background-color: #cadbad;
-}
-a.list-group-item-success.active,
-a.list-group-item-success.active:hover,
-a.list-group-item-success.active:focus {
-  color: #fff;
-  background-color: #6eb17b;
-  border-color: #6eb17b;
-}
-.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: #d9a92b;
-  background-color: #ffe49c;
-}
-a.list-group-item-warning {
-  color: #d9a92b;
-}
-a.list-group-item-warning .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-warning:hover,
-a.list-group-item-warning:focus {
-  color: #d9a92b;
-  background-color: #ffdd83;
-}
-a.list-group-item-warning.active,
-a.list-group-item-warning.active:hover,
-a.list-group-item-warning.active:focus {
-  color: #fff;
-  background-color: #d9a92b;
-  border-color: #d9a92b;
-}
-.list-group-item-danger {
-  color: #a9484b;
-  background-color: #f1d3d4;
-}
-a.list-group-item-danger {
-  color: #a9484b;
-}
-a.list-group-item-danger .list-group-item-heading {
-  color: inherit;
-}
-a.list-group-item-danger:hover,
-a.list-group-item-danger:focus {
-  color: #a9484b;
-  background-color: #ebc0c1;
-}
-a.list-group-item-danger.active,
-a.list-group-item-danger.active:hover,
-a.list-group-item-danger.active:focus {
-  color: #fff;
-  background-color: #a9484b;
-  border-color: #a9484b;
-}
-.list-group-item-heading {
-  margin-top: 0;
-  margin-bottom: 5px;
-}
-.list-group-item-text {
-  margin-bottom: 0;
-  line-height: 1.3;
-}
-.panel {
-  margin-bottom: 21px;
-  background-color: #ffffff;
-  border: 1px solid transparent;
-  border-radius: 4px;
-  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
-  box-shadow: 0 1px 1px rgba(0, 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 #dddddd;
-  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;
-}
-.list-group + .panel-footer {
-  border-top-width: 0;
-}
-.panel > .table,
-.panel > .table-responsive > .table,
-.panel > .panel-collapse > .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 #dddddd;
-}
-.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: 21px;
-}
-.panel-group .panel {
-  margin-bottom: 0;
-  border-radius: 4px;
-}
-.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 #dddddd;
-}
-.panel-group .panel-footer {
-  border-top: 0;
-}
-.panel-group .panel-footer + .panel-collapse .panel-body {
-  border-bottom: 1px solid #dddddd;
-}
-.panel-default {
-  border-color: #dddddd;
-}
-.panel-default > .panel-heading {
-  color: #343536;
-  background-color: #f5f5f5;
-  border-color: #dddddd;
-}
-.panel-default > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #dddddd;
-}
-.panel-default > .panel-heading .badge {
-  color: #f5f5f5;
-  background-color: #343536;
-}
-.panel-default > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #dddddd;
-}
-.panel-primary {
-  border-color: #26bbf0;
-}
-.panel-primary > .panel-heading {
-  color: #ffffff;
-  background-color: #26bbf0;
-  border-color: #26bbf0;
-}
-.panel-primary > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #26bbf0;
-}
-.panel-primary > .panel-heading .badge {
-  color: #26bbf0;
-  background-color: #ffffff;
-}
-.panel-primary > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #26bbf0;
-}
-.panel-success {
-  border-color: #d2dbad;
-}
-.panel-success > .panel-heading {
-  color: #6eb17b;
-  background-color: #d5e3bf;
-  border-color: #d2dbad;
-}
-.panel-success > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #d2dbad;
-}
-.panel-success > .panel-heading .badge {
-  color: #d5e3bf;
-  background-color: #6eb17b;
-}
-.panel-success > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #d2dbad;
-}
-.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-heading .badge {
-  color: #d9edf7;
-  background-color: #31708f;
-}
-.panel-info > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #bce8f1;
-}
-.panel-warning {
-  border-color: #ffc883;
-}
-.panel-warning > .panel-heading {
-  color: #d9a92b;
-  background-color: #ffe49c;
-  border-color: #ffc883;
-}
-.panel-warning > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #ffc883;
-}
-.panel-warning > .panel-heading .badge {
-  color: #ffe49c;
-  background-color: #d9a92b;
-}
-.panel-warning > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #ffc883;
-}
-.panel-danger {
-  border-color: #ebc0c8;
-}
-.panel-danger > .panel-heading {
-  color: #a9484b;
-  background-color: #f1d3d4;
-  border-color: #ebc0c8;
-}
-.panel-danger > .panel-heading + .panel-collapse > .panel-body {
-  border-top-color: #ebc0c8;
-}
-.panel-danger > .panel-heading .badge {
-  color: #f1d3d4;
-  background-color: #a9484b;
-}
-.panel-danger > .panel-footer + .panel-collapse > .panel-body {
-  border-bottom-color: #ebc0c8;
-}
-.embed-responsive {
-  position: relative;
-  display: block;
-  height: 0;
-  padding: 0;
-  overflow: hidden;
-}
-.embed-responsive .embed-responsive-item,
-.embed-responsive iframe,
-.embed-responsive embed,
-.embed-responsive object {
-  position: absolute;
-  top: 0;
-  left: 0;
-  bottom: 0;
-  height: 100%;
-  width: 100%;
-  border: 0;
-}
-.embed-responsive.embed-responsive-16by9 {
-  padding-bottom: 56.25%;
-}
-.embed-responsive.embed-responsive-4by3 {
-  padding-bottom: 75%;
-}
-.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, 0.05);
-  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-}
-.well blockquote {
-  border-color: #ddd;
-  border-color: rgba(0, 0, 0, 0.15);
-}
-.well-lg {
-  padding: 24px;
-  border-radius: 5px;
-}
-.well-sm {
-  padding: 9px;
-  border-radius: 3px;
-}
-.close {
-  float: right;
-  font-size: 11.2px;
-  font-weight: bold;
-  line-height: 1;
-  color: #000000;
-}
-.close:hover,
-.close:focus {
-  color: #000000;
-  text-decoration: none;
-  cursor: pointer;
-}
-button.close {
-  padding: 0;
-  cursor: pointer;
-  background: transparent;
-  border: 0;
-  -webkit-appearance: none;
-}
-.modal-open {
-  overflow: hidden;
-}
-.modal {
-  display: none;
-  overflow: hidden;
-  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: translate3d(0, -25%, 0);
-  transform: translate3d(0, -25%, 0);
-  -webkit-transition: -webkit-transform 0.3s ease-out;
-  -moz-transition: -moz-transform 0.3s ease-out;
-  -o-transition: -o-transform 0.3s ease-out;
-  transition: transform 0.3s ease-out;
-}
-.modal.in .modal-dialog {
-  -webkit-transform: translate3d(0, 0, 0);
-  transform: translate3d(0, 0, 0);
-}
-.modal-open .modal {
-  overflow-x: hidden;
-  overflow-y: auto;
-}
-.modal-dialog {
-  position: relative;
-  width: auto;
-  margin: 10px;
-  border-radius: 4px;
-}
-.modal-content {
-  position: relative;
-  background-color: #ffffff;
-  border: 1px solid #999999;
-  border: 1px solid rgba(0, 0, 0, 0.2);
-  border-radius: 5px;
-  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
-  box-shadow: 0 3px 9px rgba(0, 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: #000000;
-}
-.modal-backdrop.fade {
-  opacity: 0;
-  filter: alpha(opacity=0);
-}
-.modal-backdrop.in {
-  opacity: 0.5;
-  filter: alpha(opacity=50);
-}
-.modal-header {
-  padding: 15px;
-  border-bottom: 1px solid #e5e5e5;
-  min-height: 16.57142857px;
-  background-color: #343536;
-  border-radius: 4px 4px 0 0;
-}
-.modal-header .close {
-  margin-top: 2px;
-  color: #9aa8b1;
-}
-.modal-title {
-  margin: 0;
-  line-height: 1.57142857;
-  color: #9aa8b1;
-}
-.modal-body {
-  position: relative;
-  padding: 15px;
-}
-.modal-footer {
-  padding: 14px 15px;
-  text-align: right;
-  border-top: 1px solid #e5e5e5;
-  background-color: #F9F9F9;
-  border-radius: 0 0 4px 4px;
-}
-.modal-footer .btn + .btn {
-  margin-left: 10px;
-  margin-bottom: 0;
-}
-.modal-footer .btn-group .btn + .btn {
-  margin-left: -1px;
-}
-.modal-footer .btn-block + .btn-block {
-  margin-left: 0;
-}
-.modal-scrollbar-measure {
-  position: absolute;
-  top: -9999px;
-  width: 50px;
-  height: 50px;
-  overflow: scroll;
-}
-@media (min-width: 768px) {
-  .modal-dialog {
-    width: 600px;
-    margin: 30px auto;
-  }
-  .modal-content {
-    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
-  }
-  .modal-sm {
-    width: 300px;
-  }
-}
-@media (min-width: 992px) {
-  .modal-lg {
-    width: 900px;
-  }
-}
-.tooltip {
-  position: absolute;
-  z-index: 1070;
-  display: block;
-  visibility: visible;
-  font-size: 12px;
-  line-height: 1.4;
-  opacity: 0;
-  filter: alpha(opacity=0);
-}
-.tooltip.in {
-  opacity: 0.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: #ffffff;
-  text-align: center;
-  text-decoration: none;
-  background-color: #000000;
-  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: #000000;
-}
-.tooltip.top-left .tooltip-arrow {
-  bottom: 0;
-  left: 5px;
-  border-width: 5px 5px 0;
-  border-top-color: #000000;
-}
-.tooltip.top-right .tooltip-arrow {
-  bottom: 0;
-  right: 5px;
-  border-width: 5px 5px 0;
-  border-top-color: #000000;
-}
-.tooltip.right .tooltip-arrow {
-  top: 50%;
-  left: 0;
-  margin-top: -5px;
-  border-width: 5px 5px 5px 0;
-  border-right-color: #000000;
-}
-.tooltip.left .tooltip-arrow {
-  top: 50%;
-  right: 0;
-  margin-top: -5px;
-  border-width: 5px 0 5px 5px;
-  border-left-color: #000000;
-}
-.tooltip.bottom .tooltip-arrow {
-  top: 0;
-  left: 50%;
-  margin-left: -5px;
-  border-width: 0 5px 5px;
-  border-bottom-color: #000000;
-}
-.tooltip.bottom-left .tooltip-arrow {
-  top: 0;
-  left: 5px;
-  border-width: 0 5px 5px;
-  border-bottom-color: #000000;
-}
-.tooltip.bottom-right .tooltip-arrow {
-  top: 0;
-  right: 5px;
-  border-width: 0 5px 5px;
-  border-bottom-color: #000000;
-}
-.popover {
-  position: absolute;
-  top: 0;
-  left: 0;
-  z-index: 1060;
-  display: none;
-  max-width: 276px;
-  padding: 1px;
-  text-align: left;
-  background-color: #ffffff;
-  background-clip: padding-box;
-  border: 1px solid #cccccc;
-  border: 1px solid rgba(0, 0, 0, 0.2);
-  border-radius: 5px;
-  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
-  box-shadow: 0 5px 10px rgba(0, 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: normal;
-  line-height: 18px;
-  background-color: #f7f7f7;
-  border-bottom: 1px solid #ebebeb;
-  border-radius: 4px 4px 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: #999999;
-  border-top-color: rgba(0, 0, 0, 0.25);
-  bottom: -11px;
-}
-.popover.top > .arrow:after {
-  content: " ";
-  bottom: 1px;
-  margin-left: -10px;
-  border-bottom-width: 0;
-  border-top-color: #ffffff;
-}
-.popover.right > .arrow {
-  top: 50%;
-  left: -11px;
-  margin-top: -11px;
-  border-left-width: 0;
-  border-right-color: #999999;
-  border-right-color: rgba(0, 0, 0, 0.25);
-}
-.popover.right > .arrow:after {
-  content: " ";
-  left: 1px;
-  bottom: -10px;
-  border-left-width: 0;
-  border-right-color: #ffffff;
-}
-.popover.bottom > .arrow {
-  left: 50%;
-  margin-left: -11px;
-  border-top-width: 0;
-  border-bottom-color: #999999;
-  border-bottom-color: rgba(0, 0, 0, 0.25);
-  top: -11px;
-}
-.popover.bottom > .arrow:after {
-  content: " ";
-  top: 1px;
-  margin-left: -10px;
-  border-top-width: 0;
-  border-bottom-color: #ffffff;
-}
-.popover.left > .arrow {
-  top: 50%;
-  right: -11px;
-  margin-top: -11px;
-  border-right-width: 0;
-  border-left-color: #999999;
-  border-left-color: rgba(0, 0, 0, 0.25);
-}
-.popover.left > .arrow:after {
-  content: " ";
-  right: 1px;
-  border-right-width: 0;
-  border-left-color: #ffffff;
-  bottom: -10px;
-}
-.carousel {
-  position: relative;
-}
-.carousel-inner {
-  position: relative;
-  overflow: hidden;
-  width: 100%;
-}
-.carousel-inner > .item {
-  display: none;
-  position: relative;
-  -webkit-transition: 0.6s ease-in-out left;
-  -o-transition: 0.6s ease-in-out left;
-  transition: 0.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: 8%;
-  opacity: 0.5;
-  filter: alpha(opacity=50);
-  font-size: 14px;
-  color: #ffffff;
-  text-align: center;
-  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
-}
-.carousel-control.right {
-  left: auto;
-  right: 0;
-}
-.carousel-control:hover,
-.carousel-control:focus {
-  outline: 0;
-  color: #ffffff;
-  text-decoration: none;
-  opacity: 0.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%;
-  margin-left: -10px;
-}
-.carousel-control .icon-next,
-.carousel-control .glyphicon-chevron-right {
-  right: 50%;
-  margin-right: -10px;
-}
-.carousel-control .icon-prev,
-.carousel-control .icon-next {
-  width: 20px;
-  height: 20px;
-  margin-top: -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 #ffffff;
-  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: #ffffff;
-}
-.carousel-caption {
-  position: absolute;
-  left: 15%;
-  right: 15%;
-  bottom: 20px;
-  z-index: 10;
-  padding-top: 20px;
-  padding-bottom: 20px;
-  color: #ffffff;
-  text-align: center;
-  text-shadow: 0 1px 2px rgba(0, 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;
-    font-size: 14px;
-  }
-  .carousel-control .glyphicon-chevron-left,
-  .carousel-control .icon-prev {
-    margin-left: -15px;
-  }
-  .carousel-control .glyphicon-chevron-right,
-  .carousel-control .icon-next {
-    margin-right: -15px;
-  }
-  .carousel-caption {
-    left: 20%;
-    right: 20%;
-    padding-bottom: 30px;
-  }
-}
-.clearfix:before,
-.clearfix:after,
-.dl-horizontal dd:before,
-.dl-horizontal dd: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,
-.dl-horizontal dd: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;
-  -webkit-transform: translate3d(0, 0, 0);
-  transform: translate3d(0, 0, 0);
-}
-@-ms-viewport {
-  width: device-width;
-}
-.visible-xs,
-.visible-sm,
-.visible-md,
-.visible-lg {
-  display: none !important;
-}
-.visible-xs-block,
-.visible-xs-inline,
-.visible-xs-inline-block,
-.visible-sm-block,
-.visible-sm-inline,
-.visible-sm-inline-block,
-.visible-md-block,
-.visible-md-inline,
-.visible-md-inline-block,
-.visible-lg-block,
-.visible-lg-inline,
-.visible-lg-inline-block {
-  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 (max-width: 767px) {
-  .visible-xs-block {
-    display: block !important;
-  }
-}
-@media (max-width: 767px) {
-  .visible-xs-inline {
-    display: inline !important;
-  }
-}
-@media (max-width: 767px) {
-  .visible-xs-inline-block {
-    display: inline-block !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: 768px) and (max-width: 991px) {
-  .visible-sm-block {
-    display: block !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .visible-sm-inline {
-    display: inline !important;
-  }
-}
-@media (min-width: 768px) and (max-width: 991px) {
-  .visible-sm-inline-block {
-    display: inline-block !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: 992px) and (max-width: 1199px) {
-  .visible-md-block {
-    display: block !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .visible-md-inline {
-    display: inline !important;
-  }
-}
-@media (min-width: 992px) and (max-width: 1199px) {
-  .visible-md-inline-block {
-    display: inline-block !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 (min-width: 1200px) {
-  .visible-lg-block {
-    display: block !important;
-  }
-}
-@media (min-width: 1200px) {
-  .visible-lg-inline {
-    display: inline !important;
-  }
-}
-@media (min-width: 1200px) {
-  .visible-lg-inline-block {
-    display: inline-block !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;
-  }
-}
-.visible-print-block {
-  display: none !important;
-}
-@media print {
-  .visible-print-block {
-    display: block !important;
-  }
-}
-.visible-print-inline {
-  display: none !important;
-}
-@media print {
-  .visible-print-inline {
-    display: inline !important;
-  }
-}
-.visible-print-inline-block {
-  display: none !important;
-}
-@media print {
-  .visible-print-inline-block {
-    display: inline-block !important;
-  }
-}
-@media print {
-  .hidden-print {
-    display: none !important;
-  }
-}
-/*# sourceMappingURL=bootstrap.css.map */
\ No newline at end of file
diff --git a/experimental/hello-prism/app/public/css/bootstrap.css.map b/experimental/hello-prism/app/public/css/bootstrap.css.map
deleted file mode 100755
index 74eea61..0000000
--- a/experimental/hello-prism/app/public/css/bootstrap.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["bootstrap.css"],"names":[],"mappings":"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3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,iBAAgB;EACjB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,gCAA+B;EAC/B,6BAA4B;EAC5B,wBAAuB;EACxB;AACD;;EAEE,gCAA+B;EAC/B,6BAA4B;EAC5B,wBAAuB;EACxB;AACD;EACE,iBAAgB;EAChB,+CAA8C;EAC/C;AACD;EACE,8DAA6D;EAC7D,iBAAgB;EAChB,yBAAwB;EACxB,gBAAe;EACf,2BAA0B;EAC1B,kBAAiB;EACjB,oCAAmC;EACnC,qCAAoC;EACpC,kCAAiC;EACjC,gCAA+B;EAC/B,6BAA4B;EAC7B;AACD;;;;EAIE,sBAAqB;EACrB,oBAAmB;EACnB,sBAAqB;EACrB,oCAAmC;EACnC,qCAAoC;EACpC,kCAAiC;EACjC,gCAA+B;EAC/B,6BAA4B;EAC7B;AACD;EACE,gBAAe;EACf,uBAAsB;EACvB;AACD;;EAEE,gBAAe;EACf,4BAA2B;EAC5B;AACD;EACE,sBAAqB;EACrB,4CAA2C;EAC3C,sBAAqB;EACtB;AACD;EACE,WAAU;EACX;AACD;EACE,wBAAuB;EACxB;AACD;;;;;EAKE,gBAAe;EACf,gBAAe;EACf,iBAAgB;EAChB,cAAa;EACd;AACD;EACE,oBAAmB;EACpB;AACD;EACE,cAAa;EACb,yBAAwB;EACxB,2BAA0B;EAC1B,2BAA0B;EAC1B,oBAAmB;EACnB,0CAAyC;EACzC,qCAAoC;EACpC,kCAAiC;EACjC,uBAAsB;EACtB,gBAAe;EACf,iBAAgB;EAChB,cAAa;EACd;AACD;EACE,oBAAmB;EACpB;AACD;EACE,kBAAiB;EACjB,qBAAoB;EACpB,WAAU;EACV,+BAA8B;EAC/B;AACD;EACE,oBAAmB;EACnB,YAAW;EACX,aAAY;EACZ,cAAa;EACb,YAAW;EACX,kBAAiB;EACjB,wBAAuB;EACvB,WAAU;EACX;AACD;;EAEE,kBAAiB;EACjB,aAAY;EACZ,cAAa;EACb,WAAU;EACV,mBAAkB;EAClB,YAAW;EACZ;AACD;;;;;;;;;;;;EAYE,sBAAqB;EACrB,kBAAiB;EACjB,kBAAiB;EACjB,gBAAe;EAChB;AACD;;;;;;;;;;;;;;;;;;;;;;;;EAwBE,qBAAoB;EACpB,gBAAe;EACf,gBAAe;EAChB;AACD;;;;;;EAME,kBAAiB;EACjB,qBAAoB;EACrB;AACD;;;;;;;;;;;;EAYE,gBAAe;EAChB;AACD;;;;;;EAME,kBAAiB;EACjB,uBAAsB;EACtB,kBAAiB;EAClB;AACD;;;;;;;;;;;;EAYE,gBAAe;EAChB;AACD;;EAEE,iBAAgB;EAChB,2BAA0B;EAC3B;AACD;;EAEE,iBAAgB;EAChB,kBAAiB;EAClB;AACD;;EAEE,iBAAgB;EAChB,kBAAiB;EAClB;AACD;;EAEE,iBAAgB;EAChB,kBAAiB;EAClB;AACD;;EAEE,iBAAgB;EAChB,kBAAiB;EACjB,2BAA0B;EAC1B,gBAAe;EAChB;AACD;;EAEE,iBAAgB;EAChB,kBAAiB;EACjB,gBAAe;EAChB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,qBAAoB;EACpB,iBAAgB;EAChB,kBAAiB;EACjB,kBAAiB;EACjB,gBAAe;EAChB;AACD;EACE;IACE,iBAAgB;IACjB;EACF;AACD;;EAEE,gBAAe;EAChB;AACD;EACE,oBAAmB;EACpB;AACD;;EAEE,2BAA0B;EAC1B,oBAAmB;EACnB,oBAAmB;EACpB;AACD;EACE,kBAAiB;EAClB;AACD;EACE,mBAAkB;EACnB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,4BAA2B;EAC5B;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;EACE,aAAY;EACZ,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,uBAAsB;EACtB,qBAAoB;EACpB,kCAAiC;EACjC,oBAAmB;EACnB,uBAAsB;EACvB;AACD;;EAEE,eAAc;EACd,uBAAsB;EACvB;AACD;;;;EAIE,kBAAiB;EAClB;AACD;EACE,iBAAgB;EAChB,kBAAiB;EAClB;AACD;EACE,iBAAgB;EAChB,kBAAiB;EACjB,mBAAkB;EACnB;AACD;EACE,uBAAsB;EACtB,mBAAkB;EAClB,oBAAmB;EACpB;AACD;EACE,eAAc;EACd,qBAAoB;EACrB;AACD;;EAEE,yBAAwB;EACzB;AACD;EACE,mBAAkB;EACnB;AACD;EACE,gBAAe;EAChB;AACD;EACE;IACE,aAAY;IACZ,cAAa;IACb,aAAY;IACZ,mBAAkB;IAClB,kBAAiB;IACjB,yBAAwB;IACxB,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACF;AACD;;EAEE,cAAa;EACb,mCAAkC;EACnC;AACD;EACE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,sBAAqB;EACrB,kBAAiB;EACjB,mBAAkB;EAClB,gCAA+B;EAChC;AACD;;;EAGE,kBAAiB;EAClB;AACD;;;EAGE,gBAAe;EACf,gBAAe;EACf,yBAAwB;EACxB,gBAAe;EAChB;AACD;;;EAGE,wBAAuB;EACxB;AACD;;EAEE,qBAAoB;EACpB,iBAAgB;EAChB,iCAAgC;EAChC,gBAAe;EACf,mBAAkB;EACnB;AACD;;;;;;EAME,aAAY;EACb;AACD;;;;;;EAME,wBAAuB;EACxB;AACD;;EAEE,aAAY;EACb;AACD;EACE,qBAAoB;EACpB,oBAAmB;EACnB,yBAAwB;EACzB;AACD;;;;EAIE,gEAA+D;EAChE;AACD;EACE,kBAAiB;EACjB,gBAAe;EACf,gBAAe;EACf,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,kBAAiB;EACjB,gBAAe;EACf,gBAAe;EACf,2BAA0B;EAC1B,oBAAmB;EACnB,wDAA+C;EAA/C,gDAA+C;EAChD;AACD;EACE,YAAW;EACX,iBAAgB;EAChB,0BAAiB;EAAjB,kBAAiB;EAClB;AACD;EACE,gBAAe;EACf,eAAc;EACd,oBAAmB;EACnB,iBAAgB;EAChB,yBAAwB;EACxB,uBAAsB;EACtB,uBAAsB;EACtB,gBAAe;EACf,2BAA0B;EAC1B,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,YAAW;EACX,oBAAmB;EACnB,gBAAe;EACf,uBAAsB;EACtB,+BAA8B;EAC9B,kBAAiB;EAClB;AACD;EACE,mBAAkB;EAClB,oBAAmB;EACpB;AACD;EACE,oBAAmB;EACnB,mBAAkB;EAClB,oBAAmB;EACnB,qBAAoB;EACrB;AACD;EACE;IACE,cAAa;IACd;EACF;AACD;EACE;IACE,cAAa;IACd;EACF;AACD;EACE;IACE,eAAc;IACf;EACF;AACD;EACE,oBAAmB;EACnB,mBAAkB;EAClB,oBAAmB;EACnB,qBAAoB;EACrB;AACD;EACE,oBAAmB;EACnB,qBAAoB;EACrB;AACD;EACE,oBAAmB;EACnB,iBAAgB;EAChB,oBAAmB;EACnB,qBAAoB;EACrB;AACD;EACE,aAAY;EACb;AACD;EACE,aAAY;EACb;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,YAAW;EACZ;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,YAAW;EACZ;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,YAAW;EACZ;AACD;EACE,qBAAoB;EACrB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,aAAY;EACb;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,YAAW;EACZ;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,YAAW;EACZ;AACD;EACE,qBAAoB;EACrB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,YAAW;EACZ;AACD;EACE,qBAAoB;EACrB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,aAAY;EACb;AACD;EACE,YAAW;EACZ;AACD;EACE,oBAAmB;EACpB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,WAAU;EACX;AACD;EACE,oBAAmB;EACpB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,WAAU;EACX;AACD;EACE,oBAAmB;EACpB;AACD;EACE,oBAAmB;EACpB;AACD;EACE,WAAU;EACX;AACD;EACE,oBAAmB;EACpB;AACD;EACE,mBAAkB;EACnB;AACD;EACE,YAAW;EACZ;AACD;EACE,mBAAkB;EACnB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,0BAAyB;EAC1B;AACD;EACE,iBAAgB;EACjB;AACD;EACE;IACE,aAAY;IACb;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,aAAY;IACb;EACD;IACE,YAAW;IACZ;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,mBAAkB;IACnB;EACD;IACE,YAAW;IACZ;EACD;IACE,mBAAkB;IACnB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,0BAAyB;IAC1B;EACD;IACE,iBAAgB;IACjB;EACF;AACD;EACE;IACE,aAAY;IACb;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,aAAY;IACb;EACD;IACE,YAAW;IACZ;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,mBAAkB;IACnB;EACD;IACE,YAAW;IACZ;EACD;IACE,mBAAkB;IACnB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,0BAAyB;IAC1B;EACD;IACE,iBAAgB;IACjB;EACF;AACD;EACE;IACE,aAAY;IACb;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,qBAAoB;IACrB;EACD;IACE,YAAW;IACZ;EACD;IACE,qBAAoB;IACrB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,aAAY;IACb;EACD;IACE,YAAW;IACZ;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,oBAAmB;IACpB;EACD;IACE,WAAU;IACX;EACD;IACE,oBAAmB;IACpB;EACD;IACE,mBAAkB;IACnB;EACD;IACE,YAAW;IACZ;EACD;IACE,mBAAkB;IACnB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC3B;EACD;IACE,0BAAyB;IAC1B;EACD;IACE,iBAAgB;IACjB;EACF;AACD;EACE,+BAA8B;EAC/B;AACD;EACE,kBAAiB;EAClB;AACD;EACE,aAAY;EACZ,iBAAgB;EAChB,qBAAoB;EACrB;AACD;;;;;;EAME,cAAa;EACb,yBAAwB;EACxB,qBAAoB;EACpB,+BAA8B;EAC/B;AACD;;;;;;;;EAQE,gBAAe;EACf,2BAA0B;EAC1B,kBAAiB;EAClB;AACD;EACE,wBAAuB;EACvB,kCAAiC;EAClC;AACD;;;;;;EAME,eAAc;EACf;AACD;EACE,+BAA8B;EAC/B;AACD;EACE,2BAA0B;EAC3B;AACD;;;;;;EAME,cAAa;EACd;AACD;EACE,2BAA0B;EAC1B,oBAAmB;EACnB,2BAA0B;EAC3B;AACD;;;;;;EAME,2BAA0B;EAC1B,mBAAkB;EAClB,kBAAiB;EAClB;AACD;;;;;;EAME,mBAAkB;EACnB;AACD;;;;;;EAME,oBAAmB;EAC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EAIE,qBAAoB;EACrB;AACD;EACE,kBAAiB;EACjB,qBAAoB;EACpB,kBAAiB;EAClB;AACD;;EAEE,iBAAgB;EAChB,kBAAiB;EAClB;AACD;;EAEE,cAAa;EACb,mBAAkB;EAClB,iBAAgB;EAChB,kBAAiB;EACjB,oBAAmB;EACpB;AACD;EACE,cAAa;EACb,mBAAkB;EACnB;AACD;;EAEE,cAAa;EACd;AACD;;EAEE,cAAa;EACb,oBAAmB;EACnB,iBAAgB;EAChB,kBAAiB;EACjB,oBAAmB;EACpB;AACD;EACE,cAAa;EACb,mBAAkB;EACnB;AACD;;EAEE,cAAa;EACd;AACD;EACE,oBAAmB;EACpB;AACD;EACE,wBAAuB;EACxB;AACD;EACE,oBAAmB;EACnB,WAAU;EACV,UAAS;EACT,YAAW;EACX,gBAAe;EACf,aAAY;EACZ,cAAa;EACb,mBAAkB;EAClB,oBAAmB;EACpB;AACD;EACE,aAAY;EACZ,cAAa;EACb,mBAAkB;EACnB;AACD;EACE,aAAY;EACZ,cAAa;EACb,mBAAkB;EACnB;AACD;;;;;;EAME,gBAAe;EAChB;AACD;EACE,uBAAsB;EACtB,2BAA0B;EAC3B;AACD;EACE,uBAAsB;EACtB,YAAW;EACX,0BAAyB;EACzB,kBAAiB;EACjB,yDAAgD;EAAhD,iDAAgD;EACjD;AACD;EACE,gBAAe;EACf,uBAAsB;EACtB,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;;;;;;EAME,gBAAe;EAChB;AACD;EACE,uBAAsB;EACtB,2BAA0B;EAC3B;AACD;EACE,uBAAsB;EACtB,YAAW;EACX,0BAAyB;EACzB,kBAAiB;EACjB,wDAA+C;EAA/C,gDAA+C;EAChD;AACD;EACE,gBAAe;EACf,uBAAsB;EACtB,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;;;;;;EAME,gBAAe;EAChB;AACD;EACE,uBAAsB;EACtB,2BAA0B;EAC3B;AACD;EACE,uBAAsB;EACtB,YAAW;EACX,0BAAyB;EACzB,kBAAiB;EACjB,yDAAgD;EAAhD,iDAAgD;EACjD;AACD;EACE,gBAAe;EACf,uBAAsB;EACtB,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;EACE,QAAO;EACR;AACD;EACE,gBAAe;EACf,iBAAgB;EAChB,qBAAoB;EACpB,gBAAe;EAChB;AACD;EACE;IACE,uBAAsB;IACtB,kBAAiB;IACjB,wBAAuB;IACxB;EACD;IACE,uBAAsB;IACtB,aAAY;IACZ,wBAAuB;IACvB,cAAa;IACd;EACD;IACE,cAAa;IACb,mBAAkB;IACnB;EACD;IACE,uBAAsB;IACtB,wBAAuB;IACxB;EACD;;;IAGE,aAAY;IACb;EACD;IACE,aAAY;IACb;EACD;IACE,kBAAiB;IACjB,wBAAuB;IACxB;EACD;;IAEE,uBAAsB;IACtB,eAAc;IACd,kBAAiB;IACjB,wBAAuB;IACxB;EACD;;IAEE,iBAAgB;IACjB;EACD;;IAEE,oBAAmB;IACnB,gBAAe;IAChB;EACD;IACE,QAAO;IACR;EACF;AACD;;;;EAIE,eAAc;EACd,kBAAiB;EACjB,kBAAiB;EAClB;AACD;;EAEE,kBAAiB;EAClB;AACD;EACE,oBAAmB;EACnB,qBAAoB;EACrB;AACD;EACE;IACE,mBAAkB;IAClB,kBAAiB;IACjB,kBAAiB;IAClB;EACF;AACD;EACE,QAAO;EACP,aAAY;EACb;AACD;EACE;IACE,mBAAkB;IACnB;EACF;AACD;EACE;IACE,kBAAiB;IAClB;EACF;AACD;EACE,uBAAsB;EACtB,kBAAiB;EACjB,kBAAiB;EACjB,oBAAmB;EACnB,wBAAuB;EACvB,iBAAgB;EAChB,wBAAuB;EACvB,+BAA8B;EAC9B,qBAAoB;EACpB,uBAAsB;EACtB,mBAAkB;EAClB,iBAAgB;EAChB,kBAAiB;EACjB,oBAAmB;EACnB,2BAA0B;EAC1B,wBAAuB;EACvB,uBAAsB;EACtB,mBAAkB;EACnB;AACD;EACE,iBAAgB;EACjB;AACD;;EAEE,oBAAmB;EACpB;AACD;;;EAGE,sBAAqB;EACrB,4CAA2C;EAC3C,sBAAqB;EACtB;AACD;;EAEE,gBAAe;EACf,uBAAsB;EACvB;AACD;;EAEE,YAAW;EACX,wBAAuB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ClB;AACD;EACE,aAAY;EACb;AACD;EACE,oBAAmB;EACnB,oBAAmB;EACpB;AACD;EACE,WAAU;EACV,YAAW;EACZ;AACD;EACE;IACE,qBAAoB;IACpB,WAAU;IACX;EACD;IACE,kBAAiB;IAClB;EACF;AACD;EACE,iBAAgB;EACjB;AACD;EACE;IACE,kCAAiC;IAClC;EACD;;;IAGE,8BAA6B;IAC9B;EACF;AACD;EACE,aAAY;EACb;AACD;EACE,oBAAmB;EACpB;AACD;EACE,kBAAiB;EAClB;AACD;;;EAGE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,aAAY;EACb;AACD;EACE,iBAAgB;EAChB,gBAAe;EAChB;AACD;EACE,aAAY;EACb;AACD;EACE,aAAY;EACb;AACD;EACE,oBAAmB;EACnB,oBAAmB;EACpB;AACD;EACE,WAAU;EACV,YAAW;EACZ;AACD;EACE;IACE,qBAAoB;IACpB,WAAU;IACX;EACD;IACE,kBAAiB;IAClB;EACF;AACD;EACE,kBAAiB;EAClB;AACD;EACE,iBAAgB;EACjB;AACD;EACE;IACE,kCAAiC;IAClC;EACD;;;IAGE,8BAA6B;IAC9B;EACF;AACD;EACE,eAAc;EACf;AACD;EACE,gBAAe;EAChB;AACD;EACE,kBAAiB;EACjB,4BAA2B;EAC3B,2BAA0B;EAC3B;AACD;EACE,oBAAmB;EACnB,kBAAiB;EACjB,qBAAoB;EACpB,+BAA8B;EAC/B;AACD;EACE;IACE,oBAAmB;IACpB;EACF;AACD;EACE;IACE,aAAY;IACb;EACF;AACD;EACE,qBAAoB;EACpB,qBAAoB;EACpB,oBAAmB;EACnB,mCAAkC;EAClC,4DAAmD;EAAnD,oDAAmD;EACnD,mCAAkC;EACnC;AACD;EACE,kBAAiB;EAClB;AACD;EACE;IACE,aAAY;IACZ,eAAc;IACd,0BAAiB;IAAjB,kBAAiB;IAClB;EACD;IACE,2BAA0B;IAC1B,yBAAwB;IACxB,mBAAkB;IAClB,8BAA6B;IAC9B;EACD;IACE,qBAAoB;IACrB;EACD;;;IAGE,iBAAgB;IAChB,kBAAiB;IAClB;EACF;AACD;;EAEE,mBAAkB;EACnB;AACD;EACE;;IAEE,mBAAkB;IACnB;EACF;AACD;;;;EAIE,qBAAoB;EACpB,oBAAmB;EACpB;AACD;EACE;;;;IAIE,iBAAgB;IAChB,gBAAe;IAChB;EACF;AACD;EACE,eAAc;EACd,uBAAsB;EACvB;AACD;EACE;IACE,kBAAiB;IAClB;EACF;AACD;;EAEE,iBAAgB;EAChB,UAAS;EACT,SAAQ;EACR,eAAc;EACd,yCAAwC;EACxC,oCAAgC;EAAhC,iCAAgC;EACjC;AACD;EACE;;IAEE,kBAAiB;IAClB;EACF;AACD;EACE,QAAO;EACP,uBAAsB;EACvB;AACD;EACE,WAAU;EACV,kBAAiB;EACjB,uBAAsB;EACvB;AACD;EACE,aAAY;EACZ,sBAAqB;EACrB,iBAAgB;EAChB,mBAAkB;EAClB,cAAa;EACd;AACD;;EAEE,uBAAsB;EACvB;AACD;EACE;;IAEE,oBAAmB;IACpB;EACF;AACD;EACE,oBAAmB;EACnB,cAAa;EACb,oBAAmB;EACnB,mBAAkB;EAClB,iBAAgB;EAChB,oBAAmB;EACnB,+BAA8B;EAC9B,wBAAuB;EACvB,+BAA8B;EAC9B,oBAAmB;EACpB;AACD;EACE,YAAW;EACZ;AACD;EACE,gBAAe;EACf,aAAY;EACZ,aAAY;EACZ,oBAAmB;EACpB;AACD;EACE,iBAAgB;EACjB;AACD;EACE;IACE,eAAc;IACf;EACF;AACD;EACE,sBAAqB;EACtB;AACD;EACE,mBAAkB;EAClB,sBAAqB;EACrB,mBAAkB;EACnB;AACD;EACE;IACE,kBAAiB;IACjB,aAAY;IACZ,aAAY;IACZ,eAAc;IACd,+BAA8B;IAC9B,WAAU;IACV,0BAAiB;IAAjB,kBAAiB;IAClB;EACD;;IAEE,4BAA2B;IAC5B;EACD;IACE,mBAAkB;IACnB;EACD;;IAEE,wBAAuB;IACxB;EACF;AACD;EACE;IACE,aAAY;IACZ,WAAU;IACX;EACD;IACE,aAAY;IACb;EACD;IACE,qBAAoB;IACpB,wBAAuB;IACxB;EACD;IACE,qBAAoB;IACrB;EACF;AACD;EACE;IACE,wBAAuB;IACxB;EACD;IACE,yBAAwB;IACzB;EACF;AACD;EACE,oBAAmB;EACnB,qBAAoB;EACpB,oBAAmB;EACnB,mCAAkC;EAClC,sCAAqC;EACrC,8FAA6F;EAC7F,sFAAqF;EACrF,oBAAmB;EACnB,uBAAsB;EACvB;AACD;EACE;IACE,uBAAsB;IACtB,kBAAiB;IACjB,wBAAuB;IACxB;EACD;IACE,uBAAsB;IACtB,aAAY;IACZ,wBAAuB;IACvB,cAAa;IACd;EACD;IACE,cAAa;IACb,mBAAkB;IACnB;EACD;IACE,uBAAsB;IACtB,wBAAuB;IACxB;EACD;;;IAGE,aAAY;IACb;EACD;IACE,aAAY;IACb;EACD;IACE,kBAAiB;IACjB,wBAAuB;IACxB;EACD;;IAEE,uBAAsB;IACtB,eAAc;IACd,kBAAiB;IACjB,wBAAuB;IACxB;EACD;;IAEE,iBAAgB;IACjB;EACD;;IAEE,oBAAmB;IACnB,gBAAe;IAChB;EACD;IACE,QAAO;IACR;EACF;AACD;EACE;IACE,oBAAmB;IACpB;EACF;AACD;EACE;IACE,aAAY;IACZ,WAAU;IACV,gBAAe;IACf,iBAAgB;IAChB,gBAAe;IACf,mBAAkB;IAClB,0BAAyB;IACzB,kBAAiB;IAClB;EACD;IACE,qBAAoB;IACrB;EACF;AACD;EACE,eAAc;EACd,4BAA2B;EAC3B,2BAA0B;EAC3B;AACD;EACE,+BAA8B;EAC9B,8BAA6B;EAC9B;AACD;EACE,oBAAmB;EACnB,uBAAsB;EACvB;AACD;EACE,kBAAiB;EACjB,qBAAoB;EACrB;AACD;EACE,kBAAiB;EACjB,qBAAoB;EACrB;AACD;EACE,oBAAmB;EACnB,uBAAsB;EACvB;AACD;EACE;IACE,aAAY;IACZ,mBAAkB;IAClB,oBAAmB;IACpB;EACD;IACE,iBAAgB;IACjB;EACF;AACD;EACE,2BAA0B;EAC1B,uBAAsB;EACvB;AACD;EACE,gBAAe;EAChB;AACD;;EAEE,gBAAe;EACf,+BAA8B;EAC/B;AACD;EACE,gBAAe;EAChB;AACD;EACE,gBAAe;EAChB;AACD;;EAEE,gBAAe;EACf,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pB,iBAAgB;EAChB,kBAAiB;EAClB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,oBAAmB;EACpB;AACD;EACE,iBAAgB;EACjB;AACD;EACE;IACE,mBAAkB;IAClB,sBAAqB;IACtB;EACD;IACE,oBAAmB;IACnB,qBAAoB;IACrB;EACD;;IAEE,iBAAgB;IACjB;EACF;AACD;EACE,gBAAe;EACf,cAAa;EACb,qBAAoB;EACpB,yBAAwB;EACxB,2BAA0B;EAC1B,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;;EAEE,mBAAkB;EAClB,oBAAmB;EACpB;AACD;;;EAGE,uBAAsB;EACvB;AACD;EACE,cAAa;EACb,gBAAe;EAChB;AACD;EACE,eAAc;EACd,qBAAoB;EACpB,+BAA8B;EAC9B,oBAAmB;EACpB;AACD;EACE,eAAc;EACd,gBAAe;EAChB;AACD;EACE,mBAAkB;EACnB;AACD;;EAEE,kBAAiB;EAClB;AACD;EACE,iBAAgB;EACjB;AACD;EACE,4BAA2B;EAC5B;AACD;EACE,uBAAsB;EACvB;AACD;;EAEE,qBAAoB;EACrB;AACD;;EAEE,oBAAmB;EACnB,WAAU;EACV,cAAa;EACb,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC1B,uBAAsB;EACtB,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC1B,uBAAsB;EACtB,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC1B,uBAAsB;EACtB,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC1B,uBAAsB;EACtB,gBAAe;EAChB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EAChB;AACD;EACE;IACE,6BAA4B;IAC7B;EACD;IACE,0BAAyB;IAC1B;EACF;AACD;EACE;IACE,6BAA4B;IAC7B;EACD;IACE,0BAAyB;IAC1B;EACF;AAPD;EACE;IACE,6BAA4B;IAC7B;EACD;IA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0B;EAC3B;AACD;EACE,8BAA6B;EAC9B;AACD;EACE,uBAAsB;EACvB;AACD;EACE,gBAAe;EACf,2BAA0B;EAC1B,uBAAsB;EACvB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,8BAA6B;EAC9B;AACD;EACE,uBAAsB;EACvB;AACD;EACE,gBAAe;EACf,2BAA0B;EAC1B,uBAAsB;EACvB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,8BAA6B;EAC9B;AACD;EACE,uBAAsB;EACvB;AACD;EACE,gBAAe;EACf,2BAA0B;EAC1B,uBAAsB;EACvB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,8BAA6B;EAC9B;AACD;EACE,uBAAsB;EACvB;AACD;EACE,gBAAe;EACf,2BAA0B;EAC1B,uBAAsB;EACvB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,8BAA6B;EAC9B;AACD;EACE,uBAAsB;EACvB;AACD;EACE,gBAAe;EACf,2BAA0B;EAC1B,uBAAsB;EACvB;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,gBAAe;EACf,2BAA0B;EAC3B;AACD;EACE,8BAA6B;EAC9B;AACD;EACE,oBAAmB;EACnB,gBAAe;EACf,WAAU;EACV,YAAW;EACX,kBAAiB;EAClB;AACD;;;;EAIE,oBAAmB;EACnB,QAAO;EACP,SAAQ;EACR,WAAU;EACV,cAAa;EACb,aAAY;EACZ,WAAU;EACX;AACD;EACE,wBAAuB;EACxB;AACD;EACE,qBAAoB;EACrB;AACD;EACE,kBAAiB;EACjB,eAAc;EACd,qBAAoB;EACpB,2BAA0B;EAC1B,2BAA0B;EAC1B,oBAAmB;EACnB,yDAAwD;EACxD,iDAAgD;EACjD;AACD;EACE,oBAAmB;EACnB,mCAAkC;EACnC;AACD;EACE,eAAc;EACd,oBAAmB;EACpB;AACD;EACE,cAAa;EACb,oBAAmB;EACpB;AACD;EACE,cAAa;EACb,mBAAkB;EAClB,mBAAkB;EAClB,gBAAe;EACf,gBAAe;EAChB;AACD;;EAEE,gBAAe;EACf,uBAAsB;EACtB,iBAAgB;EACjB;AACD;EACE,YAAW;EACX,iBAAgB;EAChB,yBAAwB;EACxB,WAAU;EACV,0BAAyB;EAC1B;AACD;EACE,kBAAiB;EAClB;AACD;EACE,eAAc;EACd,kBAAiB;EACjB,iBAAgB;EAChB,QAAO;EACP,UAAS;EACT,WAAU;EACV,SAAQ;EACR,eAAc;EACd,mCAAkC;EAClC,YAAW;EACZ;AACD;EACE,4CAA2C;EAC3C,uCAAmC;EAAnC,oCAAmC;EACnC,qDAAoD;EAEpD,2CAA0C;EAC1C,qCAAoC;EACrC;AACD;EACE,yCAAwC;EACxC,oCAAgC;EAAhC,iCAAgC;EACjC;AACD;EACE,oBAAmB;EACnB,kBAAiB;EAClB;AACD;EACE,oBAAmB;EACnB,aAAY;EACZ,cAAa;EACb,oBAAmB;EACpB;AACD;EACE,oBAAmB;EACnB,2BAA0B;EAC1B,2BAA0B;EAC1B,sCAAqC;EACrC,oBAAmB;EACnB,kDAAiD;EACjD,0CAAyC;EACzC,sCAA6B;EAA7B,8BAA6B;EAC7B,YAAW;EACZ;AACD;EACE,iBAAgB;EAChB,QAAO;EACP,UAAS;EACT,WAAU;EACV,SAAQ;EACR,eAAc;EACd,2BAA0B;EAC3B;AACD;EACE,YAAW;EACX,0BAAyB;EAC1B;AACD;EACE,cAAa;EACb,2BAA0B;EAC3B;AACD;EACE,eAAc;EACd,kCAAiC;EACjC,2BAA0B;EAC1B,2BAA0B;EAC1B,4BAA2B;EAC5B;AACD;EACE,iBAAgB;EAChB,gBAAe;EAChB;AACD;EACE,WAAU;EACV,yBAAwB;EACxB,gBAAe;EAChB;AACD;EACE,oBAAmB;EACnB,eAAc;EACf;AACD;EACE,oBAAmB;EACnB,mBAAkB;EAClB,+BAA8B;EAC9B,2BAA0B;EAC1B,4BAA2B;EAC5B;AACD;EACE,mBAAkB;EAClB,kBAAiB;EAClB;AACD;EACE,mBAAkB;EACnB;AACD;EACE,gBAAe;EAChB;AACD;EACE,oBAAmB;EACnB,cAAa;EACb,aAAY;EACZ,cAAa;EACb,kBAAiB;EAClB;AACD;EACE;IACE,cAAa;IACb,mBAAkB;IACnB;EACD;IACE,mDAAkD;IAClD,2CAA0C;IAC3C;EACD;IACE,cAAa;IACd;EACF;AACD;EACE;IACE,cAAa;IACd;EACF;AACD;EACE,oBAAmB;EACnB,eAAc;EACd,gBAAe;EACf,qBAAoB;EACpB,iBAAgB;EAChB,kBAAiB;EACjB,YAAW;EACX,0BAAyB;EAC1B;AACD;EACE,cAAa;EACb,2BAA0B;EAC3B;AACD;EACE,kBAAiB;EACjB,gBAAe;EAChB;AACD;EACE,kBAAiB;EACjB,gBAAe;EAChB;AACD;EACE,iBAAgB;EAChB,gBAAe;EAChB;AACD;EACE,mBAAkB;EAClB,gBAAe;EAChB;AACD;EACE,kBAAiB;EACjB,kBAAiB;EACjB,gBAAe;EACf,oBAAmB;EACnB,uBAAsB;EACtB,2BAA0B;EAC1B,oBAAmB;EACpB;AACD;EACE,oBAAmB;EACnB,UAAS;EACT,WAAU;EACV,2BAA0B;EAC1B,qBAAoB;EACrB;AACD;EACE,WAAU;EACV,WAAU;EACV,mBAAkB;EAClB,yBAAwB;EACxB,2BAA0B;EAC3B;AACD;EACE,WAAU;EACV,WAAU;EACV,yBAAwB;EACxB,2BAA0B;EAC3B;AACD;EACE,WAAU;EACV,YAAW;EACX,yBAAwB;EACxB,2BAA0B;EAC3B;AACD;EACE,UAAS;EACT,SAAQ;EACR,kBAAiB;EACjB,6BAA4B;EAC5B,6BAA4B;EAC7B;AACD;EACE,UAAS;EACT,UAAS;EACT,kBAAiB;EACjB,6BAA4B;EAC5B,4BAA2B;EAC5B;AACD;EACE,QAAO;EACP,WAAU;EACV,mBAAkB;EAClB,yBAAwB;EACxB,8BAA6B;EAC9B;AACD;EACE,QAAO;EACP,WAAU;EACV,yBAAwB;EACxB,8BAA6B;EAC9B;AACD;EACE,QAAO;EACP,YAAW;EACX,yBAAwB;EACxB,8BAA6B;EAC9B;AACD;EACE,oBAAmB;EACnB,QAAO;EACP,SAAQ;EACR,eAAc;EACd,eAAc;EACd,kBAAiB;EACjB,c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Cb,mBAAkB;IAClB,iBAAgB;IACjB;EACD;;IAEE,oBAAmB;IACpB;EACD;;IAEE,qBAAoB;IACrB;EACD;IACE,WAAU;IACV,YAAW;IACX,sBAAqB;IACtB;EACF;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8BE,cAAa;EACb,gBAAe;EAChB;AACD;;;;;;;;;;;;;;;EAeE,aAAY;EACb;AACD;EACE,gBAAe;EACf,mBAAkB;EAClB,oBAAmB;EACpB;AACD;EACE,yBAAwB;EACzB;AACD;EACE,wBAAuB;EACxB;AACD;EACE,0BAAyB;EAC1B;AACD;EACE,2BAA0B;EAC3B;AACD;EACE,oBAAmB;EACpB;AACD;EACE,aAAY;EACZ,oBAAmB;EACnB,mBAAkB;EAClB,+BAA8B;EAC9B,WAAU;EACX;AACD;EACE,0BAAyB;EACzB,+BAA8B;EAC/B;AACD;EACE,iBAAgB;EAChB,yCAAwC;EACxC,oCAAgC;EAAhC,iCAAgC;EACjC;AACD;EACE,qBAAoB;EACrB;AACD;;;;EAIE,0BAAyB;EAC1B;AACD;;;;;;;;;;;;EAYE,0BAAyB;EAC1B;AACD;EACE;IACE,2BAA0B;IAC3B;EACD;IACE,gBAAe;IAChB;EACD;IACE,+BAA8B;IAC/B;EACD;;IAEE,gCAA+B;IAChC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACF;AACD;EACE;IACE,4BAA2B;IAC5B;EACF;AACD;EACE;IACE,kCAAiC;IAClC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACD;IACE,gBAAe;IAChB;EACD;IACE,+BAA8B;IAC/B;EACD;;IAEE,gCAA+B;IAChC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACF;AACD;EACE;IACE,4BAA2B;IAC5B;EACF;AACD;EACE;IACE,kCAAiC;IAClC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACD;IACE,gBAAe;IAChB;EACD;IACE,+BAA8B;IAC/B;EACD;;IAEE,gCAA+B;IAChC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACF;AACD;EACE;IACE,4BAA2B;IAC5B;EACF;AACD;EACE;IACE,kCAAiC;IAClC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACD;IACE,gBAAe;IAChB;EACD;IACE,+BAA8B;IAC/B;EACD;;IAEE,gCAA+B;IAChC;EACF;AACD;EACE;IACE,2BAA0B;IAC3B;EACF;AACD;EACE;IACE,4BAA2B;IAC5B;EACF;AACD;EACE;IACE,kCAAiC;IAClC;EACF;AACD;EACE;IACE,0BAAyB;IAC1B;EACF;AACD;EACE;IACE,0BAAyB;IAC1B;EACF;AACD;EACE;IACE,0BAAyB;IAC1B;EACF;AACD;EACE;IACE,0BAAyB;IAC1B;EACF;AACD;EACE,0BAAyB;EAC1B;AACD;EACE;IACE,2BAA0B;IAC3B;EACD;IACE,gBAAe;IAChB;EACD;IACE,+BAA8B;IAC/B;EACD;;IAEE,gCAA+B;IAChC;EACF;AACD;EACE,0BAAyB;EAC1B;AACD;EACE;IACE,2BAA0B;IAC3B;EACF;AACD;EACE,0BAAyB;EAC1B;AACD;EACE;IACE,4BAA2B;IAC5B;EACF;AACD;EACE,0BAAyB;EAC1B;AACD;EACE;IACE,kCAAiC;IAClC;EACF;AACD;EACE;IACE,0BAAyB;IAC1B;EACF","file":"bootstrap.css"}
\ No newline at end of file
diff --git a/experimental/hello-prism/app/public/css/bootstrap.min.css b/experimental/hello-prism/app/public/css/bootstrap.min.css
deleted file mode 100755
index 1965988..0000000
--- a/experimental/hello-prism/app/public/css/bootstrap.min.css
+++ /dev/null
@@ -1,5 +0,0 @@
-/*!
- * Bootstrap v1.0 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */@font-face{font-family:ProximaNovaSoft;font-weight:400;src:url(../fonts/ProximaNovaSoft-Regular-webfont.eot);src:url(../fonts/ProximaNovaSoft-Regular-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Regular-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Regular-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Regular-webfont.svg#webfont) format('svg')}@font-face{font-family:ProximaNovaSoft;font-weight:500;src:url(../fonts/ProximaNovaSoft-Medium-webfont.eot);src:url(../fonts/ProximaNovaSoft-Medium-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Medium-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Medium-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Medium-webfont.svg#webfont) format('svg')}@font-face{font-family:ProximaNovaSoft;font-weight:600;src:url(../fonts/ProximaNovaSoft-Semibold-webfont.eot);src:url(../fonts/ProximaNovaSoft-Semibold-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Semibold-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Semibold-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Semibold-webfont.svg#webfont) format('svg')}@font-face{font-family:ProximaNovaSoft;font-weight:700;src:url(../fonts/ProximaNovaSoft-Bold-webfont.eot);src:url(../fonts/ProximaNovaSoft-Bold-webfont.eot?iefix) format('eot'),url(../fonts/ProximaNovaSoft-Bold-webfont.woff) format('woff'),url(../fonts/ProximaNovaSoft-Bold-webfont.ttf) format('truetype'),url(../fonts/ProximaNovaSoft-Bold-webfont.svg#webfont) format('svg')}@font-face{font-family:ss-nutanix;font-style:normal;font-weight:400;src:url(../fonts/ss-nutanix-regular-webfont.eot);src:url(../fonts/ss-nutanix-regular-webfont.eot?#iefix) format('embedded-opentype'),url(../fonts/ss-nutanix-regular-webfont.woff) format('woff'),url(../fonts/ss-nutanix-regular-webfont.ttf) format('truetype'),url(../fonts/ss-nutanix-regular-webfont.svg#ss-miniregular) format('svg')}/*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-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{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}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{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;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-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!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}}@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{font-family:ss-nutanix}.glyphicon-plus:before{content:"\048"}.glyphicon-x{font-family:ss-nutanix}.glyphicon-x:before{content:"\076"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-health{font-family:ss-nutanix}.glyphicon-health:before{content:"\049"}.glyphicon-checkmark{font-family:ss-nutanix}.glyphicon-checkmark:before{content:"\04A"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil{font-family:ss-nutanix}.glyphicon-pencil:before{content:"\046"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search{font-family:ss-nutanix}.glyphicon-search:before{content:"\042"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user{font-family:ss-nutanix}.glyphicon-user:before{content:"\041"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok{font-family:ss-nutanix}.glyphicon-ok:before{content:"\047"}.glyphicon-remove{font-family:ss-nutanix}.glyphicon-remove:before{content:"\04B"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog{font-family:ss-nutanix}.glyphicon-cog:before{content:"\043"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time{font-family:ss-nutanix}.glyphicon-time:before{content:"\045"}.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{font-family:ss-nutanix}.glyphicon-chevron-left:before{content:"\078"}.glyphicon-chevron-right{font-family:ss-nutanix}.glyphicon-chevron-right:before{content:"\079"}.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{font-family:ss-nutanix}.glyphicon-chevron-up:before{content:"\077"}.glyphicon-chevron-down{font-family:ss-nutanix}.glyphicon-chevron-down:before{content:"\07A"}.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{font-family:ss-nutanix}.glyphicon-bell:before{content:"\044"}.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{font-family:ss-nutanix}.glyphicon-log-in:before{content:"\04D"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out{font-family:ss-nutanix}.glyphicon-log-out:before{content:"\04C"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-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:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:ProximaNovaSoft,Helvetica,Arial,sans-serif;font-size:14px;font-weight:500;line-height:1.57142857;color:#6f787e;background-color:#fff;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-o-font-smoothing:antialiased;font-smoothing:antialiased}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;-o-font-smoothing:antialiased;font-smoothing:antialiased}a{color:#26bbf0;text-decoration:none}a:hover,a:focus{color:#0d8ebc;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;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:5px}.img-thumbnail{display:inline-block;width:100% \9;max-width:100%;height:auto;padding:4px;line-height:1.57142857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #c6cdd1}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:400;line-height:1.1;color:#343536}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:#9aa8b1}h1,.h1,h2,.h2,h3,.h3{margin-top:42px;margin-bottom:21px}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:21px;margin-bottom:10.5px;font-weight:700}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:40px;text-transform:uppercase}h2,.h2{font-size:30px;font-weight:500}h3,.h3{font-size:18px;font-weight:600}h4,.h4{font-size:14px;font-weight:600}h5,.h5{font-size:12px;font-weight:600;color:#6f787e;text-transform:uppercase}h6,.h6{font-size:12px;font-weight:600;color:#6f787e}p{margin:0 0 10.5px}.lead{margin-bottom:21px;font-size:16px;font-weight:400;line-height:1.4;color:#424950}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}mark,.mark{padding:.2em .4em;background-color:#ffe49c;border-radius:3px}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#9aa8b1}.text-primary{color:#26bbf0}a.text-primary:hover{color:#0fa0d4}.text-success{color:#6eb17b}a.text-success:hover{color:#539960}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#d9a92b}a.text-warning:hover{color:#b18920}.text-danger{color:#a9484b}a.text-danger:hover{color:#85393b}.bg-primary{color:#fff;background-color:#26bbf0;border-radius:4px}a.bg-primary:hover{background-color:#0fa0d4}.bg-success{background-color:#d5e3bf;border-radius:4px}a.bg-success:hover{background-color:#bed39b}.bg-info{background-color:#d9edf7;border-radius:4px}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#ffe49c;border-radius:4px}a.bg-warning:hover{background-color:#ffd669}.bg-danger{background-color:#f1d3d4;border-radius:4px}a.bg-danger:hover{background-color:#e5acae}.page-header{padding-bottom:9.5px;margin:42px 0 21px;text-align:center;letter-spacing:.5em;border-bottom:1px solid #c6cdd1}ul,ol{margin-top:0;margin-bottom:10.5px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:21px}dt,dd{line-height:1.57142857}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #9aa8b1}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:17.5px;border-left:5px solid #c6cdd1}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.57142857;color:#9aa8b1}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #c6cdd1;border-left:0}.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:21px;font-style:normal;line-height:1.57142857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:10px;margin:0 0 10.5px;font-size:13px;line-height:1.57142857;color:#343536;word-break:break-all;word-wrap:break-word;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{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-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-right:15px;padding-left: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:auto}.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:auto}.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:auto}.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:auto}.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:auto}.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:auto}.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:auto}.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:auto}.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{background-color:transparent}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:21px}.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.57142857;vertical-align:top;border-top:1px solid #ddd}.table>thead:first-child>tr:first-child>th,.table>tbody:first-child>tr:first-child>th,.table>tfoot:first-child>tr:first-child>th,.table>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>tbody:first-child>tr:first-child>td,.table>tfoot:first-child>tr:first-child>td,.table>tr:first-child>td{font-size:71%;font-weight:600;text-transform:uppercase}.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-collapse:separate;border:1px solid #ddd;border-radius:4px}.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;border-top:none;border-left:none}.table-bordered>thead>tr>th:first-child,.table-bordered>tbody>tr>th:first-child,.table-bordered>tfoot>tr>th:first-child,.table-bordered>thead>tr>td:first-child,.table-bordered>tbody>tr>td:first-child,.table-bordered>tfoot>tr>td:first-child{border-left:none}.table-bordered>thead>tr>th:last-child,.table-bordered>tbody>tr>th:last-child,.table-bordered>tfoot>tr>th:last-child,.table-bordered>thead>tr>td:last-child,.table-bordered>tbody>tr>td:last-child,.table-bordered>tfoot>tr>td:last-child{border-right:none;border-radius:0 4px 0 0}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-bordered>thead:first-child>tr:first-child>th:first-child,.table-bordered>tr:first-child>th:first-child,.table-bordered>tbody:first-child>tr:first-child>th:first-child,.table-bordered>tfoot:first-child>tr:first-child>th:first-child,.table-bordered>thead:first-child>tr:first-child>td:first-child,.table-bordered>tr:first-child>td:first-child,.table-bordered>tbody:first-child>tr:first-child>td:first-child,.table-bordered>tfoot:first-child>tr:first-child>td:first-child{border-radius:4px 0 0 0}.table-bordered>thead:first-child>tr:first-child>th:last-child,.table-bordered>tr:first-child>th:last-child,.table-bordered>tbody:first-child>tr:first-child>th:last-child,.table-bordered>tfoot:first-child>tr:first-child>th:last-child,.table-bordered>thead:first-child>tr:first-child>td:last-child,.table-bordered>tr:first-child>td:last-child,.table-bordered>tbody:first-child>tr:first-child>td:last-child,.table-bordered>tfoot:first-child>tr:first-child>td:last-child{border-radius:0 4px 0 0}.table-bordered>thead:last-child>tr:last-child>th,.table-bordered>tr:last-child>th,.table-bordered>tbody:last-child>tr:last-child>th,.table-bordered>tfoot:last-child>tr:last-child>th,.table-bordered>thead:last-child>tr:last-child>td,.table-bordered>tr:last-child>td,.table-bordered>tbody:last-child>tr:last-child>td,.table-bordered>tfoot:last-child>tr:last-child>td{border-bottom:none}.table-bordered>thead:last-child>tr:last-child>th:first-child,.table-bordered>tr:last-child>th:first-child,.table-bordered>tbody:last-child>tr:last-child>th:first-child,.table-bordered>tfoot:last-child>tr:last-child>th:first-child,.table-bordered>thead:last-child>tr:last-child>td:first-child,.table-bordered>tr:last-child>td:first-child,.table-bordered>tbody:last-child>tr:last-child>td:first-child,.table-bordered>tfoot:last-child>tr:last-child>td:first-child{border-radius:0 0 0 4px}.table-bordered>thead:last-child>tr:last-child>th:last-child,.table-bordered>tr:last-child>th:last-child,.table-bordered>tbody:last-child>tr:last-child>th:last-child,.table-bordered>tfoot:last-child>tr:last-child>th:last-child,.table-bordered>thead:last-child>tr:last-child>td:last-child,.table-bordered>tr:last-child>td:last-child,.table-bordered>tbody:last-child>tr:last-child>td:last-child,.table-bordered>tfoot:last-child>tr:last-child>td:last-child{border-radius:0 0 4px 0}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f7}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.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:hover>.active,.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:#d5e3bf}.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:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#cadbad}.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:hover>.info,.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:#ffe49c}.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:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#ffdd83}.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:#f1d3d4}.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:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebc0c1}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15.75px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.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{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:21px;line-height:inherit;color:#343536;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;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.57142857;color:#3f4142}.form-control{display:block;width:100%;height:33px;padding:6px 12px;font-size:14px;line-height:1.57142857;color:#3f4142;background-color:#fff;background-image:none;border:1px solid #dedede;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(180,180,180,.1);box-shadow:inset 0 1px 0 rgba(180,180,180,.1);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-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:#26bbf0;outline:0;-webkit-box-shadow:none;-webkit-box-shadow:0 0 0 2px rgba(38,187,240,.15);box-shadow:none;box-shadow:0 0 0 2px rgba(38,187,240,.15)}.form-control::-moz-placeholder{color:#c6cdd1;opacity:1}.form-control:-ms-input-placeholder{color:#c6cdd1}.form-control::-webkit-input-placeholder{color:#c6cdd1}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{color:#f3f4f5;cursor:not-allowed;background-color:#f7f8f8;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:33px;line-height:1.57142857 \0}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:24px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:21px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],input[type=radio].disabled,input[type=checkbox].disabled,fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-horizontal .form-group-sm .form-control{height:24px;padding:3px 10px;font-size:12px;line-height:1.4;border-radius:3px}select.input-sm{height:24px;line-height:24px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3;border-radius:5px}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:41.25px}.form-control-feedback{position:absolute;top:28px;right:0;z-index:2;display:block;width:33px;height:33px;line-height:33px;text-align:center}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:24px;height:24px;line-height:24px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#6eb17b}.has-success .form-control{background-color:#f8faf4;border-color:#d5e3bf}.has-success .form-control:focus:focus{border-color:#a7c478;outline:0;-webkit-box-shadow:none;-webkit-box-shadow:0 0 0 2px rgba(167,196,120,.15);box-shadow:none;box-shadow:0 0 0 2px rgba(167,196,120,.15)}.has-success .input-group-addon{color:#6eb17b;background-color:#d5e3bf;border-color:#d5e3bf}.has-success .form-control-feedback{color:#6eb17b}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#d9a92b}.has-warning .form-control{background-color:#fff9e9;border-color:#ffe49c}.has-warning .form-control:focus:focus{border-color:#ffc836;outline:0;-webkit-box-shadow:none;-webkit-box-shadow:0 0 0 2px rgba(255,200,54,.15);box-shadow:none;box-shadow:0 0 0 2px rgba(255,200,54,.15)}.has-warning .input-group-addon{color:#d9a92b;background-color:#ffe49c;border-color:#ffe49c}.has-warning .form-control-feedback{color:#d9a92b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a9484b}.has-error .form-control{background-color:#fff;border-color:#f1d3d4}.has-error .form-control:focus:focus{border-color:#d88688;outline:0;-webkit-box-shadow:none;-webkit-box-shadow:0 0 0 2px rgba(216,134,136,.15);box-shadow:none;box-shadow:0 0 0 2px rgba(216,134,136,.15)}.has-error .input-group-addon{color:#a9484b;background-color:#f1d3d4;border-color:#f1d3d4}.has-error .form-control-feedback{color:#a9484b}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#b2b7bb}@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;height:29px;vertical-align:middle}.form-inline .form-control-feedback{height:29px;line-height:29px}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.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;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:28px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:4px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:12px;font-weight:600;line-height:1.3;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;outline:0!important}.btn:not(.dropdown-toggle):not(.btn-link){min-width:92px}.btn-group .btn,.btn-group-vertical .btn{min-width:inherit}.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:#6f787e;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 1px 3px -1px rgba(0,0,0,.18);box-shadow:inset 0 1px 3px -1px rgba(0,0,0,.18)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn .glyphicon{font-size:80%}.btn-default{color:#6f787e;background-color:#fff;border-color:#89949b}.btn-default:hover,.btn-default:active,.btn-default.active{color:#424950;background-color:#fff}.btn-default:hover:not(.btn-default),.btn-default:active:not(.btn-default),.btn-default.active:not(.btn-default){border-color:#fff}.btn-default:focus{color:#424950}.btn-default:active,.btn-default.active{background-image:none}.btn-default:active:not(.dropdown-toggle),.btn-default.active:not(.dropdown-toggle){background-color:#fff;border-color:#636e75}.open .dropdown-toggle.btn-default{color:#424950}.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:#89949b;opacity:.3}.btn-default .badge{color:#fff;background-color:#6f787e}.btn-default.selected{color:#fff;background-color:#89949b}.btn-default.selected:active,.btn-default.selected.active{color:#6f787e}.btn-primary{color:#fff;background-color:#26bbf0;border-color:#26bbf0}.btn-primary:hover,.btn-primary:active,.btn-primary.active{color:#fff;background-color:#11a3d7}.btn-primary:hover:not(.btn-default),.btn-primary:active:not(.btn-default),.btn-primary.active:not(.btn-default){border-color:#11a3d7}.btn-primary:focus{color:#fff}.btn-primary:active,.btn-primary.active{background-image:none}.btn-primary:active:not(.dropdown-toggle),.btn-primary.active:not(.dropdown-toggle){background-color:#11a3d7;border-color:#0d8ebc}.open .dropdown-toggle.btn-primary{color:#fff}.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:#11a3d7;border-color:#26bbf0;opacity:.3}.btn-primary .badge{color:#26bbf0;background-color:#fff}.btn-primary.selected{color:#fff;background-color:#26bbf0}.btn-primary.selected:active,.btn-primary.selected.active{color:#fff}.btn-success{color:#fff;background-color:#b2c98a;border-color:#b2c98a}.btn-success:hover,.btn-success:active,.btn-success.active{color:#fff;background-color:#98b36a}.btn-success:hover:not(.btn-default),.btn-success:active:not(.btn-default),.btn-success.active:not(.btn-default){border-color:#98b36a}.btn-success:focus{color:#fff}.btn-success:active,.btn-success.active{background-image:none}.btn-success:active:not(.dropdown-toggle),.btn-success.active:not(.dropdown-toggle){background-color:#98b36a;border-color:#90b156}.open .dropdown-toggle.btn-success{color:#fff}.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:#98b36a;border-color:#b2c98a;opacity:.3}.btn-success .badge{color:#b2c98a;background-color:#fff}.btn-success.selected{color:#fff;background-color:#b2c98a}.btn-success.selected:active,.btn-success.selected.active{color:#fff}.btn-info{color:#fff;background-color:#9aa8b1;border-color:#9aa8b1}.btn-info:hover,.btn-info:active,.btn-info.active{color:#fff;background-color:#6f787e}.btn-info:hover:not(.btn-default),.btn-info:active:not(.btn-default),.btn-info.active:not(.btn-default){border-color:#6f787e}.btn-info:focus{color:#fff}.btn-info:active,.btn-info.active{background-image:none}.btn-info:active:not(.dropdown-toggle),.btn-info.active:not(.dropdown-toggle){background-color:#6f787e;border-color:#6f8390}.open .dropdown-toggle.btn-info{color:#fff}.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:#6f787e;border-color:#9aa8b1;opacity:.3}.btn-info .badge{color:#9aa8b1;background-color:#fff}.btn-info.selected{color:#fff;background-color:#9aa8b1}.btn-info.selected:active,.btn-info.selected.active{color:#fff}.btn-warning{color:#fff;background-color:#ffd055;border-color:#ffd055}.btn-warning:hover,.btn-warning:active,.btn-warning.active{color:#fff;background-color:#ffbc0d}.btn-warning:hover:not(.btn-default),.btn-warning:active:not(.btn-default),.btn-warning.active:not(.btn-default){border-color:#ffbc0d}.btn-warning:focus{color:#fff}.btn-warning:active,.btn-warning.active{background-image:none}.btn-warning:active:not(.dropdown-toggle),.btn-warning.active:not(.dropdown-toggle){background-color:#ffbc0d;border-color:#ffbb08}.open .dropdown-toggle.btn-warning{color:#fff}.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:#ffbc0d;border-color:#ffd055;opacity:.3}.btn-warning .badge{color:#ffd055;background-color:#fff}.btn-warning.selected{color:#fff;background-color:#ffd055}.btn-warning.selected:active,.btn-warning.selected.active{color:#fff}.btn-danger{color:#fff;background-color:#cf6a6d;border-color:#cf6a6d}.btn-danger:hover,.btn-danger:active,.btn-danger.active{color:#fff;background-color:#b75355}.btn-danger:hover:not(.btn-default),.btn-danger:active:not(.btn-default),.btn-danger.active:not(.btn-default){border-color:#b75355}.btn-danger:focus{color:#fff}.btn-danger:active,.btn-danger.active{background-image:none}.btn-danger:active:not(.dropdown-toggle),.btn-danger.active:not(.dropdown-toggle){background-color:#b75355;border-color:#b33a3d}.open .dropdown-toggle.btn-danger{color:#fff}.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:#b75355;border-color:#cf6a6d;opacity:.3}.btn-danger .badge{color:#cf6a6d;background-color:#fff}.btn-danger.selected{color:#fff;background-color:#cf6a6d}.btn-danger.selected:active,.btn-danger.selected.active{color:#fff}.btn-link{font-weight:400;color:#26bbf0;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:#0d8ebc;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:#9aa8b1;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3;border-radius:5px}.btn-sm,.btn-group-sm>.btn{padding:3px 10px;font-size:12px;line-height:1.4;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.4;border-radius:3px}.btn-block{display:block;width:100%}.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;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{position:relative;display:inline-block;width:1em;height:1em;margin-left:2px;vertical-align:middle}.caret::after{position:relative;top:-.7em;display:inline-block;font-family:ss-nutanix;font-size:50%;content:'\07A'}.dropdown{position:relative}.dropdown .dropdown-toggle{position:relative;z-index:1001;font-weight:700;color:#6f787e;border:none;-webkit-box-shadow:none;box-shadow:none}.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;font-size:12px;font-weight:600;line-height:1.57142857;color:#6f787e;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:.5px .87px 2px 0 rgba(0,0,0,.07);box-shadow:.5px .87px 2px 0 rgba(0,0,0,.07)}.dropdown .dropdown-menu{margin:0}.btn-group-vertical .dropdown-menu{margin-left:2px}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:3.5px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:5px 20px;margin-top:2px;margin-bottom:2px;clear:both;font-weight:600;line-height:1.57142857;color:inherit;white-space:nowrap}.dropdown-menu>li:first-child a{margin-top:0}.dropdown-menu>li:last-child a{margin-bottom:0}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#fff;text-decoration:none;background-color:#26bbf0}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#26bbf0;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#9aa8b1}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown.open .dropdown-toggle::before,.dropdown.open .dropdown-toggle::after{position:absolute;right:1.1em;z-index:1002;display:inline-block;width:0;height:0;content:'';border:1px solid;border-width:4px 5px}.dropdown.open .dropdown-toggle::before{bottom:-1px;border-color:transparent transparent #c5c5c5 transparent}.dropdown.open .dropdown-toggle::after{bottom:-2px;border-color:transparent transparent #fff transparent}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;margin-top:8px;font-size:11px;font-weight:500;line-height:1.57142857;color:#9aa8b1;text-transform:uppercase;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{font-family:ss-nutanix;content:"";border-top:0}.dropup .caret:after,.navbar-fixed-bottom .dropdown .caret:after{content:"\077"}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.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:not(.dropdown-toggle):hover,.btn-group-vertical>.btn:not(.dropdown-toggle):hover,.btn-group>.btn:not(.dropdown-toggle):focus,.btn-group-vertical>.btn:not(.dropdown-toggle):focus,.btn-group>.btn:not(.dropdown-toggle):active,.btn-group-vertical>.btn:not(.dropdown-toggle):active,.btn-group>.btn:not(.dropdown-toggle).active,.btn-group-vertical>.btn:not(.dropdown-toggle).active{z-index:2}.btn-group>.btn:not(.dropdown-toggle):focus,.btn-group-vertical>.btn:not(.dropdown-toggle):focus{outline:0}.btn-group.btn-group-primary>.btn,.btn-group-vertical.btn-group-primary>.btn{color:#6f787e;background-color:#fff;border-color:#26bbf0}.btn-group.btn-group-primary>.btn:hover,.btn-group-vertical.btn-group-primary>.btn:hover{background-color:#dbf4fd}.btn-group.btn-group-primary>.btn.selected,.btn-group-vertical.btn-group-primary>.btn.selected,.btn-group.btn-group-primary>.btn.selected:hover,.btn-group-vertical.btn-group-primary>.btn.selected:hover{color:#fff;background-color:#26bbf0}.btn-group.btn-group-success>.btn,.btn-group-vertical.btn-group-success>.btn{color:#6f787e;background-color:#fff;border-color:#b2c98a}.btn-group.btn-group-success>.btn:hover,.btn-group-vertical.btn-group-success>.btn:hover{background-color:#fff}.btn-group.btn-group-success>.btn.selected,.btn-group-vertical.btn-group-success>.btn.selected,.btn-group.btn-group-success>.btn.selected:hover,.btn-group-vertical.btn-group-success>.btn.selected:hover{color:#fff;background-color:#b2c98a}.btn-group.btn-group-warning>.btn,.btn-group-vertical.btn-group-warning>.btn{color:#6f787e;background-color:#fff;border-color:#ffd055}.btn-group.btn-group-warning>.btn:hover,.btn-group-vertical.btn-group-warning>.btn:hover{background-color:#fff}.btn-group.btn-group-warning>.btn.selected,.btn-group-vertical.btn-group-warning>.btn.selected,.btn-group.btn-group-warning>.btn.selected:hover,.btn-group-vertical.btn-group-warning>.btn.selected:hover{color:#fff;background-color:#ffd055}.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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-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-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 1px 1px 4px rgba(0,0,0,.075);box-shadow:inset 1px 1px 4px rgba(0,0,0,.075)}.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 .dropdown-toggle::before,.btn-group-vertical .dropdown-toggle::after{display:none!important}.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-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.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-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}.btn-group-justified>.btn+.btn,.btn-group-justified>.btn+.btn-group>.btn,.btn-group-justified>.btn-group>.btn+.btn,.btn-group-justified>.btn-group+.btn-group>.btn{border-left:none}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{position:absolute;z-index:-1;filter:alpha(opacity=0);opacity:0}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left: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.3;border-radius:5px}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:24px;padding:3px 10px;font-size:12px;line-height:1.4;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:24px;line-height:24px}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:600;line-height:1;color:#3f4142;text-align:center;background-color:#f3f4f5;border:1px solid #dedede;border-radius:4px}.input-group-addon.input-sm{padding:3px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:5px}.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-top-right-radius:0;border-bottom-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-top-left-radius:0;border-bottom-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;height:100%;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.input-group-btn>.btn.btn-default{border-color:#dedede}.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{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block;font-weight:600}.nav>li>a{position:relative;display:block;padding:6px 15px;font-size:12px;font-weight:inherit}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#f3f4f5}.nav>li>a.dropdown-toggle{font-weight:inherit}.nav>li.disabled>a{color:#9aa8b1}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#9aa8b1;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#f3f4f5;border-color:#26bbf0}.nav .nav-divider{height:1px;margin:3.5px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs.nav{border-bottom:1px solid #ddd}.nav-tabs.nav>li{float:left;margin-bottom:-1px}.nav-tabs.nav>li:first-child>a{border-radius:4px 0 0 0}.nav-tabs.nav>li:last-child>a{border-right-width:1px;border-radius:0 4px 0 0}.nav-tabs.nav>li>a{line-height:1.57142857;color:#6f787e;border:1px solid #ddd;border-width:1px 0 1px 1px}.nav-tabs.nav>li>a:hover{color:#424950}.nav-tabs.nav>li.active>a,.nav-tabs.nav>li.active>a:hover,.nav-tabs.nav>li.active>a:focus{z-index:2;color:#89949b;cursor:default;background-color:#fff}.nav-tabs.nav>li.active>a:after,.nav-tabs.nav>li.active>a:hover:after,.nav-tabs.nav>li.active>a:focus:after{position:absolute;right:-1px;bottom:-1px;left:-1px;display:block;height:2px;content:'';background-color:#26bbf0}.nav-tabs.nav.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav.nav-justified>li{float:none}.nav-tabs.nav.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav.nav-justified>li>a{margin-right:0}@media (min-width:768px){.nav-tabs.nav.nav-justified>li>a{border-bottom:1px solid #ddd}.nav-tabs.nav.nav-justified>.active>a,.nav-tabs.nav.nav-justified>.active>a:hover,.nav-tabs.nav.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:#26bbf0}.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{margin-bottom:5px;text-align:center}.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}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd}.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-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:21px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;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-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.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;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@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;height:50px;padding:14.5px 15px;font-size:18px;line-height:21px}.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;padding:9px 10px;margin-top:8px;margin-right:15px;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.25px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;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:21px}.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:14.5px;padding-bottom:14.5px}.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{padding:10px 15px;margin-top:10.5px;margin-right:-15px;margin-bottom:10.5px;margin-left:-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)}@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;height:29px;vertical-align:middle}.navbar-form .form-control-feedback{height:29px;line-height:29px}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.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;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;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;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border: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-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:10.5px;margin-bottom:10.5px}.navbar-btn.btn-sm{margin-top:13px;margin-bottom:13px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:14.5px;margin-bottom:14.5px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left: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{color:#555;background-color:#e7e7e7}@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-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9aa8b1}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9aa8b1}.navbar-inverse .navbar-nav>li>a{color:#9aa8b1}.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{color:#fff;background-color:#080808}@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:#9aa8b1}.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:#9aa8b1}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9aa8b1}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:21px;font-weight:600;list-style:none;background-color:transparent;border-bottom:1px solid #eaeaea;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li>a:hover{text-decoration:none}.breadcrumb>li+li:before{padding:0 5px;font-family:ss-nutanix;font-size:60%;font-weight:400;color:#ccc;content:"\079\00a0"}.breadcrumb>.active{color:inherit}.pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.57142857;color:#26bbf0;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a .glyphicon,.pagination>li>span .glyphicon{font-size:70%}.pagination>li>a .glyphicon::before,.pagination>li>span .glyphicon::before{vertical-align:middle}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:1;color:#0d8ebc;background-color:#d4f1fc;border-color:#26bbf0}.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;cursor:default;background-color:#26bbf0;border-color:#26bbf0}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#9aa8b1;cursor:not-allowed;background-color:#fff;border-color:#ddd}.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-top-left-radius:5px;border-bottom-left-radius:5px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:5px;border-bottom-right-radius:5px}.pagination-sm>li>a,.pagination-sm>li>span{padding:3px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:21px 0;text-align:center;list-style:none}.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:4px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#d4f1fc;border-color:#26bbf0}.pager .next .glyphicon,.pager .previous .glyphicon{font-size:70%;font-weight:400}.pager .next .glyphicon:before,.pager .previous .glyphicon:before{vertical-align:middle}.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:#9aa8b1;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#9aa8b1}.label-default[href]:hover,.label-default[href]:focus{background-color:#7d8f9b}.label-primary{background-color:#26bbf0}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#0fa0d4}.label-success{background-color:#c2d5a0}.label-success[href]:hover,.label-success[href]:focus{background-color:#abc57d}.label-info{background-color:#89949b}.label-info[href]:hover,.label-info[href]:focus{background-color:#6f7b82}.label-warning{background-color:#ffd055}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ffc222}.label-danger{background-color:#cf6a6d}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c34347}.badge{display:inline-block;min-width:10px;padding:4px 7px 2px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#9aa8b1;border-radius:10px}.badge.primary{background-color:#26bbf0}.badge.success{background-color:#c2d5a0}.badge.warning{background-color:#ffd055}.badge.danger{background-color:#cf6a6d}.badge.info{background-color:#89949b}.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:#26bbf0;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#c6cdd1}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#aab4ba}.container .jumbotron{border-radius:5px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:21px;line-height:1.57142857;background-color:#fff;border:1px solid #ddd;border-radius:4px}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#26bbf0}.thumbnail .caption{padding:9px;color:#6f787e}.alert{padding:15px;margin-bottom:21px;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>a{text-decoration:underline}.alert>a:hover{text-decoration:none}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#6eb17b;background-color:#d5e3bf;border-color:#d2dbad}.alert-success hr{border-top-color:#c8d39b}.alert-success .alert-link{color:#539960}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#d9a92b;background-color:#ffe49c;border-color:#ffc883}.alert-warning hr{border-top-color:#ffbd69}.alert-warning .alert-link{color:#b18920}.alert-danger{color:#a9484b;background-color:#f1d3d4;border-color:#ebc0c8}.alert-danger hr{border-top-color:#e5acb8}.alert-danger .alert-link{color:#85393b}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-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{height:23.1px;margin-bottom:21px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);box-shadow:inset 0 0 0 1px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:23.1px;color:#fff;text-align:center;background-color:#26bbf0;-webkit-box-shadow:inset 0 1px 0 0 rgba(0,0,0,.2),inset -1px -1px 0 0 rgba(0,0,0,.2);box-shadow:inset 0 1px 0 0 rgba(0,0,0,.2),inset -1px -1px 0 0 rgba(0,0,0,.2);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar:first-child{border-radius:4px 0 0 4px;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.2);box-shadow:inset 0 0 0 1px rgba(0,0,0,.2)}.progress-striped .progress-bar,.progress-bar-striped{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:-o-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);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{min-width:30px;color:#9aa8b1;background-color:transparent;background-image:none;-webkit-box-shadow:none;box-shadow:none}.progress-bar-success{background-color:#c2d5a0}.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:-o-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:#89949b}.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:-o-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:#ffd055}.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:-o-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:#cf6a6d}.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:-o-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{padding-left:0;margin-bottom:20px}.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-left-radius:4px;border-top-right-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{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#9aa8b1;background-color:#c6cdd1}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#9aa8b1}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#26bbf0;border-color:#26bbf0}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e5f7fd}.list-group-item-success{color:#6eb17b;background-color:#d5e3bf}a.list-group-item-success{color:#6eb17b}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#6eb17b;background-color:#cadbad}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#6eb17b;border-color:#6eb17b}.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:#d9a92b;background-color:#ffe49c}a.list-group-item-warning{color:#d9a92b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#d9a92b;background-color:#ffdd83}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#d9a92b;border-color:#d9a92b}.list-group-item-danger{color:#a9484b;background-color:#f1d3d4}a.list-group-item-danger{color:#a9484b}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a9484b;background-color:#ebc0c1}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a9484b;border-color:#a9484b}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:21px;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-left-radius:3px;border-top-right-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-left-radius:3px;border-top-right-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}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-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{margin-bottom:0;border:0}.panel-group{margin-bottom:21px}.panel-group .panel{margin-bottom:0;border-radius:4px}.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:#343536;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#343536}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#26bbf0}.panel-primary>.panel-heading{color:#fff;background-color:#26bbf0;border-color:#26bbf0}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#26bbf0}.panel-primary>.panel-heading .badge{color:#26bbf0;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#26bbf0}.panel-success{border-color:#d2dbad}.panel-success>.panel-heading{color:#6eb17b;background-color:#d5e3bf;border-color:#d2dbad}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d2dbad}.panel-success>.panel-heading .badge{color:#d5e3bf;background-color:#6eb17b}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d2dbad}.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-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#ffc883}.panel-warning>.panel-heading{color:#d9a92b;background-color:#ffe49c;border-color:#ffc883}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ffc883}.panel-warning>.panel-heading .badge{color:#ffe49c;background-color:#d9a92b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ffc883}.panel-danger{border-color:#ebc0c8}.panel-danger>.panel-heading{color:#a9484b;background-color:#f1d3d4;border-color:#ebc0c8}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebc0c8}.panel-danger>.panel-heading .badge{color:#f1d3d4;background-color:#a9484b}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebc0c8}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.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:5px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:11.2px;font-weight:700;line-height:1;color:#000}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate3d(0,-25%,0);-o-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px;border-radius:4px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:5px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.57px;padding:15px;background-color:#343536;border-bottom:1px solid #e5e5e5;border-radius:4px 4px 0 0}.modal-header .close{margin-top:2px;color:#9aa8b1}.modal-title{margin:0;line-height:1.57142857;color:#9aa8b1}.modal-body{position:relative;padding:15px}.modal-footer{padding:14px 15px;text-align:right;background-color:#f9f9f9;border-top:1px solid #e5e5e5;border-radius:0 0 4px 4px}.modal-footer .btn+.btn{margin-bottom:0;margin-left:10px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@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:1070;display:block;font-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.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{right:5px;bottom:0;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:1060;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:5px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:4px 4px 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{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";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{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-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;bottom:0;left:0;width:8%;font-size:14px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.right{right:0;left:auto}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.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%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-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%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;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;font-size:14px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd: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{display:table;content:" "}.clearfix:after,.dl-horizontal dd: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-right:auto;margin-left: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;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{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 (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!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:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!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:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!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 (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!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}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
\ No newline at end of file
diff --git a/experimental/hello-prism/app/public/css/style.css b/experimental/hello-prism/app/public/css/style.css
deleted file mode 100755
index 41e1626..0000000
--- a/experimental/hello-prism/app/public/css/style.css
+++ /dev/null
@@ -1,5 +0,0 @@
-.l-server-table {
-  width: 50%;
-  margin: 0 auto;
-  margin-top: 100px;
-}
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.eot b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.eot
deleted file mode 100755
index 412455d..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.eot and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.svg b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.svg
deleted file mode 100755
index 117ef91..0000000
--- a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.svg
+++ /dev/null
@@ -1,3268 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.ttf b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.ttf
deleted file mode 100755
index aab38f7..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.ttf and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.woff b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.woff
deleted file mode 100755
index 17889e8..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Bold-webfont.woff and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.eot b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.eot
deleted file mode 100755
index cd34742..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.eot and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.svg b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.svg
deleted file mode 100755
index 3c4f6b4..0000000
--- a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.svg
+++ /dev/null
@@ -1,3269 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.ttf b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.ttf
deleted file mode 100755
index 032341e..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.ttf and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.woff b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.woff
deleted file mode 100755
index f9a5f68..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Medium-webfont.woff and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.eot b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.eot
deleted file mode 100755
index 87f22e6..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.eot and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.svg b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.svg
deleted file mode 100755
index ef7759a..0000000
--- a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.svg
+++ /dev/null
@@ -1,3269 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.ttf b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.ttf
deleted file mode 100755
index 8c51cbd..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.ttf and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.woff b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.woff
deleted file mode 100755
index 48edb81..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Regular-webfont.woff and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.eot b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.eot
deleted file mode 100755
index 19f0c38..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.eot and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.svg b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.svg
deleted file mode 100755
index 3fd0dbc..0000000
--- a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.svg
+++ /dev/null
@@ -1,3269 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.ttf b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.ttf
deleted file mode 100755
index 2d2b99e..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.ttf and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.woff b/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.woff
deleted file mode 100755
index fd4156d..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ProximaNovaSoft-Semibold-webfont.woff and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.eot b/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.eot
deleted file mode 100755
index 4a4ca86..0000000
Binary files a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.eot and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.svg b/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.svg
deleted file mode 100755
index 265491f..0000000
--- a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.svg
+++ /dev/null
@@ -1,229 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.ttf b/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.ttf
deleted file mode 100755
index 67fa00b..0000000
Binary files a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.ttf and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.woff b/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.woff
deleted file mode 100755
index 8c54182..0000000
Binary files a/experimental/hello-prism/app/public/fonts/glyphicons-halflings-regular.woff and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.eot b/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.eot
deleted file mode 100755
index 37cfc82..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.eot and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.svg b/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.svg
deleted file mode 100755
index 8df5c35..0000000
--- a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.svg
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.ttf b/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.ttf
deleted file mode 100755
index d949bcf..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.ttf and /dev/null differ
diff --git a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.woff b/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.woff
deleted file mode 100755
index abc79c4..0000000
Binary files a/experimental/hello-prism/app/public/fonts/ss-nutanix-regular-webfont.woff and /dev/null differ
diff --git a/experimental/hello-prism/app/public/images/logo.jpeg b/experimental/hello-prism/app/public/images/logo.jpeg
deleted file mode 100755
index e9c28d8..0000000
Binary files a/experimental/hello-prism/app/public/images/logo.jpeg and /dev/null differ
diff --git a/experimental/hello-prism/app/public/js/bootstrap.min.js b/experimental/hello-prism/app/public/js/bootstrap.min.js
deleted file mode 100755
index fd6392e..0000000
--- a/experimental/hello-prism/app/public/js/bootstrap.min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v1.0 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.2.0",d.prototype.close=function(b){function c(){f.detach().trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",c).emulateTransitionEnd(150):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.2.0",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),d[e](null==f[b]?this.options[b]:f[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b).on("keydown.bs.carousel",a.proxy(this.keydown,this)),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.2.0",c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},c.prototype.keydown=function(a){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.to=function(b){var c=this,d=this.getItemIndex(this.$active=this.$element.find(".item.active"));return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}if(e.hasClass("active"))return this.sliding=!1;var j=e[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:g});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,f&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(e)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:g});return a.support.transition&&this.$element.hasClass("slide")?(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one("bsTransitionEnd",function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger(m)),f&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b);!e&&f.toggle&&"show"==b&&(b=!b),e||d.data("bs.collapse",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};c.VERSION="3.2.0",c.DEFAULTS={toggle:!0},c.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},c.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var c=a.Event("show.bs.collapse");if(this.$element.trigger(c),!c.isDefaultPrevented()){var d=this.$parent&&this.$parent.find("> .panel > .in");if(d&&d.length){var e=d.data("bs.collapse");if(e&&e.transitioning)return;b.call(d,"hide"),e||d.data("bs.collapse",null)}var f=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[f](0),this.transitioning=1;var g=function(){this.$element.removeClass("collapsing").addClass("collapse in")[f](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return g.call(this);var h=a.camelCase(["scroll",f].join("-"));this.$element.one("bsTransitionEnd",a.proxy(g,this)).emulateTransitionEnd(350)[f](this.$element[0][h])}}},c.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},c.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var d=a.fn.collapse;a.fn.collapse=b,a.fn.collapse.Constructor=c,a.fn.collapse.noConflict=function(){return a.fn.collapse=d,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(c){var d,e=a(this),f=e.attr("data-target")||c.preventDefault()||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),g=a(f),h=g.data("bs.collapse"),i=h?"toggle":e.data(),j=e.attr("data-parent"),k=j&&a(j);h&&h.transitioning||(k&&k.find('[data-toggle="collapse"][data-parent="'+j+'"]').not(e).addClass("collapsed"),e[g.hasClass("in")?"addClass":"removeClass"]("collapsed")),b.call(g,i)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.2.0",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery);
\ No newline at end of file
diff --git a/nutanix-api-testing/js/jquery-1.12.3.min.js b/nutanix-api-testing/js/jquery-1.12.3.min.js
deleted file mode 100755
index dad4f0a..0000000
--- a/nutanix-api-testing/js/jquery-1.12.3.min.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/*! jQuery v1.12.3 | (c) jQuery Foundation | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.3",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0;
-}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="  
a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:l.htmlSerialize?[0,"",""]:[1,"X
","
"]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?""!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("