From 446b9cb33556abb663c02554153e80dfc531d79a Mon Sep 17 00:00:00 2001 From: Abhinav Sinha Date: Wed, 15 Nov 2017 18:31:01 +0530 Subject: [PATCH 001/176] Pod priority to be enabled for kubelet The document only mentioned enabling the feature for API and Scheduler but it needs to be enabled for kubelet as well --- docs/concepts/configuration/pod-priority-preemption.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/concepts/configuration/pod-priority-preemption.md b/docs/concepts/configuration/pod-priority-preemption.md index ce30c79c67..fa7dbc54ee 100644 --- a/docs/concepts/configuration/pod-priority-preemption.md +++ b/docs/concepts/configuration/pod-priority-preemption.md @@ -39,8 +39,7 @@ The following sections provide more information about these steps. ## Enabling priority and preemption Pod priority and preemption is disabled by default in Kubernetes 1.8. -To enable the feature, set this command-line flag for the API server -and the scheduler: +To enable the feature, set this command-line flag for the API server,scheduler and kubelet: ``` --feature-gates=PodPriority=true From 05af66ef77a3fc7464687139d7b6963f2e9b540b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=87=E6=85=95?= Date: Tue, 17 Oct 2017 10:11:59 +0800 Subject: [PATCH 002/176] update hostport doc --- docs/concepts/configuration/overview.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/concepts/configuration/overview.md b/docs/concepts/configuration/overview.md index f9151eca8c..27fbc350eb 100644 --- a/docs/concepts/configuration/overview.md +++ b/docs/concepts/configuration/overview.md @@ -45,7 +45,9 @@ This is a living document. If you think of something that is not on this list bu 2. Create a service; 3. Then scale up the replication controller. -- Don't use `hostPort` unless it is absolutely necessary (for example: for a node daemon). It specifies the port number to expose on the host. When you bind a Pod to a `hostPort`, there are a limited number of places to schedule a pod due to port conflicts— you can only schedule as many such Pods as there are nodes in your Kubernetes cluster. +- Don't use `hostPort` unless it is absolutely necessary (for example: for a node daemon). It specifies the port number to expose on the host. When you bind a Pod to a `hostPort`, there are a limited number of places to schedule a pod due to port conflicts. The conflict comes from being limited to a single `hostIP:hostPort:protocol` combination. Different `hostIP:hostPort:protocol` combinations mean different requirements. For example, a pod that binds tcp 80 host port on 127.0.0.1 does not conflict with another pod that binds tcp 80 port on 127.0.0.2. + + Special notes on hostIP and protocol, if you don't specify the hostIP and protocol explicitly, kubernetes will give you 0.0.0.0 and tcp as default hostIP and protocol. And "0.0.0.0" is a wildcard hostIP that will occupy all <_,hostPort,protocol> on the node the pod is scheduled on. Specifically, it will occupy all for all IPs on the host. If you only need access to the port for debugging purposes, you can use the [kubectl proxy and apiserver proxy](/docs/tasks/access-kubernetes-api/http-proxy-access-api/) or [kubectl port-forward](/docs/tasks/access-application-cluster/port-forward-access-application-cluster/). You can use a [Service](/docs/concepts/services-networking/service/) object for external service access. From 582a59e024b54368854e5b1bb8df790e2e114b2e Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Mon, 20 Nov 2017 17:05:42 +0530 Subject: [PATCH 003/176] (distribute creds securely): change file name to links --- .../distribute-credentials-secure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/tasks/inject-data-application/distribute-credentials-secure.md b/docs/tasks/inject-data-application/distribute-credentials-secure.md index c85532fe86..b48f22ab97 100644 --- a/docs/tasks/inject-data-application/distribute-credentials-secure.md +++ b/docs/tasks/inject-data-application/distribute-credentials-secure.md @@ -37,7 +37,7 @@ username and password: 1. Create the Secret - kubectl create -f secret.yaml + kubectl create -f https://k8s.io/docs/tasks/inject-data-application/secret.yaml **Note:** If you want to skip the Base64 encoding step, you can create a Secret by using the `kubectl create secret` command: @@ -81,7 +81,7 @@ Here is a configuration file you can use to create a Pod: 1. Create the Pod: - kubectl create -f secret-pod.yaml + kubectl create -f https://k8s.io/docs/tasks/inject-data-application/secret-pod.yaml 1. Verify that your Pod is running: @@ -128,7 +128,7 @@ Here is a configuration file you can use to create a Pod: 1. Create the Pod: - kubectl create -f secret-envars-pod.yaml + kubectl create -f https://k8s.io/docs/tasks/inject-data-application/secret-envars-pod.yaml 1. Verify that your Pod is running: From af064f5ce350ec002e086740b4f40c98ce017216 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Mon, 20 Nov 2017 18:39:16 +0530 Subject: [PATCH 004/176] fix PodPreset manifests Update the image in PodPreset manifest to use the real image, also removed the hard-coded namespace in manifest. --- .../inject-data-application/podpreset-allow-db-merged.yaml | 2 +- docs/tasks/inject-data-application/podpreset-allow-db.yaml | 1 - docs/tasks/inject-data-application/podpreset-conflict-pod.yaml | 2 +- .../inject-data-application/podpreset-conflict-preset.yaml | 1 - docs/tasks/inject-data-application/podpreset-merged.yaml | 2 +- docs/tasks/inject-data-application/podpreset-multi-merged.yaml | 2 +- docs/tasks/inject-data-application/podpreset-pod.yaml | 2 +- docs/tasks/inject-data-application/podpreset-preset.yaml | 1 - docs/tasks/inject-data-application/podpreset-proxy.yaml | 1 - 9 files changed, 5 insertions(+), 9 deletions(-) diff --git a/docs/tasks/inject-data-application/podpreset-allow-db-merged.yaml b/docs/tasks/inject-data-application/podpreset-allow-db-merged.yaml index 73d93312fa..0cf950c803 100644 --- a/docs/tasks/inject-data-application/podpreset-allow-db-merged.yaml +++ b/docs/tasks/inject-data-application/podpreset-allow-db-merged.yaml @@ -10,7 +10,7 @@ metadata: spec: containers: - name: website - image: ecorp/website + image: nginx volumeMounts: - mountPath: /cache name: cache-volume diff --git a/docs/tasks/inject-data-application/podpreset-allow-db.yaml b/docs/tasks/inject-data-application/podpreset-allow-db.yaml index 96f6dbfe20..97203fdb9c 100644 --- a/docs/tasks/inject-data-application/podpreset-allow-db.yaml +++ b/docs/tasks/inject-data-application/podpreset-allow-db.yaml @@ -2,7 +2,6 @@ apiVersion: settings.k8s.io/v1alpha1 kind: PodPreset metadata: name: allow-database - namespace: myns spec: selector: matchLabels: diff --git a/docs/tasks/inject-data-application/podpreset-conflict-pod.yaml b/docs/tasks/inject-data-application/podpreset-conflict-pod.yaml index 9061b9f5e8..cf201b2f06 100644 --- a/docs/tasks/inject-data-application/podpreset-conflict-pod.yaml +++ b/docs/tasks/inject-data-application/podpreset-conflict-pod.yaml @@ -8,7 +8,7 @@ metadata: spec: containers: - name: website - image: ecorp/website + image: nginx volumeMounts: - mountPath: /cache name: cache-volume diff --git a/docs/tasks/inject-data-application/podpreset-conflict-preset.yaml b/docs/tasks/inject-data-application/podpreset-conflict-preset.yaml index ab70b14d28..a2ad96c48a 100644 --- a/docs/tasks/inject-data-application/podpreset-conflict-preset.yaml +++ b/docs/tasks/inject-data-application/podpreset-conflict-preset.yaml @@ -2,7 +2,6 @@ apiVersion: settings.k8s.io/v1alpha1 kind: PodPreset metadata: name: allow-database - namespace: myns spec: selector: matchLabels: diff --git a/docs/tasks/inject-data-application/podpreset-merged.yaml b/docs/tasks/inject-data-application/podpreset-merged.yaml index 0a5dfce0b5..97c022c86c 100644 --- a/docs/tasks/inject-data-application/podpreset-merged.yaml +++ b/docs/tasks/inject-data-application/podpreset-merged.yaml @@ -10,7 +10,7 @@ metadata: spec: containers: - name: website - image: ecorp/website + image: nginx volumeMounts: - mountPath: /cache name: cache-volume diff --git a/docs/tasks/inject-data-application/podpreset-multi-merged.yaml b/docs/tasks/inject-data-application/podpreset-multi-merged.yaml index dd6a7197ef..7fcaae62e3 100644 --- a/docs/tasks/inject-data-application/podpreset-multi-merged.yaml +++ b/docs/tasks/inject-data-application/podpreset-multi-merged.yaml @@ -11,7 +11,7 @@ metadata: spec: containers: - name: website - image: ecorp/website + image: nginx volumeMounts: - mountPath: /cache name: cache-volume diff --git a/docs/tasks/inject-data-application/podpreset-pod.yaml b/docs/tasks/inject-data-application/podpreset-pod.yaml index 82c590a924..b6b4e60d6e 100644 --- a/docs/tasks/inject-data-application/podpreset-pod.yaml +++ b/docs/tasks/inject-data-application/podpreset-pod.yaml @@ -8,7 +8,7 @@ metadata: spec: containers: - name: website - image: ecorp/website + image: nginx ports: - containerPort: 80 diff --git a/docs/tasks/inject-data-application/podpreset-preset.yaml b/docs/tasks/inject-data-application/podpreset-preset.yaml index c5d34437f2..f300289c82 100644 --- a/docs/tasks/inject-data-application/podpreset-preset.yaml +++ b/docs/tasks/inject-data-application/podpreset-preset.yaml @@ -2,7 +2,6 @@ apiVersion: settings.k8s.io/v1alpha1 kind: PodPreset metadata: name: allow-database - namespace: myns spec: selector: matchLabels: diff --git a/docs/tasks/inject-data-application/podpreset-proxy.yaml b/docs/tasks/inject-data-application/podpreset-proxy.yaml index 20dab81f36..d854475ac2 100644 --- a/docs/tasks/inject-data-application/podpreset-proxy.yaml +++ b/docs/tasks/inject-data-application/podpreset-proxy.yaml @@ -2,7 +2,6 @@ apiVersion: settings.k8s.io/v1alpha1 kind: PodPreset metadata: name: proxy - namespace: myns spec: selector: matchLabels: From 71ce47a0c9ea1a97fa9ac7eb99664f4350d14308 Mon Sep 17 00:00:00 2001 From: Ivan Font Date: Tue, 21 Nov 2017 13:06:17 -0800 Subject: [PATCH 005/176] Clarify use of APIService CA bundle when using API --- .../tasks/access-kubernetes-api/setup-extension-api-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md index bd9404a1b4..f394e9e1d1 100644 --- a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md +++ b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md @@ -23,7 +23,7 @@ Setting up an extension API server to work the aggregation layer allows the Kube ## Setup an extension api-server to work with the aggregation layer -The following steps describe how to set up an extension-apiserver *at a high level*. For a concrete example of how they can be implemented, you can look at the [sample-apiserver](https://github.com/kubernetes/sample-apiserver/blob/master/README.md) in the Kubernetes repo. +The following steps describe how to set up an extension-apiserver *at a high level*. These steps apply regardless if you're using YAML configs or using APIs. An attempt is made to specifically identify any differences between the two. For a concrete example of how they can be implemented using YAML configs, you can look at the [sample-apiserver](https://github.com/kubernetes/sample-apiserver/blob/master/README.md) in the Kubernetes repo. Alternatively, you can use an existing 3rd party solution, such as [apiserver-builder](https://github.com/Kubernetes-incubator/apiserver-builder/blob/master/README.md), which should generate a skeleton and automate all of the following steps for you. @@ -38,7 +38,7 @@ Alternatively, you can use an existing 3rd party solution, such as [apiserver-bu 1. Create a Kubernetes service account in your namespace. 1. Create a Kubernetes cluster role for the operations you want to allow on your resources. 1. Create a Kubernetes cluster role binding from the default service account in your namespace to the cluster role you just created. -1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservce. This should not be namespaced. +1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservice. This should not be namespaced. If using the [kube-aggregator API](https://github.com/kubernetes/kube-aggregator/blob/f44a75f488b92e99f8cd13640ef03a6aeda7be48/pkg/apis/apiregistration/types.go#L55-L56), only pass in the PEM encoded CA bundle because the base 64 encoding is done for you. 1. Use kubectl to get your resource. It should return "No resources found." Which means that everything worked but you currently have no objects of that resource type created yet. {% endcapture %} From 877b1abf98e2ad800ef74e0df234baf62838d24b Mon Sep 17 00:00:00 2001 From: Ivan Font Date: Wed, 22 Nov 2017 15:15:56 -0800 Subject: [PATCH 006/176] Update URL to only point to kube-aggregator repo --- .../tasks/access-kubernetes-api/setup-extension-api-server.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md index f394e9e1d1..3f7c352a12 100644 --- a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md +++ b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md @@ -38,7 +38,7 @@ Alternatively, you can use an existing 3rd party solution, such as [apiserver-bu 1. Create a Kubernetes service account in your namespace. 1. Create a Kubernetes cluster role for the operations you want to allow on your resources. 1. Create a Kubernetes cluster role binding from the default service account in your namespace to the cluster role you just created. -1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservice. This should not be namespaced. If using the [kube-aggregator API](https://github.com/kubernetes/kube-aggregator/blob/f44a75f488b92e99f8cd13640ef03a6aeda7be48/pkg/apis/apiregistration/types.go#L55-L56), only pass in the PEM encoded CA bundle because the base 64 encoding is done for you. +1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservice. This should not be namespaced. If using the [kube-aggregator API](https://github.com/kubernetes/kube-aggregator/), only pass in the PEM encoded CA bundle because the base 64 encoding is done for you. 1. Use kubectl to get your resource. It should return "No resources found." Which means that everything worked but you currently have no objects of that resource type created yet. {% endcapture %} @@ -46,7 +46,7 @@ Alternatively, you can use an existing 3rd party solution, such as [apiserver-bu {% capture whatsnext %} * If you haven't already, [configure the aggregation layer](/docs/tasks/access-kubernetes-api/configure-aggregation-layer/) and enable the apiserver flags. -* For a high level overview, see [Extending the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation/). +* For a high level overview, see [Extending the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation). * Learn how to [Extend the Kubernetes API Using Custom Resource Definitions](/docs/tasks/access-kubernetes-api/extend-api-custom-resource-definitions/). {% endcapture %} From c688681d3403db3f8aeabca37faee3c2edd7d044 Mon Sep 17 00:00:00 2001 From: William Chang Date: Wed, 22 Nov 2017 18:19:29 -0800 Subject: [PATCH 007/176] Update developing-cloud-controller-manager.md --- .../administer-cluster/developing-cloud-controller-manager.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/developing-cloud-controller-manager.md b/docs/tasks/administer-cluster/developing-cloud-controller-manager.md index c84b56dad5..9a5d946da6 100644 --- a/docs/tasks/administer-cluster/developing-cloud-controller-manager.md +++ b/docs/tasks/administer-cluster/developing-cloud-controller-manager.md @@ -17,7 +17,7 @@ can develop their features independantly from the core Kubernetes release cycles Before going into how to build your own cloud controller manager, some background on how it works under the hood is helpful. The cloud controller manager is code from `kube-controller-manager` utilizing Go interfaces to allow implementations from any cloud to be plugged in. Most of the scaffolding and generic controller implementations will be in core, but it will always exec out to the cloud interfaces it is provided, so long as the [cloud provider interface](https://github.com/kubernetes/kubernetes/blob/master/pkg/cloudprovider/cloud.go#L29-L50) is satisifed. -To dive a little deeper into implementation details, all cloud controller managers will import packages from Kubernetes core, the only difference being each project will register their own cloud providers by calling [cloudprovider.RegisterCloudProvier](https://github.com/kubernetes/kubernetes/blob/master/pkg/cloudprovider/plugins.go#L42-L52) where a global variable of available cloud providers is updated. +To dive a little deeper into implementation details, all cloud controller managers will import packages from Kubernetes core, the only difference being each project will register their own cloud providers by calling [cloudprovider.RegisterCloudProvider](https://github.com/kubernetes/kubernetes/blob/master/pkg/cloudprovider/plugins.go#L42-L52) where a global variable of available cloud providers is updated. ## Developing From e9ad259492543749487a29b6a2dd34f0bde2ffac Mon Sep 17 00:00:00 2001 From: lichuqiang Date: Thu, 23 Nov 2017 13:42:33 +0800 Subject: [PATCH 008/176] translate doc labels-annotations-taints into Chinese --- .../reference/labels-annotations-taints.md | 104 ++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 cn/docs/reference/labels-annotations-taints.md diff --git a/cn/docs/reference/labels-annotations-taints.md b/cn/docs/reference/labels-annotations-taints.md new file mode 100644 index 0000000000..fbeffb9587 --- /dev/null +++ b/cn/docs/reference/labels-annotations-taints.md @@ -0,0 +1,104 @@ +--- +title: 知名标签(Label)、注解(Annotation)和 Taints +--- + +Kubernetes 保留了 kubernetes.io 名字空间下的所有标签和注解。 本文描述了知名的 +kubernetes.io 标签和注解。 + +本文既作为这些标签和注解值的参考,也就这些标签和注解的赋值进行了说明。 + +**目录:** + + +- [知名标签、注解和 Taints](#well-known-labels-annotations-and-taints) + - [beta.kubernetes.io/arch](#betakubernetesioarch) + - [beta.kubernetes.io/os](#betakubernetesioos) + - [kubernetes.io/hostname](#kubernetesiohostname) + - [beta.kubernetes.io/instance-type](#betakubernetesioinstance-type) + - [failure-domain.beta.kubernetes.io/region](#failure-domainbetakubernetesioregion) + - [failure-domain.beta.kubernetes.io/zone](#failure-domainbetakubernetesiozone) + + + + +## beta.kubernetes.io/arch + +示例:`beta.kubernetes.io/arch=amd64` + +用于:节点 + +Kubelet 用 Go 中定义的 `runtime.GOARCH` 值来填充该标签。 这在诸如混用 arm 和 x86 节点的情况下很有用。 + +## beta.kubernetes.io/os + +示例:`beta.kubernetes.io/os=linux` + +用于:节点 + +Kubelet 用该 Go 中定义的 `runtime.GOOS` 值来填充该标签。 这在集群中存在不同操作系统的节点时很有用(尽管当前 Kubernetes 只支持 Linux 操作系统)。 + +## kubernetes.io/hostname + +示例:`kubernetes.io/hostname=ip-172-20-114-199.ec2.internal` + +用于:节点 + +Kubelet 用 hostname 值来填充该标签。 注意:可以通过向 kubelet 传入 `--hostname-override` +参数对 “真正的” hostname 进行修改。 + +## beta.kubernetes.io/instance-type + +示例:`beta.kubernetes.io/instance-type=m3.medium` + +用于:节点 + +Kubelet 用 `cloudprovider` 中定义的实例类型来填充该标签。 未使用 `cloudprovider` 时不会设置该标签。 +该标签在想要将某些负载定向到特定实例类型的节点上时会很有用,但通常用户更希望依赖 Kubernetes 调度器来执行基于资源的调度,所以用户应该致力于基于属性而不是实例类型来进行调度(例如:需要一个 CPU,而不是 `g2.2xlarge`)。 + + +## failure-domain.beta.kubernetes.io/region + +参考 [failure-domain.beta.kubernetes.io/zone](#failure-domainbetakubernetesiozone). + +## failure-domain.beta.kubernetes.io/zone + +示例: + +`failure-domain.beta.kubernetes.io/region=us-east-1` + +`failure-domain.beta.kubernetes.io/zone=us-east-1c` + +用于:节点、PersistentVolume + +用于节点: Kubelet 用 `cloudprovider` 中定义的区域(zone)信息来填充该标签。 未使用 `cloudprovider` +时不会设置该标签,但如果该标签在你的拓扑中有意义的话,应该考虑设置。 + +用于 PersistentVolume:在 GCE 和 AWS 中,`PersistentVolumeLabel` 准入控制器会自动添加区域标签。 + +在单区的集群中,Kubernetes 会自动将同一副本控制器或服务下的 pod 分散到不同的节点上 (以降低故障的影响)。 +在多区的集群中,这种分散的行为扩展到跨区的层面 (以降低区域故障的影响)。 跨区分散通过 SelectorSpreadPriority +来实现。 + +这是一种尽力而为(best-effort)的处置方式, 如果集群中的区域是异构的 (例如:不同区域之间的节点数量、 +节点类型或 pod 资源需求不同),可能使得 pod 在各区域间无法均匀分布。 如有需要,用户可以使用同质的区域 +(节点数量和类型相同) 来减小 pod 分布不均的可能性。 + +由于卷不能跨区域挂载(attach),调度器 (通过 VolumeZonePredicate 断言) 也会保证需要特定卷的 pod +被调度到卷所在的区域中。 + + +区域和地域(region)的实际值无关紧要,两者的层次含义也没有严格的定义。 最终期望是,除非整个地域故障, +否则某一区域节点的故障不应该影响到其他区域的节点。 例如,通常区域间应该避免共用同一个网络交换机。 +具体的规划取决于特定的基础设备—— three-rack 设备所选择的设置与多数据中心截然不同。 + +如果 `PersistentVolumeLabel` 准入控制器不支持自动为 PersistentVolume 打标签,且用户希望防止 pod +跨区域进行卷的挂载,应考虑手动打标签 (或对 `PersistentVolumeLabel` 增加支持)。 如果用户的基础设施没有这种约束,则不需要为卷添加区域标签。 + + + + + + + +[![分析](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/api-reference/labels-annotations-taints.md?pixel)]() + From 3dc4ccb62c2a2afde0241f9a68c2b414ac5b0f8c Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Thu, 23 Nov 2017 12:08:27 +0530 Subject: [PATCH 009/176] Add PodPreset basic usage instructions --- .../inject-data-application/podpreset.md | 32 +++++++++++++++++-- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/docs/tasks/inject-data-application/podpreset.md b/docs/tasks/inject-data-application/podpreset.md index d2571ab844..51357494a7 100644 --- a/docs/tasks/inject-data-application/podpreset.md +++ b/docs/tasks/inject-data-application/podpreset.md @@ -20,18 +20,44 @@ You can get an overview of PodPresets at This is a simple example to show how a Pod spec is modified by the Pod Preset. -**User submitted pod spec:** +{% include code.html language="yaml" file="podpreset-preset.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-preset.yaml" %} + +1. Create above PodPreset + + kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-preset.yaml + + +1. See the created PodPreset + + $ kubectl get podpreset + NAME AGE + allow-database 1m + + Create above PodPreset, now any pod that has label `role: frontend` will have this + PodPreset acted upon. {% include code.html language="yaml" file="podpreset-pod.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-pod.yaml" %} -**Example Pod Preset:** +1. Create Pod + + kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pod.yaml + +1. List the running Pods: + + $ kubectl get pods + NAME READY STATUS RESTARTS AGE + website 1/1 Running 0 4m -{% include code.html language="yaml" file="podpreset-preset.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-preset.yaml" %} **Pod spec after admission controller:** {% include code.html language="yaml" file="podpreset-merged.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-merged.yaml" %} +To see above output, run following command + + kubectl get pod website -o yaml + + ### Pod Spec with `ConfigMap` Example This is an example to show how a Pod spec is modified by the Pod Preset From 8ae0bd2c14483c8c3a7240a28c67c204c47e8d74 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Thu, 23 Nov 2017 03:00:55 -0500 Subject: [PATCH 010/176] Clarify webhook URL may not include parameters --- docs/admin/authorization/webhook.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/admin/authorization/webhook.md b/docs/admin/authorization/webhook.md index a0ba0f8e38..f451a0d569 100644 --- a/docs/admin/authorization/webhook.md +++ b/docs/admin/authorization/webhook.md @@ -31,8 +31,10 @@ A configuration example which uses HTTPS client auth: clusters: - name: name-of-remote-authz-service cluster: - certificate-authority: /path/to/ca.pem # CA for verifying the remote service. - server: https://authz.example.com/authorize # URL of remote service to query. Must use 'https'. + # CA for verifying the remote service. + certificate-authority: /path/to/ca.pem + # URL of remote service to query. Must use 'https'. May not include parameters. + server: https://authz.example.com/authorize # users refers to the API Server's webhook configuration. users: From 4c083fc73e58b9c800f860cf9c2f8625f82c48d0 Mon Sep 17 00:00:00 2001 From: Qiming Date: Thu, 23 Nov 2017 20:51:55 +0800 Subject: [PATCH 011/176] Update podpreset.md --- .../inject-data-application/podpreset.md | 40 +++++++++++-------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/docs/tasks/inject-data-application/podpreset.md b/docs/tasks/inject-data-application/podpreset.md index 51357494a7..23fe195e30 100644 --- a/docs/tasks/inject-data-application/podpreset.md +++ b/docs/tasks/inject-data-application/podpreset.md @@ -22,41 +22,47 @@ Preset. {% include code.html language="yaml" file="podpreset-preset.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-preset.yaml" %} -1. Create above PodPreset +1. Create the PodPreset: - kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-preset.yaml +```shell +kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-preset.yaml +``` +1. Examine the created PodPreset: -1. See the created PodPreset +```shell +kubectl get podpreset +NAME AGE +allow-database 1m +``` - $ kubectl get podpreset - NAME AGE - allow-database 1m - - Create above PodPreset, now any pod that has label `role: frontend` will have this - PodPreset acted upon. + The new PodPreset will act upon any pod that has label `role: frontend`. {% include code.html language="yaml" file="podpreset-pod.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-pod.yaml" %} 1. Create Pod - kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pod.yaml +```shell +kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pod.yaml +``` 1. List the running Pods: - $ kubectl get pods - NAME READY STATUS RESTARTS AGE - website 1/1 Running 0 4m - +```shell +kubectl get pods +NAME READY STATUS RESTARTS AGE +website 1/1 Running 0 4m +``` **Pod spec after admission controller:** {% include code.html language="yaml" file="podpreset-merged.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-merged.yaml" %} -To see above output, run following command - - kubectl get pod website -o yaml +To see above output, run the following command: +```shell +kubectl get pod website -o yaml +``` ### Pod Spec with `ConfigMap` Example From 7df85566532e5c24adf10a1b00e297c425ec0019 Mon Sep 17 00:00:00 2001 From: Qiming Date: Thu, 23 Nov 2017 20:53:58 +0800 Subject: [PATCH 012/176] Update podpreset.md --- docs/tasks/inject-data-application/podpreset.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tasks/inject-data-application/podpreset.md b/docs/tasks/inject-data-application/podpreset.md index 23fe195e30..707a451eff 100644 --- a/docs/tasks/inject-data-application/podpreset.md +++ b/docs/tasks/inject-data-application/podpreset.md @@ -22,13 +22,13 @@ Preset. {% include code.html language="yaml" file="podpreset-preset.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-preset.yaml" %} -1. Create the PodPreset: +Create the PodPreset: ```shell kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-preset.yaml ``` -1. Examine the created PodPreset: +Examine the created PodPreset: ```shell kubectl get podpreset @@ -36,17 +36,17 @@ NAME AGE allow-database 1m ``` - The new PodPreset will act upon any pod that has label `role: frontend`. +The new PodPreset will act upon any pod that has label `role: frontend`. {% include code.html language="yaml" file="podpreset-pod.yaml" ghlink="/docs/tasks/inject-data-application/podpreset-pod.yaml" %} -1. Create Pod +Create a pod: ```shell kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pod.yaml ``` -1. List the running Pods: +List the running Pods: ```shell kubectl get pods From 1b315e2cceb44d7243f447839b1d190eb59ca8bc Mon Sep 17 00:00:00 2001 From: Abhinav Sinha Date: Thu, 23 Nov 2017 18:42:55 +0530 Subject: [PATCH 013/176] Formatting changes --- docs/concepts/configuration/pod-priority-preemption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/configuration/pod-priority-preemption.md b/docs/concepts/configuration/pod-priority-preemption.md index fa7dbc54ee..9ee15dafbf 100644 --- a/docs/concepts/configuration/pod-priority-preemption.md +++ b/docs/concepts/configuration/pod-priority-preemption.md @@ -39,7 +39,7 @@ The following sections provide more information about these steps. ## Enabling priority and preemption Pod priority and preemption is disabled by default in Kubernetes 1.8. -To enable the feature, set this command-line flag for the API server,scheduler and kubelet: +To enable the feature, set this command-line flag for the API server, scheduler and kubelet: ``` --feature-gates=PodPriority=true From ef8908fbb18ebefd6f5986a0241694932f5d6d18 Mon Sep 17 00:00:00 2001 From: stewart-yu Date: Thu, 23 Nov 2017 14:56:06 +0800 Subject: [PATCH 014/176] Update service.md --- docs/concepts/services-networking/service.md | 56 +++++++++----------- 1 file changed, 25 insertions(+), 31 deletions(-) diff --git a/docs/concepts/services-networking/service.md b/docs/concepts/services-networking/service.md index 8aae3f98a0..089fab27cf 100644 --- a/docs/concepts/services-networking/service.md +++ b/docs/concepts/services-networking/service.md @@ -117,7 +117,7 @@ subsets: - port: 9376 ``` -NOTE: Endpoint IPs may not be loopback (127.0.0.0/8), link-local +**NOTE:** Endpoint IPs may not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast (224.0.0.0/24). Accessing a `Service` without a selector works the same as if it had a selector. @@ -151,13 +151,11 @@ its pods, add appropriate selectors or endpoints and change the service `type`. Every node in a Kubernetes cluster runs a `kube-proxy`. `kube-proxy` is responsible for implementing a form of virtual IP for `Services` of type other than `ExternalName`. -In Kubernetes v1.0 the proxy was purely in userspace. In Kubernetes v1.1 an -iptables proxy was added, but was not the default operating mode. Since -Kubernetes v1.2, the iptables proxy is the default. - -As of Kubernetes v1.0, `Services` are a "layer 4" (TCP/UDP over IP) construct. -In Kubernetes v1.1 the `Ingress` API was added (beta) to represent "layer 7" -(HTTP) services. +In Kubernetes v1.0, `Services` are a "layer 4" (TCP/UDP over IP) construct, the +proxy was purely in userspace. In Kubernetes v1.1, the `Ingress` API was added +(beta) to represent "layer 7"(HTTP) services, iptables proxy was added too, +and become the default operating mode since Kubernetes v1.2. In Kubernetes v1.9-alpha, +ipvs proxy was added. ### Proxy-mode: userspace @@ -169,37 +167,20 @@ will be proxied to one of the `Service`'s backend `Pods` (as reported in `SessionAffinity` of the `Service`. Lastly, it installs iptables rules which capture traffic to the `Service`'s `clusterIP` (which is virtual) and `Port` and redirects that traffic to the proxy port which proxies the backend `Pod`. - -The net result is that any traffic bound for the `Service`'s IP:Port is proxied -to an appropriate backend without the clients knowing anything about Kubernetes -or `Services` or `Pods`. - -By default, the choice of backend is round robin. Client-IP based session affinity -can be selected by setting `service.spec.sessionAffinity` to `"ClientIP"` (the -default is `"None"`), and you can set the max session sticky time by setting the field -`service.spec.sessionAffinityConfig.clientIP.timeoutSeconds` if you have already set -`service.spec.sessionAffinity` to `"ClientIP"` (the default is "10800"). +By default, the choice of backend is round robin. ![Services overview diagram for userspace proxy](/images/docs/services-userspace-overview.svg) ### Proxy-mode: iptables In this mode, kube-proxy watches the Kubernetes master for the addition and -removal of `Service` and `Endpoints` objects. For each `Service` it installs +removal of `Service` and `Endpoints` objects. For each `Service`, it installs iptables rules which capture traffic to the `Service`'s `clusterIP` (which is virtual) and `Port` and redirects that traffic to one of the `Service`'s -backend sets. For each `Endpoints` object it installs iptables rules which -select a backend `Pod`. +backend sets. For each `Endpoints` object, it installs iptables rules which +select a backend `Pod`.By default, the choice of backend is random. -By default, the choice of backend is random. Client-IP based session affinity -can be selected by setting `service.spec.sessionAffinity` to `"ClientIP"` (the -default is `"None"`), and you can set the max session sticky time by setting the field -`service.spec.sessionAffinityConfig.clientIP.timeoutSeconds` if you have already set -`service.spec.sessionAffinity` to `"ClientIP"` (the default is "10800"). - -As with the userspace proxy, the net result is that any traffic bound for the -`Service`'s IP:Port is proxied to an appropriate backend without the clients -knowing anything about Kubernetes or `Services` or `Pods`. This should be +Obviously, iptables need not switch back between userspace and kernelspace, it should be faster and more reliable than the userspace proxy. However, unlike the userspace proxier, the iptables proxier cannot automatically retry another `Pod` if the one it initially selects does not respond, so it depends on @@ -231,12 +212,21 @@ options for load balancing algorithm, such as: - nq: never queue **Note:** ipvs mode assumed IPVS kernel modules are installed on the node -before running kube-proxy. When kube-proxy starts, if proxy mode is ipvs, +before running kube-proxy. When kube-proxy starts with ipvs proxy mode, kube-proxy would validate if IPVS modules are installed on the node, if it's not installed kube-proxy will fall back to iptables proxy mode. ![Services overview diagram for ipvs proxy](/images/docs/services-ipvs-overview.svg) +In any of proxy model, any traffic bound for the Service’s IP:Port is +proxied to an appropriate backend without the clients knowing anything +about Kubernetes or Services or Pods. Client-IP based session affinity +can be selected by setting service.spec.sessionAffinity to "ClientIP" +(the default is "None"), and you can set the max session sticky time by +setting the field service.spec.sessionAffinityConfig.clientIP.timeoutSeconds +if you have already set service.spec.sessionAffinity to "ClientIP" +(the default is “10800”). + ## Multi-Port Services Many `Services` need to expose more than one port. For this case, Kubernetes @@ -708,6 +698,10 @@ work, and the client IP is not altered. This same basic flow executes when traffic comes in through a node-port or through a load-balancer, though in those cases the client IP does get altered. +#### Ipvs + +Iptables operations slow down dramatically in large scale cluster e.g 10,000 Services. IPVS is designed for load balancing and based on in-kernel hash tables. So we can achieve performance consistency in large number of services from IPVS-based kube-proxy. Meanwhile, IPVS-based kube-proxy has more sophisticated load balancing algorithms (least conns, locality, weighted, persistence). + ## API Object Service is a top-level resource in the Kubernetes REST API. More details about the From 60b7e3f42ee502f7388bf2662a8f420c056ec32c Mon Sep 17 00:00:00 2001 From: helena Date: Fri, 24 Nov 2017 10:39:29 +1100 Subject: [PATCH 015/176] Update overview.md --- docs/concepts/configuration/overview.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/concepts/configuration/overview.md b/docs/concepts/configuration/overview.md index f9151eca8c..098517d9a7 100644 --- a/docs/concepts/configuration/overview.md +++ b/docs/concepts/configuration/overview.md @@ -37,13 +37,7 @@ This is a living document. If you think of something that is not on this list bu ## Services -- It's typically best to create a [service](/docs/concepts/services-networking/service/) before corresponding [replication controllers](/docs/concepts/workloads/controllers/replicationcontroller/). This lets the scheduler spread the pods that comprise the service. - - You can also use this process to ensure that at least one replica works before creating lots of them: - - 1. Create a replication controller without specifying replicas (this will set replicas=1); - 2. Create a service; - 3. Then scale up the replication controller. +- It's typically best to create a [service](/docs/concepts/services-networking/service/) before the corresponding [replication controllers](/docs/concepts/workloads/controllers/replicationcontroller/). This lets the scheduler spread the pods that comprise the service. - Don't use `hostPort` unless it is absolutely necessary (for example: for a node daemon). It specifies the port number to expose on the host. When you bind a Pod to a `hostPort`, there are a limited number of places to schedule a pod due to port conflicts— you can only schedule as many such Pods as there are nodes in your Kubernetes cluster. From e18e56832a82e34ed2d44a16b330022849d1d4f8 Mon Sep 17 00:00:00 2001 From: Melanie Albrecht Date: Fri, 24 Nov 2017 10:44:12 +1100 Subject: [PATCH 016/176] Added clusterrolebinding command https://github.com/kubernetes/website/issues/6377 I added the clusterrolebinding command to the "Adding a cluster to a federation" section, plus I cleaned up the section to remove redundant text, and turned the instructions into a numbered list. --- .../set-up-cluster-federation-kubefed.md | 55 ++++++++----------- 1 file changed, 23 insertions(+), 32 deletions(-) diff --git a/docs/tasks/federation/set-up-cluster-federation-kubefed.md b/docs/tasks/federation/set-up-cluster-federation-kubefed.md index a615cdbf25..a73e06f6fc 100644 --- a/docs/tasks/federation/set-up-cluster-federation-kubefed.md +++ b/docs/tasks/federation/set-up-cluster-federation-kubefed.md @@ -371,44 +371,35 @@ For more information see ## Adding a cluster to a federation -Once you've deployed a federation control plane, you'll need to make -that control plane aware of the clusters it should manage. You can add -a cluster to your federation by using the [`kubefed join`](/docs/admin/kubefed_join/) -command. A new context will have been added to your kubeconfig named `fellowship` -(after the name of your federation). To join clusters into the federation, you will -need to change the context. +After you've deployed a federation control plane, you'll need to make that control plane aware of the clusters it should manage. -``` -kubectl config use-context fellowship -``` +To join clusters into the federation: -To use `kubefed join`, you'll need to provide the name of the cluster -you want to add to the federation, and the `--host-cluster-context` -for the federation control plane's host cluster. +1. Change the context: -> Note: The name that you provide to the `join` command is used as the -joining cluster's identity in federation. This name should adhere to -the rules described in the -[identifiers doc](/docs/concepts/overview/working-with-objects/names/). If the context -corresponding to your joining cluster conforms to these rules then you -can use the same name in the join command. Otherwise, you will have to -choose a different name for your cluster's identity. For more -information, please see the -[naming rules and customization](#naming-rules-and-customization) -section below. + kubectl config use-context fellowship -The following example command adds the cluster `gondor` to the -federation running on host cluster `rivendell`: +1. If you are using a managed cluster service, allow the service to access the cluster. To do this, create a `clusterrolebinding` for the account associated with your cluster service: -``` -kubefed join gondor --host-cluster-context=rivendell -``` + kubectl create clusterrolebinding -cluster-admin-binding --clusterrole=cluster-admin --user=@example.org --context= Note: The name that you provide to the `join` command is used as the joining cluster's identity in federation. If this name adheres to the rules described in the [identifiers doc](/docs/concepts/overview/working-with-objects/names/). If the context +corresponding to your joining cluster conforms to these rules then you can use the same name in the join command. Otherwise, you will have to choose a different name for your cluster's identity. -> Note: Kubernetes requires that you manually join clusters to a -federation because the federation control plane manages only those -clusters that it is responsible for managing. Adding a cluster tells -the federation control plane that it is responsible for managing that -cluster. ### Naming rules and customization From 4d15b60b5b62414177705d27ea076dec1593d4c9 Mon Sep 17 00:00:00 2001 From: Stephen Gordon Date: Wed, 22 Nov 2017 14:51:03 -0500 Subject: [PATCH 017/176] Add OpenStack provider `search-order` parameter Add the OpenStack provider `search-order` parameter which is used to influence the retrieval of instance metadata. See also: https://github.com/kubernetes/kubernetes/pull/52628 https://github.com/kubernetes/kubernetes/issues/52378 --- .../cluster-administration/cloud-providers.md | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/concepts/cluster-administration/cloud-providers.md b/docs/concepts/cluster-administration/cloud-providers.md index 739476217c..7b31be5cd7 100644 --- a/docs/concepts/cluster-administration/cloud-providers.md +++ b/docs/concepts/cluster-administration/cloud-providers.md @@ -213,6 +213,28 @@ provider configuration: bs-version=v2 ``` +#### Metadata +These configuration options for the OpenStack provider pertain to metadata and +should appear in the `[Metadata]` section of the `cloud.conf` file: + +* `search-order` (Optional): This configuration key influences the way that the + provider retrieves metadata relating to the instance(s) in which it runs. The + default value of `configDrive,metadataService` results in the provider + retrieving metadata relating to the instance from the config drive first if + available and then the metadata service. Alternative values are: + * `configDrive` - Only retrieve instance metadata from the configuration + drive. + * `metadataService` - Only retrieve instance metadata from the metadata + service. + * `metadataService,configDrive` - Retrieve instance metadata from the metadata + service first if available, then the configuration drive. + + Influencing this behavior may be desirable as the metadata on the + configuration drive may grow stale over time, whereas the metadata service + always provides the most up to date view. Not all OpenStack clouds provide + both configuration drive and metadata service though and only one or the other + may be available which is why the default is to check both. + #### Router These configuration options for the OpenStack provider pertain to routing and should appear in the `[Route]` section of the `cloud.conf` file: From ac887bc996f0e16806aa5fdcee9b8651428fa314 Mon Sep 17 00:00:00 2001 From: Kaitlyn Barnard Date: Fri, 17 Nov 2017 18:36:59 -0800 Subject: [PATCH 018/176] Updates to Partner Page and Kubecon Banners --- _includes/partner-script.js | 69 ++++++++++++++++++++++-- community/index.html | 2 +- images/KubeCon_NA_Community.jpg | Bin 0 -> 209804 bytes images/square-logos/componentsoft.png | Bin 0 -> 11599 bytes images/square-logos/dataspine.png | Bin 0 -> 6746 bytes images/square-logos/isotoma.png | Bin 0 -> 12751 bytes images/square-logos/objectcomputing.png | Bin 0 -> 12237 bytes images/square-logos/redzara.png | Bin 0 -> 20191 bytes images/square-logos/servian.png | Bin 0 -> 8466 bytes images/square-logos/vexxhost.png | Bin 0 -> 7621 bytes index.html | 2 +- partners/index.html | 10 ++-- 12 files changed, 73 insertions(+), 10 deletions(-) create mode 100644 images/KubeCon_NA_Community.jpg create mode 100644 images/square-logos/componentsoft.png create mode 100644 images/square-logos/dataspine.png create mode 100644 images/square-logos/isotoma.png create mode 100644 images/square-logos/objectcomputing.png create mode 100644 images/square-logos/redzara.png create mode 100644 images/square-logos/servian.png create mode 100644 images/square-logos/vexxhost.png diff --git a/_includes/partner-script.js b/_includes/partner-script.js index 39357ab2fa..d90cc040d0 100644 --- a/_includes/partner-script.js +++ b/_includes/partner-script.js @@ -432,7 +432,7 @@ name: 'Kublr', logo: 'kublr', link: 'http://kublr.com', - blurb: 'SSimplify and speed up the management of your containerized applications at scale.' + blurb: 'Simplify and speed up the management of your containerized applications at scale.' }, { type: 0, @@ -614,7 +614,7 @@ name: 'Sphere Software, LLC', logo: 'spheresoftware', link: 'https://sphereinc.com/kubernetes/', - blurb: 'Architect and implement scalable applications using Kubernetes in Google Cloud, AWS, and Azure with our team of experts.' + blurb: 'The Sphere Software team of experts allows customers to architect and implement scalable applications using Kubernetes in Google Cloud, AWS, and Azure.' }, { type: 1, @@ -742,6 +742,13 @@ link: 'https://caicloud.io/products/compass', blurb: 'Caicloud - Compass' }, + { + type: 2, + name: 'Caicloud', + logo: 'caicloud', + link: 'https://caicloud.io/', + blurb: 'Founded by ex-Googlers,and early Kubernetes contributors, Caicloud leverages Kubernetes to provide container products which have successfully served Fortune 500 enterprises, and further utilizes Kubernetes as a vehicle to deliver ultra-speed deep learning experience.' + }, { type: 3, name: 'Alibaba', @@ -788,7 +795,7 @@ type: 3, name: 'Loodse', logo: 'loodse', - link: 'https://loodse.io', + link: 'https://loodse.com', blurb: 'Loodse - Kubermatic Container Engine' }, { @@ -798,6 +805,13 @@ link: 'https://github.com/Azure/acs-engine', blurb: 'Microsoft - Azure acs-engine' }, + { + type: 3, + name: 'Microsoft', + logo: 'microsoft', + link: 'https://docs.microsoft.com/en-us/azure/aks/', + blurb: 'Microsoft - Azure Container Service AKS' + }, { type: 3, name: 'Oracle', @@ -910,6 +924,20 @@ link: 'https://gopaddle.io', blurb: 'goPaddle is a DevOps platform for Kubernetes developers. It simplifies the Kubernetes Service creation and maintenance through source to image conversion, build & version management, team management, access controls and audit logs, single click provision of Kubernetes Clusters across multiple clouds from a single console.' }, + { + type: 0, + name: 'Vexxhost', + logo: 'vexxhost', + link: 'https://vexxhost.com/public-cloud/container-services/kubernetes/', + blurb: 'VEXXHOST offers a high-performance container management service powered by Kubernetes and OpenStack Magnum.' + }, + { + type: 1, + name: 'Component Soft', + logo: 'componentsoft', + link: 'https://www.componentsoft.eu/?p=3925', + blurb: 'Component Soft offers training, consultation and support around open cloud technologies like Kubernetes, Docker, Openstack and Ceph.' + }, { type: 0, name: 'Datera', @@ -945,6 +973,41 @@ link: 'https://docs.portworx.com/scheduler/kubernetes/install.html', blurb: 'With Portworx, you can manage any database or stateful service on any infrastructure using Kubernetes. You get a single data management layer for all of your stateful services, no matter where they run.' }, + { + type: 1, + name: 'Object Computing, Inc.', + logo: 'objectcomputing', + link: 'https://objectcomputing.com/services/software-engineering/devops/kubernetes-services', + blurb: 'Our portfolio of DevOps consulting services includes Kubernetes support, development, and training.' + }, + { + type: 1, + name: 'Isotoma', + logo: 'isotoma', + link: 'https://www.isotoma.com/blog/2017/10/24/containerisation-tips-for-using-kubernetes-with-aws/', + blurb: 'Based in the North of England, Amazon partners who are delivering Kubernetes solutions on AWS for replatforming and native development.' + }, + { + type: 1, + name: 'Servian', + logo: 'servian', + link: 'https://www.servian.com/cloud-and-technology/', + blurb: 'Based in Australia, Servian provides advisory, consulting and managed services to support both application and data centric kubernetes use cases.' + }, + { + type: 1, + name: 'Redzara', + logo: 'redzara', + link: 'http://redzara.com/cloud-service', + blurb: 'Redzara has wide and in-depth experience in Cloud automation, now taking one giant step by providing container service offering and services to our customers.' + }, + { + type: 0, + name: 'Dataspine', + logo: 'dataspine', + link: 'http://dataspine.xyz/', + blurb: 'Dataspine is building a secure, elastic and serverless deployment platform for production ML/AI workloads on top of k8s.' + }, { type: 0, name: 'Logdna', diff --git a/community/index.html b/community/index.html index 6ade8ae9dd..e78541e9e4 100644 --- a/community/index.html +++ b/community/index.html @@ -7,7 +7,7 @@ cid: community

Community

-KubeConNA +KubeConNA
diff --git a/images/KubeCon_NA_Community.jpg b/images/KubeCon_NA_Community.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab046414bebcdb4347c1cf5398d91c51ea319cb0 GIT binary patch literal 209804 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∨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 z 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 literal 0 HcmV?d00001 diff --git a/images/square-logos/isotoma.png b/images/square-logos/isotoma.png new file mode 100644 index 0000000000000000000000000000000000000000..b1ac23d9059dc6abeeca18420ea3b7ddb94faf85 GIT binary patch literal 12751 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 R%YS~ckQP@Es}wN`{9klL1quKF literal 0 HcmV?d00001 diff --git a/images/square-logos/objectcomputing.png b/images/square-logos/objectcomputing.png new file mode 100644 index 0000000000000000000000000000000000000000..622e6b98a6f0d9bea8b09db18616638eb77db082 GIT binary patch literal 12237 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 literal 0 HcmV?d00001 diff --git a/images/square-logos/redzara.png b/images/square-logos/redzara.png new file mode 100644 index 0000000000000000000000000000000000000000..4aa3b9bbbe4d1bbe346b189477abff3d934b90af GIT binary patch literal 20191 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 Fe*ij2K#BkW literal 0 HcmV?d00001 diff --git a/images/square-logos/servian.png b/images/square-logos/servian.png new file mode 100644 index 0000000000000000000000000000000000000000..aeaaa58a213768eda578272925cd92715a71bd85 GIT binary patch literal 8466 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 HhKl+>Y1FlU literal 0 HcmV?d00001 diff --git a/index.html b/index.html index a3f73aaac3..cf22d1e40c 100644 --- a/index.html +++ b/index.html @@ -64,7 +64,7 @@ cid: home

-
Attend KubeCon in Austin, TX on December 6-8, 2017 + Attend KubeCon in Austin, TX on December 6-8, 2017
diff --git a/partners/index.html b/partners/index.html index 271dcd0b25..14f39332d0 100644 --- a/partners/index.html +++ b/partners/index.html @@ -22,8 +22,8 @@ cid: partners

Kubernetes Certified Service Providers (KCSP)

-

The KCSP program is a vetted tier of service providers who have deep experience helping enterprises successfully adopt Kubernetes. KCSP partners offer Kubernetes support, consulting, professional services and training for organizations embarking on their Kubernetes journey.

-

Interested in becoming a KCSP? Learn more.

+

The KCSP program is a vetted tier of service providers who have deep experience helping enterprises successfully adopt Kubernetes. KCSP partners offer Kubernetes support, consulting, professional services and training for organizations embarking on their Kubernetes journey. Learn more about the program here.

+

Interested in becoming a KCSP? Please fill out this form.

@@ -35,13 +35,13 @@ cid: partners

Technology Partners

Technology partners offer integrations and plugins that add features to Kubernetes applications.

-

Interested in becoming a Technology Partner? Please fill out this form.

+

Interested in becoming a Technology Partner? Please fill out this form.

Service Partners

Service Partners offer consulting or management services to help companies implement and use Kubernetes in commercial applications.

-

Interested in becoming a Service Provider? Please fill out this form

+

Interested in becoming a Service Provider? Please fill out this form.

@@ -53,4 +53,4 @@ cid: partners \ No newline at end of file + From 114346c609784d40f676cb97ad0dc63cff7f063c Mon Sep 17 00:00:00 2001 From: Melanie Albrecht Date: Fri, 24 Nov 2017 11:37:49 +1100 Subject: [PATCH 019/176] Add requirement to use US English Added a new section "Language", with only one sentence in it. --- docs/home/contribute/style-guide.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/home/contribute/style-guide.md b/docs/home/contribute/style-guide.md index 4b5efb30bd..db330d32ab 100644 --- a/docs/home/contribute/style-guide.md +++ b/docs/home/contribute/style-guide.md @@ -18,6 +18,12 @@ docs, follow the instructions on **Note:** Kubernetes documentation uses [GitHub Flavored Markdown](https://github.github.com/gfm/). {: .note} + +## Language + +Kubernetes documentation uses US English. + + ## Documentation formatting standards ### Use camel case for API objects From d58f785de1dd675993089c24b29cf0f546f92024 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 24 Nov 2017 10:13:36 +1100 Subject: [PATCH 020/176] bump the version to the latest available from docker --- docs/setup/independent/install-kubeadm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/setup/independent/install-kubeadm.md b/docs/setup/independent/install-kubeadm.md index 3a4c1536c2..0d26f3f6a3 100644 --- a/docs/setup/independent/install-kubeadm.md +++ b/docs/setup/independent/install-kubeadm.md @@ -86,7 +86,7 @@ apt-get update apt-get install -y docker.io ``` -or install Docker CE 17.03 from Docker's repositories for Ubuntu or Debian: +or install Docker CE 17.09 from Docker's repositories for Ubuntu or Debian: ```bash apt-get update && apt-get install -y curl apt-transport-https @@ -94,7 +94,7 @@ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - cat </etc/apt/sources.list.d/docker.list deb https://download.docker.com/linux/$(lsb_release -si | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable EOF -apt-get update && apt-get install -y docker-ce=$(apt-cache madison docker-ce | grep 17.03 | head -1 | awk '{print $3}') +apt-get update && apt-get install -y docker-ce=$(apt-cache madison docker-ce | grep 17.09 | head -1 | awk '{print $3}') ``` {% endcapture %} From 1beed2d6f6eda35e05ed5a0f3237dc4b5a1709a9 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 24 Nov 2017 10:16:00 +1100 Subject: [PATCH 021/176] rather than emitting text, let's use the package manager https://docs.docker.com/engine/installation/linux/docker-ce/debian/#install-docker-ce-1 --- docs/setup/independent/install-kubeadm.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/setup/independent/install-kubeadm.md b/docs/setup/independent/install-kubeadm.md index 0d26f3f6a3..507aa7c367 100644 --- a/docs/setup/independent/install-kubeadm.md +++ b/docs/setup/independent/install-kubeadm.md @@ -91,9 +91,10 @@ or install Docker CE 17.09 from Docker's repositories for Ubuntu or Debian: ```bash apt-get update && apt-get install -y curl apt-transport-https curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - -cat </etc/apt/sources.list.d/docker.list -deb https://download.docker.com/linux/$(lsb_release -si | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable -EOF +add-apt-repository \ + "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \ + $(lsb_release -cs) \ + stable" apt-get update && apt-get install -y docker-ce=$(apt-cache madison docker-ce | grep 17.09 | head -1 | awk '{print $3}') ``` From ad3870bd87041cd13151607a34ee91ea99b1085c Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 24 Nov 2017 11:43:30 +1100 Subject: [PATCH 022/176] link to official install docs, tweak steps --- docs/setup/independent/install-kubeadm.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/setup/independent/install-kubeadm.md b/docs/setup/independent/install-kubeadm.md index 507aa7c367..65ceb64703 100644 --- a/docs/setup/independent/install-kubeadm.md +++ b/docs/setup/independent/install-kubeadm.md @@ -89,7 +89,12 @@ apt-get install -y docker.io or install Docker CE 17.09 from Docker's repositories for Ubuntu or Debian: ```bash -apt-get update && apt-get install -y curl apt-transport-https +apt-get update +apt-get install \ + apt-transport-https \ + ca-certificates \ + curl \ + software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") \ @@ -131,6 +136,9 @@ as Docker (e.g. `cgroupfs`). {% include tabs.md %} +Refer to the [official Docker installation guides](https://docs.docker.com/engine/installation/) +for more information. + ## Installing kubeadm, kubelet and kubectl You will install these packages on all of your machines: From afa7380387c21b1454cd36d3cd1bcfcc93c97cf1 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 24 Nov 2017 11:44:30 +1100 Subject: [PATCH 023/176] -y to automatically install --- docs/setup/independent/install-kubeadm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/setup/independent/install-kubeadm.md b/docs/setup/independent/install-kubeadm.md index 65ceb64703..b07895df7c 100644 --- a/docs/setup/independent/install-kubeadm.md +++ b/docs/setup/independent/install-kubeadm.md @@ -90,7 +90,7 @@ or install Docker CE 17.09 from Docker's repositories for Ubuntu or Debian: ```bash apt-get update -apt-get install \ +apt-get install -y \ apt-transport-https \ ca-certificates \ curl \ From 4c8f3b2996c47a1685cd4ab51caf66a72efc68f5 Mon Sep 17 00:00:00 2001 From: Melanie Albrecht Date: Fri, 24 Nov 2017 11:52:51 +1100 Subject: [PATCH 024/176] Replace link to zookeeper.yaml The link in the sample command "kubectl apply" pointed to a YAML file that was rendered wrongly. I replaced the problem link to a link to the same file on git, which avoids the rendering issue. --- docs/tutorials/stateful-application/zookeeper.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/stateful-application/zookeeper.md b/docs/tutorials/stateful-application/zookeeper.md index 5c07373bf3..7b7f1d0b4d 100644 --- a/docs/tutorials/stateful-application/zookeeper.md +++ b/docs/tutorials/stateful-application/zookeeper.md @@ -100,7 +100,7 @@ Open a command terminal, and use manifest. ```shell -kubectl apply -f https://k8s.io/docs/tutorials/stateful-application/zookeeper.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/master/docs/tutorials/stateful-application/zookeeper.yaml ``` This creates the `zk-hs` Headless Service, the `zk-cs` Service, From 93cfe3d59b37cb864ffe093227ead31cc448622d Mon Sep 17 00:00:00 2001 From: kairen Date: Fri, 24 Nov 2017 11:06:38 +0800 Subject: [PATCH 025/176] Remove ditto marks and fix typo --- docs/concepts/storage/persistent-volumes.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 4dccc7bc75..32fdbea9bf 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -54,7 +54,7 @@ dynamic provisioning for themselves. To enable dynamic storage provisioning based on storage class, the cluster administrator needs to enable the `DefaultStorageClass` [admission controller](/docs/admin/admission-controllers/#defaultstorageclass) on the API server. This can be done, for example, by ensuring that `DefaultStorageClass` is -among the comma-delimited, ordered list of values for the `--admission-control` flag of +among the comma-delimited, ordered list of values for the `--admission-control` flag of the API server component. For more information on API server command line flags, please check [kube-apiserver](/docs/admin/kube-apiserver/) documentation. @@ -79,8 +79,8 @@ When a user is done with their volume, they can delete the PVC objects from the The Retain reclaim policy allows for manual reclamation of the resource. When the `PersistentVolumeClaim` is deleted, the `PersistentVolume` still exists and the volume is considered "released". But it is not yet available for another claim because the previous claimant's data remains on the volume. An administrator can manually reclaim the volume with the following steps. 1. Delete the `PersistentVolume`. The associated storage asset in external infrastructure (such as an AWS EBS, GCE PD, Azure Disk, or Cinder volume) still exists after the PV is deleted. -1. Manually clean up the data on the associated storage asset accordingly. -1. Manually delete the associated storage asset, or if you want to reuse the same storage asset, create a new `PersistentVolume` with the storage asset definition. +2. Manually clean up the data on the associated storage asset accordingly. +3. Manually delete the associated storage asset, or if you want to reuse the same storage asset, create a new `PersistentVolume` with the storage asset definition. #### Recycling @@ -417,8 +417,6 @@ spec: `PersistentVolumes` binds are exclusive, and since `PersistentVolumeClaims` are namespaced objects, mounting claims with "Many" modes (`ROX`, `RWX`) is only possible within one namespace. -`` - ## Writing Portable Configuration If you're writing configuration templates or examples that run on a wide range of clusters @@ -455,4 +453,3 @@ and need persistent storage, we recommend that you use the following pattern: default. At some point, the alpha annotation will cease to have meaning, but the unset `storageClass` field on the PVC will have the desired effect. - From 29b15075bed457ac81aa2dc79ba11bee856f0031 Mon Sep 17 00:00:00 2001 From: Andrew Burden Date: Fri, 24 Nov 2017 15:06:20 +1100 Subject: [PATCH 026/176] Added versioning information based on https://github.com/kubernetes/community/blob/master/contributors/design-proposals/release/versioning.md --- docs/home/index.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/home/index.md b/docs/home/index.md index 983c9fae1e..36b64f7992 100644 --- a/docs/home/index.md +++ b/docs/home/index.md @@ -34,3 +34,21 @@ The [Tools](/docs/tools/) page contains a list of native and third-party tools f ## Troubleshooting The [Troubleshooting](/docs/tasks/debug-application-cluster/troubleshooting) page outlines some resources for troubleshooting and finding help. + +## Supported Versions + +Kubernetes has a _X.Y.Z_ versioning scheme, where _X_ is the major version, _Y_ is the minor version, and _Z_ is the patch version. + +Kubernetes is supported for three minor versions at a time. This includes the current release version and two previous versions. + +See the [Kubernetes Release](https://github.com/kubernetes/kubernetes/releases) page on GitHub for the latest release information. + +### Minor Versions + +Different components are expected to be compatible across different version skew relative to the master. Nodes may lag master by up to two versions, but not exceed the master version. Clients may lag master by one version and may exceed master up to one version. + +For example, a v1.8 master is expected to be compatible with v1.6, v1.7, and v1.8 nodes, and compatible with v1.7, v1.8, and v1.9 clients. + +### Patch Versions + +Patch releases often include critical bug fixes. You should be running the latest patch release of a given minor release. From 2aa752dffe2cdd3a7baa9ed9d64f6e66e3e640ff Mon Sep 17 00:00:00 2001 From: Athurg Feng Date: Fri, 24 Nov 2017 12:13:54 +0800 Subject: [PATCH 027/176] Fix the comment's ambiguous Origin commit means volumeMounts.name should match the volume name below, but there's nothing below. --- docs/user-guide/walkthrough/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/walkthrough/index.md b/docs/user-guide/walkthrough/index.md index c456638dac..20fd482271 100644 --- a/docs/user-guide/walkthrough/index.md +++ b/docs/user-guide/walkthrough/index.md @@ -97,8 +97,8 @@ volumes: ```yaml volumeMounts: - # name must match the volume name below - - name: redis-persistent-storage +    # name must match the volume name defined in volumes +    - name: redis-persistent-storage # mount path within the container mountPath: /data/redis ``` From a2d2e273677280e17b8daaf6d1492679f9957b7c Mon Sep 17 00:00:00 2001 From: kairen Date: Fri, 24 Nov 2017 13:55:16 +0800 Subject: [PATCH 028/176] Revert the step number --- docs/concepts/storage/persistent-volumes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 32fdbea9bf..aebe9c5cf6 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -79,8 +79,8 @@ When a user is done with their volume, they can delete the PVC objects from the The Retain reclaim policy allows for manual reclamation of the resource. When the `PersistentVolumeClaim` is deleted, the `PersistentVolume` still exists and the volume is considered "released". But it is not yet available for another claim because the previous claimant's data remains on the volume. An administrator can manually reclaim the volume with the following steps. 1. Delete the `PersistentVolume`. The associated storage asset in external infrastructure (such as an AWS EBS, GCE PD, Azure Disk, or Cinder volume) still exists after the PV is deleted. -2. Manually clean up the data on the associated storage asset accordingly. -3. Manually delete the associated storage asset, or if you want to reuse the same storage asset, create a new `PersistentVolume` with the storage asset definition. +1. Manually clean up the data on the associated storage asset accordingly. +1. Manually delete the associated storage asset, or if you want to reuse the same storage asset, create a new `PersistentVolume` with the storage asset definition. #### Recycling From ec4fbf70d4a9305a992839892e1f936e7c12f889 Mon Sep 17 00:00:00 2001 From: Suraj Deshmukh Date: Fri, 24 Nov 2017 15:43:48 +0530 Subject: [PATCH 029/176] add link to Application Introspection and Debugging guide --- .../debug-application-introspection.md | 27 +++---------------- .../debug-application-cluster/nginx-dep.yaml | 20 ++++++++++++++ 2 files changed, 23 insertions(+), 24 deletions(-) create mode 100644 docs/tasks/debug-application-cluster/nginx-dep.yaml diff --git a/docs/tasks/debug-application-cluster/debug-application-introspection.md b/docs/tasks/debug-application-cluster/debug-application-introspection.md index a149efba6f..917cc18d5a 100644 --- a/docs/tasks/debug-application-cluster/debug-application-introspection.md +++ b/docs/tasks/debug-application-cluster/debug-application-introspection.md @@ -16,33 +16,12 @@ your pods. But there are a number of ways to get even more information about you For this example we'll use a Deployment to create two pods, similar to the earlier example. -```yaml -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: nginx-deployment -spec: - replicas: 2 - template: - metadata: - labels: - app: nginx - spec: - containers: - - name: nginx - image: nginx - resources: - limits: - memory: "128Mi" - cpu: "500m" - ports: - - containerPort: 80 -``` +{% include code.html language="yaml" file="nginx-dep.yaml" ghlink="/docs/tasks/debug-application-cluster/nginx-dep.yaml" %} -Copy this to a file *./my-nginx-dep.yaml* +Create deployment by running following command: ```shell -$ kubectl create -f ./my-nginx-dep.yaml +$ kubectl create -f https://k8s.io/docs/tasks/debug-application-cluster/nginx-dep.yaml deployment "nginx-deployment" created ``` diff --git a/docs/tasks/debug-application-cluster/nginx-dep.yaml b/docs/tasks/debug-application-cluster/nginx-dep.yaml new file mode 100644 index 0000000000..9051645fbb --- /dev/null +++ b/docs/tasks/debug-application-cluster/nginx-dep.yaml @@ -0,0 +1,20 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: nginx-deployment +spec: + replicas: 2 + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx + resources: + limits: + memory: "128Mi" + cpu: "500m" + ports: + - containerPort: 80 From 4c347ea69d86d9c9c8100896c20ec87ea61d1078 Mon Sep 17 00:00:00 2001 From: Qiming Date: Fri, 24 Nov 2017 19:11:37 +0800 Subject: [PATCH 030/176] Update podpreset.md --- docs/tasks/inject-data-application/podpreset.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tasks/inject-data-application/podpreset.md b/docs/tasks/inject-data-application/podpreset.md index 707a451eff..4368608690 100644 --- a/docs/tasks/inject-data-application/podpreset.md +++ b/docs/tasks/inject-data-application/podpreset.md @@ -31,7 +31,7 @@ kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pr Examine the created PodPreset: ```shell -kubectl get podpreset +$ kubectl get podpreset NAME AGE allow-database 1m ``` @@ -43,13 +43,13 @@ The new PodPreset will act upon any pod that has label `role: frontend`. Create a pod: ```shell -kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pod.yaml +$ kubectl create -f https://k8s.io/docs/tasks/inject-data-application/podpreset-pod.yaml ``` List the running Pods: ```shell -kubectl get pods +$ kubectl get pods NAME READY STATUS RESTARTS AGE website 1/1 Running 0 4m ``` @@ -61,7 +61,7 @@ website 1/1 Running 0 4m To see above output, run the following command: ```shell -kubectl get pod website -o yaml +$ kubectl get pod website -o yaml ``` ### Pod Spec with `ConfigMap` Example @@ -145,7 +145,7 @@ when there is a conflict. **If we run `kubectl describe...` we can see the event:** -``` +```shell $ kubectl describe ... .... Events: From 4456f5f90bc7c39437f50800dbd282fb6f950f92 Mon Sep 17 00:00:00 2001 From: Ziqi Zhao Date: Sun, 26 Nov 2017 16:21:32 +0800 Subject: [PATCH 031/176] Fix typos Signed-off-by: Ziqi Zhao --- docs/tasks/access-kubernetes-api/setup-extension-api-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md index bd9404a1b4..591bf441c9 100644 --- a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md +++ b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md @@ -38,7 +38,7 @@ Alternatively, you can use an existing 3rd party solution, such as [apiserver-bu 1. Create a Kubernetes service account in your namespace. 1. Create a Kubernetes cluster role for the operations you want to allow on your resources. 1. Create a Kubernetes cluster role binding from the default service account in your namespace to the cluster role you just created. -1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservce. This should not be namespaced. +1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservice. This should not be namespaced. 1. Use kubectl to get your resource. It should return "No resources found." Which means that everything worked but you currently have no objects of that resource type created yet. {% endcapture %} From 328e6794d2e621697caf2be186f3b840cd9dc64a Mon Sep 17 00:00:00 2001 From: Wang Jie Date: Mon, 27 Nov 2017 11:59:42 +0800 Subject: [PATCH 032/176] Update quota-api-object.md --- docs/tasks/administer-cluster/quota-api-object.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tasks/administer-cluster/quota-api-object.md b/docs/tasks/administer-cluster/quota-api-object.md index fd3fdd2236..978cc02037 100644 --- a/docs/tasks/administer-cluster/quota-api-object.md +++ b/docs/tasks/administer-cluster/quota-api-object.md @@ -67,7 +67,7 @@ status: services.nodeports: "0" ``` -## Create a PersistentVolumeClaim: +## Create a PersistentVolumeClaim Here is the configuration file for a PersistentVolumeClaim object: @@ -92,7 +92,7 @@ NAME STATUS pvc-quota-demo Pending ``` -## Attempt to create a second PersistentVolumeClaim: +## Attempt to create a second PersistentVolumeClaim Here is the configuration file for a second PersistentVolumeClaim: From b268cd767894635d1af14d6fa10aadb07185dbe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=AE=8F?= Date: Mon, 27 Nov 2017 14:59:38 +0800 Subject: [PATCH 033/176] Fix invalid link. --- docs/concepts/workloads/pods/init-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/workloads/pods/init-containers.md b/docs/concepts/workloads/pods/init-containers.md index b1b7120d46..355620ad12 100644 --- a/docs/concepts/workloads/pods/init-containers.md +++ b/docs/concepts/workloads/pods/init-containers.md @@ -89,7 +89,7 @@ Here are some ideas for how to use Init Containers: configuration file using Jinja. More detailed usage examples can be found in the [StatefulSets documentation](/docs/concepts/workloads/controllers/statefulset/) -and the [Production Pods guide](/docs/tasks/#handling-initialization). +and the [Production Pods guide](/docs/tasks/configure-pod-container/configure-pod-initialization/). ### Init Containers in use From 3f98c8bd2aa6095975c15a0a7e0ec5d1470ce0f2 Mon Sep 17 00:00:00 2001 From: Qiming Date: Mon, 27 Nov 2017 20:28:44 +0800 Subject: [PATCH 034/176] Update overview.md --- docs/concepts/configuration/overview.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/concepts/configuration/overview.md b/docs/concepts/configuration/overview.md index 27fbc350eb..c3673a1386 100644 --- a/docs/concepts/configuration/overview.md +++ b/docs/concepts/configuration/overview.md @@ -45,9 +45,17 @@ This is a living document. If you think of something that is not on this list bu 2. Create a service; 3. Then scale up the replication controller. -- Don't use `hostPort` unless it is absolutely necessary (for example: for a node daemon). It specifies the port number to expose on the host. When you bind a Pod to a `hostPort`, there are a limited number of places to schedule a pod due to port conflicts. The conflict comes from being limited to a single `hostIP:hostPort:protocol` combination. Different `hostIP:hostPort:protocol` combinations mean different requirements. For example, a pod that binds tcp 80 host port on 127.0.0.1 does not conflict with another pod that binds tcp 80 port on 127.0.0.2. +- Don't use `hostPort` unless it is absolutely necessary (for example: for a node daemon). + It specifies the port number to expose on the host. + When you bind a Pod to a `hostPort`, there are a limited number of places to schedule a pod due to port conflicts. + The conflict comes from the requirement of an unique combination. + Different combinations mean different requirements. + For example, a pod that binds to host port 80 on 127.0.0.1 with TCP protocol has no conflict with another Pod that binds to host port 80 on 127.0.0.2 with TCP protocol. - Special notes on hostIP and protocol, if you don't specify the hostIP and protocol explicitly, kubernetes will give you 0.0.0.0 and tcp as default hostIP and protocol. And "0.0.0.0" is a wildcard hostIP that will occupy all <_,hostPort,protocol> on the node the pod is scheduled on. Specifically, it will occupy all for all IPs on the host. + *Special notes on hostIP and protocol*: If you don't specify the hostIP and protocol explicitly, + kubernetes will give you 0.0.0.0 and tcp as the default hostIP and protocol, + where "0.0.0.0" is a wildcard IP that will match all <*,hostPort,protocol> on the node the pod is scheduled on. + Specifically, it will match all tuples for all IPs on the host. If you only need access to the port for debugging purposes, you can use the [kubectl proxy and apiserver proxy](/docs/tasks/access-kubernetes-api/http-proxy-access-api/) or [kubectl port-forward](/docs/tasks/access-application-cluster/port-forward-access-application-cluster/). You can use a [Service](/docs/concepts/services-networking/service/) object for external service access. From 4d77e7993f875c7bf355e4305e5e0ceaf99e5ea3 Mon Sep 17 00:00:00 2001 From: Qiming Date: Mon, 27 Nov 2017 20:30:10 +0800 Subject: [PATCH 035/176] Update overview.md --- docs/concepts/configuration/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/configuration/overview.md b/docs/concepts/configuration/overview.md index c3673a1386..fb045fbfab 100644 --- a/docs/concepts/configuration/overview.md +++ b/docs/concepts/configuration/overview.md @@ -53,7 +53,7 @@ This is a living document. If you think of something that is not on this list bu For example, a pod that binds to host port 80 on 127.0.0.1 with TCP protocol has no conflict with another Pod that binds to host port 80 on 127.0.0.2 with TCP protocol. *Special notes on hostIP and protocol*: If you don't specify the hostIP and protocol explicitly, - kubernetes will give you 0.0.0.0 and tcp as the default hostIP and protocol, + kubernetes will use 0.0.0.0 and TCP as the default hostIP and protocol, where "0.0.0.0" is a wildcard IP that will match all <*,hostPort,protocol> on the node the pod is scheduled on. Specifically, it will match all tuples for all IPs on the host. From 3fa8cb3cfd5345fbff5f7ae557a94422fc5c4943 Mon Sep 17 00:00:00 2001 From: Martyn Ranyard Date: Mon, 27 Nov 2017 18:12:49 +0100 Subject: [PATCH 036/176] Adds a note regarding the toleration of node-role.kubernetes.io/master Also updates the example fluentd daemonset which should run on all nodes. --- docs/concepts/workloads/controllers/daemonset.md | 2 ++ docs/concepts/workloads/controllers/daemonset.yaml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/docs/concepts/workloads/controllers/daemonset.md b/docs/concepts/workloads/controllers/daemonset.md index 3c5898a3fd..d29c91ea0b 100644 --- a/docs/concepts/workloads/controllers/daemonset.md +++ b/docs/concepts/workloads/controllers/daemonset.md @@ -129,6 +129,8 @@ labelled as critical, the Daemon pods are created with an additional Note that all above `NoSchedule` taints above are created only in version 1.8 or later if the alpha feature `TaintNodesByCondition` is enabled. +Also note that the `node-role.kubernetes.io/master` `NoSchedule` toleration specified in the above example is needed on 1.6 or later to schedule on *master* nodes as this is not a default toleration. + ## Communicating with Daemon Pods Some possible patterns for communicating with Pods in a DaemonSet are: diff --git a/docs/concepts/workloads/controllers/daemonset.yaml b/docs/concepts/workloads/controllers/daemonset.yaml index 1788487382..5f849a30f8 100644 --- a/docs/concepts/workloads/controllers/daemonset.yaml +++ b/docs/concepts/workloads/controllers/daemonset.yaml @@ -14,6 +14,9 @@ spec: labels: name: fluentd-elasticsearch spec: + tolerations: + - key: node-role.kubernetes.io/master + effect: NoSchedule containers: - name: fluentd-elasticsearch image: gcr.io/google-containers/fluentd-elasticsearch:1.20 From 6d8245323187193e932fa513afc3a49620576b5b Mon Sep 17 00:00:00 2001 From: Michelle Au Date: Wed, 22 Nov 2017 16:04:57 -0800 Subject: [PATCH 037/176] Update storage class recommendations with GA fields --- docs/concepts/storage/persistent-volumes.md | 26 +++++++-------------- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index aebe9c5cf6..ccd6070c7e 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -428,28 +428,18 @@ and need persistent storage, we recommend that you use the following pattern: the config may not have permission to create PersistentVolumes. - Give the user the option of providing a storage class name when instantiating the template. - - If the user provides a storage class name, and the cluster is version 1.4 - or newer, put that value into the `volume.beta.kubernetes.io/storage-class` - annotation of the PVC. This will cause the PVC to match the right storage + - If the user provides a storage class name, put that value into the + `persistentVolumeClaim.storageClassName` field. + This will cause the PVC to match the right storage class if the cluster has StorageClasses enabled by the admin. - - If the user does not provide a storage class name or the cluster is version - 1.3, then instead put a `volume.alpha.kubernetes.io/storage-class: default` - annotation on the PVC. + - If the user does not provide a storage class name, leave the + `persistentVolumeClaim.storageClassName` field as nil. - This will cause a PV to be automatically provisioned for the user with - sane default characteristics on some clusters. - - Despite the word `alpha` in the name, the code behind this annotation has - `beta` level support. - - Do not use `volume.beta.kubernetes.io/storage-class:` with any value - including the empty string since it will prevent `DefaultStorageClass` - admission controller from running if enabled. + the default StorageClass in the cluster. Many cluster environments have + a default StorageClass installed, or administrators can create their own + default StorageClass. - In your tooling, do watch for PVCs that are not getting bound after some time and surface this to the user, as this may indicate that the cluster has no dynamic storage support (in which case the user should create a matching PV) or the cluster has no storage system (in which case the user cannot deploy config requiring PVCs). -- In the future, we expect most clusters to have `DefaultStorageClass` enabled, - and to have some form of storage available. However, there may not be any - storage class names which work on all clusters, so continue to not set one by - default. - At some point, the alpha annotation will cease to have meaning, but the unset - `storageClass` field on the PVC will have the desired effect. From 5c16453cd4eba0a8066f736330a99e91e3aabf20 Mon Sep 17 00:00:00 2001 From: sitkevij Date: Mon, 27 Nov 2017 12:31:06 -0800 Subject: [PATCH 038/176] update minikube documentation per #6419 providing solution to minikube start --vm-driver=xhyve issue --- .../stateless-application/hello-minikube.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md index 0e4e21fc55..ce5e7c7283 100644 --- a/docs/tutorials/stateless-application/hello-minikube.md +++ b/docs/tutorials/stateless-application/hello-minikube.md @@ -90,6 +90,18 @@ minikube start --vm-driver=xhyve --docker-env HTTP_PROXY=http://your-http-proxy- The `--vm-driver=xhyve` flag specifies that you are using Docker for Mac. The default VM driver is VirtualBox. +Note if `minikube start --vm-driver=xhyve` is unsuccessful due to the error: +``` +Error creating machine: Error in driver during machine creation: Could not convert the UUID to MAC address: exit status 1 +``` + +Then the following may resolve the `minikube start --vm-driver=xhyve` issue: +``` +rm -rf ~/.minikube +sudo chown root:wheel $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve +sudo chmod u+s $(brew --prefix)/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve +``` + Now set the Minikube context. The context is what determines which cluster `kubectl` is interacting with. You can see all your available contexts in the `~/.kube/config` file. From 3c5e4d225cdbc613f5582aca22044af93e2c4398 Mon Sep 17 00:00:00 2001 From: Tyler Kellen Date: Wed, 8 Nov 2017 13:01:21 -0500 Subject: [PATCH 039/176] remove future predictions--these are not documentation --- docs/concepts/workloads/controllers/daemonset.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/docs/concepts/workloads/controllers/daemonset.md b/docs/concepts/workloads/controllers/daemonset.md index 3c5898a3fd..5a30e6f577 100644 --- a/docs/concepts/workloads/controllers/daemonset.md +++ b/docs/concepts/workloads/controllers/daemonset.md @@ -66,10 +66,10 @@ A Pod Template in a DaemonSet must have a [`RestartPolicy`](/docs/user-guide/pod The `.spec.selector` field is a pod selector. It works the same as the `.spec.selector` of a [Job](/docs/concepts/jobs/run-to-completion-finite-workloads/). -As of Kubernetes 1.8, you must specify a pod selector that matches the labels of the -`.spec.template`. The pod selector will no longer be defaulted when left empty. Selector -defaulting was not compatible with `kubectl apply`. Also, once a DaemonSet is created, -its `spec.selector` can not be mutated. Mutating the pod selector can lead to the +As of Kubernetes 1.8, you must specify a pod selector that matches the labels of the +`.spec.template`. The pod selector will no longer be defaulted when left empty. Selector +defaulting was not compatible with `kubectl apply`. Also, once a DaemonSet is created, +its `spec.selector` can not be mutated. Mutating the pod selector can lead to the unintentional orphaning of Pods, and it was found to be confusing to users. The `spec.selector` is an object consisting of two fields: @@ -119,7 +119,7 @@ they will not be evicted when there are node problems such as a network partitio due to hard-coded behavior of the NodeController rather than due to tolerations). They also tolerate following `NoSchedule` taints: - + - `node.kubernetes.io/memory-pressure` - `node.kubernetes.io/disk-pressure` @@ -160,8 +160,6 @@ You will need to force new Pod creation by deleting the Pod or deleting the node In Kubernetes version 1.6 and later, you can [perform a rolling update](/docs/tasks/manage-daemon/update-daemon-set/) on a DaemonSet. -Future releases of Kubernetes will support controlled updating of nodes. - ## Alternatives to DaemonSet ### Init Scripts @@ -172,8 +170,6 @@ running such processes via a DaemonSet: - Ability to monitor and manage logs for daemons in the same way as applications. - Same config language and tools (e.g. Pod templates, `kubectl`) for daemons and applications. -- Future versions of Kubernetes will likely support integration between DaemonSet-created - Pods and node upgrade workflows. - Running daemons in containers with resource limits increases isolation between daemons from app containers. However, this can also be accomplished by running the daemons in a container but not in a Pod (e.g. start directly via Docker). From 6ee7947a03962e7d434140fe8322729c0ebb78ef Mon Sep 17 00:00:00 2001 From: Eric Tune Date: Mon, 27 Nov 2017 14:17:15 -0800 Subject: [PATCH 040/176] Added overview concept guide to all ways to extend (#6224) * Added overview concept guide to all ways to extend * Address review comments. Remove double space. Use glossary. Use ordered list. etc. --- _data/concepts.yml | 1 + _data/glossary/platform-developer.yaml | 3 +- docs/concepts/overview/extending.md | 219 +++++++++++++++++++++++++ 3 files changed, 222 insertions(+), 1 deletion(-) create mode 100644 docs/concepts/overview/extending.md diff --git a/_data/concepts.yml b/_data/concepts.yml index 1051266be0..0a0fc14143 100644 --- a/_data/concepts.yml +++ b/_data/concepts.yml @@ -24,6 +24,7 @@ toc: - title: Extending Kubernetes section: + - docs/concepts/overview/extending.md - title: Extending the Kubernetes API section: - docs/concepts/api-extension/apiserver-aggregation.md diff --git a/_data/glossary/platform-developer.yaml b/_data/glossary/platform-developer.yaml index 85decd55f3..94be671d79 100644 --- a/_data/glossary/platform-developer.yaml +++ b/_data/glossary/platform-developer.yaml @@ -2,9 +2,10 @@ id: platform-developer name: Platform Developer aka: - Kubernetes Developer + - Extension Developer tags: - user-type short-description: > A person who customizes the Kubernetes platform to fit the needs of their project. long-description: > - A platform developer may, for example, use [Custom Resources](/docs/concepts/api-extension/custom-resources/) or [Extend the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation/) to add functionality to their instance of Kubernetes, specifically for their application. + A platform developer may, for example, use [Custom Resources](/docs/concepts/api-extension/custom-resources/) or [Extend the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation/) to add functionality to their instance of Kubernetes, specifically for their application. Some Platfor Developers are also {% glossary_tooltip text="contributors" term_id="member" %} and develop extensions which are contributed to the Kubernetes community. Others develop closed-source commercial or site-specific extensions. diff --git a/docs/concepts/overview/extending.md b/docs/concepts/overview/extending.md new file mode 100644 index 0000000000..939a73618b --- /dev/null +++ b/docs/concepts/overview/extending.md @@ -0,0 +1,219 @@ +--- +title: Extending your Kubernetes Cluster +approvers: +- erictune +- lavalamp +- cheftako +- chenopis +--- + +{% capture overview %} + +Kubernetes is highly configurable and extensible. As a result, +there is rarely a need to fork or submit patches to the Kubernetes +project code. + +This guide describes the options for customizing a Kubernetes +cluster. It is aimed at **Cluster Operators** who want to +understand how to adapt their Kubernetes cluster to the needs of +their work environment. Developers who are prospective **Platform +Developers** or Kubernetes Project **Contributors** will also find it +useful as an introduction to what extension points and patterns +exist, and their tradeoffs and limitations. + +{% glossary_definition term_id="cluster-operator" length="all" %} +{% glossary_definition term_id="platform-developer" length="all" %} +{% glossary_definition term_id="contributor" length="all" %} + +{% endcapture %} + + +{% capture body %} + +## Overview + +Customization approaches can be broadly divided into *configuration*, which only involves changing flags, local configuration files, or API resources; and *extensions*, which involve running additional programs or services. This document is primarily about extensions. + +## Configuration + +*Configuration files* and *flags* are documented in the Reference section of the online documentation, under each binary: + +* [kubelet](/docs/admin/kubelet/) +* [kube-apiserver](/docs/admin/kube-apiserver/) +* [kube-controller-manager](/docs/admin/kube-controller-manager/) +* [kube-scheduler](/docs/admin/kube-scheduler/). + +Flags and configuration files may not always be changable in a hosted Kubernetes service or a distribution with managed installation. When they are changable, they are usually only changeable by the cluster administrator. Also, they are subject to change in future Kubernetes versions, and setting them may require restarting processes. For those reasons, they should be used only when there are no other options. + +*Built-in Policy APIs*, such as [ResourceQuota](/docs/concepts/policy/resource-quotas/), [PodSecurityPolicies](/docs/concepts/policy/pod-security-policy/), [NetworkPolicy](/docs/concepts/services-networking/network-policies/) and Role-based Access Control ([RBAC](/docs/admin/authorization/rbac/)), are built-in Kubernetes APIs. APIs are typically used with hosted Kubernetes services and with managed Kubernetes installations. They are declarative and use the same conventions as other Kubernetes resources like pods, so new cluster configuration can be repeatable and be managed the same way as applications. And, where they are stable, they enjoy a [defined support policy](/docs/reference/deprecation-policy/) like other Kubernetes APIs. For these reasons, they are preferred over *configuration files* and *flags* where suitable. + +## Extensions + +Extensions are software components that extend and deeply integrate with Kubernetes. +They adapt it to support new types and new kinds of hardware. + +Most cluster administrators will use a hosted or distribution +instance of Kubernetes. As a result, most Kubernetes users will need to +install extensions and fewer will need to author new ones. + +## Extension Patterns + +Kubernetes is designed to be automated by writing client programs. Any +program that reads and/or writes to the Kubernetes API can provide useful +automation. *Automation* can run on the cluster or off it. By following +the guidance in this doc you can write highly available and robust automation. +Automation generally works with any Kubernetes cluster, including hosted +clusters and managed installations. + +There is a specific pattern for writing client programs that work well with +Kubernetes called the *Controller* pattern. Controllers typically read an +object's `.spec`, possibly do things, and then update the object's `.status`. + +A controller is a client of Kubernetes. When Kubernetes is the client and +calls out to a remote service, it is called a *Webhook*. The remote service +is called a *Webhook Backend*. Like Controllers, Webhooks do add a point of +failure. + +In the webhook model, Kubernetes makes a network request to a remote service. +In the *Binary Plugin* model, Kubernetes executes a binary (program). +Binary plugins are used by the kubelet (e.g. [Flex Volume +Plugins](https://github.com/kubernetes/community/blob/master/contributors/devel/flexvolume.md) +and [Network +Plugins](/docs/concepts/cluster-administration/network-plugins/)) +and by kubectl. + +Below is a diagram showing how the extensions points interact with the +Kubernetes control plane. + + + + + + +## Extension Points + +This diagram shows the extension points in a Kubernetes system. + + + + + +1. Users often interact with the Kubernetes API using `kubectl`. [Kubectl plugins](docs/tasks/extend-kubectl/kubectl-plugins) extend the kubectl binary. They only affect the individual user's local environment, and so cannot enforce site-wide policies. +2. The apiserver handles all requests. Several types of extension points in the apiserver allow authenticating requests, or blocking them based on their content, editing content, and handling deletion. These are described in the [API Access Extensions](docs/concepts/overview/extending#api-access-extensions) section. +3. The apiserver serves various kinds of *resources*. *Built-in resource kinds*, like `pods`, are defined by the Kubernetes project and can't be changed. You can also add resources that you define, or that other projects have defined, called *Custom Resources*, as explained in the [Custom Resources](docs/concepts/overview/extending#custom-resources) section. Custom Resources are often used with API Access Extensions. +4. The Kubernetes scheduler decides which nodes to place pods on. There are several ways to extend scheduling. These are described in the [Scheduler Extensions](docs/concepts/overview/extending#shceduler-extensions) section. +5. Much of the behavior of Kubernetes is implemented by programs called Controllers which are clients of the API-Server. Controllers are often used in conjunction with Custom Resources. +6. The kubelet runs on servers, and helps pods appear like virtual servers with their own IPs on the cluster network. [Network Plugins](docs/concepts/overview/extending#network-plugins) allow for different implementations of pod networking. +7. The kubelet also mounts and unmounts volumes for containers. New types of storage can be supported via [Storage Plugins](docs/concepts/overview/extending#storage-plugins). + +If you are unsure where to start, this flowchart can help. Note that some solutions may involve several types of extensions. + + + + + + +## API Extensions +### User-Defined Types + +Consider adding a Custom Resource to Kubernetes if you want to define new controllers, application configuration objects or other declarative APIs, and to manage them using Kubernetes tools, such as `kubectl`. + +Do not use a Custom Resource as data storage for application, user, or monitoring data. + +For more about Custom Resources, see the [Custom Resources concept guide](/docs/concepts/api-extension/custom-resources.md). + + +### Combining New APIs with Automation + +Often, when you add a new API, you also add a control loop that reads and/or writes the new APIs. When the combination of a Custom API and a control loop is used to manage a specific, usually stateful, application, this is called the *Operator* pattern. Custom APIs and control loops can also be used to control other resources, such as storage, policies, and so on. + +### Changing Built-in Resources + +When you extend the Kubernetes API by adding custom resources, the added resources always fall into a new API Groups. You cannot replace or change existing API groups. +Adding an API does not directly let you affect the behavior of existing APIs (e.g. Pods), but API Access Extensions do. + + +### API Access Extensions + +When a request reaches the Kubernetes API Server, it is first Authenticated, then Authorized, then subject to various types of Admission Control. See [[Accessing the API](/docs/admin/accessing-the-api/)] for more on this flow. + +Each of these steps offers extension points. + +Kubernetes has several built-in authentication methods that it supports. It can also sit behind an authenticating proxy, and it can send a token from an Authorization header to a remote service for verification (a webhook). All of these methods are covered in the [Authentication documentation](/docs/admin/authentication/). + +### Authentication + +[Authentication](/docs/admin/authentication) maps headers or certificates in all requests to a username for the client making the request. + +Kubernetes provides several built-in authentication methods, and an [Authentication webhook](/docs/admin/authentication/#webhook-token-authentication) method if those don't meet your needs. + + +### Authorization + + [Authorization](/docs/admin/authorization/webhook/) determines whether specific users can read, write, and do other operations on API resources. It just works at the level of whole resources -- it doesn't discriminate based on arbitrary object fields. If the built-in authorization options don't meet your needs, and [Authorization webhook](/docs/admin/authorization/webhook/) allows calling out to user-provided code to make an authorization decision. + + +### Dynamic Admission Control + +After a request is authorized, if it is a write operation, it also t goes through [Admission Control](/docs/admin/admission-controllers/) steps. In addition to the built-in steps, there are several extensions: + +* The [Image Policy webhook](/docs/admin/admission-controllers/#imagepolicywebhook) restricts what images can be run in containers. +* To make arbitrary admission control decisions, a general [Admission webhook](/docs/admin/extensible-admission-controllers/#external-admission-webhooks) can be used. Admission Webhooks can reject creations or updates. +* [Initializers](/docs/admin/extensible-admission-controllers/#initializers) are controllers that can modify objects before they are created. Intializers can modify initial object creations but cannot affect updates to objects. Initializers can also reject objects. + +## Infrastructure Extensions + + +### Storage Plugins + +[Flex Volumes](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/storage/flexvolume-deployment.md +) allow users to mount volume types without built-in support by having the +Kubelet call a Binary Plugin to mount the volume. + + +### Device Plugins + +Device plugins allow a node to discover new Node resources (in addition to the +builtin ones like cpu and memory) via a [Device +Plugin](/docs/concepts/cluster-administration/device-plugins/). + + +### Network Plugins + +Different networking fabrics can be supported via node-level [Network Plugins](/docs/admin/network-plugins/). + +### Scheduler Extensions + +The scheduler is a special type of controller that watches pods, and assigns +pods to nodes. The default scheduler can be be replaced entirely, while +continuing to use other Kubernetes components, or [multiple +schedulers](/docs/tasks/administer-cluster/configure-multiple-schedulers/) +can run at the same time. + +This is a significant undertaking, and almost all Kubernetes users find they +do not need to modify the scheduler. + +The scheduler also supports a +[webhook](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/scheduling/scheduler_extender.md) +that permits a webhook backend (scheduler extension) to filter and prioritize +the nodes chosen for a pod. + +{% endcapture %} + + +{% capture whatsnext %} + +* Learn more about [Custom Resources](/docs/concepts/api-extension/custom-resources/) +* Learn about [Dynamic admission control](/docs/admin/extensible-admission-controller) +* Learn more about Infrastructure extensions + * [Network Plugins](/docs/concepts/cluster-administration/network-plugin) + * [Device Plugins](/docs/concepts/cluster-administration/device-plugins.md) +* Learn about [kubectl plugins](/docs/tasks/extend-kubectl/kubectl-plugin) +* See examples of Automation + * [List of Operators](https://github.com/coreos/awesome-kubernetes-extensions) + +{% endcapture %} + +{% include templates/concept.md %} + + From 865698f795b3d7c05c04039de735128edf2de6a4 Mon Sep 17 00:00:00 2001 From: Andrew Chen Date: Mon, 27 Nov 2017 14:43:36 -0800 Subject: [PATCH 041/176] Add tooltip includes for terms --- _data/glossary/platform-developer.yaml | 2 +- docs/concepts/overview/extending.md | 16 ++++++---------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/_data/glossary/platform-developer.yaml b/_data/glossary/platform-developer.yaml index 94be671d79..8d0c556d06 100644 --- a/_data/glossary/platform-developer.yaml +++ b/_data/glossary/platform-developer.yaml @@ -8,4 +8,4 @@ tags: short-description: > A person who customizes the Kubernetes platform to fit the needs of their project. long-description: > - A platform developer may, for example, use [Custom Resources](/docs/concepts/api-extension/custom-resources/) or [Extend the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation/) to add functionality to their instance of Kubernetes, specifically for their application. Some Platfor Developers are also {% glossary_tooltip text="contributors" term_id="member" %} and develop extensions which are contributed to the Kubernetes community. Others develop closed-source commercial or site-specific extensions. + A platform developer may, for example, use [Custom Resources](/docs/concepts/api-extension/custom-resources/) or [Extend the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation/) to add functionality to their instance of Kubernetes, specifically for their application. Some Platform Developers are also {% glossary_tooltip text="contributors" term_id="contributor" %} and develop extensions which are contributed to the Kubernetes community. Others develop closed-source commercial or site-specific extensions. diff --git a/docs/concepts/overview/extending.md b/docs/concepts/overview/extending.md index 939a73618b..89c34a40c4 100644 --- a/docs/concepts/overview/extending.md +++ b/docs/concepts/overview/extending.md @@ -14,16 +14,12 @@ there is rarely a need to fork or submit patches to the Kubernetes project code. This guide describes the options for customizing a Kubernetes -cluster. It is aimed at **Cluster Operators** who want to +cluster. It is aimed at {% glossary_tooltip text="Cluster Operators" term_id="cluster-operator" %} who want to understand how to adapt their Kubernetes cluster to the needs of -their work environment. Developers who are prospective **Platform -Developers** or Kubernetes Project **Contributors** will also find it +their work environment. Developers who are prospective {% glossary_tooltip text="Platform +Developers" term_id="platform-developer" %} or Kubernetes Project {% glossary_tooltip text="Contributors" term_id="contributor" %} will also find it useful as an introduction to what extension points and patterns -exist, and their tradeoffs and limitations. - -{% glossary_definition term_id="cluster-operator" length="all" %} -{% glossary_definition term_id="platform-developer" length="all" %} -{% glossary_definition term_id="contributor" length="all" %} +exist, and their trade-offs and limitations. {% endcapture %} @@ -43,7 +39,7 @@ Customization approaches can be broadly divided into *configuration*, which only * [kube-controller-manager](/docs/admin/kube-controller-manager/) * [kube-scheduler](/docs/admin/kube-scheduler/). -Flags and configuration files may not always be changable in a hosted Kubernetes service or a distribution with managed installation. When they are changable, they are usually only changeable by the cluster administrator. Also, they are subject to change in future Kubernetes versions, and setting them may require restarting processes. For those reasons, they should be used only when there are no other options. +Flags and configuration files may not always be changeable in a hosted Kubernetes service or a distribution with managed installation. When they are changeable, they are usually only changeable by the cluster administrator. Also, they are subject to change in future Kubernetes versions, and setting them may require restarting processes. For those reasons, they should be used only when there are no other options. *Built-in Policy APIs*, such as [ResourceQuota](/docs/concepts/policy/resource-quotas/), [PodSecurityPolicies](/docs/concepts/policy/pod-security-policy/), [NetworkPolicy](/docs/concepts/services-networking/network-policies/) and Role-based Access Control ([RBAC](/docs/admin/authorization/rbac/)), are built-in Kubernetes APIs. APIs are typically used with hosted Kubernetes services and with managed Kubernetes installations. They are declarative and use the same conventions as other Kubernetes resources like pods, so new cluster configuration can be repeatable and be managed the same way as applications. And, where they are stable, they enjoy a [defined support policy](/docs/reference/deprecation-policy/) like other Kubernetes APIs. For these reasons, they are preferred over *configuration files* and *flags* where suitable. @@ -159,7 +155,7 @@ After a request is authorized, if it is a write operation, it also t goes throug * The [Image Policy webhook](/docs/admin/admission-controllers/#imagepolicywebhook) restricts what images can be run in containers. * To make arbitrary admission control decisions, a general [Admission webhook](/docs/admin/extensible-admission-controllers/#external-admission-webhooks) can be used. Admission Webhooks can reject creations or updates. -* [Initializers](/docs/admin/extensible-admission-controllers/#initializers) are controllers that can modify objects before they are created. Intializers can modify initial object creations but cannot affect updates to objects. Initializers can also reject objects. +* [Initializers](/docs/admin/extensible-admission-controllers/#initializers) are controllers that can modify objects before they are created. Initializers can modify initial object creations but cannot affect updates to objects. Initializers can also reject objects. ## Infrastructure Extensions From ca84eb508582e681ca375e56631da87680fdd3f3 Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Mon, 27 Nov 2017 15:28:33 -0800 Subject: [PATCH 042/176] /docs/reference sidebar improvements (#6411) Attempt at making the left sidebar for /docs/reference more useful, I've got some more sidebar improvements I'm saving for other PRs for this area. Signed-off-by: Ahmet Alp Balkan --- _data/reference.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/_data/reference.yml b/_data/reference.yml index 5c9ba3d2c1..4275214b3a 100644 --- a/_data/reference.yml +++ b/_data/reference.yml @@ -64,11 +64,7 @@ toc: - docs/user-guide/jsonpath.md - docs/user-guide/kubectl-cheatsheet.md -- title: Cloud Controller Manager - section: - - docs/reference/generated/cloud-controller-manager.md - -- title: Setup Tools +- title: Setup Tools Reference section: - docs/reference/generated/kubeadm.md - title: Kubefed @@ -80,7 +76,7 @@ toc: - docs/reference/generated/kubefed_unjoin.md - docs/reference/generated/kubefed_version.md -- title: Config Reference +- title: Command-line Tools Reference section: - docs/reference/generated/kubelet.md - docs/admin/kubelet-authentication-authorization.md @@ -89,6 +85,7 @@ toc: - docs/reference/generated/kube-proxy.md - docs/reference/generated/kube-scheduler.md - docs/admin/kubelet-tls-bootstrapping.md + - docs/reference/generated/cloud-controller-manager.md - docs/reference/generated/federation-apiserver.md - docs/reference/generated/federation-controller-manager.md From e1d8864d5254825aa358b7daf60505d0f8ae69d8 Mon Sep 17 00:00:00 2001 From: Aditya Mukerjee Date: Mon, 27 Nov 2017 19:14:36 -0500 Subject: [PATCH 043/176] Explicitly version Clientset in example (#6446) Core() is deprecated in favor of CoreV1 --- docs/tasks/administer-cluster/access-cluster-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/administer-cluster/access-cluster-api.md b/docs/tasks/administer-cluster/access-cluster-api.md index 7929387906..561ff96408 100644 --- a/docs/tasks/administer-cluster/access-cluster-api.md +++ b/docs/tasks/administer-cluster/access-cluster-api.md @@ -136,7 +136,7 @@ import ( // creates the clientset clientset, _:= kubernetes.NewForConfig(config) // access the API to list pods - pods, _:= clientset.Core().Pods("").List(v1.ListOptions{}) + pods, _:= clientset.CoreV1().Pods("").List(v1.ListOptions{}) fmt.Printf("There are %d pods in the cluster\n", len(pods.Items)) ... ``` From e17bb06830c4d9001ef782473865adc598c1faf9 Mon Sep 17 00:00:00 2001 From: Itay Shakury Date: Tue, 28 Nov 2017 02:59:45 +0200 Subject: [PATCH 044/176] correct reference for pre 1.8 api version (#6403) apps/v1beta1 -> extensions/v1beta1 --- docs/concepts/workloads/controllers/daemonset.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/workloads/controllers/daemonset.yaml b/docs/concepts/workloads/controllers/daemonset.yaml index 1788487382..dac78d5d42 100644 --- a/docs/concepts/workloads/controllers/daemonset.yaml +++ b/docs/concepts/workloads/controllers/daemonset.yaml @@ -1,4 +1,4 @@ -apiVersion: apps/v1beta2 # for versions before 1.8.0 use apps/v1beta1 +apiVersion: apps/v1beta2 # for versions before 1.8.0 use extensions/v1beta1 kind: DaemonSet metadata: name: fluentd-elasticsearch From 5d322a5aac175bce6ff5c633e1f042e0de7fc633 Mon Sep 17 00:00:00 2001 From: Qiming Teng Date: Tue, 28 Nov 2017 10:12:28 +0800 Subject: [PATCH 045/176] Fix links in Chinese translation --- cn/docs/concepts/overview/what-is-kubernetes.md | 2 +- .../services-networking/connect-applications-service.md | 9 --------- cn/docs/concepts/workloads/pods/init-containers.md | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/cn/docs/concepts/overview/what-is-kubernetes.md b/cn/docs/concepts/overview/what-is-kubernetes.md index 61537cbefa..46bce4b2f4 100644 --- a/cn/docs/concepts/overview/what-is-kubernetes.md +++ b/cn/docs/concepts/overview/what-is-kubernetes.md @@ -70,7 +70,7 @@ Kubernetes 满足了生产中运行应用程序的许多常见的需求,例如 * [Pod](/docs/user-guide/pods/) 提供复合应用并保留一个应用一个容器的容器模型, * [挂载外部存储](/docs/user-guide/volumes/), * [Secret管理](/docs/user-guide/secrets/), -* [应用健康检查](/docs/user-guide/production-pods/#liveness-and-readiness-probes-aka-health-checks), +* [应用健康检查](/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/), * [副本应用实例](/docs/user-guide/replication-controller/), * [横向自动扩缩容](/docs/user-guide/horizontal-pod-autoscaling/), * [服务发现](/docs/user-guide/connecting-applications/), diff --git a/cn/docs/concepts/services-networking/connect-applications-service.md b/cn/docs/concepts/services-networking/connect-applications-service.md index 869d0bcea6..bf548162dd 100644 --- a/cn/docs/concepts/services-networking/connect-applications-service.md +++ b/cn/docs/concepts/services-networking/connect-applications-service.md @@ -366,16 +366,7 @@ LoadBalancer Ingress: a320587ffd19711e5a37606cf4a74574-1142138393.us-east-1.el ... ``` - - ## 进一步阅读 Kubernetes 也支持联合 Service,能够跨多个集群和云提供商,为 Service 提供逐步增强的可用性、更优的容错、更好的可伸缩性。 查看 [联合 Service 用户指南](/docs/concepts/cluster-administration/federation-service-discovery/) 获取更进一步信息。 - - - -## 下一步 - -[了解更多关于 Kubernetes 的特性,有助于在生产环境中可靠地运行容器](/docs/user-guide/production-pods) - diff --git a/cn/docs/concepts/workloads/pods/init-containers.md b/cn/docs/concepts/workloads/pods/init-containers.md index e075dbbec6..08611bf61a 100644 --- a/cn/docs/concepts/workloads/pods/init-containers.md +++ b/cn/docs/concepts/workloads/pods/init-containers.md @@ -85,7 +85,7 @@ Init 容器支持应用容器的全部字段和特性,包括资源限制、数 * 克隆 Git 仓库到数据卷。 * 将配置值放到配置文件中,运行模板工具为主应用容器动态地生成配置文件。例如,在配置文件中存放 POD_IP 值,并使用 Jinja 生成主应用配置文件。 -更多详细用法示例,可以在 [StatefulSet 文档](/docs/concepts/abstractions/controllers/statefulsets/) 和 [生产环境 Pod 指南](/docs/user-guide/production-pods.md#handling-initialization) 中找到。 +更多详细用法示例,可以在 [StatefulSet 文档](/docs/concepts/abstractions/controllers/statefulsets/) 和 [Pod 初始化](/docs/tasks/configure-pod-container/configure-pod-initialization) 中找到。 From 706b21ba3867518d376e26b5bcae683c41dff4fb Mon Sep 17 00:00:00 2001 From: Ivan Font Date: Mon, 27 Nov 2017 18:18:34 -0800 Subject: [PATCH 046/176] Use base64 as one word --- docs/tasks/access-kubernetes-api/setup-extension-api-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md index 3f7c352a12..ea06e7c3b2 100644 --- a/docs/tasks/access-kubernetes-api/setup-extension-api-server.md +++ b/docs/tasks/access-kubernetes-api/setup-extension-api-server.md @@ -38,7 +38,7 @@ Alternatively, you can use an existing 3rd party solution, such as [apiserver-bu 1. Create a Kubernetes service account in your namespace. 1. Create a Kubernetes cluster role for the operations you want to allow on your resources. 1. Create a Kubernetes cluster role binding from the default service account in your namespace to the cluster role you just created. -1. Create a Kubernetes apiservice. The CA cert above should be base 64 encoded, stripped of new lines and used as the spec.caBundle in the apiservice. This should not be namespaced. If using the [kube-aggregator API](https://github.com/kubernetes/kube-aggregator/), only pass in the PEM encoded CA bundle because the base 64 encoding is done for you. +1. Create a Kubernetes apiservice. The CA cert above should be base64 encoded, stripped of new lines and used as the spec.caBundle in the apiservice. This should not be namespaced. If using the [kube-aggregator API](https://github.com/kubernetes/kube-aggregator/), only pass in the PEM encoded CA bundle because the base 64 encoding is done for you. 1. Use kubectl to get your resource. It should return "No resources found." Which means that everything worked but you currently have no objects of that resource type created yet. {% endcapture %} From 1ab9bb011662f63e45bf65de07d20e7d05f02956 Mon Sep 17 00:00:00 2001 From: Mike Wilson Date: Mon, 27 Nov 2017 21:59:28 -0500 Subject: [PATCH 047/176] Adding information about staged master upgrades (#6370) Master upgrades are staged after PR #55990 to kubernetes(https://github.com/kubernetes/kubernetes/pull/55990). This is the documentation update showing how to upgrade the master after that change. --- docs/getting-started-guides/ubuntu/upgrades.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/getting-started-guides/ubuntu/upgrades.md b/docs/getting-started-guides/ubuntu/upgrades.md index 142e49bf0a..c10e968dfb 100644 --- a/docs/getting-started-guides/ubuntu/upgrades.md +++ b/docs/getting-started-guides/ubuntu/upgrades.md @@ -84,7 +84,11 @@ Once the latest charm is deployed, the channel for Kubernetes can be selected by juju config kubernetes-master channel=1.x/stable Where `x` is the minor version of Kubernetes. For example, `1.6/stable`. See above for Channel definitions. +Once you've configured kubernetes-master with the appropriate channel, run the upgrade action on each master: + juju run-action kubernetes-master/0 upgrade + juju run-action kubernetes-master/1 upgrade + ... ### Worker Upgrades From c96acf5303cc94dc9bd12c5ebd09481bfa7ba422 Mon Sep 17 00:00:00 2001 From: aburdenthehand Date: Tue, 28 Nov 2017 15:46:43 +1000 Subject: [PATCH 048/176] Update index.md Updated version skew sentence for clarity. From review. --- docs/home/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/home/index.md b/docs/home/index.md index 36b64f7992..34cf0b0296 100644 --- a/docs/home/index.md +++ b/docs/home/index.md @@ -45,7 +45,7 @@ See the [Kubernetes Release](https://github.com/kubernetes/kubernetes/releases) ### Minor Versions -Different components are expected to be compatible across different version skew relative to the master. Nodes may lag master by up to two versions, but not exceed the master version. Clients may lag master by one version and may exceed master up to one version. +A certain amount of version skew is permissible between master components, node components, and the kubectl client. Nodes may lag master by up to two versions, but not exceed the master version. Clients may lag master by one version and may exceed master up to one version. For example, a v1.8 master is expected to be compatible with v1.6, v1.7, and v1.8 nodes, and compatible with v1.7, v1.8, and v1.9 clients. From b9ede5280873e7504bddf38eae06a7a200c4996d Mon Sep 17 00:00:00 2001 From: stewart-yu Date: Tue, 28 Nov 2017 15:21:02 +0800 Subject: [PATCH 049/176] fix bad url format --- docs/tutorials/stateful-application/zookeeper.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/stateful-application/zookeeper.md b/docs/tutorials/stateful-application/zookeeper.md index 7b7f1d0b4d..562b5ae15f 100644 --- a/docs/tutorials/stateful-application/zookeeper.md +++ b/docs/tutorials/stateful-application/zookeeper.md @@ -384,7 +384,7 @@ zk-0 0/1 Terminating 0 11m Reapply the manifest in `zookeeper.yaml`. ```shell -kubectl apply -f https://k8s.io/docs/tutorials/stateful-application/zookeeper.yaml +kubectl apply -f https://raw.githubusercontent.com/kubernetes/website/master/docs/tutorials/stateful-application/zookeeper.yaml ``` The `zk` StatefulSet will be created, but, as they already exist, the other API From 70c98ce98daf5771460edea91bedf333a03f2888 Mon Sep 17 00:00:00 2001 From: zhangxiaoyu-zidif Date: Tue, 28 Nov 2017 17:11:08 +0800 Subject: [PATCH 050/176] delete redundant punctuation --- cn/docs/tasks/manage-hugepages/scheduling-hugepages.md | 6 +++--- docs/tasks/manage-hugepages/scheduling-hugepages.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cn/docs/tasks/manage-hugepages/scheduling-hugepages.md b/cn/docs/tasks/manage-hugepages/scheduling-hugepages.md index ea9235d6d6..1055b1fdd0 100644 --- a/cn/docs/tasks/manage-hugepages/scheduling-hugepages.md +++ b/cn/docs/tasks/manage-hugepages/scheduling-hugepages.md @@ -13,9 +13,9 @@ title: 管理巨页(HugePages) {% capture prerequisites %} -1. 为了使节点能够上报巨页容量,Kubernetes 节点必须预先分配巨页。 +1. 为了使节点能够上报巨页容量,Kubernetes 节点必须预先分配巨页。 每个节点只能预先分配一种特定规格的巨页。 -1. 用户必须在整个系统中将专用的 **alpha** 特性开关 `HugePages` 设置为 true: `--feature-gates="HugePages=true"`。 +1. 用户必须在整个系统中将专用的 **alpha** 特性开关 `HugePages` 设置为 true: `--feature-gates=HugePages=true`。 节点会自动发现全部巨页资源,并作为可供调度的资源进行上报。 @@ -54,7 +54,7 @@ spec: - 巨页的资源需求和限制必须相等。 该条件在指定了资源限制,而没有指定需求的情况下默认成立。 - 巨页是被隔离在 pod 作用域的,计划在将来的迭代中实现容器级别的隔离。 - 巨页对 EmptyDir 卷提供支持,EmptyDir 卷所使用的巨页,不能够超出 pod 请求的内存容量。 -- 通过带有 `SHM_HUGETLB` 的 `shmget()` 使用巨页的应用,必须运行在一个与 +- 通过带有 `SHM_HUGETLB` 的 `shmget()` 使用巨页的应用,必须运行在一个与 `proc/sys/vm/hugetlb_shm_group` 匹配的补充组下。 ## (待实现的)特性 diff --git a/docs/tasks/manage-hugepages/scheduling-hugepages.md b/docs/tasks/manage-hugepages/scheduling-hugepages.md index a0fec7b567..e812f65d57 100644 --- a/docs/tasks/manage-hugepages/scheduling-hugepages.md +++ b/docs/tasks/manage-hugepages/scheduling-hugepages.md @@ -19,7 +19,7 @@ can consume huge pages and the current limitations. its huge page capacity. A node may only pre-allocate huge pages for a single size. 1. A special **alpha** feature gate `HugePages` has to be set to true across the - system: `--feature-gates="HugePages=true"`. + system: `--feature-gates=HugePages=true`. The nodes will automatically discover and report all huge page resources as a schedulable resource. From 069592459cb63918008e44cc46e8367eec71a3af Mon Sep 17 00:00:00 2001 From: Marc Cohen Date: Tue, 28 Nov 2017 15:30:56 +0000 Subject: [PATCH 051/176] add line break for better highlighting of button (#6333) --- docs/getting-started-guides/gce.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/getting-started-guides/gce.md b/docs/getting-started-guides/gce.md index ae3864d2c7..d8e66f8a1c 100644 --- a/docs/getting-started-guides/gce.md +++ b/docs/getting-started-guides/gce.md @@ -16,9 +16,11 @@ The example below creates a Kubernetes cluster with 4 worker node Virtual Machin If you want a simplified getting started experience and GUI for managing clusters, please consider trying [Google Kubernetes Engine](https://cloud.google.com/kubernetes-engine/) for hosted cluster installation and management. -For an easy way to experiment with the Kubernetes development environment, [click here](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/kubernetes/kubernetes&page=editor&open_in_editor=README.md) +For an easy way to experiment with the Kubernetes development environment, click the button below to open a Google Cloud Shell with an auto-cloned copy of the Kubernetes source repo. +[![Open in Cloud Shell](http://gstatic.com/cloudssh/images/open-btn.png)](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/kubernetes/kubernetes&page=editor&open_in_editor=README.md) + If you want to use custom binaries or pure open source Kubernetes, please continue with the instructions below. ### Prerequisites From aa2fe57460e1d5144edef12891e2993525c2b3af Mon Sep 17 00:00:00 2001 From: Steve Perry Date: Tue, 28 Nov 2017 18:02:16 -0800 Subject: [PATCH 052/176] Move kubectl ref docs to /docs/reference/. (#6472) * Move kubectl ref docs to /docs/reference/. * Update _redirects. --- _data/reference.yml | 22 +- _redirects | 7 + .../generated/kubectl/kubectl-commands.html} | 0 .../generated/kubectl/kubectl-options.md} | 0 .../generated/kubectl}/navData.js | 0 .../bootstrap/dist/css/bootstrap.min.css | 0 .../font-awesome/css/font-awesome.min.css | 0 .../highlight.js/styles/default.css | 0 .../jquery.scrollto/jquery.scrollTo.min.js | 0 .../node_modules/jquery/dist/jquery.min.js | 0 .../generated/kubectl}/scroll.js | 0 .../generated/kubectl}/stylesheet.css | 0 .../generated/kubectl}/tabvisibility.js | 0 .../kubectl/cheatsheet.md} | 0 .../kubectl/conventions.md} | 0 .../kubectl}/docker-cli-to-kubectl.md | 0 .../kubectl}/jsonpath.md | 0 .../kubectl/overview.md} | 0 docs/user-guide/kubectl/.files_generated | 35 - docs/user-guide/kubectl/v1.5/LICENSE | 201 - docs/user-guide/kubectl/v1.5/README.md | 69 - docs/user-guide/kubectl/v1.5/actions.js | 58 - docs/user-guide/kubectl/v1.5/brodoc.js | 211 - docs/user-guide/kubectl/v1.5/index.html | 5734 --------- docs/user-guide/kubectl/v1.5/jsconfig.json | 6 - .../kubectl/v1.5/markedDecorations.js | 101 - docs/user-guide/kubectl/v1.5/navData.js | 1 - .../kubectl/v1.5/node_modules/.bin/marked | 187 - .../kubectl/v1.5/node_modules/.bin/mime | 8 - .../kubectl/v1.5/node_modules/.bin/static | 132 - .../v1.5/node_modules/bootstrap/CHANGELOG.md | 5 - .../v1.5/node_modules/bootstrap/Gruntfile.js | 511 - .../v1.5/node_modules/bootstrap/LICENSE | 21 - .../v1.5/node_modules/bootstrap/README.md | 142 - .../bootstrap/dist/css/bootstrap-theme.css | 587 - .../dist/css/bootstrap-theme.css.map | 1 - .../dist/css/bootstrap-theme.min.css | 6 - .../dist/css/bootstrap-theme.min.css.map | 1 - .../bootstrap/dist/css/bootstrap.css | 6757 ---------- .../bootstrap/dist/css/bootstrap.css.map | 1 - .../bootstrap/dist/css/bootstrap.min.css.map | 1 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../bootstrap/dist/js/bootstrap.js | 2377 ---- .../bootstrap/dist/js/bootstrap.min.js | 7 - .../node_modules/bootstrap/dist/js/npm.js | 13 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../node_modules/bootstrap/grunt/.jshintrc | 7 - .../bootstrap/grunt/bs-commonjs-generator.js | 30 - .../grunt/bs-glyphicons-data-generator.js | 42 - .../bootstrap/grunt/bs-lessdoc-parser.js | 237 - .../bootstrap/grunt/bs-raw-files-generator.js | 44 - .../bootstrap/grunt/change-version.js | 109 - .../bootstrap/grunt/configBridge.json | 46 - .../bootstrap/grunt/npm-shrinkwrap.json | 2679 ---- .../bootstrap/grunt/sauce_browsers.yml | 82 - .../v1.5/node_modules/bootstrap/js/affix.js | 162 - .../v1.5/node_modules/bootstrap/js/alert.js | 94 - .../v1.5/node_modules/bootstrap/js/button.js | 125 - .../node_modules/bootstrap/js/carousel.js | 237 - .../node_modules/bootstrap/js/collapse.js | 212 - .../node_modules/bootstrap/js/dropdown.js | 165 - .../v1.5/node_modules/bootstrap/js/modal.js | 339 - .../v1.5/node_modules/bootstrap/js/popover.js | 108 - .../node_modules/bootstrap/js/scrollspy.js | 172 - .../v1.5/node_modules/bootstrap/js/tab.js | 155 - .../v1.5/node_modules/bootstrap/js/tooltip.js | 520 - .../node_modules/bootstrap/js/transition.js | 59 - .../node_modules/bootstrap/less/alerts.less | 73 - .../node_modules/bootstrap/less/badges.less | 66 - .../bootstrap/less/bootstrap.less | 56 - .../bootstrap/less/breadcrumbs.less | 26 - .../bootstrap/less/button-groups.less | 244 - .../node_modules/bootstrap/less/buttons.less | 166 - .../node_modules/bootstrap/less/carousel.less | 270 - .../node_modules/bootstrap/less/close.less | 34 - .../node_modules/bootstrap/less/code.less | 69 - .../bootstrap/less/component-animations.less | 33 - .../bootstrap/less/dropdowns.less | 216 - .../node_modules/bootstrap/less/forms.less | 613 - .../bootstrap/less/glyphicons.less | 305 - .../node_modules/bootstrap/less/grid.less | 84 - .../bootstrap/less/input-groups.less | 171 - .../bootstrap/less/jumbotron.less | 54 - .../node_modules/bootstrap/less/labels.less | 64 - .../bootstrap/less/list-group.less | 130 - .../node_modules/bootstrap/less/media.less | 66 - .../node_modules/bootstrap/less/mixins.less | 40 - .../bootstrap/less/mixins/alerts.less | 14 - .../less/mixins/background-variant.less | 9 - .../bootstrap/less/mixins/border-radius.less | 18 - .../bootstrap/less/mixins/buttons.less | 65 - .../bootstrap/less/mixins/center-block.less | 7 - .../bootstrap/less/mixins/clearfix.less | 22 - .../bootstrap/less/mixins/forms.less | 85 - .../bootstrap/less/mixins/gradients.less | 59 - .../bootstrap/less/mixins/grid-framework.less | 91 - .../bootstrap/less/mixins/grid.less | 122 - .../bootstrap/less/mixins/hide-text.less | 21 - .../bootstrap/less/mixins/image.less | 33 - .../bootstrap/less/mixins/labels.less | 12 - .../bootstrap/less/mixins/list-group.less | 30 - .../bootstrap/less/mixins/nav-divider.less | 10 - .../less/mixins/nav-vertical-align.less | 9 - .../bootstrap/less/mixins/opacity.less | 8 - .../bootstrap/less/mixins/pagination.less | 24 - .../bootstrap/less/mixins/panels.less | 24 - .../bootstrap/less/mixins/progress-bar.less | 10 - .../bootstrap/less/mixins/reset-filter.less | 8 - .../bootstrap/less/mixins/reset-text.less | 18 - .../bootstrap/less/mixins/resize.less | 6 - .../less/mixins/responsive-visibility.less | 15 - .../bootstrap/less/mixins/size.less | 10 - .../bootstrap/less/mixins/tab-focus.less | 9 - .../bootstrap/less/mixins/table-row.less | 28 - .../bootstrap/less/mixins/text-emphasis.less | 9 - .../bootstrap/less/mixins/text-overflow.less | 8 - .../less/mixins/vendor-prefixes.less | 227 - .../node_modules/bootstrap/less/modals.less | 150 - .../node_modules/bootstrap/less/navbar.less | 660 - .../node_modules/bootstrap/less/navs.less | 242 - .../bootstrap/less/normalize.less | 424 - .../node_modules/bootstrap/less/pager.less | 54 - .../bootstrap/less/pagination.less | 89 - .../node_modules/bootstrap/less/panels.less | 271 - .../node_modules/bootstrap/less/popovers.less | 131 - .../node_modules/bootstrap/less/print.less | 101 - .../bootstrap/less/progress-bars.less | 87 - .../bootstrap/less/responsive-embed.less | 35 - .../bootstrap/less/responsive-utilities.less | 194 - .../bootstrap/less/scaffolding.less | 161 - .../node_modules/bootstrap/less/tables.less | 234 - .../node_modules/bootstrap/less/theme.less | 291 - .../bootstrap/less/thumbnails.less | 36 - .../node_modules/bootstrap/less/tooltip.less | 101 - .../node_modules/bootstrap/less/type.less | 302 - .../bootstrap/less/utilities.less | 55 - .../bootstrap/less/variables.less | 869 -- .../node_modules/bootstrap/less/wells.less | 29 - .../v1.5/node_modules/bootstrap/package.json | 152 - .../kubectl/v1.5/node_modules/colors/LICENSE | 23 - .../v1.5/node_modules/colors/ReadMe.md | 178 - .../colors/examples/normal-usage.js | 74 - .../colors/examples/safe-string.js | 76 - .../v1.5/node_modules/colors/lib/colors.js | 187 - .../node_modules/colors/lib/custom/trap.js | 45 - .../node_modules/colors/lib/custom/zalgo.js | 104 - .../colors/lib/extendStringPrototype.js | 113 - .../v1.5/node_modules/colors/lib/index.js | 12 - .../node_modules/colors/lib/maps/america.js | 12 - .../node_modules/colors/lib/maps/rainbow.js | 13 - .../node_modules/colors/lib/maps/random.js | 8 - .../node_modules/colors/lib/maps/zebra.js | 5 - .../v1.5/node_modules/colors/lib/styles.js | 77 - .../colors/lib/system/supports-colors.js | 61 - .../v1.5/node_modules/colors/package.json | 94 - .../kubectl/v1.5/node_modules/colors/safe.js | 9 - .../colors/themes/generic-logging.js | 12 - .../kubectl/v1.5/node_modules/ejs/Jakefile | 69 - .../kubectl/v1.5/node_modules/ejs/LICENSE | 202 - .../kubectl/v1.5/node_modules/ejs/README.md | 241 - .../kubectl/v1.5/node_modules/ejs/ejs.js | 1425 --- .../kubectl/v1.5/node_modules/ejs/ejs.min.js | 1 - .../kubectl/v1.5/node_modules/ejs/lib/ejs.js | 798 -- .../v1.5/node_modules/ejs/lib/utils.js | 163 - .../v1.5/node_modules/ejs/package.json | 113 - .../kubectl/v1.5/node_modules/ejs/test/ejs.js | 994 -- .../ejs/test/fixtures/backslash.ejs | 1 - .../ejs/test/fixtures/backslash.html | 1 - .../ejs/test/fixtures/comments.ejs | 7 - .../ejs/test/fixtures/comments.html | 6 - .../ejs/test/fixtures/consecutive-tags.ejs | 1 - .../ejs/test/fixtures/consecutive-tags.html | 1 - .../ejs/test/fixtures/double-quote.ejs | 1 - .../ejs/test/fixtures/double-quote.html | 1 - .../node_modules/ejs/test/fixtures/error.ejs | 5 - .../node_modules/ejs/test/fixtures/error.out | 8 - .../node_modules/ejs/test/fixtures/fail.ejs | 1 - .../ejs/test/fixtures/hello-world.ejs | 1 - .../ejs/test/fixtures/include-abspath.ejs | 5 - .../ejs/test/fixtures/include-root.ejs | 1 - .../ejs/test/fixtures/include-simple.ejs | 3 - .../ejs/test/fixtures/include-simple.html | 4 - .../ejs/test/fixtures/include.css.ejs | 1 - .../ejs/test/fixtures/include.css.html | 4 - .../ejs/test/fixtures/include.ejs | 5 - .../ejs/test/fixtures/include.html | 12 - .../ejs/test/fixtures/include_cache.ejs | 1 - .../ejs/test/fixtures/include_cache.html | 1 - .../fixtures/include_preprocessor.css.ejs | 1 - .../fixtures/include_preprocessor.css.html | 4 - .../test/fixtures/include_preprocessor.ejs | 5 - .../test/fixtures/include_preprocessor.html | 12 - .../fixtures/include_preprocessor_cache.ejs | 1 - .../fixtures/include_preprocessor_cache.html | 1 - .../include_preprocessor_line_slurp.ejs | 1 - .../include_preprocessor_line_slurp.html | 5 - .../include_preprocessor_line_slurp_child.ejs | 5 - .../ejs/test/fixtures/includes/bom.ejs | 1 - .../ejs/test/fixtures/includes/menu-item.ejs | 1 - .../ejs/test/fixtures/includes/menu/item.ejs | 1 - .../ejs/test/fixtures/literal.ejs | 3 - .../ejs/test/fixtures/literal.html | 3 - .../node_modules/ejs/test/fixtures/menu.ejs | 15 - .../node_modules/ejs/test/fixtures/menu.html | 9 - .../ejs/test/fixtures/menu_preprocessor.ejs | 11 - .../ejs/test/fixtures/menu_preprocessor.html | 8 - .../ejs/test/fixtures/menu_var.ejs | 15 - .../node_modules/ejs/test/fixtures/messed.ejs | 1 - .../ejs/test/fixtures/messed.html | 1 - .../ejs/test/fixtures/newlines.ejs | 5 - .../ejs/test/fixtures/newlines.html | 9 - .../ejs/test/fixtures/newlines.mixed.ejs | 6 - .../ejs/test/fixtures/newlines.mixed.html | 4 - .../ejs/test/fixtures/no.newlines.ejs | 5 - .../ejs/test/fixtures/no.newlines.error.ejs | 5 - .../ejs/test/fixtures/no.newlines.html | 5 - .../ejs/test/fixtures/no.semicolons.ejs | 8 - .../ejs/test/fixtures/no.semicolons.html | 3 - .../node_modules/ejs/test/fixtures/para.ejs | 1 - .../node_modules/ejs/test/fixtures/pet.ejs | 1 - .../ejs/test/fixtures/rmWhitespace.ejs | 14 - .../ejs/test/fixtures/rmWhitespace.html | 8 - .../ejs/test/fixtures/single-quote.ejs | 1 - .../ejs/test/fixtures/single-quote.html | 1 - .../ejs/test/fixtures/space-and-tab-slurp.ejs | 5 - .../test/fixtures/space-and-tab-slurp.html | 5 - .../node_modules/ejs/test/fixtures/strict.ejs | 5 - .../node_modules/ejs/test/fixtures/style.css | 3 - .../ejs/test/fixtures/user-no-with.ejs | 1 - .../node_modules/ejs/test/fixtures/user.ejs | 1 - .../ejs/test/fixtures/with-context.ejs | 1 - .../v1.5/node_modules/ejs/test/mocha.opts | 3 - .../node_modules/ejs/test/tmp/include.ejs | 1 - .../ejs/test/tmp/include_preprocessor.ejs | 1 - .../node_modules/ejs/test/tmp/renderFile.ejs | 1 - .../v1.5/node_modules/font-awesome/.npmignore | 42 - .../node_modules/font-awesome/HELP-US-OUT.txt | 7 - .../v1.5/node_modules/font-awesome/README.md | 106 - .../font-awesome/css/font-awesome.css | 2337 ---- .../font-awesome/css/font-awesome.css.map | 7 - .../font-awesome/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes .../fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes .../fonts/fontawesome-webfont.svg | 2671 ---- .../fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes .../fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes .../fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes .../font-awesome/less/animated.less | 34 - .../font-awesome/less/bordered-pulled.less | 25 - .../node_modules/font-awesome/less/core.less | 12 - .../font-awesome/less/fixed-width.less | 6 - .../font-awesome/less/font-awesome.less | 18 - .../node_modules/font-awesome/less/icons.less | 789 -- .../font-awesome/less/larger.less | 13 - .../node_modules/font-awesome/less/list.less | 19 - .../font-awesome/less/mixins.less | 60 - .../node_modules/font-awesome/less/path.less | 15 - .../font-awesome/less/rotated-flipped.less | 20 - .../font-awesome/less/screen-reader.less | 5 - .../font-awesome/less/stacked.less | 20 - .../font-awesome/less/variables.less | 800 -- .../node_modules/font-awesome/package.json | 112 - .../font-awesome/scss/_animated.scss | 34 - .../font-awesome/scss/_bordered-pulled.scss | 25 - .../node_modules/font-awesome/scss/_core.scss | 12 - .../font-awesome/scss/_fixed-width.scss | 6 - .../font-awesome/scss/_icons.scss | 789 -- .../font-awesome/scss/_larger.scss | 13 - .../node_modules/font-awesome/scss/_list.scss | 19 - .../font-awesome/scss/_mixins.scss | 60 - .../node_modules/font-awesome/scss/_path.scss | 15 - .../font-awesome/scss/_rotated-flipped.scss | 20 - .../font-awesome/scss/_screen-reader.scss | 5 - .../font-awesome/scss/_stacked.scss | 20 - .../font-awesome/scss/_variables.scss | 800 -- .../font-awesome/scss/font-awesome.scss | 18 - .../v1.5/node_modules/highlight.js/LICENSE | 24 - .../v1.5/node_modules/highlight.js/README.md | 150 - .../node_modules/highlight.js/docs/api.rst | 120 - .../highlight.js/docs/building-testing.rst | 88 - .../docs/css-classes-reference.rst | 424 - .../node_modules/highlight.js/docs/index.rst | 44 - .../docs/language-contribution.rst | 78 - .../highlight.js/docs/language-guide.rst | 264 - .../highlight.js/docs/language-requests.rst | 17 - .../highlight.js/docs/line-numbers.rst | 39 - .../highlight.js/docs/reference.rst | 324 - .../highlight.js/docs/release-process.rst | 20 - .../highlight.js/docs/style-guide.rst | 107 - .../highlight.js/lib/highlight.js | 818 -- .../node_modules/highlight.js/lib/index.js | 173 - .../highlight.js/lib/languages/1c.js | 78 - .../highlight.js/lib/languages/abnf.js | 70 - .../highlight.js/lib/languages/accesslog.js | 37 - .../lib/languages/actionscript.js | 73 - .../highlight.js/lib/languages/ada.js | 172 - .../highlight.js/lib/languages/apache.js | 45 - .../highlight.js/lib/languages/applescript.js | 85 - .../highlight.js/lib/languages/arduino.js | 99 - .../highlight.js/lib/languages/armasm.js | 91 - .../highlight.js/lib/languages/asciidoc.js | 187 - .../highlight.js/lib/languages/aspectj.js | 143 - .../highlight.js/lib/languages/autohotkey.js | 47 - .../highlight.js/lib/languages/autoit.js | 135 - .../highlight.js/lib/languages/avrasm.js | 61 - .../highlight.js/lib/languages/awk.js | 52 - .../highlight.js/lib/languages/axapta.js | 30 - .../highlight.js/lib/languages/bash.js | 74 - .../highlight.js/lib/languages/basic.js | 50 - .../highlight.js/lib/languages/bnf.js | 28 - .../highlight.js/lib/languages/brainfuck.js | 36 - .../highlight.js/lib/languages/cal.js | 79 - .../highlight.js/lib/languages/capnproto.js | 48 - .../highlight.js/lib/languages/ceylon.js | 66 - .../highlight.js/lib/languages/clean.js | 24 - .../lib/languages/clojure-repl.js | 14 - .../highlight.js/lib/languages/clojure.js | 94 - .../highlight.js/lib/languages/cmake.js | 37 - .../lib/languages/coffeescript.js | 145 - .../highlight.js/lib/languages/coq.js | 66 - .../highlight.js/lib/languages/cos.js | 123 - .../highlight.js/lib/languages/cpp.js | 165 - .../highlight.js/lib/languages/crmsh.js | 93 - .../highlight.js/lib/languages/crystal.js | 176 - .../highlight.js/lib/languages/cs.js | 166 - .../highlight.js/lib/languages/csp.js | 21 - .../highlight.js/lib/languages/css.js | 104 - .../highlight.js/lib/languages/d.js | 257 - .../highlight.js/lib/languages/dart.js | 100 - .../highlight.js/lib/languages/delphi.js | 68 - .../highlight.js/lib/languages/diff.js | 39 - .../highlight.js/lib/languages/django.js | 63 - .../highlight.js/lib/languages/dns.js | 28 - .../highlight.js/lib/languages/dockerfile.js | 21 - .../highlight.js/lib/languages/dos.js | 51 - .../highlight.js/lib/languages/dsconfig.js | 46 - .../highlight.js/lib/languages/dts.js | 123 - .../highlight.js/lib/languages/dust.js | 31 - .../highlight.js/lib/languages/ebnf.js | 32 - .../highlight.js/lib/languages/elixir.js | 96 - .../highlight.js/lib/languages/elm.js | 82 - .../highlight.js/lib/languages/erb.js | 14 - .../highlight.js/lib/languages/erlang-repl.js | 45 - .../highlight.js/lib/languages/erlang.js | 145 - .../highlight.js/lib/languages/excel.js | 47 - .../highlight.js/lib/languages/fix.js | 28 - .../highlight.js/lib/languages/flix.js | 44 - .../highlight.js/lib/languages/fortran.js | 70 - .../highlight.js/lib/languages/fsharp.js | 58 - .../highlight.js/lib/languages/gams.js | 153 - .../highlight.js/lib/languages/gauss.js | 221 - .../highlight.js/lib/languages/gcode.js | 66 - .../highlight.js/lib/languages/gherkin.js | 36 - .../highlight.js/lib/languages/glsl.js | 116 - .../highlight.js/lib/languages/go.js | 53 - .../highlight.js/lib/languages/golo.js | 22 - .../highlight.js/lib/languages/gradle.js | 34 - .../highlight.js/lib/languages/groovy.js | 93 - .../highlight.js/lib/languages/haml.js | 106 - .../highlight.js/lib/languages/handlebars.js | 33 - .../highlight.js/lib/languages/haskell.js | 121 - .../highlight.js/lib/languages/haxe.js | 111 - .../highlight.js/lib/languages/hsp.js | 45 - .../highlight.js/lib/languages/htmlbars.js | 70 - .../highlight.js/lib/languages/http.js | 40 - .../highlight.js/lib/languages/inform7.js | 56 - .../highlight.js/lib/languages/ini.js | 65 - .../highlight.js/lib/languages/irpf90.js | 75 - .../highlight.js/lib/languages/java.js | 107 - .../highlight.js/lib/languages/javascript.js | 170 - .../highlight.js/lib/languages/json.js | 36 - .../highlight.js/lib/languages/julia.js | 177 - .../highlight.js/lib/languages/kotlin.js | 173 - .../highlight.js/lib/languages/lasso.js | 162 - .../highlight.js/lib/languages/ldif.js | 22 - .../highlight.js/lib/languages/less.js | 139 - .../highlight.js/lib/languages/lisp.js | 102 - .../lib/languages/livecodeserver.js | 156 - .../highlight.js/lib/languages/livescript.js | 148 - .../highlight.js/lib/languages/llvm.js | 88 - .../highlight.js/lib/languages/lsl.js | 82 - .../highlight.js/lib/languages/lua.js | 55 - .../highlight.js/lib/languages/makefile.js | 44 - .../highlight.js/lib/languages/markdown.js | 107 - .../highlight.js/lib/languages/mathematica.js | 57 - .../highlight.js/lib/languages/matlab.js | 87 - .../highlight.js/lib/languages/maxima.js | 405 - .../highlight.js/lib/languages/mel.js | 224 - .../highlight.js/lib/languages/mercury.js | 81 - .../highlight.js/lib/languages/mipsasm.js | 85 - .../highlight.js/lib/languages/mizar.js | 18 - .../highlight.js/lib/languages/mojolicious.js | 24 - .../highlight.js/lib/languages/monkey.js | 74 - .../highlight.js/lib/languages/moonscript.js | 111 - .../highlight.js/lib/languages/nginx.js | 92 - .../highlight.js/lib/languages/nimrod.js | 54 - .../highlight.js/lib/languages/nix.js | 48 - .../highlight.js/lib/languages/nsis.js | 105 - .../highlight.js/lib/languages/objectivec.js | 90 - .../highlight.js/lib/languages/ocaml.js | 70 - .../highlight.js/lib/languages/openscad.js | 56 - .../highlight.js/lib/languages/oxygene.js | 69 - .../highlight.js/lib/languages/parser3.js | 47 - .../highlight.js/lib/languages/perl.js | 156 - .../highlight.js/lib/languages/pf.js | 51 - .../highlight.js/lib/languages/php.js | 126 - .../highlight.js/lib/languages/pony.js | 90 - .../highlight.js/lib/languages/powershell.js | 80 - .../highlight.js/lib/languages/processing.js | 47 - .../highlight.js/lib/languages/profile.js | 29 - .../highlight.js/lib/languages/prolog.js | 87 - .../highlight.js/lib/languages/protobuf.js | 35 - .../highlight.js/lib/languages/puppet.js | 114 - .../highlight.js/lib/languages/purebasic.js | 57 - .../highlight.js/lib/languages/python.js | 91 - .../highlight.js/lib/languages/q.js | 22 - .../highlight.js/lib/languages/qml.js | 168 - .../highlight.js/lib/languages/r.js | 69 - .../highlight.js/lib/languages/rib.js | 26 - .../highlight.js/lib/languages/roboconf.js | 66 - .../highlight.js/lib/languages/rsl.js | 35 - .../highlight.js/lib/languages/ruby.js | 175 - .../lib/languages/ruleslanguage.js | 60 - .../highlight.js/lib/languages/rust.js | 103 - .../highlight.js/lib/languages/scala.js | 114 - .../highlight.js/lib/languages/scheme.js | 140 - .../highlight.js/lib/languages/scilab.js | 53 - .../highlight.js/lib/languages/scss.js | 97 - .../highlight.js/lib/languages/smali.js | 55 - .../highlight.js/lib/languages/smalltalk.js | 49 - .../highlight.js/lib/languages/sml.js | 65 - .../highlight.js/lib/languages/sqf.js | 370 - .../highlight.js/lib/languages/sql.js | 159 - .../highlight.js/lib/languages/stan.js | 82 - .../highlight.js/lib/languages/stata.js | 37 - .../highlight.js/lib/languages/step21.js | 46 - .../highlight.js/lib/languages/stylus.js | 453 - .../highlight.js/lib/languages/subunit.js | 33 - .../highlight.js/lib/languages/swift.js | 116 - .../lib/languages/taggerscript.js | 43 - .../highlight.js/lib/languages/tap.js | 35 - .../highlight.js/lib/languages/tcl.js | 60 - .../highlight.js/lib/languages/tex.js | 61 - .../highlight.js/lib/languages/thrift.js | 34 - .../highlight.js/lib/languages/tp.js | 83 - .../highlight.js/lib/languages/twig.js | 65 - .../highlight.js/lib/languages/typescript.js | 126 - .../highlight.js/lib/languages/vala.js | 49 - .../highlight.js/lib/languages/vbnet.js | 55 - .../lib/languages/vbscript-html.js | 11 - .../highlight.js/lib/languages/vbscript.js | 38 - .../highlight.js/lib/languages/verilog.js | 98 - .../highlight.js/lib/languages/vhdl.js | 60 - .../highlight.js/lib/languages/vim.js | 105 - .../highlight.js/lib/languages/x86asm.js | 135 - .../highlight.js/lib/languages/xl.js | 72 - .../highlight.js/lib/languages/xml.js | 102 - .../highlight.js/lib/languages/xquery.js | 70 - .../highlight.js/lib/languages/yaml.js | 83 - .../highlight.js/lib/languages/zephir.js | 106 - .../node_modules/highlight.js/package.json | 1015 -- .../highlight.js/styles/agate.css | 108 - .../highlight.js/styles/androidstudio.css | 66 - .../highlight.js/styles/arduino-light.css | 88 - .../node_modules/highlight.js/styles/arta.css | 73 - .../highlight.js/styles/ascetic.css | 45 - .../highlight.js/styles/atelier-cave-dark.css | 83 - .../styles/atelier-cave-light.css | 85 - .../highlight.js/styles/atelier-dune-dark.css | 69 - .../styles/atelier-dune-light.css | 69 - .../styles/atelier-estuary-dark.css | 84 - .../styles/atelier-estuary-light.css | 84 - .../styles/atelier-forest-dark.css | 69 - .../styles/atelier-forest-light.css | 69 - .../styles/atelier-heath-dark.css | 69 - .../styles/atelier-heath-light.css | 69 - .../styles/atelier-lakeside-dark.css | 69 - .../styles/atelier-lakeside-light.css | 69 - .../styles/atelier-plateau-dark.css | 84 - .../styles/atelier-plateau-light.css | 84 - .../styles/atelier-savanna-dark.css | 84 - .../styles/atelier-savanna-light.css | 84 - .../styles/atelier-seaside-dark.css | 69 - .../styles/atelier-seaside-light.css | 69 - .../styles/atelier-sulphurpool-dark.css | 69 - .../styles/atelier-sulphurpool-light.css | 69 - .../highlight.js/styles/atom-one-dark.css | 96 - .../highlight.js/styles/atom-one-light.css | 96 - .../highlight.js/styles/brown-paper.css | 64 - .../highlight.js/styles/brown-papersq.png | Bin 18198 -> 0 bytes .../highlight.js/styles/codepen-embed.css | 60 - .../highlight.js/styles/color-brewer.css | 71 - .../highlight.js/styles/darcula.css | 77 - .../node_modules/highlight.js/styles/dark.css | 63 - .../highlight.js/styles/darkula.css | 6 - .../highlight.js/styles/docco.css | 97 - .../highlight.js/styles/dracula.css | 76 - .../node_modules/highlight.js/styles/far.css | 71 - .../highlight.js/styles/foundation.css | 88 - .../highlight.js/styles/github-gist.css | 71 - .../highlight.js/styles/github.css | 99 - .../highlight.js/styles/googlecode.css | 89 - .../highlight.js/styles/grayscale.css | 101 - .../highlight.js/styles/gruvbox-dark.css | 108 - .../highlight.js/styles/gruvbox-light.css | 108 - .../highlight.js/styles/hopscotch.css | 83 - .../highlight.js/styles/hybrid.css | 102 - .../node_modules/highlight.js/styles/idea.css | 97 - .../highlight.js/styles/ir-black.css | 73 - .../highlight.js/styles/kimbie.dark.css | 74 - .../highlight.js/styles/kimbie.light.css | 74 - .../highlight.js/styles/magula.css | 70 - .../highlight.js/styles/mono-blue.css | 59 - .../highlight.js/styles/monokai-sublime.css | 83 - .../highlight.js/styles/monokai.css | 70 - .../highlight.js/styles/obsidian.css | 88 - .../highlight.js/styles/ocean.css | 74 - .../highlight.js/styles/paraiso-dark.css | 72 - .../highlight.js/styles/paraiso-light.css | 72 - .../highlight.js/styles/pojoaque.css | 83 - .../highlight.js/styles/pojoaque.jpg | Bin 1186 -> 0 bytes .../highlight.js/styles/purebasic.css | 96 - .../highlight.js/styles/qtcreator_dark.css | 83 - .../highlight.js/styles/qtcreator_light.css | 83 - .../highlight.js/styles/railscasts.css | 106 - .../highlight.js/styles/rainbow.css | 85 - .../highlight.js/styles/school-book.css | 72 - .../highlight.js/styles/school-book.png | Bin 486 -> 0 bytes .../highlight.js/styles/solarized-dark.css | 84 - .../highlight.js/styles/solarized-light.css | 84 - .../highlight.js/styles/sunburst.css | 102 - .../styles/tomorrow-night-blue.css | 75 - .../styles/tomorrow-night-bright.css | 74 - .../styles/tomorrow-night-eighties.css | 74 - .../highlight.js/styles/tomorrow-night.css | 75 - .../highlight.js/styles/tomorrow.css | 72 - .../node_modules/highlight.js/styles/vs.css | 68 - .../highlight.js/styles/xcode.css | 93 - .../highlight.js/styles/xt256.css | 92 - .../highlight.js/styles/zenburn.css | 80 - .../v1.5/node_modules/jquery.scrollto/.jscsrc | 41 - .../node_modules/jquery.scrollto/.jshintrc | 23 - .../node_modules/jquery.scrollto/.npmignore | 16 - .../node_modules/jquery.scrollto/CHANGELOG.md | 186 - .../v1.5/node_modules/jquery.scrollto/LICENSE | 22 - .../node_modules/jquery.scrollto/README.md | 151 - .../node_modules/jquery.scrollto/bower.json | 28 - .../jquery.scrollto/composer.json | 32 - .../jquery.scrollto/demo/css/style.css | 150 - .../jquery.scrollto/demo/css/style.old.css | 69 - .../jquery.scrollto/demo/index.html | 252 - .../jquery.scrollto/demo/index.old.html | 128 - .../jquery.scrollto/jquery.scrollTo.js | 210 - .../node_modules/jquery.scrollto/package.json | 104 - .../tests/ElemMaxY-compat.html | 21 - .../tests/ElemMaxY-quirks.html | 20 - .../jquery.scrollto/tests/WinMaxY-compat.html | 19 - .../jquery.scrollto/tests/WinMaxY-quirks.html | 18 - .../tests/WinMaxY-to-iframe-compat.html | 20 - .../tests/WinMaxY-to-iframe-quirks.html | 19 - .../tests/WinMaxY-with-iframe-compat.html | 11 - .../tests/WinMaxY-with-iframe-quirks.html | 10 - .../jquery.scrollto/tests/index.html | 24 - .../jquery.scrollto/tests/test.js | 21 - .../v1.5/node_modules/jquery/AUTHORS.txt | 295 - .../v1.5/node_modules/jquery/LICENSE.txt | 36 - .../v1.5/node_modules/jquery/README.md | 65 - .../v1.5/node_modules/jquery/bower.json | 14 - .../v1.5/node_modules/jquery/dist/core.js | 482 - .../v1.5/node_modules/jquery/dist/jquery.js | 10220 --------------- .../node_modules/jquery/dist/jquery.min.js | 4 - .../node_modules/jquery/dist/jquery.min.map | 1 - .../node_modules/jquery/dist/jquery.slim.js | 8107 ------------ .../jquery/dist/jquery.slim.min.js | 4 - .../jquery/dist/jquery.slim.min.map | 1 - .../jquery/external/sizzle/LICENSE.txt | 36 - .../jquery/external/sizzle/dist/sizzle.js | 2272 ---- .../jquery/external/sizzle/dist/sizzle.min.js | 3 - .../external/sizzle/dist/sizzle.min.map | 1 - .../v1.5/node_modules/jquery/package.json | 170 - .../node_modules/jquery/src/.eslintrc.json | 18 - .../v1.5/node_modules/jquery/src/ajax.js | 855 -- .../node_modules/jquery/src/ajax/jsonp.js | 102 - .../v1.5/node_modules/jquery/src/ajax/load.js | 76 - .../node_modules/jquery/src/ajax/parseXML.js | 30 - .../node_modules/jquery/src/ajax/script.js | 77 - .../jquery/src/ajax/var/location.js | 5 - .../node_modules/jquery/src/ajax/var/nonce.js | 7 - .../jquery/src/ajax/var/rquery.js | 5 - .../v1.5/node_modules/jquery/src/ajax/xhr.js | 169 - .../node_modules/jquery/src/attributes.js | 13 - .../jquery/src/attributes/attr.js | 140 - .../jquery/src/attributes/classes.js | 174 - .../jquery/src/attributes/prop.js | 143 - .../jquery/src/attributes/support.js | 33 - .../node_modules/jquery/src/attributes/val.js | 188 - .../v1.5/node_modules/jquery/src/callbacks.js | 234 - .../v1.5/node_modules/jquery/src/core.js | 482 - .../node_modules/jquery/src/core/DOMEval.js | 16 - .../node_modules/jquery/src/core/access.js | 70 - .../v1.5/node_modules/jquery/src/core/init.js | 127 - .../node_modules/jquery/src/core/parseHTML.js | 65 - .../jquery/src/core/ready-no-deferred.js | 105 - .../node_modules/jquery/src/core/ready.js | 95 - .../jquery/src/core/readyException.js | 13 - .../jquery/src/core/stripAndCollapse.js | 14 - .../node_modules/jquery/src/core/support.js | 20 - .../jquery/src/core/var/rsingleTag.js | 6 - .../v1.5/node_modules/jquery/src/css.js | 426 - .../jquery/src/css/addGetHookIf.js | 26 - .../node_modules/jquery/src/css/adjustCSS.js | 71 - .../node_modules/jquery/src/css/curCSS.js | 59 - .../jquery/src/css/hiddenVisibleSelectors.js | 15 - .../node_modules/jquery/src/css/showHide.js | 105 - .../node_modules/jquery/src/css/support.js | 89 - .../jquery/src/css/var/cssExpand.js | 5 - .../jquery/src/css/var/getStyles.js | 17 - .../jquery/src/css/var/isHiddenWithinTree.js | 34 - .../jquery/src/css/var/rmargin.js | 5 - .../jquery/src/css/var/rnumnonpx.js | 7 - .../node_modules/jquery/src/css/var/swap.js | 26 - .../v1.5/node_modules/jquery/src/data.js | 179 - .../v1.5/node_modules/jquery/src/data/Data.js | 161 - .../jquery/src/data/var/acceptData.js | 19 - .../jquery/src/data/var/dataPriv.js | 7 - .../jquery/src/data/var/dataUser.js | 7 - .../v1.5/node_modules/jquery/src/deferred.js | 389 - .../jquery/src/deferred/exceptionHook.js | 21 - .../node_modules/jquery/src/deprecated.js | 30 - .../node_modules/jquery/src/dimensions.js | 56 - .../v1.5/node_modules/jquery/src/effects.js | 693 -- .../node_modules/jquery/src/effects/Tween.js | 123 - .../jquery/src/effects/animatedSelector.js | 15 - .../v1.5/node_modules/jquery/src/event.js | 745 -- .../node_modules/jquery/src/event/ajax.js | 22 - .../node_modules/jquery/src/event/alias.js | 29 - .../node_modules/jquery/src/event/focusin.js | 55 - .../node_modules/jquery/src/event/support.js | 11 - .../node_modules/jquery/src/event/trigger.js | 185 - .../node_modules/jquery/src/exports/amd.js | 26 - .../node_modules/jquery/src/exports/global.js | 34 - .../v1.5/node_modules/jquery/src/jquery.js | 41 - .../node_modules/jquery/src/manipulation.js | 486 - .../jquery/src/manipulation/_evalUrl.js | 23 - .../jquery/src/manipulation/buildFragment.js | 104 - .../jquery/src/manipulation/getAll.js | 31 - .../jquery/src/manipulation/setGlobalEval.js | 22 - .../jquery/src/manipulation/support.js | 35 - .../src/manipulation/var/rcheckableType.js | 5 - .../src/manipulation/var/rscriptType.js | 5 - .../jquery/src/manipulation/var/rtagName.js | 5 - .../jquery/src/manipulation/wrapMap.js | 29 - .../v1.5/node_modules/jquery/src/offset.js | 232 - .../v1.5/node_modules/jquery/src/queue.js | 145 - .../node_modules/jquery/src/queue/delay.js | 24 - .../jquery/src/selector-native.js | 237 - .../jquery/src/selector-sizzle.js | 19 - .../v1.5/node_modules/jquery/src/selector.js | 3 - .../v1.5/node_modules/jquery/src/serialize.js | 130 - .../node_modules/jquery/src/traversing.js | 178 - .../jquery/src/traversing/findFilter.js | 106 - .../jquery/src/traversing/var/dir.js | 22 - .../src/traversing/var/rneedsContext.js | 8 - .../jquery/src/traversing/var/siblings.js | 17 - .../jquery/src/var/ObjectFunctionString.js | 7 - .../v1.5/node_modules/jquery/src/var/arr.js | 5 - .../node_modules/jquery/src/var/class2type.js | 6 - .../node_modules/jquery/src/var/concat.js | 7 - .../node_modules/jquery/src/var/document.js | 5 - .../jquery/src/var/documentElement.js | 7 - .../node_modules/jquery/src/var/fnToString.js | 7 - .../node_modules/jquery/src/var/getProto.js | 5 - .../node_modules/jquery/src/var/hasOwn.js | 7 - .../node_modules/jquery/src/var/indexOf.js | 7 - .../v1.5/node_modules/jquery/src/var/pnum.js | 5 - .../v1.5/node_modules/jquery/src/var/push.js | 7 - .../node_modules/jquery/src/var/rcssNum.js | 9 - .../jquery/src/var/rnothtmlwhite.js | 8 - .../v1.5/node_modules/jquery/src/var/slice.js | 7 - .../node_modules/jquery/src/var/support.js | 6 - .../node_modules/jquery/src/var/toString.js | 7 - .../v1.5/node_modules/jquery/src/wrap.js | 77 - .../v1.5/node_modules/marked/.npmignore | 2 - .../v1.5/node_modules/marked/Gulpfile.js | 22 - .../kubectl/v1.5/node_modules/marked/LICENSE | 19 - .../kubectl/v1.5/node_modules/marked/Makefile | 12 - .../v1.5/node_modules/marked/README.md | 406 - .../v1.5/node_modules/marked/bin/marked | 187 - .../v1.5/node_modules/marked/bower.json | 24 - .../v1.5/node_modules/marked/component.json | 10 - .../v1.5/node_modules/marked/doc/broken.md | 426 - .../v1.5/node_modules/marked/doc/todo.md | 2 - .../kubectl/v1.5/node_modules/marked/index.js | 1 - .../v1.5/node_modules/marked/lib/marked.js | 1286 -- .../v1.5/node_modules/marked/man/marked.1 | 91 - .../v1.5/node_modules/marked/marked.min.js | 6 - .../v1.5/node_modules/marked/package.json | 107 - .../kubectl/v1.5/node_modules/mime/.npmignore | 0 .../kubectl/v1.5/node_modules/mime/LICENSE | 19 - .../kubectl/v1.5/node_modules/mime/README.md | 90 - .../v1.5/node_modules/mime/build/build.js | 11 - .../v1.5/node_modules/mime/build/test.js | 57 - .../kubectl/v1.5/node_modules/mime/cli.js | 8 - .../kubectl/v1.5/node_modules/mime/mime.js | 108 - .../v1.5/node_modules/mime/package.json | 106 - .../kubectl/v1.5/node_modules/mime/types.json | 1 - .../v1.5/node_modules/minimist/LICENSE | 18 - .../node_modules/minimist/example/parse.js | 2 - .../v1.5/node_modules/minimist/index.js | 187 - .../v1.5/node_modules/minimist/package.json | 101 - .../node_modules/minimist/readme.markdown | 73 - .../v1.5/node_modules/minimist/test/bool.js | 119 - .../v1.5/node_modules/minimist/test/dash.js | 24 - .../minimist/test/default_bool.js | 20 - .../v1.5/node_modules/minimist/test/dotted.js | 22 - .../v1.5/node_modules/minimist/test/long.js | 31 - .../v1.5/node_modules/minimist/test/num.js | 36 - .../v1.5/node_modules/minimist/test/parse.js | 197 - .../minimist/test/parse_modified.js | 9 - .../v1.5/node_modules/minimist/test/short.js | 67 - .../node_modules/minimist/test/whitespace.js | 8 - .../v1.5/node_modules/node-static/.npmignore | 3 - .../v1.5/node_modules/node-static/LICENSE | 20 - .../v1.5/node_modules/node-static/README.md | 234 - .../benchmark/node-static-0.3.0.txt | 43 - .../v1.5/node_modules/node-static/bin/cli.js | 132 - .../node-static/examples/file-server.js | 20 - .../node-static/lib/node-static.js | 397 - .../node-static/lib/node-static/util.js | 30 - .../node_modules/node-static/package.json | 125 - .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 1 - .../node-static/test/fixtures/index.html | 8 - .../test/fixtures/there/index.html | 8 - .../test/integration/node-static-test.js | 390 - .../v1.5/node_modules/optimist/LICENSE | 21 - .../node_modules/optimist/example/bool.js | 10 - .../optimist/example/boolean_double.js | 7 - .../optimist/example/boolean_single.js | 7 - .../optimist/example/default_hash.js | 8 - .../optimist/example/default_singles.js | 7 - .../node_modules/optimist/example/divide.js | 8 - .../optimist/example/line_count.js | 20 - .../optimist/example/line_count_options.js | 29 - .../optimist/example/line_count_wrap.js | 29 - .../node_modules/optimist/example/nonopt.js | 4 - .../node_modules/optimist/example/reflect.js | 2 - .../node_modules/optimist/example/short.js | 3 - .../node_modules/optimist/example/string.js | 11 - .../optimist/example/usage-options.js | 19 - .../v1.5/node_modules/optimist/example/xup.js | 10 - .../v1.5/node_modules/optimist/index.js | 343 - .../v1.5/node_modules/optimist/package.json | 97 - .../node_modules/optimist/readme.markdown | 513 - .../v1.5/node_modules/optimist/test/_.js | 71 - .../v1.5/node_modules/optimist/test/_/argv.js | 2 - .../v1.5/node_modules/optimist/test/_/bin.js | 3 - .../v1.5/node_modules/optimist/test/dash.js | 31 - .../v1.5/node_modules/optimist/test/parse.js | 446 - .../optimist/test/parse_modified.js | 14 - .../v1.5/node_modules/optimist/test/short.js | 16 - .../v1.5/node_modules/optimist/test/usage.js | 292 - .../node_modules/optimist/test/whitespace.js | 8 - .../v1.5/node_modules/wordwrap/LICENSE | 18 - .../node_modules/wordwrap/README.markdown | 70 - .../node_modules/wordwrap/example/center.js | 10 - .../node_modules/wordwrap/example/meat.js | 3 - .../v1.5/node_modules/wordwrap/index.js | 76 - .../v1.5/node_modules/wordwrap/package.json | 97 - .../v1.5/node_modules/wordwrap/test/break.js | 30 - .../node_modules/wordwrap/test/idleness.txt | 63 - .../v1.5/node_modules/wordwrap/test/wrap.js | 31 - docs/user-guide/kubectl/v1.5/package.json | 31 - docs/user-guide/kubectl/v1.5/scroll.js | 169 - docs/user-guide/kubectl/v1.5/server.js | 7 - docs/user-guide/kubectl/v1.6/LICENSE | 201 - docs/user-guide/kubectl/v1.6/README.md | 69 - docs/user-guide/kubectl/v1.6/actions.js | 58 - docs/user-guide/kubectl/v1.6/brodoc.js | 211 - docs/user-guide/kubectl/v1.6/index.html | 7127 ----------- docs/user-guide/kubectl/v1.6/jsconfig.json | 6 - .../kubectl/v1.6/markedDecorations.js | 101 - docs/user-guide/kubectl/v1.6/navData.js | 1 - .../kubectl/v1.6/node_modules/.bin/marked | 187 - .../kubectl/v1.6/node_modules/.bin/mime | 8 - .../kubectl/v1.6/node_modules/.bin/static | 132 - .../v1.6/node_modules/bootstrap/CHANGELOG.md | 5 - .../v1.6/node_modules/bootstrap/Gruntfile.js | 511 - .../v1.6/node_modules/bootstrap/LICENSE | 21 - .../v1.6/node_modules/bootstrap/README.md | 142 - .../bootstrap/dist/css/bootstrap-theme.css | 587 - .../dist/css/bootstrap-theme.css.map | 1 - .../dist/css/bootstrap-theme.min.css | 6 - .../dist/css/bootstrap-theme.min.css.map | 1 - .../bootstrap/dist/css/bootstrap.css | 6757 ---------- .../bootstrap/dist/css/bootstrap.css.map | 1 - .../bootstrap/dist/css/bootstrap.min.css | 6 - .../bootstrap/dist/css/bootstrap.min.css.map | 1 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../bootstrap/dist/js/bootstrap.js | 2377 ---- .../bootstrap/dist/js/bootstrap.min.js | 7 - .../node_modules/bootstrap/dist/js/npm.js | 13 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../node_modules/bootstrap/grunt/.jshintrc | 7 - .../bootstrap/grunt/bs-commonjs-generator.js | 30 - .../grunt/bs-glyphicons-data-generator.js | 42 - .../bootstrap/grunt/bs-lessdoc-parser.js | 237 - .../bootstrap/grunt/bs-raw-files-generator.js | 44 - .../bootstrap/grunt/change-version.js | 109 - .../bootstrap/grunt/configBridge.json | 46 - .../bootstrap/grunt/npm-shrinkwrap.json | 2679 ---- .../bootstrap/grunt/sauce_browsers.yml | 82 - .../v1.6/node_modules/bootstrap/js/affix.js | 162 - .../v1.6/node_modules/bootstrap/js/alert.js | 94 - .../v1.6/node_modules/bootstrap/js/button.js | 125 - .../node_modules/bootstrap/js/carousel.js | 237 - .../node_modules/bootstrap/js/collapse.js | 212 - .../node_modules/bootstrap/js/dropdown.js | 165 - .../v1.6/node_modules/bootstrap/js/modal.js | 339 - .../v1.6/node_modules/bootstrap/js/popover.js | 108 - .../node_modules/bootstrap/js/scrollspy.js | 172 - .../v1.6/node_modules/bootstrap/js/tab.js | 155 - .../v1.6/node_modules/bootstrap/js/tooltip.js | 520 - .../node_modules/bootstrap/js/transition.js | 59 - .../node_modules/bootstrap/less/alerts.less | 73 - .../node_modules/bootstrap/less/badges.less | 66 - .../bootstrap/less/bootstrap.less | 56 - .../bootstrap/less/breadcrumbs.less | 26 - .../bootstrap/less/button-groups.less | 244 - .../node_modules/bootstrap/less/buttons.less | 166 - .../node_modules/bootstrap/less/carousel.less | 270 - .../node_modules/bootstrap/less/close.less | 34 - .../node_modules/bootstrap/less/code.less | 69 - .../bootstrap/less/component-animations.less | 33 - .../bootstrap/less/dropdowns.less | 216 - .../node_modules/bootstrap/less/forms.less | 613 - .../bootstrap/less/glyphicons.less | 305 - .../node_modules/bootstrap/less/grid.less | 84 - .../bootstrap/less/input-groups.less | 171 - .../bootstrap/less/jumbotron.less | 54 - .../node_modules/bootstrap/less/labels.less | 64 - .../bootstrap/less/list-group.less | 130 - .../node_modules/bootstrap/less/media.less | 66 - .../node_modules/bootstrap/less/mixins.less | 40 - .../bootstrap/less/mixins/alerts.less | 14 - .../less/mixins/background-variant.less | 9 - .../bootstrap/less/mixins/border-radius.less | 18 - .../bootstrap/less/mixins/buttons.less | 65 - .../bootstrap/less/mixins/center-block.less | 7 - .../bootstrap/less/mixins/clearfix.less | 22 - .../bootstrap/less/mixins/forms.less | 85 - .../bootstrap/less/mixins/gradients.less | 59 - .../bootstrap/less/mixins/grid-framework.less | 91 - .../bootstrap/less/mixins/grid.less | 122 - .../bootstrap/less/mixins/hide-text.less | 21 - .../bootstrap/less/mixins/image.less | 33 - .../bootstrap/less/mixins/labels.less | 12 - .../bootstrap/less/mixins/list-group.less | 30 - .../bootstrap/less/mixins/nav-divider.less | 10 - .../less/mixins/nav-vertical-align.less | 9 - .../bootstrap/less/mixins/opacity.less | 8 - .../bootstrap/less/mixins/pagination.less | 24 - .../bootstrap/less/mixins/panels.less | 24 - .../bootstrap/less/mixins/progress-bar.less | 10 - .../bootstrap/less/mixins/reset-filter.less | 8 - .../bootstrap/less/mixins/reset-text.less | 18 - .../bootstrap/less/mixins/resize.less | 6 - .../less/mixins/responsive-visibility.less | 15 - .../bootstrap/less/mixins/size.less | 10 - .../bootstrap/less/mixins/tab-focus.less | 9 - .../bootstrap/less/mixins/table-row.less | 28 - .../bootstrap/less/mixins/text-emphasis.less | 9 - .../bootstrap/less/mixins/text-overflow.less | 8 - .../less/mixins/vendor-prefixes.less | 227 - .../node_modules/bootstrap/less/modals.less | 150 - .../node_modules/bootstrap/less/navbar.less | 660 - .../node_modules/bootstrap/less/navs.less | 242 - .../bootstrap/less/normalize.less | 424 - .../node_modules/bootstrap/less/pager.less | 54 - .../bootstrap/less/pagination.less | 89 - .../node_modules/bootstrap/less/panels.less | 271 - .../node_modules/bootstrap/less/popovers.less | 131 - .../node_modules/bootstrap/less/print.less | 101 - .../bootstrap/less/progress-bars.less | 87 - .../bootstrap/less/responsive-embed.less | 35 - .../bootstrap/less/responsive-utilities.less | 194 - .../bootstrap/less/scaffolding.less | 161 - .../node_modules/bootstrap/less/tables.less | 234 - .../node_modules/bootstrap/less/theme.less | 291 - .../bootstrap/less/thumbnails.less | 36 - .../node_modules/bootstrap/less/tooltip.less | 101 - .../node_modules/bootstrap/less/type.less | 302 - .../bootstrap/less/utilities.less | 55 - .../bootstrap/less/variables.less | 869 -- .../node_modules/bootstrap/less/wells.less | 29 - .../v1.6/node_modules/bootstrap/package.json | 152 - .../kubectl/v1.6/node_modules/colors/LICENSE | 23 - .../v1.6/node_modules/colors/ReadMe.md | 178 - .../colors/examples/normal-usage.js | 74 - .../colors/examples/safe-string.js | 76 - .../v1.6/node_modules/colors/lib/colors.js | 187 - .../node_modules/colors/lib/custom/trap.js | 45 - .../node_modules/colors/lib/custom/zalgo.js | 104 - .../colors/lib/extendStringPrototype.js | 113 - .../v1.6/node_modules/colors/lib/index.js | 12 - .../node_modules/colors/lib/maps/america.js | 12 - .../node_modules/colors/lib/maps/rainbow.js | 13 - .../node_modules/colors/lib/maps/random.js | 8 - .../node_modules/colors/lib/maps/zebra.js | 5 - .../v1.6/node_modules/colors/lib/styles.js | 77 - .../colors/lib/system/supports-colors.js | 61 - .../v1.6/node_modules/colors/package.json | 94 - .../kubectl/v1.6/node_modules/colors/safe.js | 9 - .../colors/themes/generic-logging.js | 12 - .../kubectl/v1.6/node_modules/ejs/Jakefile | 69 - .../kubectl/v1.6/node_modules/ejs/LICENSE | 202 - .../kubectl/v1.6/node_modules/ejs/README.md | 241 - .../kubectl/v1.6/node_modules/ejs/ejs.js | 1425 --- .../kubectl/v1.6/node_modules/ejs/ejs.min.js | 1 - .../kubectl/v1.6/node_modules/ejs/lib/ejs.js | 798 -- .../v1.6/node_modules/ejs/lib/utils.js | 163 - .../v1.6/node_modules/ejs/package.json | 113 - .../kubectl/v1.6/node_modules/ejs/test/ejs.js | 994 -- .../ejs/test/fixtures/backslash.ejs | 1 - .../ejs/test/fixtures/backslash.html | 1 - .../ejs/test/fixtures/comments.ejs | 7 - .../ejs/test/fixtures/comments.html | 6 - .../ejs/test/fixtures/consecutive-tags.ejs | 1 - .../ejs/test/fixtures/consecutive-tags.html | 1 - .../ejs/test/fixtures/double-quote.ejs | 1 - .../ejs/test/fixtures/double-quote.html | 1 - .../node_modules/ejs/test/fixtures/error.ejs | 5 - .../node_modules/ejs/test/fixtures/error.out | 8 - .../node_modules/ejs/test/fixtures/fail.ejs | 1 - .../ejs/test/fixtures/hello-world.ejs | 1 - .../ejs/test/fixtures/include-abspath.ejs | 5 - .../ejs/test/fixtures/include-root.ejs | 1 - .../ejs/test/fixtures/include-simple.ejs | 3 - .../ejs/test/fixtures/include-simple.html | 4 - .../ejs/test/fixtures/include.css.ejs | 1 - .../ejs/test/fixtures/include.css.html | 4 - .../ejs/test/fixtures/include.ejs | 5 - .../ejs/test/fixtures/include.html | 12 - .../ejs/test/fixtures/include_cache.ejs | 1 - .../ejs/test/fixtures/include_cache.html | 1 - .../fixtures/include_preprocessor.css.ejs | 1 - .../fixtures/include_preprocessor.css.html | 4 - .../test/fixtures/include_preprocessor.ejs | 5 - .../test/fixtures/include_preprocessor.html | 12 - .../fixtures/include_preprocessor_cache.ejs | 1 - .../fixtures/include_preprocessor_cache.html | 1 - .../include_preprocessor_line_slurp.ejs | 1 - .../include_preprocessor_line_slurp.html | 5 - .../include_preprocessor_line_slurp_child.ejs | 5 - .../ejs/test/fixtures/includes/bom.ejs | 1 - .../ejs/test/fixtures/includes/menu-item.ejs | 1 - .../ejs/test/fixtures/includes/menu/item.ejs | 1 - .../ejs/test/fixtures/literal.ejs | 3 - .../ejs/test/fixtures/literal.html | 3 - .../node_modules/ejs/test/fixtures/menu.ejs | 15 - .../node_modules/ejs/test/fixtures/menu.html | 9 - .../ejs/test/fixtures/menu_preprocessor.ejs | 11 - .../ejs/test/fixtures/menu_preprocessor.html | 8 - .../ejs/test/fixtures/menu_var.ejs | 15 - .../node_modules/ejs/test/fixtures/messed.ejs | 1 - .../ejs/test/fixtures/messed.html | 1 - .../ejs/test/fixtures/newlines.ejs | 5 - .../ejs/test/fixtures/newlines.html | 9 - .../ejs/test/fixtures/newlines.mixed.ejs | 6 - .../ejs/test/fixtures/newlines.mixed.html | 4 - .../ejs/test/fixtures/no.newlines.ejs | 5 - .../ejs/test/fixtures/no.newlines.error.ejs | 5 - .../ejs/test/fixtures/no.newlines.html | 5 - .../ejs/test/fixtures/no.semicolons.ejs | 8 - .../ejs/test/fixtures/no.semicolons.html | 3 - .../node_modules/ejs/test/fixtures/para.ejs | 1 - .../node_modules/ejs/test/fixtures/pet.ejs | 1 - .../ejs/test/fixtures/rmWhitespace.ejs | 14 - .../ejs/test/fixtures/rmWhitespace.html | 8 - .../ejs/test/fixtures/single-quote.ejs | 1 - .../ejs/test/fixtures/single-quote.html | 1 - .../ejs/test/fixtures/space-and-tab-slurp.ejs | 5 - .../test/fixtures/space-and-tab-slurp.html | 5 - .../node_modules/ejs/test/fixtures/strict.ejs | 5 - .../node_modules/ejs/test/fixtures/style.css | 3 - .../ejs/test/fixtures/user-no-with.ejs | 1 - .../node_modules/ejs/test/fixtures/user.ejs | 1 - .../ejs/test/fixtures/with-context.ejs | 1 - .../v1.6/node_modules/ejs/test/mocha.opts | 3 - .../node_modules/ejs/test/tmp/include.ejs | 1 - .../ejs/test/tmp/include_preprocessor.ejs | 1 - .../node_modules/ejs/test/tmp/renderFile.ejs | 1 - .../v1.6/node_modules/font-awesome/.npmignore | 42 - .../node_modules/font-awesome/HELP-US-OUT.txt | 7 - .../v1.6/node_modules/font-awesome/README.md | 106 - .../font-awesome/css/font-awesome.css | 2337 ---- .../font-awesome/css/font-awesome.css.map | 7 - .../font-awesome/css/font-awesome.min.css | 4 - .../font-awesome/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes .../fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes .../fonts/fontawesome-webfont.svg | 2671 ---- .../fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes .../fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes .../fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes .../font-awesome/less/animated.less | 34 - .../font-awesome/less/bordered-pulled.less | 25 - .../node_modules/font-awesome/less/core.less | 12 - .../font-awesome/less/fixed-width.less | 6 - .../font-awesome/less/font-awesome.less | 18 - .../node_modules/font-awesome/less/icons.less | 789 -- .../font-awesome/less/larger.less | 13 - .../node_modules/font-awesome/less/list.less | 19 - .../font-awesome/less/mixins.less | 60 - .../node_modules/font-awesome/less/path.less | 15 - .../font-awesome/less/rotated-flipped.less | 20 - .../font-awesome/less/screen-reader.less | 5 - .../font-awesome/less/stacked.less | 20 - .../font-awesome/less/variables.less | 800 -- .../node_modules/font-awesome/package.json | 112 - .../font-awesome/scss/_animated.scss | 34 - .../font-awesome/scss/_bordered-pulled.scss | 25 - .../node_modules/font-awesome/scss/_core.scss | 12 - .../font-awesome/scss/_fixed-width.scss | 6 - .../font-awesome/scss/_icons.scss | 789 -- .../font-awesome/scss/_larger.scss | 13 - .../node_modules/font-awesome/scss/_list.scss | 19 - .../font-awesome/scss/_mixins.scss | 60 - .../node_modules/font-awesome/scss/_path.scss | 15 - .../font-awesome/scss/_rotated-flipped.scss | 20 - .../font-awesome/scss/_screen-reader.scss | 5 - .../font-awesome/scss/_stacked.scss | 20 - .../font-awesome/scss/_variables.scss | 800 -- .../font-awesome/scss/font-awesome.scss | 18 - .../v1.6/node_modules/highlight.js/LICENSE | 24 - .../v1.6/node_modules/highlight.js/README.md | 150 - .../node_modules/highlight.js/docs/api.rst | 120 - .../highlight.js/docs/building-testing.rst | 88 - .../docs/css-classes-reference.rst | 424 - .../node_modules/highlight.js/docs/index.rst | 44 - .../docs/language-contribution.rst | 78 - .../highlight.js/docs/language-guide.rst | 264 - .../highlight.js/docs/language-requests.rst | 17 - .../highlight.js/docs/line-numbers.rst | 39 - .../highlight.js/docs/reference.rst | 324 - .../highlight.js/docs/release-process.rst | 20 - .../highlight.js/docs/style-guide.rst | 107 - .../highlight.js/lib/highlight.js | 818 -- .../node_modules/highlight.js/lib/index.js | 173 - .../highlight.js/lib/languages/1c.js | 78 - .../highlight.js/lib/languages/abnf.js | 70 - .../highlight.js/lib/languages/accesslog.js | 37 - .../lib/languages/actionscript.js | 73 - .../highlight.js/lib/languages/ada.js | 172 - .../highlight.js/lib/languages/apache.js | 45 - .../highlight.js/lib/languages/applescript.js | 85 - .../highlight.js/lib/languages/arduino.js | 99 - .../highlight.js/lib/languages/armasm.js | 91 - .../highlight.js/lib/languages/asciidoc.js | 187 - .../highlight.js/lib/languages/aspectj.js | 143 - .../highlight.js/lib/languages/autohotkey.js | 47 - .../highlight.js/lib/languages/autoit.js | 135 - .../highlight.js/lib/languages/avrasm.js | 61 - .../highlight.js/lib/languages/awk.js | 52 - .../highlight.js/lib/languages/axapta.js | 30 - .../highlight.js/lib/languages/bash.js | 74 - .../highlight.js/lib/languages/basic.js | 50 - .../highlight.js/lib/languages/bnf.js | 28 - .../highlight.js/lib/languages/brainfuck.js | 36 - .../highlight.js/lib/languages/cal.js | 79 - .../highlight.js/lib/languages/capnproto.js | 48 - .../highlight.js/lib/languages/ceylon.js | 66 - .../highlight.js/lib/languages/clean.js | 24 - .../lib/languages/clojure-repl.js | 14 - .../highlight.js/lib/languages/clojure.js | 94 - .../highlight.js/lib/languages/cmake.js | 37 - .../lib/languages/coffeescript.js | 145 - .../highlight.js/lib/languages/coq.js | 66 - .../highlight.js/lib/languages/cos.js | 123 - .../highlight.js/lib/languages/cpp.js | 165 - .../highlight.js/lib/languages/crmsh.js | 93 - .../highlight.js/lib/languages/crystal.js | 176 - .../highlight.js/lib/languages/cs.js | 166 - .../highlight.js/lib/languages/csp.js | 21 - .../highlight.js/lib/languages/css.js | 104 - .../highlight.js/lib/languages/d.js | 257 - .../highlight.js/lib/languages/dart.js | 100 - .../highlight.js/lib/languages/delphi.js | 68 - .../highlight.js/lib/languages/diff.js | 39 - .../highlight.js/lib/languages/django.js | 63 - .../highlight.js/lib/languages/dns.js | 28 - .../highlight.js/lib/languages/dockerfile.js | 21 - .../highlight.js/lib/languages/dos.js | 51 - .../highlight.js/lib/languages/dsconfig.js | 46 - .../highlight.js/lib/languages/dts.js | 123 - .../highlight.js/lib/languages/dust.js | 31 - .../highlight.js/lib/languages/ebnf.js | 32 - .../highlight.js/lib/languages/elixir.js | 96 - .../highlight.js/lib/languages/elm.js | 82 - .../highlight.js/lib/languages/erb.js | 14 - .../highlight.js/lib/languages/erlang-repl.js | 45 - .../highlight.js/lib/languages/erlang.js | 145 - .../highlight.js/lib/languages/excel.js | 47 - .../highlight.js/lib/languages/fix.js | 28 - .../highlight.js/lib/languages/flix.js | 44 - .../highlight.js/lib/languages/fortran.js | 70 - .../highlight.js/lib/languages/fsharp.js | 58 - .../highlight.js/lib/languages/gams.js | 153 - .../highlight.js/lib/languages/gauss.js | 221 - .../highlight.js/lib/languages/gcode.js | 66 - .../highlight.js/lib/languages/gherkin.js | 36 - .../highlight.js/lib/languages/glsl.js | 116 - .../highlight.js/lib/languages/go.js | 53 - .../highlight.js/lib/languages/golo.js | 22 - .../highlight.js/lib/languages/gradle.js | 34 - .../highlight.js/lib/languages/groovy.js | 93 - .../highlight.js/lib/languages/haml.js | 106 - .../highlight.js/lib/languages/handlebars.js | 33 - .../highlight.js/lib/languages/haskell.js | 121 - .../highlight.js/lib/languages/haxe.js | 111 - .../highlight.js/lib/languages/hsp.js | 45 - .../highlight.js/lib/languages/htmlbars.js | 70 - .../highlight.js/lib/languages/http.js | 40 - .../highlight.js/lib/languages/inform7.js | 56 - .../highlight.js/lib/languages/ini.js | 65 - .../highlight.js/lib/languages/irpf90.js | 75 - .../highlight.js/lib/languages/java.js | 107 - .../highlight.js/lib/languages/javascript.js | 170 - .../highlight.js/lib/languages/json.js | 36 - .../highlight.js/lib/languages/julia.js | 177 - .../highlight.js/lib/languages/kotlin.js | 173 - .../highlight.js/lib/languages/lasso.js | 162 - .../highlight.js/lib/languages/ldif.js | 22 - .../highlight.js/lib/languages/less.js | 139 - .../highlight.js/lib/languages/lisp.js | 102 - .../lib/languages/livecodeserver.js | 156 - .../highlight.js/lib/languages/livescript.js | 148 - .../highlight.js/lib/languages/llvm.js | 88 - .../highlight.js/lib/languages/lsl.js | 82 - .../highlight.js/lib/languages/lua.js | 55 - .../highlight.js/lib/languages/makefile.js | 44 - .../highlight.js/lib/languages/markdown.js | 107 - .../highlight.js/lib/languages/mathematica.js | 57 - .../highlight.js/lib/languages/matlab.js | 87 - .../highlight.js/lib/languages/maxima.js | 405 - .../highlight.js/lib/languages/mel.js | 224 - .../highlight.js/lib/languages/mercury.js | 81 - .../highlight.js/lib/languages/mipsasm.js | 85 - .../highlight.js/lib/languages/mizar.js | 18 - .../highlight.js/lib/languages/mojolicious.js | 24 - .../highlight.js/lib/languages/monkey.js | 74 - .../highlight.js/lib/languages/moonscript.js | 111 - .../highlight.js/lib/languages/nginx.js | 92 - .../highlight.js/lib/languages/nimrod.js | 54 - .../highlight.js/lib/languages/nix.js | 48 - .../highlight.js/lib/languages/nsis.js | 105 - .../highlight.js/lib/languages/objectivec.js | 90 - .../highlight.js/lib/languages/ocaml.js | 70 - .../highlight.js/lib/languages/openscad.js | 56 - .../highlight.js/lib/languages/oxygene.js | 69 - .../highlight.js/lib/languages/parser3.js | 47 - .../highlight.js/lib/languages/perl.js | 156 - .../highlight.js/lib/languages/pf.js | 51 - .../highlight.js/lib/languages/php.js | 126 - .../highlight.js/lib/languages/pony.js | 90 - .../highlight.js/lib/languages/powershell.js | 80 - .../highlight.js/lib/languages/processing.js | 47 - .../highlight.js/lib/languages/profile.js | 29 - .../highlight.js/lib/languages/prolog.js | 87 - .../highlight.js/lib/languages/protobuf.js | 35 - .../highlight.js/lib/languages/puppet.js | 114 - .../highlight.js/lib/languages/purebasic.js | 57 - .../highlight.js/lib/languages/python.js | 91 - .../highlight.js/lib/languages/q.js | 22 - .../highlight.js/lib/languages/qml.js | 168 - .../highlight.js/lib/languages/r.js | 69 - .../highlight.js/lib/languages/rib.js | 26 - .../highlight.js/lib/languages/roboconf.js | 66 - .../highlight.js/lib/languages/rsl.js | 35 - .../highlight.js/lib/languages/ruby.js | 175 - .../lib/languages/ruleslanguage.js | 60 - .../highlight.js/lib/languages/rust.js | 103 - .../highlight.js/lib/languages/scala.js | 114 - .../highlight.js/lib/languages/scheme.js | 140 - .../highlight.js/lib/languages/scilab.js | 53 - .../highlight.js/lib/languages/scss.js | 97 - .../highlight.js/lib/languages/smali.js | 55 - .../highlight.js/lib/languages/smalltalk.js | 49 - .../highlight.js/lib/languages/sml.js | 65 - .../highlight.js/lib/languages/sqf.js | 370 - .../highlight.js/lib/languages/sql.js | 159 - .../highlight.js/lib/languages/stan.js | 82 - .../highlight.js/lib/languages/stata.js | 37 - .../highlight.js/lib/languages/step21.js | 46 - .../highlight.js/lib/languages/stylus.js | 453 - .../highlight.js/lib/languages/subunit.js | 33 - .../highlight.js/lib/languages/swift.js | 116 - .../lib/languages/taggerscript.js | 43 - .../highlight.js/lib/languages/tap.js | 35 - .../highlight.js/lib/languages/tcl.js | 60 - .../highlight.js/lib/languages/tex.js | 61 - .../highlight.js/lib/languages/thrift.js | 34 - .../highlight.js/lib/languages/tp.js | 83 - .../highlight.js/lib/languages/twig.js | 65 - .../highlight.js/lib/languages/typescript.js | 126 - .../highlight.js/lib/languages/vala.js | 49 - .../highlight.js/lib/languages/vbnet.js | 55 - .../lib/languages/vbscript-html.js | 11 - .../highlight.js/lib/languages/vbscript.js | 38 - .../highlight.js/lib/languages/verilog.js | 98 - .../highlight.js/lib/languages/vhdl.js | 60 - .../highlight.js/lib/languages/vim.js | 105 - .../highlight.js/lib/languages/x86asm.js | 135 - .../highlight.js/lib/languages/xl.js | 72 - .../highlight.js/lib/languages/xml.js | 102 - .../highlight.js/lib/languages/xquery.js | 70 - .../highlight.js/lib/languages/yaml.js | 83 - .../highlight.js/lib/languages/zephir.js | 106 - .../node_modules/highlight.js/package.json | 1015 -- .../highlight.js/styles/agate.css | 108 - .../highlight.js/styles/androidstudio.css | 66 - .../highlight.js/styles/arduino-light.css | 88 - .../node_modules/highlight.js/styles/arta.css | 73 - .../highlight.js/styles/ascetic.css | 45 - .../highlight.js/styles/atelier-cave-dark.css | 83 - .../styles/atelier-cave-light.css | 85 - .../highlight.js/styles/atelier-dune-dark.css | 69 - .../styles/atelier-dune-light.css | 69 - .../styles/atelier-estuary-dark.css | 84 - .../styles/atelier-estuary-light.css | 84 - .../styles/atelier-forest-dark.css | 69 - .../styles/atelier-forest-light.css | 69 - .../styles/atelier-heath-dark.css | 69 - .../styles/atelier-heath-light.css | 69 - .../styles/atelier-lakeside-dark.css | 69 - .../styles/atelier-lakeside-light.css | 69 - .../styles/atelier-plateau-dark.css | 84 - .../styles/atelier-plateau-light.css | 84 - .../styles/atelier-savanna-dark.css | 84 - .../styles/atelier-savanna-light.css | 84 - .../styles/atelier-seaside-dark.css | 69 - .../styles/atelier-seaside-light.css | 69 - .../styles/atelier-sulphurpool-dark.css | 69 - .../styles/atelier-sulphurpool-light.css | 69 - .../highlight.js/styles/atom-one-dark.css | 96 - .../highlight.js/styles/atom-one-light.css | 96 - .../highlight.js/styles/brown-paper.css | 64 - .../highlight.js/styles/brown-papersq.png | Bin 18198 -> 0 bytes .../highlight.js/styles/codepen-embed.css | 60 - .../highlight.js/styles/color-brewer.css | 71 - .../highlight.js/styles/darcula.css | 77 - .../node_modules/highlight.js/styles/dark.css | 63 - .../highlight.js/styles/darkula.css | 6 - .../highlight.js/styles/default.css | 99 - .../highlight.js/styles/docco.css | 97 - .../highlight.js/styles/dracula.css | 76 - .../node_modules/highlight.js/styles/far.css | 71 - .../highlight.js/styles/foundation.css | 88 - .../highlight.js/styles/github-gist.css | 71 - .../highlight.js/styles/github.css | 99 - .../highlight.js/styles/googlecode.css | 89 - .../highlight.js/styles/grayscale.css | 101 - .../highlight.js/styles/gruvbox-dark.css | 108 - .../highlight.js/styles/gruvbox-light.css | 108 - .../highlight.js/styles/hopscotch.css | 83 - .../highlight.js/styles/hybrid.css | 102 - .../node_modules/highlight.js/styles/idea.css | 97 - .../highlight.js/styles/ir-black.css | 73 - .../highlight.js/styles/kimbie.dark.css | 74 - .../highlight.js/styles/kimbie.light.css | 74 - .../highlight.js/styles/magula.css | 70 - .../highlight.js/styles/mono-blue.css | 59 - .../highlight.js/styles/monokai-sublime.css | 83 - .../highlight.js/styles/monokai.css | 70 - .../highlight.js/styles/obsidian.css | 88 - .../highlight.js/styles/ocean.css | 74 - .../highlight.js/styles/paraiso-dark.css | 72 - .../highlight.js/styles/paraiso-light.css | 72 - .../highlight.js/styles/pojoaque.css | 83 - .../highlight.js/styles/pojoaque.jpg | Bin 1186 -> 0 bytes .../highlight.js/styles/purebasic.css | 96 - .../highlight.js/styles/qtcreator_dark.css | 83 - .../highlight.js/styles/qtcreator_light.css | 83 - .../highlight.js/styles/railscasts.css | 106 - .../highlight.js/styles/rainbow.css | 85 - .../highlight.js/styles/school-book.css | 72 - .../highlight.js/styles/school-book.png | Bin 486 -> 0 bytes .../highlight.js/styles/solarized-dark.css | 84 - .../highlight.js/styles/solarized-light.css | 84 - .../highlight.js/styles/sunburst.css | 102 - .../styles/tomorrow-night-blue.css | 75 - .../styles/tomorrow-night-bright.css | 74 - .../styles/tomorrow-night-eighties.css | 74 - .../highlight.js/styles/tomorrow-night.css | 75 - .../highlight.js/styles/tomorrow.css | 72 - .../node_modules/highlight.js/styles/vs.css | 68 - .../highlight.js/styles/xcode.css | 93 - .../highlight.js/styles/xt256.css | 92 - .../highlight.js/styles/zenburn.css | 80 - .../v1.6/node_modules/jquery.scrollto/.jscsrc | 41 - .../node_modules/jquery.scrollto/.jshintrc | 23 - .../node_modules/jquery.scrollto/.npmignore | 16 - .../node_modules/jquery.scrollto/CHANGELOG.md | 186 - .../v1.6/node_modules/jquery.scrollto/LICENSE | 22 - .../node_modules/jquery.scrollto/README.md | 151 - .../node_modules/jquery.scrollto/bower.json | 28 - .../jquery.scrollto/composer.json | 32 - .../jquery.scrollto/demo/css/style.css | 150 - .../jquery.scrollto/demo/css/style.old.css | 69 - .../jquery.scrollto/demo/index.html | 252 - .../jquery.scrollto/demo/index.old.html | 128 - .../jquery.scrollto/jquery.scrollTo.js | 210 - .../jquery.scrollto/jquery.scrollTo.min.js | 7 - .../node_modules/jquery.scrollto/package.json | 104 - .../tests/ElemMaxY-compat.html | 21 - .../tests/ElemMaxY-quirks.html | 20 - .../jquery.scrollto/tests/WinMaxY-compat.html | 19 - .../jquery.scrollto/tests/WinMaxY-quirks.html | 18 - .../tests/WinMaxY-to-iframe-compat.html | 20 - .../tests/WinMaxY-to-iframe-quirks.html | 19 - .../tests/WinMaxY-with-iframe-compat.html | 11 - .../tests/WinMaxY-with-iframe-quirks.html | 10 - .../jquery.scrollto/tests/index.html | 24 - .../jquery.scrollto/tests/test.js | 21 - .../v1.6/node_modules/jquery/AUTHORS.txt | 295 - .../v1.6/node_modules/jquery/LICENSE.txt | 36 - .../v1.6/node_modules/jquery/README.md | 65 - .../v1.6/node_modules/jquery/bower.json | 14 - .../v1.6/node_modules/jquery/dist/core.js | 482 - .../v1.6/node_modules/jquery/dist/jquery.js | 10220 --------------- .../node_modules/jquery/dist/jquery.min.js | 4 - .../node_modules/jquery/dist/jquery.min.map | 1 - .../node_modules/jquery/dist/jquery.slim.js | 8107 ------------ .../jquery/dist/jquery.slim.min.js | 4 - .../jquery/dist/jquery.slim.min.map | 1 - .../jquery/external/sizzle/LICENSE.txt | 36 - .../jquery/external/sizzle/dist/sizzle.js | 2272 ---- .../jquery/external/sizzle/dist/sizzle.min.js | 3 - .../external/sizzle/dist/sizzle.min.map | 1 - .../v1.6/node_modules/jquery/package.json | 170 - .../node_modules/jquery/src/.eslintrc.json | 18 - .../v1.6/node_modules/jquery/src/ajax.js | 855 -- .../node_modules/jquery/src/ajax/jsonp.js | 102 - .../v1.6/node_modules/jquery/src/ajax/load.js | 76 - .../node_modules/jquery/src/ajax/parseXML.js | 30 - .../node_modules/jquery/src/ajax/script.js | 77 - .../jquery/src/ajax/var/location.js | 5 - .../node_modules/jquery/src/ajax/var/nonce.js | 7 - .../jquery/src/ajax/var/rquery.js | 5 - .../v1.6/node_modules/jquery/src/ajax/xhr.js | 169 - .../node_modules/jquery/src/attributes.js | 13 - .../jquery/src/attributes/attr.js | 140 - .../jquery/src/attributes/classes.js | 174 - .../jquery/src/attributes/prop.js | 143 - .../jquery/src/attributes/support.js | 33 - .../node_modules/jquery/src/attributes/val.js | 188 - .../v1.6/node_modules/jquery/src/callbacks.js | 234 - .../v1.6/node_modules/jquery/src/core.js | 482 - .../node_modules/jquery/src/core/DOMEval.js | 16 - .../node_modules/jquery/src/core/access.js | 70 - .../v1.6/node_modules/jquery/src/core/init.js | 127 - .../node_modules/jquery/src/core/parseHTML.js | 65 - .../jquery/src/core/ready-no-deferred.js | 105 - .../node_modules/jquery/src/core/ready.js | 95 - .../jquery/src/core/readyException.js | 13 - .../jquery/src/core/stripAndCollapse.js | 14 - .../node_modules/jquery/src/core/support.js | 20 - .../jquery/src/core/var/rsingleTag.js | 6 - .../v1.6/node_modules/jquery/src/css.js | 426 - .../jquery/src/css/addGetHookIf.js | 26 - .../node_modules/jquery/src/css/adjustCSS.js | 71 - .../node_modules/jquery/src/css/curCSS.js | 59 - .../jquery/src/css/hiddenVisibleSelectors.js | 15 - .../node_modules/jquery/src/css/showHide.js | 105 - .../node_modules/jquery/src/css/support.js | 89 - .../jquery/src/css/var/cssExpand.js | 5 - .../jquery/src/css/var/getStyles.js | 17 - .../jquery/src/css/var/isHiddenWithinTree.js | 34 - .../jquery/src/css/var/rmargin.js | 5 - .../jquery/src/css/var/rnumnonpx.js | 7 - .../node_modules/jquery/src/css/var/swap.js | 26 - .../v1.6/node_modules/jquery/src/data.js | 179 - .../v1.6/node_modules/jquery/src/data/Data.js | 161 - .../jquery/src/data/var/acceptData.js | 19 - .../jquery/src/data/var/dataPriv.js | 7 - .../jquery/src/data/var/dataUser.js | 7 - .../v1.6/node_modules/jquery/src/deferred.js | 389 - .../jquery/src/deferred/exceptionHook.js | 21 - .../node_modules/jquery/src/deprecated.js | 30 - .../node_modules/jquery/src/dimensions.js | 56 - .../v1.6/node_modules/jquery/src/effects.js | 693 -- .../node_modules/jquery/src/effects/Tween.js | 123 - .../jquery/src/effects/animatedSelector.js | 15 - .../v1.6/node_modules/jquery/src/event.js | 745 -- .../node_modules/jquery/src/event/ajax.js | 22 - .../node_modules/jquery/src/event/alias.js | 29 - .../node_modules/jquery/src/event/focusin.js | 55 - .../node_modules/jquery/src/event/support.js | 11 - .../node_modules/jquery/src/event/trigger.js | 185 - .../node_modules/jquery/src/exports/amd.js | 26 - .../node_modules/jquery/src/exports/global.js | 34 - .../v1.6/node_modules/jquery/src/jquery.js | 41 - .../node_modules/jquery/src/manipulation.js | 486 - .../jquery/src/manipulation/_evalUrl.js | 23 - .../jquery/src/manipulation/buildFragment.js | 104 - .../jquery/src/manipulation/getAll.js | 31 - .../jquery/src/manipulation/setGlobalEval.js | 22 - .../jquery/src/manipulation/support.js | 35 - .../src/manipulation/var/rcheckableType.js | 5 - .../src/manipulation/var/rscriptType.js | 5 - .../jquery/src/manipulation/var/rtagName.js | 5 - .../jquery/src/manipulation/wrapMap.js | 29 - .../v1.6/node_modules/jquery/src/offset.js | 232 - .../v1.6/node_modules/jquery/src/queue.js | 145 - .../node_modules/jquery/src/queue/delay.js | 24 - .../jquery/src/selector-native.js | 237 - .../jquery/src/selector-sizzle.js | 19 - .../v1.6/node_modules/jquery/src/selector.js | 3 - .../v1.6/node_modules/jquery/src/serialize.js | 130 - .../node_modules/jquery/src/traversing.js | 178 - .../jquery/src/traversing/findFilter.js | 106 - .../jquery/src/traversing/var/dir.js | 22 - .../src/traversing/var/rneedsContext.js | 8 - .../jquery/src/traversing/var/siblings.js | 17 - .../jquery/src/var/ObjectFunctionString.js | 7 - .../v1.6/node_modules/jquery/src/var/arr.js | 5 - .../node_modules/jquery/src/var/class2type.js | 6 - .../node_modules/jquery/src/var/concat.js | 7 - .../node_modules/jquery/src/var/document.js | 5 - .../jquery/src/var/documentElement.js | 7 - .../node_modules/jquery/src/var/fnToString.js | 7 - .../node_modules/jquery/src/var/getProto.js | 5 - .../node_modules/jquery/src/var/hasOwn.js | 7 - .../node_modules/jquery/src/var/indexOf.js | 7 - .../v1.6/node_modules/jquery/src/var/pnum.js | 5 - .../v1.6/node_modules/jquery/src/var/push.js | 7 - .../node_modules/jquery/src/var/rcssNum.js | 9 - .../jquery/src/var/rnothtmlwhite.js | 8 - .../v1.6/node_modules/jquery/src/var/slice.js | 7 - .../node_modules/jquery/src/var/support.js | 6 - .../node_modules/jquery/src/var/toString.js | 7 - .../v1.6/node_modules/jquery/src/wrap.js | 77 - .../v1.6/node_modules/marked/.npmignore | 2 - .../v1.6/node_modules/marked/Gulpfile.js | 22 - .../kubectl/v1.6/node_modules/marked/LICENSE | 19 - .../kubectl/v1.6/node_modules/marked/Makefile | 12 - .../v1.6/node_modules/marked/README.md | 406 - .../v1.6/node_modules/marked/bin/marked | 187 - .../v1.6/node_modules/marked/bower.json | 24 - .../v1.6/node_modules/marked/component.json | 10 - .../v1.6/node_modules/marked/doc/broken.md | 426 - .../v1.6/node_modules/marked/doc/todo.md | 2 - .../kubectl/v1.6/node_modules/marked/index.js | 1 - .../v1.6/node_modules/marked/lib/marked.js | 1286 -- .../v1.6/node_modules/marked/man/marked.1 | 91 - .../v1.6/node_modules/marked/marked.min.js | 6 - .../v1.6/node_modules/marked/package.json | 107 - .../kubectl/v1.6/node_modules/mime/.npmignore | 0 .../kubectl/v1.6/node_modules/mime/LICENSE | 19 - .../kubectl/v1.6/node_modules/mime/README.md | 90 - .../v1.6/node_modules/mime/build/build.js | 11 - .../v1.6/node_modules/mime/build/test.js | 57 - .../kubectl/v1.6/node_modules/mime/cli.js | 8 - .../kubectl/v1.6/node_modules/mime/mime.js | 108 - .../v1.6/node_modules/mime/package.json | 106 - .../kubectl/v1.6/node_modules/mime/types.json | 1 - .../v1.6/node_modules/minimist/LICENSE | 18 - .../node_modules/minimist/example/parse.js | 2 - .../v1.6/node_modules/minimist/index.js | 187 - .../v1.6/node_modules/minimist/package.json | 101 - .../node_modules/minimist/readme.markdown | 73 - .../v1.6/node_modules/minimist/test/bool.js | 119 - .../v1.6/node_modules/minimist/test/dash.js | 24 - .../minimist/test/default_bool.js | 20 - .../v1.6/node_modules/minimist/test/dotted.js | 22 - .../v1.6/node_modules/minimist/test/long.js | 31 - .../v1.6/node_modules/minimist/test/num.js | 36 - .../v1.6/node_modules/minimist/test/parse.js | 197 - .../minimist/test/parse_modified.js | 9 - .../v1.6/node_modules/minimist/test/short.js | 67 - .../node_modules/minimist/test/whitespace.js | 8 - .../v1.6/node_modules/node-static/.npmignore | 3 - .../v1.6/node_modules/node-static/LICENSE | 20 - .../v1.6/node_modules/node-static/README.md | 234 - .../benchmark/node-static-0.3.0.txt | 43 - .../v1.6/node_modules/node-static/bin/cli.js | 132 - .../node-static/examples/file-server.js | 20 - .../node-static/lib/node-static.js | 397 - .../node-static/lib/node-static/util.js | 30 - .../node_modules/node-static/package.json | 125 - .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 1 - .../node-static/test/fixtures/index.html | 8 - .../test/fixtures/there/index.html | 8 - .../test/integration/node-static-test.js | 390 - .../v1.6/node_modules/optimist/LICENSE | 21 - .../node_modules/optimist/example/bool.js | 10 - .../optimist/example/boolean_double.js | 7 - .../optimist/example/boolean_single.js | 7 - .../optimist/example/default_hash.js | 8 - .../optimist/example/default_singles.js | 7 - .../node_modules/optimist/example/divide.js | 8 - .../optimist/example/line_count.js | 20 - .../optimist/example/line_count_options.js | 29 - .../optimist/example/line_count_wrap.js | 29 - .../node_modules/optimist/example/nonopt.js | 4 - .../node_modules/optimist/example/reflect.js | 2 - .../node_modules/optimist/example/short.js | 3 - .../node_modules/optimist/example/string.js | 11 - .../optimist/example/usage-options.js | 19 - .../v1.6/node_modules/optimist/example/xup.js | 10 - .../v1.6/node_modules/optimist/index.js | 343 - .../v1.6/node_modules/optimist/package.json | 97 - .../node_modules/optimist/readme.markdown | 513 - .../v1.6/node_modules/optimist/test/_.js | 71 - .../v1.6/node_modules/optimist/test/_/argv.js | 2 - .../v1.6/node_modules/optimist/test/_/bin.js | 3 - .../v1.6/node_modules/optimist/test/dash.js | 31 - .../v1.6/node_modules/optimist/test/parse.js | 446 - .../optimist/test/parse_modified.js | 14 - .../v1.6/node_modules/optimist/test/short.js | 16 - .../v1.6/node_modules/optimist/test/usage.js | 292 - .../node_modules/optimist/test/whitespace.js | 8 - .../v1.6/node_modules/wordwrap/LICENSE | 18 - .../node_modules/wordwrap/README.markdown | 70 - .../node_modules/wordwrap/example/center.js | 10 - .../node_modules/wordwrap/example/meat.js | 3 - .../v1.6/node_modules/wordwrap/index.js | 76 - .../v1.6/node_modules/wordwrap/package.json | 97 - .../v1.6/node_modules/wordwrap/test/break.js | 30 - .../node_modules/wordwrap/test/idleness.txt | 63 - .../v1.6/node_modules/wordwrap/test/wrap.js | 31 - docs/user-guide/kubectl/v1.6/package.json | 31 - docs/user-guide/kubectl/v1.6/scroll.js | 169 - docs/user-guide/kubectl/v1.6/server.js | 7 - docs/user-guide/kubectl/v1.6/stylesheet.css | 269 - docs/user-guide/kubectl/v1.6/tabvisibility.js | 27 - docs/user-guide/kubectl/v1.7/LICENSE | 201 - docs/user-guide/kubectl/v1.7/README.md | 69 - docs/user-guide/kubectl/v1.7/actions.js | 58 - docs/user-guide/kubectl/v1.7/brodoc.js | 211 - docs/user-guide/kubectl/v1.7/index.html | 8303 ------------- docs/user-guide/kubectl/v1.7/jsconfig.json | 6 - .../kubectl/v1.7/markedDecorations.js | 101 - docs/user-guide/kubectl/v1.7/navData.js | 1 - .../kubectl/v1.7/node_modules/.bin/marked | 187 - .../kubectl/v1.7/node_modules/.bin/mime | 8 - .../kubectl/v1.7/node_modules/.bin/static | 132 - .../v1.7/node_modules/bootstrap/CHANGELOG.md | 5 - .../v1.7/node_modules/bootstrap/Gruntfile.js | 511 - .../v1.7/node_modules/bootstrap/LICENSE | 21 - .../v1.7/node_modules/bootstrap/README.md | 142 - .../bootstrap/dist/css/bootstrap-theme.css | 587 - .../dist/css/bootstrap-theme.css.map | 1 - .../dist/css/bootstrap-theme.min.css | 6 - .../dist/css/bootstrap-theme.min.css.map | 1 - .../bootstrap/dist/css/bootstrap.css | 6757 ---------- .../bootstrap/dist/css/bootstrap.css.map | 1 - .../bootstrap/dist/css/bootstrap.min.css | 6 - .../bootstrap/dist/css/bootstrap.min.css.map | 1 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../bootstrap/dist/js/bootstrap.js | 2377 ---- .../bootstrap/dist/js/bootstrap.min.js | 7 - .../node_modules/bootstrap/dist/js/npm.js | 13 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../node_modules/bootstrap/grunt/.jshintrc | 7 - .../bootstrap/grunt/bs-commonjs-generator.js | 30 - .../grunt/bs-glyphicons-data-generator.js | 42 - .../bootstrap/grunt/bs-lessdoc-parser.js | 237 - .../bootstrap/grunt/bs-raw-files-generator.js | 44 - .../bootstrap/grunt/change-version.js | 109 - .../bootstrap/grunt/configBridge.json | 46 - .../bootstrap/grunt/npm-shrinkwrap.json | 2679 ---- .../bootstrap/grunt/sauce_browsers.yml | 82 - .../v1.7/node_modules/bootstrap/js/affix.js | 162 - .../v1.7/node_modules/bootstrap/js/alert.js | 94 - .../v1.7/node_modules/bootstrap/js/button.js | 125 - .../node_modules/bootstrap/js/carousel.js | 237 - .../node_modules/bootstrap/js/collapse.js | 212 - .../node_modules/bootstrap/js/dropdown.js | 165 - .../v1.7/node_modules/bootstrap/js/modal.js | 339 - .../v1.7/node_modules/bootstrap/js/popover.js | 108 - .../node_modules/bootstrap/js/scrollspy.js | 172 - .../v1.7/node_modules/bootstrap/js/tab.js | 155 - .../v1.7/node_modules/bootstrap/js/tooltip.js | 520 - .../node_modules/bootstrap/js/transition.js | 59 - .../node_modules/bootstrap/less/alerts.less | 73 - .../node_modules/bootstrap/less/badges.less | 66 - .../bootstrap/less/bootstrap.less | 56 - .../bootstrap/less/breadcrumbs.less | 26 - .../bootstrap/less/button-groups.less | 244 - .../node_modules/bootstrap/less/buttons.less | 166 - .../node_modules/bootstrap/less/carousel.less | 270 - .../node_modules/bootstrap/less/close.less | 34 - .../node_modules/bootstrap/less/code.less | 69 - .../bootstrap/less/component-animations.less | 33 - .../bootstrap/less/dropdowns.less | 216 - .../node_modules/bootstrap/less/forms.less | 613 - .../bootstrap/less/glyphicons.less | 305 - .../node_modules/bootstrap/less/grid.less | 84 - .../bootstrap/less/input-groups.less | 171 - .../bootstrap/less/jumbotron.less | 54 - .../node_modules/bootstrap/less/labels.less | 64 - .../bootstrap/less/list-group.less | 130 - .../node_modules/bootstrap/less/media.less | 66 - .../node_modules/bootstrap/less/mixins.less | 40 - .../bootstrap/less/mixins/alerts.less | 14 - .../less/mixins/background-variant.less | 9 - .../bootstrap/less/mixins/border-radius.less | 18 - .../bootstrap/less/mixins/buttons.less | 65 - .../bootstrap/less/mixins/center-block.less | 7 - .../bootstrap/less/mixins/clearfix.less | 22 - .../bootstrap/less/mixins/forms.less | 85 - .../bootstrap/less/mixins/gradients.less | 59 - .../bootstrap/less/mixins/grid-framework.less | 91 - .../bootstrap/less/mixins/grid.less | 122 - .../bootstrap/less/mixins/hide-text.less | 21 - .../bootstrap/less/mixins/image.less | 33 - .../bootstrap/less/mixins/labels.less | 12 - .../bootstrap/less/mixins/list-group.less | 30 - .../bootstrap/less/mixins/nav-divider.less | 10 - .../less/mixins/nav-vertical-align.less | 9 - .../bootstrap/less/mixins/opacity.less | 8 - .../bootstrap/less/mixins/pagination.less | 24 - .../bootstrap/less/mixins/panels.less | 24 - .../bootstrap/less/mixins/progress-bar.less | 10 - .../bootstrap/less/mixins/reset-filter.less | 8 - .../bootstrap/less/mixins/reset-text.less | 18 - .../bootstrap/less/mixins/resize.less | 6 - .../less/mixins/responsive-visibility.less | 15 - .../bootstrap/less/mixins/size.less | 10 - .../bootstrap/less/mixins/tab-focus.less | 9 - .../bootstrap/less/mixins/table-row.less | 28 - .../bootstrap/less/mixins/text-emphasis.less | 9 - .../bootstrap/less/mixins/text-overflow.less | 8 - .../less/mixins/vendor-prefixes.less | 227 - .../node_modules/bootstrap/less/modals.less | 150 - .../node_modules/bootstrap/less/navbar.less | 660 - .../node_modules/bootstrap/less/navs.less | 242 - .../bootstrap/less/normalize.less | 424 - .../node_modules/bootstrap/less/pager.less | 54 - .../bootstrap/less/pagination.less | 89 - .../node_modules/bootstrap/less/panels.less | 271 - .../node_modules/bootstrap/less/popovers.less | 131 - .../node_modules/bootstrap/less/print.less | 101 - .../bootstrap/less/progress-bars.less | 87 - .../bootstrap/less/responsive-embed.less | 35 - .../bootstrap/less/responsive-utilities.less | 194 - .../bootstrap/less/scaffolding.less | 161 - .../node_modules/bootstrap/less/tables.less | 234 - .../node_modules/bootstrap/less/theme.less | 291 - .../bootstrap/less/thumbnails.less | 36 - .../node_modules/bootstrap/less/tooltip.less | 101 - .../node_modules/bootstrap/less/type.less | 302 - .../bootstrap/less/utilities.less | 55 - .../bootstrap/less/variables.less | 869 -- .../node_modules/bootstrap/less/wells.less | 29 - .../v1.7/node_modules/bootstrap/package.json | 152 - .../kubectl/v1.7/node_modules/colors/LICENSE | 23 - .../v1.7/node_modules/colors/ReadMe.md | 178 - .../colors/examples/normal-usage.js | 74 - .../colors/examples/safe-string.js | 76 - .../v1.7/node_modules/colors/lib/colors.js | 187 - .../node_modules/colors/lib/custom/trap.js | 45 - .../node_modules/colors/lib/custom/zalgo.js | 104 - .../colors/lib/extendStringPrototype.js | 113 - .../v1.7/node_modules/colors/lib/index.js | 12 - .../node_modules/colors/lib/maps/america.js | 12 - .../node_modules/colors/lib/maps/rainbow.js | 13 - .../node_modules/colors/lib/maps/random.js | 8 - .../node_modules/colors/lib/maps/zebra.js | 5 - .../v1.7/node_modules/colors/lib/styles.js | 77 - .../colors/lib/system/supports-colors.js | 61 - .../v1.7/node_modules/colors/package.json | 94 - .../kubectl/v1.7/node_modules/colors/safe.js | 9 - .../colors/themes/generic-logging.js | 12 - .../kubectl/v1.7/node_modules/ejs/Jakefile | 70 - .../kubectl/v1.7/node_modules/ejs/LICENSE | 202 - .../kubectl/v1.7/node_modules/ejs/README.md | 257 - .../kubectl/v1.7/node_modules/ejs/ejs.js | 1494 --- .../kubectl/v1.7/node_modules/ejs/ejs.min.js | 1 - .../kubectl/v1.7/node_modules/ejs/lib/ejs.js | 866 -- .../v1.7/node_modules/ejs/lib/utils.js | 164 - .../v1.7/node_modules/ejs/package.json | 113 - .../v1.7/node_modules/font-awesome/.npmignore | 42 - .../node_modules/font-awesome/HELP-US-OUT.txt | 7 - .../v1.7/node_modules/font-awesome/README.md | 106 - .../font-awesome/css/font-awesome.css | 2337 ---- .../font-awesome/css/font-awesome.css.map | 7 - .../font-awesome/css/font-awesome.min.css | 4 - .../font-awesome/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes .../fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes .../fonts/fontawesome-webfont.svg | 2671 ---- .../fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes .../fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes .../fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes .../font-awesome/less/animated.less | 34 - .../font-awesome/less/bordered-pulled.less | 25 - .../node_modules/font-awesome/less/core.less | 12 - .../font-awesome/less/fixed-width.less | 6 - .../font-awesome/less/font-awesome.less | 18 - .../node_modules/font-awesome/less/icons.less | 789 -- .../font-awesome/less/larger.less | 13 - .../node_modules/font-awesome/less/list.less | 19 - .../font-awesome/less/mixins.less | 60 - .../node_modules/font-awesome/less/path.less | 15 - .../font-awesome/less/rotated-flipped.less | 20 - .../font-awesome/less/screen-reader.less | 5 - .../font-awesome/less/stacked.less | 20 - .../font-awesome/less/variables.less | 800 -- .../node_modules/font-awesome/package.json | 112 - .../font-awesome/scss/_animated.scss | 34 - .../font-awesome/scss/_bordered-pulled.scss | 25 - .../node_modules/font-awesome/scss/_core.scss | 12 - .../font-awesome/scss/_fixed-width.scss | 6 - .../font-awesome/scss/_icons.scss | 789 -- .../font-awesome/scss/_larger.scss | 13 - .../node_modules/font-awesome/scss/_list.scss | 19 - .../font-awesome/scss/_mixins.scss | 60 - .../node_modules/font-awesome/scss/_path.scss | 15 - .../font-awesome/scss/_rotated-flipped.scss | 20 - .../font-awesome/scss/_screen-reader.scss | 5 - .../font-awesome/scss/_stacked.scss | 20 - .../font-awesome/scss/_variables.scss | 800 -- .../font-awesome/scss/font-awesome.scss | 18 - .../v1.7/node_modules/highlight.js/LICENSE | 24 - .../v1.7/node_modules/highlight.js/README.md | 150 - .../node_modules/highlight.js/docs/api.rst | 120 - .../highlight.js/docs/building-testing.rst | 88 - .../docs/css-classes-reference.rst | 432 - .../node_modules/highlight.js/docs/index.rst | 44 - .../docs/language-contribution.rst | 78 - .../highlight.js/docs/language-guide.rst | 264 - .../highlight.js/docs/language-requests.rst | 17 - .../highlight.js/docs/line-numbers.rst | 39 - .../highlight.js/docs/reference.rst | 324 - .../highlight.js/docs/release-process.rst | 20 - .../highlight.js/docs/style-guide.rst | 107 - .../highlight.js/lib/highlight.js | 816 -- .../node_modules/highlight.js/lib/index.js | 180 - .../highlight.js/lib/languages/1c.js | 509 - .../highlight.js/lib/languages/abnf.js | 70 - .../highlight.js/lib/languages/accesslog.js | 37 - .../lib/languages/actionscript.js | 73 - .../highlight.js/lib/languages/ada.js | 172 - .../highlight.js/lib/languages/apache.js | 45 - .../highlight.js/lib/languages/applescript.js | 85 - .../highlight.js/lib/languages/arduino.js | 99 - .../highlight.js/lib/languages/armasm.js | 91 - .../highlight.js/lib/languages/asciidoc.js | 187 - .../highlight.js/lib/languages/aspectj.js | 144 - .../highlight.js/lib/languages/autohotkey.js | 58 - .../highlight.js/lib/languages/autoit.js | 135 - .../highlight.js/lib/languages/avrasm.js | 61 - .../highlight.js/lib/languages/awk.js | 52 - .../highlight.js/lib/languages/axapta.js | 30 - .../highlight.js/lib/languages/bash.js | 74 - .../highlight.js/lib/languages/basic.js | 50 - .../highlight.js/lib/languages/bnf.js | 28 - .../highlight.js/lib/languages/brainfuck.js | 36 - .../highlight.js/lib/languages/cal.js | 79 - .../highlight.js/lib/languages/capnproto.js | 48 - .../highlight.js/lib/languages/ceylon.js | 66 - .../highlight.js/lib/languages/clean.js | 24 - .../lib/languages/clojure-repl.js | 14 - .../highlight.js/lib/languages/clojure.js | 95 - .../highlight.js/lib/languages/cmake.js | 37 - .../lib/languages/coffeescript.js | 145 - .../highlight.js/lib/languages/coq.js | 66 - .../highlight.js/lib/languages/cos.js | 123 - .../highlight.js/lib/languages/cpp.js | 174 - .../highlight.js/lib/languages/crmsh.js | 93 - .../highlight.js/lib/languages/crystal.js | 193 - .../highlight.js/lib/languages/cs.js | 176 - .../highlight.js/lib/languages/csp.js | 21 - .../highlight.js/lib/languages/css.js | 104 - .../highlight.js/lib/languages/d.js | 257 - .../highlight.js/lib/languages/dart.js | 100 - .../highlight.js/lib/languages/delphi.js | 68 - .../highlight.js/lib/languages/diff.js | 39 - .../highlight.js/lib/languages/django.js | 63 - .../highlight.js/lib/languages/dns.js | 28 - .../highlight.js/lib/languages/dockerfile.js | 21 - .../highlight.js/lib/languages/dos.js | 51 - .../highlight.js/lib/languages/dsconfig.js | 46 - .../highlight.js/lib/languages/dts.js | 123 - .../highlight.js/lib/languages/dust.js | 31 - .../highlight.js/lib/languages/ebnf.js | 32 - .../highlight.js/lib/languages/elixir.js | 96 - .../highlight.js/lib/languages/elm.js | 83 - .../highlight.js/lib/languages/erb.js | 14 - .../highlight.js/lib/languages/erlang-repl.js | 45 - .../highlight.js/lib/languages/erlang.js | 145 - .../highlight.js/lib/languages/excel.js | 47 - .../highlight.js/lib/languages/fix.js | 28 - .../highlight.js/lib/languages/flix.js | 44 - .../highlight.js/lib/languages/fortran.js | 70 - .../highlight.js/lib/languages/fsharp.js | 58 - .../highlight.js/lib/languages/gams.js | 153 - .../highlight.js/lib/languages/gauss.js | 223 - .../highlight.js/lib/languages/gcode.js | 66 - .../highlight.js/lib/languages/gherkin.js | 36 - .../highlight.js/lib/languages/glsl.js | 116 - .../highlight.js/lib/languages/go.js | 53 - .../highlight.js/lib/languages/golo.js | 22 - .../highlight.js/lib/languages/gradle.js | 34 - .../highlight.js/lib/languages/groovy.js | 93 - .../highlight.js/lib/languages/haml.js | 106 - .../highlight.js/lib/languages/handlebars.js | 33 - .../highlight.js/lib/languages/haskell.js | 121 - .../highlight.js/lib/languages/haxe.js | 111 - .../highlight.js/lib/languages/hsp.js | 45 - .../highlight.js/lib/languages/htmlbars.js | 70 - .../highlight.js/lib/languages/http.js | 40 - .../highlight.js/lib/languages/hy.js | 101 - .../highlight.js/lib/languages/inform7.js | 56 - .../highlight.js/lib/languages/ini.js | 65 - .../highlight.js/lib/languages/irpf90.js | 75 - .../highlight.js/lib/languages/java.js | 107 - .../highlight.js/lib/languages/javascript.js | 170 - .../highlight.js/lib/languages/jboss-cli.js | 46 - .../highlight.js/lib/languages/json.js | 36 - .../highlight.js/lib/languages/julia-repl.js | 23 - .../highlight.js/lib/languages/julia.js | 161 - .../highlight.js/lib/languages/kotlin.js | 173 - .../highlight.js/lib/languages/lasso.js | 162 - .../highlight.js/lib/languages/ldif.js | 22 - .../highlight.js/lib/languages/leaf.js | 39 - .../highlight.js/lib/languages/less.js | 139 - .../highlight.js/lib/languages/lisp.js | 102 - .../lib/languages/livecodeserver.js | 156 - .../highlight.js/lib/languages/livescript.js | 148 - .../highlight.js/lib/languages/llvm.js | 88 - .../highlight.js/lib/languages/lsl.js | 82 - .../highlight.js/lib/languages/lua.js | 65 - .../highlight.js/lib/languages/makefile.js | 80 - .../highlight.js/lib/languages/markdown.js | 107 - .../highlight.js/lib/languages/mathematica.js | 57 - .../highlight.js/lib/languages/matlab.js | 87 - .../highlight.js/lib/languages/maxima.js | 405 - .../highlight.js/lib/languages/mel.js | 224 - .../highlight.js/lib/languages/mercury.js | 81 - .../highlight.js/lib/languages/mipsasm.js | 85 - .../highlight.js/lib/languages/mizar.js | 18 - .../highlight.js/lib/languages/mojolicious.js | 24 - .../highlight.js/lib/languages/monkey.js | 74 - .../highlight.js/lib/languages/moonscript.js | 111 - .../highlight.js/lib/languages/n1ql.js | 68 - .../highlight.js/lib/languages/nginx.js | 92 - .../highlight.js/lib/languages/nimrod.js | 54 - .../highlight.js/lib/languages/nix.js | 48 - .../highlight.js/lib/languages/nsis.js | 105 - .../highlight.js/lib/languages/objectivec.js | 90 - .../highlight.js/lib/languages/ocaml.js | 70 - .../highlight.js/lib/languages/openscad.js | 56 - .../highlight.js/lib/languages/oxygene.js | 69 - .../highlight.js/lib/languages/parser3.js | 47 - .../highlight.js/lib/languages/perl.js | 156 - .../highlight.js/lib/languages/pf.js | 51 - .../highlight.js/lib/languages/php.js | 126 - .../highlight.js/lib/languages/pony.js | 90 - .../highlight.js/lib/languages/powershell.js | 80 - .../highlight.js/lib/languages/processing.js | 47 - .../highlight.js/lib/languages/profile.js | 29 - .../highlight.js/lib/languages/prolog.js | 87 - .../highlight.js/lib/languages/protobuf.js | 35 - .../highlight.js/lib/languages/puppet.js | 114 - .../highlight.js/lib/languages/purebasic.js | 57 - .../highlight.js/lib/languages/python.js | 115 - .../highlight.js/lib/languages/q.js | 22 - .../highlight.js/lib/languages/qml.js | 168 - .../highlight.js/lib/languages/r.js | 69 - .../highlight.js/lib/languages/rib.js | 26 - .../highlight.js/lib/languages/roboconf.js | 66 - .../highlight.js/lib/languages/routeros.js | 158 - .../highlight.js/lib/languages/rsl.js | 35 - .../highlight.js/lib/languages/ruby.js | 176 - .../lib/languages/ruleslanguage.js | 60 - .../highlight.js/lib/languages/rust.js | 107 - .../highlight.js/lib/languages/scala.js | 114 - .../highlight.js/lib/languages/scheme.js | 143 - .../highlight.js/lib/languages/scilab.js | 53 - .../highlight.js/lib/languages/scss.js | 97 - .../highlight.js/lib/languages/shell.js | 14 - .../highlight.js/lib/languages/smali.js | 55 - .../highlight.js/lib/languages/smalltalk.js | 49 - .../highlight.js/lib/languages/sml.js | 65 - .../highlight.js/lib/languages/sqf.js | 370 - .../highlight.js/lib/languages/sql.js | 159 - .../highlight.js/lib/languages/stan.js | 82 - .../highlight.js/lib/languages/stata.js | 37 - .../highlight.js/lib/languages/step21.js | 46 - .../highlight.js/lib/languages/stylus.js | 453 - .../highlight.js/lib/languages/subunit.js | 33 - .../highlight.js/lib/languages/swift.js | 116 - .../lib/languages/taggerscript.js | 43 - .../highlight.js/lib/languages/tap.js | 35 - .../highlight.js/lib/languages/tcl.js | 60 - .../highlight.js/lib/languages/tex.js | 61 - .../highlight.js/lib/languages/thrift.js | 34 - .../highlight.js/lib/languages/tp.js | 83 - .../highlight.js/lib/languages/twig.js | 65 - .../highlight.js/lib/languages/typescript.js | 155 - .../highlight.js/lib/languages/vala.js | 49 - .../highlight.js/lib/languages/vbnet.js | 55 - .../lib/languages/vbscript-html.js | 11 - .../highlight.js/lib/languages/vbscript.js | 38 - .../highlight.js/lib/languages/verilog.js | 98 - .../highlight.js/lib/languages/vhdl.js | 60 - .../highlight.js/lib/languages/vim.js | 105 - .../highlight.js/lib/languages/x86asm.js | 135 - .../highlight.js/lib/languages/xl.js | 72 - .../highlight.js/lib/languages/xml.js | 102 - .../highlight.js/lib/languages/xquery.js | 70 - .../highlight.js/lib/languages/yaml.js | 87 - .../highlight.js/lib/languages/zephir.js | 106 - .../node_modules/highlight.js/package.json | 1091 -- .../highlight.js/styles/agate.css | 108 - .../highlight.js/styles/androidstudio.css | 66 - .../highlight.js/styles/arduino-light.css | 88 - .../node_modules/highlight.js/styles/arta.css | 73 - .../highlight.js/styles/ascetic.css | 45 - .../highlight.js/styles/atelier-cave-dark.css | 83 - .../styles/atelier-cave-light.css | 85 - .../highlight.js/styles/atelier-dune-dark.css | 69 - .../styles/atelier-dune-light.css | 69 - .../styles/atelier-estuary-dark.css | 84 - .../styles/atelier-estuary-light.css | 84 - .../styles/atelier-forest-dark.css | 69 - .../styles/atelier-forest-light.css | 69 - .../styles/atelier-heath-dark.css | 69 - .../styles/atelier-heath-light.css | 69 - .../styles/atelier-lakeside-dark.css | 69 - .../styles/atelier-lakeside-light.css | 69 - .../styles/atelier-plateau-dark.css | 84 - .../styles/atelier-plateau-light.css | 84 - .../styles/atelier-savanna-dark.css | 84 - .../styles/atelier-savanna-light.css | 84 - .../styles/atelier-seaside-dark.css | 69 - .../styles/atelier-seaside-light.css | 69 - .../styles/atelier-sulphurpool-dark.css | 69 - .../styles/atelier-sulphurpool-light.css | 69 - .../highlight.js/styles/atom-one-dark.css | 96 - .../highlight.js/styles/atom-one-light.css | 96 - .../highlight.js/styles/brown-paper.css | 64 - .../highlight.js/styles/brown-papersq.png | Bin 18198 -> 0 bytes .../highlight.js/styles/codepen-embed.css | 60 - .../highlight.js/styles/color-brewer.css | 71 - .../highlight.js/styles/darcula.css | 77 - .../node_modules/highlight.js/styles/dark.css | 63 - .../highlight.js/styles/darkula.css | 6 - .../highlight.js/styles/default.css | 99 - .../highlight.js/styles/docco.css | 97 - .../highlight.js/styles/dracula.css | 76 - .../node_modules/highlight.js/styles/far.css | 71 - .../highlight.js/styles/foundation.css | 88 - .../highlight.js/styles/github-gist.css | 71 - .../highlight.js/styles/github.css | 99 - .../highlight.js/styles/googlecode.css | 89 - .../highlight.js/styles/grayscale.css | 101 - .../highlight.js/styles/gruvbox-dark.css | 108 - .../highlight.js/styles/gruvbox-light.css | 108 - .../highlight.js/styles/hopscotch.css | 83 - .../highlight.js/styles/hybrid.css | 102 - .../node_modules/highlight.js/styles/idea.css | 97 - .../highlight.js/styles/ir-black.css | 73 - .../highlight.js/styles/kimbie.dark.css | 74 - .../highlight.js/styles/kimbie.light.css | 74 - .../highlight.js/styles/magula.css | 70 - .../highlight.js/styles/mono-blue.css | 59 - .../highlight.js/styles/monokai-sublime.css | 83 - .../highlight.js/styles/monokai.css | 70 - .../highlight.js/styles/obsidian.css | 88 - .../highlight.js/styles/ocean.css | 74 - .../highlight.js/styles/paraiso-dark.css | 72 - .../highlight.js/styles/paraiso-light.css | 72 - .../highlight.js/styles/pojoaque.css | 83 - .../highlight.js/styles/pojoaque.jpg | Bin 1186 -> 0 bytes .../highlight.js/styles/purebasic.css | 96 - .../highlight.js/styles/qtcreator_dark.css | 83 - .../highlight.js/styles/qtcreator_light.css | 83 - .../highlight.js/styles/railscasts.css | 106 - .../highlight.js/styles/rainbow.css | 85 - .../highlight.js/styles/routeros.css | 108 - .../highlight.js/styles/school-book.css | 72 - .../highlight.js/styles/school-book.png | Bin 486 -> 0 bytes .../highlight.js/styles/solarized-dark.css | 84 - .../highlight.js/styles/solarized-light.css | 84 - .../highlight.js/styles/sunburst.css | 102 - .../styles/tomorrow-night-blue.css | 75 - .../styles/tomorrow-night-bright.css | 74 - .../styles/tomorrow-night-eighties.css | 74 - .../highlight.js/styles/tomorrow-night.css | 75 - .../highlight.js/styles/tomorrow.css | 72 - .../node_modules/highlight.js/styles/vs.css | 68 - .../highlight.js/styles/vs2015.css | 115 - .../highlight.js/styles/xcode.css | 93 - .../highlight.js/styles/xt256.css | 92 - .../highlight.js/styles/zenburn.css | 80 - .../v1.7/node_modules/jquery.scrollto/.jscsrc | 41 - .../node_modules/jquery.scrollto/.jshintrc | 23 - .../node_modules/jquery.scrollto/.npmignore | 16 - .../node_modules/jquery.scrollto/CHANGELOG.md | 186 - .../v1.7/node_modules/jquery.scrollto/LICENSE | 22 - .../node_modules/jquery.scrollto/README.md | 151 - .../node_modules/jquery.scrollto/bower.json | 28 - .../jquery.scrollto/composer.json | 32 - .../jquery.scrollto/demo/css/style.css | 150 - .../jquery.scrollto/demo/css/style.old.css | 69 - .../jquery.scrollto/demo/index.html | 252 - .../jquery.scrollto/demo/index.old.html | 128 - .../jquery.scrollto/jquery.scrollTo.js | 210 - .../jquery.scrollto/jquery.scrollTo.min.js | 7 - .../node_modules/jquery.scrollto/package.json | 104 - .../tests/ElemMaxY-compat.html | 21 - .../tests/ElemMaxY-quirks.html | 20 - .../jquery.scrollto/tests/WinMaxY-compat.html | 19 - .../jquery.scrollto/tests/WinMaxY-quirks.html | 18 - .../tests/WinMaxY-to-iframe-compat.html | 20 - .../tests/WinMaxY-to-iframe-quirks.html | 19 - .../tests/WinMaxY-with-iframe-compat.html | 11 - .../tests/WinMaxY-with-iframe-quirks.html | 10 - .../jquery.scrollto/tests/index.html | 24 - .../jquery.scrollto/tests/test.js | 21 - .../v1.7/node_modules/jquery/AUTHORS.txt | 301 - .../v1.7/node_modules/jquery/LICENSE.txt | 36 - .../v1.7/node_modules/jquery/README.md | 67 - .../v1.7/node_modules/jquery/bower.json | 14 - .../v1.7/node_modules/jquery/dist/core.js | 476 - .../v1.7/node_modules/jquery/dist/jquery.js | 10253 ---------------- .../node_modules/jquery/dist/jquery.min.map | 1 - .../node_modules/jquery/dist/jquery.slim.js | 8160 ------------ .../jquery/dist/jquery.slim.min.js | 4 - .../jquery/dist/jquery.slim.min.map | 1 - .../jquery/external/sizzle/LICENSE.txt | 36 - .../jquery/external/sizzle/dist/sizzle.js | 2272 ---- .../jquery/external/sizzle/dist/sizzle.min.js | 3 - .../external/sizzle/dist/sizzle.min.map | 1 - .../v1.7/node_modules/jquery/package.json | 170 - .../node_modules/jquery/src/.eslintrc.json | 5 - .../v1.7/node_modules/jquery/src/ajax.js | 855 -- .../node_modules/jquery/src/ajax/jsonp.js | 102 - .../v1.7/node_modules/jquery/src/ajax/load.js | 76 - .../node_modules/jquery/src/ajax/parseXML.js | 30 - .../node_modules/jquery/src/ajax/script.js | 77 - .../jquery/src/ajax/var/location.js | 5 - .../node_modules/jquery/src/ajax/var/nonce.js | 7 - .../jquery/src/ajax/var/rquery.js | 5 - .../v1.7/node_modules/jquery/src/ajax/xhr.js | 169 - .../node_modules/jquery/src/attributes.js | 13 - .../jquery/src/attributes/attr.js | 141 - .../jquery/src/attributes/classes.js | 174 - .../jquery/src/attributes/prop.js | 143 - .../jquery/src/attributes/support.js | 33 - .../node_modules/jquery/src/attributes/val.js | 190 - .../v1.7/node_modules/jquery/src/callbacks.js | 234 - .../v1.7/node_modules/jquery/src/core.js | 476 - .../node_modules/jquery/src/core/DOMEval.js | 16 - .../node_modules/jquery/src/core/access.js | 70 - .../v1.7/node_modules/jquery/src/core/init.js | 128 - .../node_modules/jquery/src/core/nodeName.js | 13 - .../node_modules/jquery/src/core/parseHTML.js | 65 - .../jquery/src/core/ready-no-deferred.js | 96 - .../node_modules/jquery/src/core/ready.js | 86 - .../jquery/src/core/readyException.js | 13 - .../jquery/src/core/stripAndCollapse.js | 14 - .../node_modules/jquery/src/core/support.js | 20 - .../jquery/src/core/var/rsingleTag.js | 6 - .../v1.7/node_modules/jquery/src/css.js | 438 - .../jquery/src/css/addGetHookIf.js | 26 - .../node_modules/jquery/src/css/adjustCSS.js | 71 - .../node_modules/jquery/src/css/curCSS.js | 65 - .../jquery/src/css/hiddenVisibleSelectors.js | 15 - .../node_modules/jquery/src/css/showHide.js | 105 - .../node_modules/jquery/src/css/support.js | 89 - .../jquery/src/css/var/cssExpand.js | 5 - .../jquery/src/css/var/getStyles.js | 17 - .../jquery/src/css/var/isHiddenWithinTree.js | 34 - .../jquery/src/css/var/rmargin.js | 5 - .../jquery/src/css/var/rnumnonpx.js | 7 - .../node_modules/jquery/src/css/var/swap.js | 26 - .../v1.7/node_modules/jquery/src/data.js | 179 - .../v1.7/node_modules/jquery/src/data/Data.js | 161 - .../jquery/src/data/var/acceptData.js | 19 - .../jquery/src/data/var/dataPriv.js | 7 - .../jquery/src/data/var/dataUser.js | 7 - .../v1.7/node_modules/jquery/src/deferred.js | 391 - .../jquery/src/deferred/exceptionHook.js | 21 - .../node_modules/jquery/src/deprecated.js | 40 - .../node_modules/jquery/src/dimensions.js | 56 - .../v1.7/node_modules/jquery/src/effects.js | 699 -- .../node_modules/jquery/src/effects/Tween.js | 123 - .../jquery/src/effects/animatedSelector.js | 15 - .../v1.7/node_modules/jquery/src/event.js | 746 -- .../node_modules/jquery/src/event/ajax.js | 22 - .../node_modules/jquery/src/event/alias.js | 29 - .../node_modules/jquery/src/event/focusin.js | 55 - .../node_modules/jquery/src/event/support.js | 11 - .../node_modules/jquery/src/event/trigger.js | 185 - .../node_modules/jquery/src/exports/amd.js | 26 - .../node_modules/jquery/src/exports/global.js | 34 - .../v1.7/node_modules/jquery/src/jquery.js | 41 - .../node_modules/jquery/src/manipulation.js | 488 - .../jquery/src/manipulation/_evalUrl.js | 23 - .../jquery/src/manipulation/buildFragment.js | 104 - .../jquery/src/manipulation/getAll.js | 32 - .../jquery/src/manipulation/setGlobalEval.js | 22 - .../jquery/src/manipulation/support.js | 35 - .../src/manipulation/var/rcheckableType.js | 5 - .../src/manipulation/var/rscriptType.js | 5 - .../jquery/src/manipulation/var/rtagName.js | 5 - .../jquery/src/manipulation/wrapMap.js | 29 - .../v1.7/node_modules/jquery/src/offset.js | 229 - .../v1.7/node_modules/jquery/src/queue.js | 145 - .../node_modules/jquery/src/queue/delay.js | 24 - .../jquery/src/selector-native.js | 237 - .../jquery/src/selector-sizzle.js | 19 - .../v1.7/node_modules/jquery/src/selector.js | 3 - .../v1.7/node_modules/jquery/src/serialize.js | 130 - .../node_modules/jquery/src/traversing.js | 191 - .../jquery/src/traversing/findFilter.js | 106 - .../jquery/src/traversing/var/dir.js | 22 - .../src/traversing/var/rneedsContext.js | 8 - .../jquery/src/traversing/var/siblings.js | 17 - .../jquery/src/var/ObjectFunctionString.js | 7 - .../v1.7/node_modules/jquery/src/var/arr.js | 5 - .../node_modules/jquery/src/var/class2type.js | 6 - .../node_modules/jquery/src/var/concat.js | 7 - .../node_modules/jquery/src/var/document.js | 5 - .../jquery/src/var/documentElement.js | 7 - .../node_modules/jquery/src/var/fnToString.js | 7 - .../node_modules/jquery/src/var/getProto.js | 5 - .../node_modules/jquery/src/var/hasOwn.js | 7 - .../node_modules/jquery/src/var/indexOf.js | 7 - .../v1.7/node_modules/jquery/src/var/pnum.js | 5 - .../v1.7/node_modules/jquery/src/var/push.js | 7 - .../node_modules/jquery/src/var/rcssNum.js | 9 - .../jquery/src/var/rnothtmlwhite.js | 8 - .../v1.7/node_modules/jquery/src/var/slice.js | 7 - .../node_modules/jquery/src/var/support.js | 6 - .../node_modules/jquery/src/var/toString.js | 7 - .../v1.7/node_modules/jquery/src/wrap.js | 77 - .../v1.7/node_modules/marked/.npmignore | 2 - .../v1.7/node_modules/marked/Gulpfile.js | 22 - .../kubectl/v1.7/node_modules/marked/LICENSE | 19 - .../kubectl/v1.7/node_modules/marked/Makefile | 12 - .../v1.7/node_modules/marked/README.md | 406 - .../v1.7/node_modules/marked/bin/marked | 187 - .../v1.7/node_modules/marked/bower.json | 24 - .../v1.7/node_modules/marked/component.json | 10 - .../v1.7/node_modules/marked/doc/broken.md | 426 - .../v1.7/node_modules/marked/doc/todo.md | 2 - .../kubectl/v1.7/node_modules/marked/index.js | 1 - .../v1.7/node_modules/marked/lib/marked.js | 1286 -- .../v1.7/node_modules/marked/man/marked.1 | 91 - .../v1.7/node_modules/marked/marked.min.js | 6 - .../v1.7/node_modules/marked/package.json | 107 - .../kubectl/v1.7/node_modules/mime/.npmignore | 0 .../kubectl/v1.7/node_modules/mime/LICENSE | 21 - .../kubectl/v1.7/node_modules/mime/README.md | 90 - .../v1.7/node_modules/mime/build/build.js | 11 - .../v1.7/node_modules/mime/build/test.js | 60 - .../kubectl/v1.7/node_modules/mime/cli.js | 8 - .../kubectl/v1.7/node_modules/mime/mime.js | 108 - .../v1.7/node_modules/mime/package.json | 106 - .../kubectl/v1.7/node_modules/mime/types.json | 1 - .../v1.7/node_modules/minimist/LICENSE | 18 - .../node_modules/minimist/example/parse.js | 2 - .../v1.7/node_modules/minimist/index.js | 187 - .../v1.7/node_modules/minimist/package.json | 101 - .../node_modules/minimist/readme.markdown | 73 - .../v1.7/node_modules/minimist/test/bool.js | 119 - .../v1.7/node_modules/minimist/test/dash.js | 24 - .../minimist/test/default_bool.js | 20 - .../v1.7/node_modules/minimist/test/dotted.js | 22 - .../v1.7/node_modules/minimist/test/long.js | 31 - .../v1.7/node_modules/minimist/test/num.js | 36 - .../v1.7/node_modules/minimist/test/parse.js | 197 - .../minimist/test/parse_modified.js | 9 - .../v1.7/node_modules/minimist/test/short.js | 67 - .../node_modules/minimist/test/whitespace.js | 8 - .../v1.7/node_modules/node-static/.npmignore | 3 - .../v1.7/node_modules/node-static/LICENSE | 20 - .../v1.7/node_modules/node-static/README.md | 234 - .../benchmark/node-static-0.3.0.txt | 43 - .../v1.7/node_modules/node-static/bin/cli.js | 132 - .../node-static/examples/file-server.js | 20 - .../node-static/lib/node-static.js | 397 - .../node-static/lib/node-static/util.js | 30 - .../node_modules/node-static/package.json | 125 - .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 1 - .../node-static/test/fixtures/index.html | 8 - .../test/fixtures/there/index.html | 8 - .../test/integration/node-static-test.js | 390 - .../v1.7/node_modules/optimist/LICENSE | 21 - .../node_modules/optimist/example/bool.js | 10 - .../optimist/example/boolean_double.js | 7 - .../optimist/example/boolean_single.js | 7 - .../optimist/example/default_hash.js | 8 - .../optimist/example/default_singles.js | 7 - .../node_modules/optimist/example/divide.js | 8 - .../optimist/example/line_count.js | 20 - .../optimist/example/line_count_options.js | 29 - .../optimist/example/line_count_wrap.js | 29 - .../node_modules/optimist/example/nonopt.js | 4 - .../node_modules/optimist/example/reflect.js | 2 - .../node_modules/optimist/example/short.js | 3 - .../node_modules/optimist/example/string.js | 11 - .../optimist/example/usage-options.js | 19 - .../v1.7/node_modules/optimist/example/xup.js | 10 - .../v1.7/node_modules/optimist/index.js | 343 - .../v1.7/node_modules/optimist/package.json | 97 - .../node_modules/optimist/readme.markdown | 513 - .../v1.7/node_modules/optimist/test/_.js | 71 - .../v1.7/node_modules/optimist/test/_/argv.js | 2 - .../v1.7/node_modules/optimist/test/_/bin.js | 3 - .../v1.7/node_modules/optimist/test/dash.js | 31 - .../v1.7/node_modules/optimist/test/parse.js | 446 - .../optimist/test/parse_modified.js | 14 - .../v1.7/node_modules/optimist/test/short.js | 16 - .../v1.7/node_modules/optimist/test/usage.js | 292 - .../node_modules/optimist/test/whitespace.js | 8 - .../v1.7/node_modules/wordwrap/LICENSE | 18 - .../node_modules/wordwrap/README.markdown | 70 - .../node_modules/wordwrap/example/center.js | 10 - .../node_modules/wordwrap/example/meat.js | 3 - .../v1.7/node_modules/wordwrap/index.js | 76 - .../v1.7/node_modules/wordwrap/package.json | 97 - .../v1.7/node_modules/wordwrap/test/break.js | 30 - .../node_modules/wordwrap/test/idleness.txt | 63 - .../v1.7/node_modules/wordwrap/test/wrap.js | 31 - docs/user-guide/kubectl/v1.7/package.json | 31 - docs/user-guide/kubectl/v1.7/server.js | 7 - docs/user-guide/kubectl/v1.7/stylesheet.css | 269 - docs/user-guide/kubectl/v1.7/tabvisibility.js | 27 - docs/user-guide/kubectl/v1.8/LICENSE | 201 - docs/user-guide/kubectl/v1.8/README.md | 69 - docs/user-guide/kubectl/v1.8/actions.js | 58 - docs/user-guide/kubectl/v1.8/brodoc.js | 211 - docs/user-guide/kubectl/v1.8/jsconfig.json | 6 - .../kubectl/v1.8/markedDecorations.js | 101 - .../kubectl/v1.8/node_modules/.bin/marked | 187 - .../kubectl/v1.8/node_modules/.bin/mime | 8 - .../kubectl/v1.8/node_modules/.bin/static | 132 - .../v1.8/node_modules/bootstrap/CHANGELOG.md | 5 - .../v1.8/node_modules/bootstrap/Gruntfile.js | 511 - .../v1.8/node_modules/bootstrap/LICENSE | 21 - .../v1.8/node_modules/bootstrap/README.md | 142 - .../bootstrap/dist/css/bootstrap-theme.css | 587 - .../dist/css/bootstrap-theme.css.map | 1 - .../dist/css/bootstrap-theme.min.css | 6 - .../dist/css/bootstrap-theme.min.css.map | 1 - .../bootstrap/dist/css/bootstrap.css | 6757 ---------- .../bootstrap/dist/css/bootstrap.css.map | 1 - .../bootstrap/dist/css/bootstrap.min.css | 6 - .../bootstrap/dist/css/bootstrap.min.css.map | 1 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../bootstrap/dist/js/bootstrap.js | 2377 ---- .../bootstrap/dist/js/bootstrap.min.js | 7 - .../node_modules/bootstrap/dist/js/npm.js | 13 - .../fonts/glyphicons-halflings-regular.eot | Bin 20127 -> 0 bytes .../fonts/glyphicons-halflings-regular.svg | 288 - .../fonts/glyphicons-halflings-regular.ttf | Bin 45404 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 23424 -> 0 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 18028 -> 0 bytes .../node_modules/bootstrap/grunt/.jshintrc | 7 - .../bootstrap/grunt/bs-commonjs-generator.js | 30 - .../grunt/bs-glyphicons-data-generator.js | 42 - .../bootstrap/grunt/bs-lessdoc-parser.js | 237 - .../bootstrap/grunt/bs-raw-files-generator.js | 44 - .../bootstrap/grunt/change-version.js | 109 - .../bootstrap/grunt/configBridge.json | 46 - .../bootstrap/grunt/npm-shrinkwrap.json | 2679 ---- .../bootstrap/grunt/sauce_browsers.yml | 82 - .../v1.8/node_modules/bootstrap/js/affix.js | 162 - .../v1.8/node_modules/bootstrap/js/alert.js | 94 - .../v1.8/node_modules/bootstrap/js/button.js | 125 - .../node_modules/bootstrap/js/carousel.js | 237 - .../node_modules/bootstrap/js/collapse.js | 212 - .../node_modules/bootstrap/js/dropdown.js | 165 - .../v1.8/node_modules/bootstrap/js/modal.js | 339 - .../v1.8/node_modules/bootstrap/js/popover.js | 108 - .../node_modules/bootstrap/js/scrollspy.js | 172 - .../v1.8/node_modules/bootstrap/js/tab.js | 155 - .../v1.8/node_modules/bootstrap/js/tooltip.js | 520 - .../node_modules/bootstrap/js/transition.js | 59 - .../node_modules/bootstrap/less/alerts.less | 73 - .../node_modules/bootstrap/less/badges.less | 66 - .../bootstrap/less/bootstrap.less | 56 - .../bootstrap/less/breadcrumbs.less | 26 - .../bootstrap/less/button-groups.less | 244 - .../node_modules/bootstrap/less/buttons.less | 166 - .../node_modules/bootstrap/less/carousel.less | 270 - .../node_modules/bootstrap/less/close.less | 34 - .../node_modules/bootstrap/less/code.less | 69 - .../bootstrap/less/component-animations.less | 33 - .../bootstrap/less/dropdowns.less | 216 - .../node_modules/bootstrap/less/forms.less | 613 - .../bootstrap/less/glyphicons.less | 305 - .../node_modules/bootstrap/less/grid.less | 84 - .../bootstrap/less/input-groups.less | 171 - .../bootstrap/less/jumbotron.less | 54 - .../node_modules/bootstrap/less/labels.less | 64 - .../bootstrap/less/list-group.less | 130 - .../node_modules/bootstrap/less/media.less | 66 - .../node_modules/bootstrap/less/mixins.less | 40 - .../bootstrap/less/mixins/alerts.less | 14 - .../less/mixins/background-variant.less | 9 - .../bootstrap/less/mixins/border-radius.less | 18 - .../bootstrap/less/mixins/buttons.less | 65 - .../bootstrap/less/mixins/center-block.less | 7 - .../bootstrap/less/mixins/clearfix.less | 22 - .../bootstrap/less/mixins/forms.less | 85 - .../bootstrap/less/mixins/gradients.less | 59 - .../bootstrap/less/mixins/grid-framework.less | 91 - .../bootstrap/less/mixins/grid.less | 122 - .../bootstrap/less/mixins/hide-text.less | 21 - .../bootstrap/less/mixins/image.less | 33 - .../bootstrap/less/mixins/labels.less | 12 - .../bootstrap/less/mixins/list-group.less | 30 - .../bootstrap/less/mixins/nav-divider.less | 10 - .../less/mixins/nav-vertical-align.less | 9 - .../bootstrap/less/mixins/opacity.less | 8 - .../bootstrap/less/mixins/pagination.less | 24 - .../bootstrap/less/mixins/panels.less | 24 - .../bootstrap/less/mixins/progress-bar.less | 10 - .../bootstrap/less/mixins/reset-filter.less | 8 - .../bootstrap/less/mixins/reset-text.less | 18 - .../bootstrap/less/mixins/resize.less | 6 - .../less/mixins/responsive-visibility.less | 15 - .../bootstrap/less/mixins/size.less | 10 - .../bootstrap/less/mixins/tab-focus.less | 9 - .../bootstrap/less/mixins/table-row.less | 28 - .../bootstrap/less/mixins/text-emphasis.less | 9 - .../bootstrap/less/mixins/text-overflow.less | 8 - .../less/mixins/vendor-prefixes.less | 227 - .../node_modules/bootstrap/less/modals.less | 150 - .../node_modules/bootstrap/less/navbar.less | 660 - .../node_modules/bootstrap/less/navs.less | 242 - .../bootstrap/less/normalize.less | 424 - .../node_modules/bootstrap/less/pager.less | 54 - .../bootstrap/less/pagination.less | 89 - .../node_modules/bootstrap/less/panels.less | 271 - .../node_modules/bootstrap/less/popovers.less | 131 - .../node_modules/bootstrap/less/print.less | 101 - .../bootstrap/less/progress-bars.less | 87 - .../bootstrap/less/responsive-embed.less | 35 - .../bootstrap/less/responsive-utilities.less | 194 - .../bootstrap/less/scaffolding.less | 161 - .../node_modules/bootstrap/less/tables.less | 234 - .../node_modules/bootstrap/less/theme.less | 291 - .../bootstrap/less/thumbnails.less | 36 - .../node_modules/bootstrap/less/tooltip.less | 101 - .../node_modules/bootstrap/less/type.less | 302 - .../bootstrap/less/utilities.less | 55 - .../bootstrap/less/variables.less | 869 -- .../node_modules/bootstrap/less/wells.less | 29 - .../v1.8/node_modules/bootstrap/package.json | 152 - .../kubectl/v1.8/node_modules/colors/LICENSE | 23 - .../v1.8/node_modules/colors/ReadMe.md | 178 - .../colors/examples/normal-usage.js | 74 - .../colors/examples/safe-string.js | 76 - .../v1.8/node_modules/colors/lib/colors.js | 187 - .../node_modules/colors/lib/custom/trap.js | 45 - .../node_modules/colors/lib/custom/zalgo.js | 104 - .../colors/lib/extendStringPrototype.js | 113 - .../v1.8/node_modules/colors/lib/index.js | 12 - .../node_modules/colors/lib/maps/america.js | 12 - .../node_modules/colors/lib/maps/rainbow.js | 13 - .../node_modules/colors/lib/maps/random.js | 8 - .../node_modules/colors/lib/maps/zebra.js | 5 - .../v1.8/node_modules/colors/lib/styles.js | 77 - .../colors/lib/system/supports-colors.js | 61 - .../v1.8/node_modules/colors/package.json | 94 - .../kubectl/v1.8/node_modules/colors/safe.js | 9 - .../colors/themes/generic-logging.js | 12 - .../kubectl/v1.8/node_modules/ejs/Jakefile | 70 - .../kubectl/v1.8/node_modules/ejs/LICENSE | 202 - .../kubectl/v1.8/node_modules/ejs/README.md | 257 - .../kubectl/v1.8/node_modules/ejs/ejs.js | 1494 --- .../kubectl/v1.8/node_modules/ejs/ejs.min.js | 1 - .../kubectl/v1.8/node_modules/ejs/lib/ejs.js | 866 -- .../v1.8/node_modules/ejs/lib/utils.js | 164 - .../v1.8/node_modules/ejs/package.json | 113 - .../v1.8/node_modules/font-awesome/.npmignore | 42 - .../node_modules/font-awesome/HELP-US-OUT.txt | 7 - .../v1.8/node_modules/font-awesome/README.md | 106 - .../font-awesome/css/font-awesome.css | 2337 ---- .../font-awesome/css/font-awesome.css.map | 7 - .../font-awesome/css/font-awesome.min.css | 4 - .../font-awesome/fonts/FontAwesome.otf | Bin 134808 -> 0 bytes .../fonts/fontawesome-webfont.eot | Bin 165742 -> 0 bytes .../fonts/fontawesome-webfont.svg | 2671 ---- .../fonts/fontawesome-webfont.ttf | Bin 165548 -> 0 bytes .../fonts/fontawesome-webfont.woff | Bin 98024 -> 0 bytes .../fonts/fontawesome-webfont.woff2 | Bin 77160 -> 0 bytes .../font-awesome/less/animated.less | 34 - .../font-awesome/less/bordered-pulled.less | 25 - .../node_modules/font-awesome/less/core.less | 12 - .../font-awesome/less/fixed-width.less | 6 - .../font-awesome/less/font-awesome.less | 18 - .../node_modules/font-awesome/less/icons.less | 789 -- .../font-awesome/less/larger.less | 13 - .../node_modules/font-awesome/less/list.less | 19 - .../font-awesome/less/mixins.less | 60 - .../node_modules/font-awesome/less/path.less | 15 - .../font-awesome/less/rotated-flipped.less | 20 - .../font-awesome/less/screen-reader.less | 5 - .../font-awesome/less/stacked.less | 20 - .../font-awesome/less/variables.less | 800 -- .../node_modules/font-awesome/package.json | 112 - .../font-awesome/scss/_animated.scss | 34 - .../font-awesome/scss/_bordered-pulled.scss | 25 - .../node_modules/font-awesome/scss/_core.scss | 12 - .../font-awesome/scss/_fixed-width.scss | 6 - .../font-awesome/scss/_icons.scss | 789 -- .../font-awesome/scss/_larger.scss | 13 - .../node_modules/font-awesome/scss/_list.scss | 19 - .../font-awesome/scss/_mixins.scss | 60 - .../node_modules/font-awesome/scss/_path.scss | 15 - .../font-awesome/scss/_rotated-flipped.scss | 20 - .../font-awesome/scss/_screen-reader.scss | 5 - .../font-awesome/scss/_stacked.scss | 20 - .../font-awesome/scss/_variables.scss | 800 -- .../font-awesome/scss/font-awesome.scss | 18 - .../v1.8/node_modules/highlight.js/LICENSE | 24 - .../v1.8/node_modules/highlight.js/README.md | 150 - .../node_modules/highlight.js/docs/api.rst | 120 - .../highlight.js/docs/building-testing.rst | 88 - .../docs/css-classes-reference.rst | 432 - .../node_modules/highlight.js/docs/index.rst | 44 - .../docs/language-contribution.rst | 78 - .../highlight.js/docs/language-guide.rst | 264 - .../highlight.js/docs/language-requests.rst | 17 - .../highlight.js/docs/line-numbers.rst | 39 - .../highlight.js/docs/reference.rst | 324 - .../highlight.js/docs/release-process.rst | 20 - .../highlight.js/docs/style-guide.rst | 107 - .../highlight.js/lib/highlight.js | 816 -- .../node_modules/highlight.js/lib/index.js | 180 - .../highlight.js/lib/languages/1c.js | 509 - .../highlight.js/lib/languages/abnf.js | 70 - .../highlight.js/lib/languages/accesslog.js | 37 - .../lib/languages/actionscript.js | 73 - .../highlight.js/lib/languages/ada.js | 172 - .../highlight.js/lib/languages/apache.js | 45 - .../highlight.js/lib/languages/applescript.js | 85 - .../highlight.js/lib/languages/arduino.js | 99 - .../highlight.js/lib/languages/armasm.js | 91 - .../highlight.js/lib/languages/asciidoc.js | 187 - .../highlight.js/lib/languages/aspectj.js | 144 - .../highlight.js/lib/languages/autohotkey.js | 58 - .../highlight.js/lib/languages/autoit.js | 135 - .../highlight.js/lib/languages/avrasm.js | 61 - .../highlight.js/lib/languages/awk.js | 52 - .../highlight.js/lib/languages/axapta.js | 30 - .../highlight.js/lib/languages/bash.js | 74 - .../highlight.js/lib/languages/basic.js | 50 - .../highlight.js/lib/languages/bnf.js | 28 - .../highlight.js/lib/languages/brainfuck.js | 36 - .../highlight.js/lib/languages/cal.js | 79 - .../highlight.js/lib/languages/capnproto.js | 48 - .../highlight.js/lib/languages/ceylon.js | 66 - .../highlight.js/lib/languages/clean.js | 24 - .../lib/languages/clojure-repl.js | 14 - .../highlight.js/lib/languages/clojure.js | 95 - .../highlight.js/lib/languages/cmake.js | 37 - .../lib/languages/coffeescript.js | 145 - .../highlight.js/lib/languages/coq.js | 66 - .../highlight.js/lib/languages/cos.js | 123 - .../highlight.js/lib/languages/cpp.js | 174 - .../highlight.js/lib/languages/crmsh.js | 93 - .../highlight.js/lib/languages/crystal.js | 193 - .../highlight.js/lib/languages/cs.js | 176 - .../highlight.js/lib/languages/csp.js | 21 - .../highlight.js/lib/languages/css.js | 104 - .../highlight.js/lib/languages/d.js | 257 - .../highlight.js/lib/languages/dart.js | 100 - .../highlight.js/lib/languages/delphi.js | 68 - .../highlight.js/lib/languages/diff.js | 39 - .../highlight.js/lib/languages/django.js | 63 - .../highlight.js/lib/languages/dns.js | 28 - .../highlight.js/lib/languages/dockerfile.js | 21 - .../highlight.js/lib/languages/dos.js | 51 - .../highlight.js/lib/languages/dsconfig.js | 46 - .../highlight.js/lib/languages/dts.js | 123 - .../highlight.js/lib/languages/dust.js | 31 - .../highlight.js/lib/languages/ebnf.js | 32 - .../highlight.js/lib/languages/elixir.js | 96 - .../highlight.js/lib/languages/elm.js | 83 - .../highlight.js/lib/languages/erb.js | 14 - .../highlight.js/lib/languages/erlang-repl.js | 45 - .../highlight.js/lib/languages/erlang.js | 145 - .../highlight.js/lib/languages/excel.js | 47 - .../highlight.js/lib/languages/fix.js | 28 - .../highlight.js/lib/languages/flix.js | 44 - .../highlight.js/lib/languages/fortran.js | 70 - .../highlight.js/lib/languages/fsharp.js | 58 - .../highlight.js/lib/languages/gams.js | 153 - .../highlight.js/lib/languages/gauss.js | 223 - .../highlight.js/lib/languages/gcode.js | 66 - .../highlight.js/lib/languages/gherkin.js | 36 - .../highlight.js/lib/languages/glsl.js | 116 - .../highlight.js/lib/languages/go.js | 53 - .../highlight.js/lib/languages/golo.js | 22 - .../highlight.js/lib/languages/gradle.js | 34 - .../highlight.js/lib/languages/groovy.js | 93 - .../highlight.js/lib/languages/haml.js | 106 - .../highlight.js/lib/languages/handlebars.js | 33 - .../highlight.js/lib/languages/haskell.js | 121 - .../highlight.js/lib/languages/haxe.js | 111 - .../highlight.js/lib/languages/hsp.js | 45 - .../highlight.js/lib/languages/htmlbars.js | 70 - .../highlight.js/lib/languages/http.js | 40 - .../highlight.js/lib/languages/hy.js | 101 - .../highlight.js/lib/languages/inform7.js | 56 - .../highlight.js/lib/languages/ini.js | 65 - .../highlight.js/lib/languages/irpf90.js | 75 - .../highlight.js/lib/languages/java.js | 107 - .../highlight.js/lib/languages/javascript.js | 170 - .../highlight.js/lib/languages/jboss-cli.js | 46 - .../highlight.js/lib/languages/json.js | 36 - .../highlight.js/lib/languages/julia-repl.js | 23 - .../highlight.js/lib/languages/julia.js | 161 - .../highlight.js/lib/languages/kotlin.js | 173 - .../highlight.js/lib/languages/lasso.js | 162 - .../highlight.js/lib/languages/ldif.js | 22 - .../highlight.js/lib/languages/leaf.js | 39 - .../highlight.js/lib/languages/less.js | 139 - .../highlight.js/lib/languages/lisp.js | 102 - .../lib/languages/livecodeserver.js | 156 - .../highlight.js/lib/languages/livescript.js | 148 - .../highlight.js/lib/languages/llvm.js | 88 - .../highlight.js/lib/languages/lsl.js | 82 - .../highlight.js/lib/languages/lua.js | 65 - .../highlight.js/lib/languages/makefile.js | 80 - .../highlight.js/lib/languages/markdown.js | 107 - .../highlight.js/lib/languages/mathematica.js | 57 - .../highlight.js/lib/languages/matlab.js | 87 - .../highlight.js/lib/languages/maxima.js | 405 - .../highlight.js/lib/languages/mel.js | 224 - .../highlight.js/lib/languages/mercury.js | 81 - .../highlight.js/lib/languages/mipsasm.js | 85 - .../highlight.js/lib/languages/mizar.js | 18 - .../highlight.js/lib/languages/mojolicious.js | 24 - .../highlight.js/lib/languages/monkey.js | 74 - .../highlight.js/lib/languages/moonscript.js | 111 - .../highlight.js/lib/languages/n1ql.js | 68 - .../highlight.js/lib/languages/nginx.js | 92 - .../highlight.js/lib/languages/nimrod.js | 54 - .../highlight.js/lib/languages/nix.js | 48 - .../highlight.js/lib/languages/nsis.js | 105 - .../highlight.js/lib/languages/objectivec.js | 90 - .../highlight.js/lib/languages/ocaml.js | 70 - .../highlight.js/lib/languages/openscad.js | 56 - .../highlight.js/lib/languages/oxygene.js | 69 - .../highlight.js/lib/languages/parser3.js | 47 - .../highlight.js/lib/languages/perl.js | 156 - .../highlight.js/lib/languages/pf.js | 51 - .../highlight.js/lib/languages/php.js | 126 - .../highlight.js/lib/languages/pony.js | 90 - .../highlight.js/lib/languages/powershell.js | 80 - .../highlight.js/lib/languages/processing.js | 47 - .../highlight.js/lib/languages/profile.js | 29 - .../highlight.js/lib/languages/prolog.js | 87 - .../highlight.js/lib/languages/protobuf.js | 35 - .../highlight.js/lib/languages/puppet.js | 114 - .../highlight.js/lib/languages/purebasic.js | 57 - .../highlight.js/lib/languages/python.js | 115 - .../highlight.js/lib/languages/q.js | 22 - .../highlight.js/lib/languages/qml.js | 168 - .../highlight.js/lib/languages/r.js | 69 - .../highlight.js/lib/languages/rib.js | 26 - .../highlight.js/lib/languages/roboconf.js | 66 - .../highlight.js/lib/languages/routeros.js | 158 - .../highlight.js/lib/languages/rsl.js | 35 - .../highlight.js/lib/languages/ruby.js | 176 - .../lib/languages/ruleslanguage.js | 60 - .../highlight.js/lib/languages/rust.js | 107 - .../highlight.js/lib/languages/scala.js | 114 - .../highlight.js/lib/languages/scheme.js | 143 - .../highlight.js/lib/languages/scilab.js | 53 - .../highlight.js/lib/languages/scss.js | 97 - .../highlight.js/lib/languages/shell.js | 14 - .../highlight.js/lib/languages/smali.js | 55 - .../highlight.js/lib/languages/smalltalk.js | 49 - .../highlight.js/lib/languages/sml.js | 65 - .../highlight.js/lib/languages/sqf.js | 370 - .../highlight.js/lib/languages/sql.js | 159 - .../highlight.js/lib/languages/stan.js | 82 - .../highlight.js/lib/languages/stata.js | 37 - .../highlight.js/lib/languages/step21.js | 46 - .../highlight.js/lib/languages/stylus.js | 453 - .../highlight.js/lib/languages/subunit.js | 33 - .../highlight.js/lib/languages/swift.js | 116 - .../lib/languages/taggerscript.js | 43 - .../highlight.js/lib/languages/tap.js | 35 - .../highlight.js/lib/languages/tcl.js | 60 - .../highlight.js/lib/languages/tex.js | 61 - .../highlight.js/lib/languages/thrift.js | 34 - .../highlight.js/lib/languages/tp.js | 83 - .../highlight.js/lib/languages/twig.js | 65 - .../highlight.js/lib/languages/typescript.js | 155 - .../highlight.js/lib/languages/vala.js | 49 - .../highlight.js/lib/languages/vbnet.js | 55 - .../lib/languages/vbscript-html.js | 11 - .../highlight.js/lib/languages/vbscript.js | 38 - .../highlight.js/lib/languages/verilog.js | 98 - .../highlight.js/lib/languages/vhdl.js | 60 - .../highlight.js/lib/languages/vim.js | 105 - .../highlight.js/lib/languages/x86asm.js | 135 - .../highlight.js/lib/languages/xl.js | 72 - .../highlight.js/lib/languages/xml.js | 102 - .../highlight.js/lib/languages/xquery.js | 70 - .../highlight.js/lib/languages/yaml.js | 87 - .../highlight.js/lib/languages/zephir.js | 106 - .../node_modules/highlight.js/package.json | 1091 -- .../highlight.js/styles/agate.css | 108 - .../highlight.js/styles/androidstudio.css | 66 - .../highlight.js/styles/arduino-light.css | 88 - .../node_modules/highlight.js/styles/arta.css | 73 - .../highlight.js/styles/ascetic.css | 45 - .../highlight.js/styles/atelier-cave-dark.css | 83 - .../styles/atelier-cave-light.css | 85 - .../highlight.js/styles/atelier-dune-dark.css | 69 - .../styles/atelier-dune-light.css | 69 - .../styles/atelier-estuary-dark.css | 84 - .../styles/atelier-estuary-light.css | 84 - .../styles/atelier-forest-dark.css | 69 - .../styles/atelier-forest-light.css | 69 - .../styles/atelier-heath-dark.css | 69 - .../styles/atelier-heath-light.css | 69 - .../styles/atelier-lakeside-dark.css | 69 - .../styles/atelier-lakeside-light.css | 69 - .../styles/atelier-plateau-dark.css | 84 - .../styles/atelier-plateau-light.css | 84 - .../styles/atelier-savanna-dark.css | 84 - .../styles/atelier-savanna-light.css | 84 - .../styles/atelier-seaside-dark.css | 69 - .../styles/atelier-seaside-light.css | 69 - .../styles/atelier-sulphurpool-dark.css | 69 - .../styles/atelier-sulphurpool-light.css | 69 - .../highlight.js/styles/atom-one-dark.css | 96 - .../highlight.js/styles/atom-one-light.css | 96 - .../highlight.js/styles/brown-paper.css | 64 - .../highlight.js/styles/brown-papersq.png | Bin 18198 -> 0 bytes .../highlight.js/styles/codepen-embed.css | 60 - .../highlight.js/styles/color-brewer.css | 71 - .../highlight.js/styles/darcula.css | 77 - .../node_modules/highlight.js/styles/dark.css | 63 - .../highlight.js/styles/darkula.css | 6 - .../highlight.js/styles/default.css | 99 - .../highlight.js/styles/docco.css | 97 - .../highlight.js/styles/dracula.css | 76 - .../node_modules/highlight.js/styles/far.css | 71 - .../highlight.js/styles/foundation.css | 88 - .../highlight.js/styles/github-gist.css | 71 - .../highlight.js/styles/github.css | 99 - .../highlight.js/styles/googlecode.css | 89 - .../highlight.js/styles/grayscale.css | 101 - .../highlight.js/styles/gruvbox-dark.css | 108 - .../highlight.js/styles/gruvbox-light.css | 108 - .../highlight.js/styles/hopscotch.css | 83 - .../highlight.js/styles/hybrid.css | 102 - .../node_modules/highlight.js/styles/idea.css | 97 - .../highlight.js/styles/ir-black.css | 73 - .../highlight.js/styles/kimbie.dark.css | 74 - .../highlight.js/styles/kimbie.light.css | 74 - .../highlight.js/styles/magula.css | 70 - .../highlight.js/styles/mono-blue.css | 59 - .../highlight.js/styles/monokai-sublime.css | 83 - .../highlight.js/styles/monokai.css | 70 - .../highlight.js/styles/obsidian.css | 88 - .../highlight.js/styles/ocean.css | 74 - .../highlight.js/styles/paraiso-dark.css | 72 - .../highlight.js/styles/paraiso-light.css | 72 - .../highlight.js/styles/pojoaque.css | 83 - .../highlight.js/styles/pojoaque.jpg | Bin 1186 -> 0 bytes .../highlight.js/styles/purebasic.css | 96 - .../highlight.js/styles/qtcreator_dark.css | 83 - .../highlight.js/styles/qtcreator_light.css | 83 - .../highlight.js/styles/railscasts.css | 106 - .../highlight.js/styles/rainbow.css | 85 - .../highlight.js/styles/routeros.css | 108 - .../highlight.js/styles/school-book.css | 72 - .../highlight.js/styles/school-book.png | Bin 486 -> 0 bytes .../highlight.js/styles/solarized-dark.css | 84 - .../highlight.js/styles/solarized-light.css | 84 - .../highlight.js/styles/sunburst.css | 102 - .../styles/tomorrow-night-blue.css | 75 - .../styles/tomorrow-night-bright.css | 74 - .../styles/tomorrow-night-eighties.css | 74 - .../highlight.js/styles/tomorrow-night.css | 75 - .../highlight.js/styles/tomorrow.css | 72 - .../node_modules/highlight.js/styles/vs.css | 68 - .../highlight.js/styles/vs2015.css | 115 - .../highlight.js/styles/xcode.css | 93 - .../highlight.js/styles/xt256.css | 92 - .../highlight.js/styles/zenburn.css | 80 - .../v1.8/node_modules/jquery.scrollto/.jscsrc | 41 - .../node_modules/jquery.scrollto/.jshintrc | 23 - .../node_modules/jquery.scrollto/.npmignore | 16 - .../node_modules/jquery.scrollto/CHANGELOG.md | 186 - .../v1.8/node_modules/jquery.scrollto/LICENSE | 22 - .../node_modules/jquery.scrollto/README.md | 151 - .../node_modules/jquery.scrollto/bower.json | 28 - .../jquery.scrollto/composer.json | 32 - .../jquery.scrollto/demo/css/style.css | 150 - .../jquery.scrollto/demo/css/style.old.css | 69 - .../jquery.scrollto/demo/index.html | 252 - .../jquery.scrollto/demo/index.old.html | 128 - .../jquery.scrollto/jquery.scrollTo.js | 210 - .../jquery.scrollto/jquery.scrollTo.min.js | 7 - .../node_modules/jquery.scrollto/package.json | 104 - .../tests/ElemMaxY-compat.html | 21 - .../tests/ElemMaxY-quirks.html | 20 - .../jquery.scrollto/tests/WinMaxY-compat.html | 19 - .../jquery.scrollto/tests/WinMaxY-quirks.html | 18 - .../tests/WinMaxY-to-iframe-compat.html | 20 - .../tests/WinMaxY-to-iframe-quirks.html | 19 - .../tests/WinMaxY-with-iframe-compat.html | 11 - .../tests/WinMaxY-with-iframe-quirks.html | 10 - .../jquery.scrollto/tests/index.html | 24 - .../jquery.scrollto/tests/test.js | 21 - .../v1.8/node_modules/jquery/AUTHORS.txt | 301 - .../v1.8/node_modules/jquery/LICENSE.txt | 36 - .../v1.8/node_modules/jquery/README.md | 67 - .../v1.8/node_modules/jquery/bower.json | 14 - .../v1.8/node_modules/jquery/dist/core.js | 476 - .../v1.8/node_modules/jquery/dist/jquery.js | 10253 ---------------- .../node_modules/jquery/dist/jquery.min.js | 4 - .../node_modules/jquery/dist/jquery.min.map | 1 - .../node_modules/jquery/dist/jquery.slim.js | 8160 ------------ .../jquery/dist/jquery.slim.min.js | 4 - .../jquery/dist/jquery.slim.min.map | 1 - .../jquery/external/sizzle/LICENSE.txt | 36 - .../jquery/external/sizzle/dist/sizzle.js | 2272 ---- .../jquery/external/sizzle/dist/sizzle.min.js | 3 - .../external/sizzle/dist/sizzle.min.map | 1 - .../v1.8/node_modules/jquery/package.json | 170 - .../node_modules/jquery/src/.eslintrc.json | 5 - .../v1.8/node_modules/jquery/src/ajax.js | 855 -- .../node_modules/jquery/src/ajax/jsonp.js | 102 - .../v1.8/node_modules/jquery/src/ajax/load.js | 76 - .../node_modules/jquery/src/ajax/parseXML.js | 30 - .../node_modules/jquery/src/ajax/script.js | 77 - .../jquery/src/ajax/var/location.js | 5 - .../node_modules/jquery/src/ajax/var/nonce.js | 7 - .../jquery/src/ajax/var/rquery.js | 5 - .../v1.8/node_modules/jquery/src/ajax/xhr.js | 169 - .../node_modules/jquery/src/attributes.js | 13 - .../jquery/src/attributes/attr.js | 141 - .../jquery/src/attributes/classes.js | 174 - .../jquery/src/attributes/prop.js | 143 - .../jquery/src/attributes/support.js | 33 - .../node_modules/jquery/src/attributes/val.js | 190 - .../v1.8/node_modules/jquery/src/callbacks.js | 234 - .../v1.8/node_modules/jquery/src/core.js | 476 - .../node_modules/jquery/src/core/DOMEval.js | 16 - .../node_modules/jquery/src/core/access.js | 70 - .../v1.8/node_modules/jquery/src/core/init.js | 128 - .../node_modules/jquery/src/core/nodeName.js | 13 - .../node_modules/jquery/src/core/parseHTML.js | 65 - .../jquery/src/core/ready-no-deferred.js | 96 - .../node_modules/jquery/src/core/ready.js | 86 - .../jquery/src/core/readyException.js | 13 - .../jquery/src/core/stripAndCollapse.js | 14 - .../node_modules/jquery/src/core/support.js | 20 - .../jquery/src/core/var/rsingleTag.js | 6 - .../v1.8/node_modules/jquery/src/css.js | 438 - .../jquery/src/css/addGetHookIf.js | 26 - .../node_modules/jquery/src/css/adjustCSS.js | 71 - .../node_modules/jquery/src/css/curCSS.js | 65 - .../jquery/src/css/hiddenVisibleSelectors.js | 15 - .../node_modules/jquery/src/css/showHide.js | 105 - .../node_modules/jquery/src/css/support.js | 89 - .../jquery/src/css/var/cssExpand.js | 5 - .../jquery/src/css/var/getStyles.js | 17 - .../jquery/src/css/var/isHiddenWithinTree.js | 34 - .../jquery/src/css/var/rmargin.js | 5 - .../jquery/src/css/var/rnumnonpx.js | 7 - .../node_modules/jquery/src/css/var/swap.js | 26 - .../v1.8/node_modules/jquery/src/data.js | 179 - .../v1.8/node_modules/jquery/src/data/Data.js | 161 - .../jquery/src/data/var/acceptData.js | 19 - .../jquery/src/data/var/dataPriv.js | 7 - .../jquery/src/data/var/dataUser.js | 7 - .../v1.8/node_modules/jquery/src/deferred.js | 391 - .../jquery/src/deferred/exceptionHook.js | 21 - .../node_modules/jquery/src/deprecated.js | 40 - .../node_modules/jquery/src/dimensions.js | 56 - .../v1.8/node_modules/jquery/src/effects.js | 699 -- .../node_modules/jquery/src/effects/Tween.js | 123 - .../jquery/src/effects/animatedSelector.js | 15 - .../v1.8/node_modules/jquery/src/event.js | 746 -- .../node_modules/jquery/src/event/ajax.js | 22 - .../node_modules/jquery/src/event/alias.js | 29 - .../node_modules/jquery/src/event/focusin.js | 55 - .../node_modules/jquery/src/event/support.js | 11 - .../node_modules/jquery/src/event/trigger.js | 185 - .../node_modules/jquery/src/exports/amd.js | 26 - .../node_modules/jquery/src/exports/global.js | 34 - .../v1.8/node_modules/jquery/src/jquery.js | 41 - .../node_modules/jquery/src/manipulation.js | 488 - .../jquery/src/manipulation/_evalUrl.js | 23 - .../jquery/src/manipulation/buildFragment.js | 104 - .../jquery/src/manipulation/getAll.js | 32 - .../jquery/src/manipulation/setGlobalEval.js | 22 - .../jquery/src/manipulation/support.js | 35 - .../src/manipulation/var/rcheckableType.js | 5 - .../src/manipulation/var/rscriptType.js | 5 - .../jquery/src/manipulation/var/rtagName.js | 5 - .../jquery/src/manipulation/wrapMap.js | 29 - .../v1.8/node_modules/jquery/src/offset.js | 229 - .../v1.8/node_modules/jquery/src/queue.js | 145 - .../node_modules/jquery/src/queue/delay.js | 24 - .../jquery/src/selector-native.js | 237 - .../jquery/src/selector-sizzle.js | 19 - .../v1.8/node_modules/jquery/src/selector.js | 3 - .../v1.8/node_modules/jquery/src/serialize.js | 130 - .../node_modules/jquery/src/traversing.js | 191 - .../jquery/src/traversing/findFilter.js | 106 - .../jquery/src/traversing/var/dir.js | 22 - .../src/traversing/var/rneedsContext.js | 8 - .../jquery/src/traversing/var/siblings.js | 17 - .../jquery/src/var/ObjectFunctionString.js | 7 - .../v1.8/node_modules/jquery/src/var/arr.js | 5 - .../node_modules/jquery/src/var/class2type.js | 6 - .../node_modules/jquery/src/var/concat.js | 7 - .../node_modules/jquery/src/var/document.js | 5 - .../jquery/src/var/documentElement.js | 7 - .../node_modules/jquery/src/var/fnToString.js | 7 - .../node_modules/jquery/src/var/getProto.js | 5 - .../node_modules/jquery/src/var/hasOwn.js | 7 - .../node_modules/jquery/src/var/indexOf.js | 7 - .../v1.8/node_modules/jquery/src/var/pnum.js | 5 - .../v1.8/node_modules/jquery/src/var/push.js | 7 - .../node_modules/jquery/src/var/rcssNum.js | 9 - .../jquery/src/var/rnothtmlwhite.js | 8 - .../v1.8/node_modules/jquery/src/var/slice.js | 7 - .../node_modules/jquery/src/var/support.js | 6 - .../node_modules/jquery/src/var/toString.js | 7 - .../v1.8/node_modules/jquery/src/wrap.js | 77 - .../v1.8/node_modules/marked/.npmignore | 2 - .../v1.8/node_modules/marked/Gulpfile.js | 22 - .../kubectl/v1.8/node_modules/marked/LICENSE | 19 - .../kubectl/v1.8/node_modules/marked/Makefile | 12 - .../v1.8/node_modules/marked/README.md | 406 - .../v1.8/node_modules/marked/bin/marked | 187 - .../v1.8/node_modules/marked/bower.json | 24 - .../v1.8/node_modules/marked/component.json | 10 - .../v1.8/node_modules/marked/doc/broken.md | 426 - .../v1.8/node_modules/marked/doc/todo.md | 2 - .../kubectl/v1.8/node_modules/marked/index.js | 1 - .../v1.8/node_modules/marked/lib/marked.js | 1286 -- .../v1.8/node_modules/marked/man/marked.1 | 91 - .../v1.8/node_modules/marked/marked.min.js | 6 - .../v1.8/node_modules/marked/package.json | 107 - .../kubectl/v1.8/node_modules/mime/.npmignore | 0 .../kubectl/v1.8/node_modules/mime/LICENSE | 21 - .../kubectl/v1.8/node_modules/mime/README.md | 90 - .../v1.8/node_modules/mime/build/build.js | 11 - .../v1.8/node_modules/mime/build/test.js | 60 - .../kubectl/v1.8/node_modules/mime/cli.js | 8 - .../kubectl/v1.8/node_modules/mime/mime.js | 108 - .../v1.8/node_modules/mime/package.json | 106 - .../kubectl/v1.8/node_modules/mime/types.json | 1 - .../v1.8/node_modules/minimist/LICENSE | 18 - .../node_modules/minimist/example/parse.js | 2 - .../v1.8/node_modules/minimist/index.js | 187 - .../v1.8/node_modules/minimist/package.json | 101 - .../node_modules/minimist/readme.markdown | 73 - .../v1.8/node_modules/minimist/test/bool.js | 119 - .../v1.8/node_modules/minimist/test/dash.js | 24 - .../minimist/test/default_bool.js | 20 - .../v1.8/node_modules/minimist/test/dotted.js | 22 - .../v1.8/node_modules/minimist/test/long.js | 31 - .../v1.8/node_modules/minimist/test/num.js | 36 - .../v1.8/node_modules/minimist/test/parse.js | 197 - .../minimist/test/parse_modified.js | 9 - .../v1.8/node_modules/minimist/test/short.js | 67 - .../node_modules/minimist/test/whitespace.js | 8 - .../v1.8/node_modules/node-static/.npmignore | 3 - .../v1.8/node_modules/node-static/LICENSE | 20 - .../v1.8/node_modules/node-static/README.md | 234 - .../benchmark/node-static-0.3.0.txt | 43 - .../v1.8/node_modules/node-static/bin/cli.js | 132 - .../node-static/examples/file-server.js | 20 - .../node-static/lib/node-static.js | 397 - .../node-static/lib/node-static/util.js | 30 - .../node_modules/node-static/package.json | 125 - .../node-static/test/fixtures/empty.css | 0 .../node-static/test/fixtures/hello.txt | 1 - .../node-static/test/fixtures/index.html | 8 - .../test/fixtures/there/index.html | 8 - .../test/integration/node-static-test.js | 390 - .../v1.8/node_modules/optimist/LICENSE | 21 - .../node_modules/optimist/example/bool.js | 10 - .../optimist/example/boolean_double.js | 7 - .../optimist/example/boolean_single.js | 7 - .../optimist/example/default_hash.js | 8 - .../optimist/example/default_singles.js | 7 - .../node_modules/optimist/example/divide.js | 8 - .../optimist/example/line_count.js | 20 - .../optimist/example/line_count_options.js | 29 - .../optimist/example/line_count_wrap.js | 29 - .../node_modules/optimist/example/nonopt.js | 4 - .../node_modules/optimist/example/reflect.js | 2 - .../node_modules/optimist/example/short.js | 3 - .../node_modules/optimist/example/string.js | 11 - .../optimist/example/usage-options.js | 19 - .../v1.8/node_modules/optimist/example/xup.js | 10 - .../v1.8/node_modules/optimist/index.js | 343 - .../v1.8/node_modules/optimist/package.json | 97 - .../node_modules/optimist/readme.markdown | 513 - .../v1.8/node_modules/optimist/test/_.js | 71 - .../v1.8/node_modules/optimist/test/_/argv.js | 2 - .../v1.8/node_modules/optimist/test/_/bin.js | 3 - .../v1.8/node_modules/optimist/test/dash.js | 31 - .../v1.8/node_modules/optimist/test/parse.js | 446 - .../optimist/test/parse_modified.js | 14 - .../v1.8/node_modules/optimist/test/short.js | 16 - .../v1.8/node_modules/optimist/test/usage.js | 292 - .../node_modules/optimist/test/whitespace.js | 8 - .../v1.8/node_modules/wordwrap/LICENSE | 18 - .../node_modules/wordwrap/README.markdown | 70 - .../node_modules/wordwrap/example/center.js | 10 - .../node_modules/wordwrap/example/meat.js | 3 - .../v1.8/node_modules/wordwrap/index.js | 76 - .../v1.8/node_modules/wordwrap/package.json | 97 - .../v1.8/node_modules/wordwrap/test/break.js | 30 - .../node_modules/wordwrap/test/idleness.txt | 63 - .../v1.8/node_modules/wordwrap/test/wrap.js | 31 - docs/user-guide/kubectl/v1.8/package.json | 31 - docs/user-guide/kubectl/v1.8/scroll.js | 196 - docs/user-guide/kubectl/v1.8/server.js | 7 - docs/user-guide/kubectl/v1.8/stylesheet.css | 269 - docs/user-guide/kubectl/v1.8/tabvisibility.js | 27 - 2965 files changed, 15 insertions(+), 443272 deletions(-) rename docs/{user-guide/kubectl/v1.8/index.html => reference/generated/kubectl/kubectl-commands.html} (100%) rename docs/{user-guide/kubectl/index.md => reference/generated/kubectl/kubectl-options.md} (100%) rename docs/{user-guide/kubectl/v1.8 => reference/generated/kubectl}/navData.js (100%) rename docs/{user-guide/kubectl/v1.5 => reference/generated/kubectl}/node_modules/bootstrap/dist/css/bootstrap.min.css (100%) rename docs/{user-guide/kubectl/v1.5 => reference/generated/kubectl}/node_modules/font-awesome/css/font-awesome.min.css (100%) rename docs/{user-guide/kubectl/v1.5 => reference/generated/kubectl}/node_modules/highlight.js/styles/default.css (100%) rename docs/{user-guide/kubectl/v1.5 => reference/generated/kubectl}/node_modules/jquery.scrollto/jquery.scrollTo.min.js (100%) rename docs/{user-guide/kubectl/v1.7 => reference/generated/kubectl}/node_modules/jquery/dist/jquery.min.js (100%) rename docs/{user-guide/kubectl/v1.7 => reference/generated/kubectl}/scroll.js (100%) rename docs/{user-guide/kubectl/v1.5 => reference/generated/kubectl}/stylesheet.css (100%) rename docs/{user-guide/kubectl/v1.5 => reference/generated/kubectl}/tabvisibility.js (100%) rename docs/{user-guide/kubectl-cheatsheet.md => reference/kubectl/cheatsheet.md} (100%) rename docs/{user-guide/kubectl-conventions.md => reference/kubectl/conventions.md} (100%) rename docs/{user-guide => reference/kubectl}/docker-cli-to-kubectl.md (100%) rename docs/{user-guide => reference/kubectl}/jsonpath.md (100%) rename docs/{user-guide/kubectl-overview.md => reference/kubectl/overview.md} (100%) delete mode 100644 docs/user-guide/kubectl/.files_generated delete mode 100644 docs/user-guide/kubectl/v1.5/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/actions.js delete mode 100644 docs/user-guide/kubectl/v1.5/brodoc.js delete mode 100644 docs/user-guide/kubectl/v1.5/index.html delete mode 100644 docs/user-guide/kubectl/v1.5/jsconfig.json delete mode 100644 docs/user-guide/kubectl/v1.5/markedDecorations.js delete mode 100644 docs/user-guide/kubectl/v1.5/navData.js delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/.bin/marked delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/.bin/mime delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/.bin/static delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/Gruntfile.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/js/bootstrap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/js/bootstrap.min.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/js/npm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/bs-commonjs-generator.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/bs-lessdoc-parser.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/bs-raw-files-generator.js delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/change-version.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/configBridge.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/npm-shrinkwrap.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/grunt/sauce_browsers.yml delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/affix.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/alert.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/button.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/carousel.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/collapse.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/dropdown.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/modal.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/popover.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/scrollspy.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/tab.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/tooltip.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/js/transition.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/badges.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/bootstrap.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/breadcrumbs.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/button-groups.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/carousel.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/close.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/code.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/component-animations.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/dropdowns.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/forms.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/glyphicons.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/grid.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/input-groups.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/jumbotron.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/labels.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/media.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/background-variant.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/border-radius.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/center-block.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/clearfix.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/forms.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/gradients.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/grid-framework.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/grid.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/hide-text.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/image.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/labels.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/nav-divider.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/nav-vertical-align.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/opacity.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/panels.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/progress-bar.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/reset-filter.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/reset-text.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/resize.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/responsive-visibility.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/size.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/tab-focus.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/table-row.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/text-emphasis.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/text-overflow.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/mixins/vendor-prefixes.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/modals.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/navbar.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/navs.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/normalize.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/pager.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/panels.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/popovers.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/print.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/progress-bars.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/responsive-embed.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/responsive-utilities.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/scaffolding.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/tables.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/theme.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/thumbnails.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/tooltip.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/type.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/utilities.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/less/wells.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/bootstrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/ReadMe.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/examples/normal-usage.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/examples/safe-string.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/colors.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/custom/trap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/custom/zalgo.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/extendStringPrototype.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/maps/america.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/maps/rainbow.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/maps/random.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/maps/zebra.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/styles.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/lib/system/supports-colors.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/safe.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/colors/themes/generic-logging.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/Jakefile delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/ejs.min.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/lib/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/lib/utils.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/backslash.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/backslash.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/comments.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/comments.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/consecutive-tags.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/consecutive-tags.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/double-quote.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/double-quote.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/error.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/error.out delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/fail.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/hello-world.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include-abspath.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include-root.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include-simple.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include-simple.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include.css.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include.css.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_cache.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_cache.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor.css.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor.css.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor_cache.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor_cache.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp_child.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/includes/bom.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/includes/menu-item.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/includes/menu/item.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/literal.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/literal.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/menu.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/menu.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/menu_preprocessor.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/menu_preprocessor.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/menu_var.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/messed.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/messed.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/newlines.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/newlines.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/newlines.mixed.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/newlines.mixed.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/no.newlines.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/no.newlines.error.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/no.newlines.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/no.semicolons.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/no.semicolons.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/para.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/pet.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/rmWhitespace.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/rmWhitespace.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/single-quote.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/single-quote.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/space-and-tab-slurp.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/space-and-tab-slurp.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/strict.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/style.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/user-no-with.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/user.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/fixtures/with-context.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/mocha.opts delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/tmp/include.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/tmp/include_preprocessor.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/ejs/test/tmp/renderFile.ejs delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/HELP-US-OUT.txt delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/css/font-awesome.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/css/font-awesome.css.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/fonts/FontAwesome.otf delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/fonts/fontawesome-webfont.eot delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/fonts/fontawesome-webfont.svg delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/fonts/fontawesome-webfont.ttf delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/fonts/fontawesome-webfont.woff delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/animated.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/bordered-pulled.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/core.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/fixed-width.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/font-awesome.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/icons.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/larger.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/list.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/path.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/rotated-flipped.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/screen-reader.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/stacked.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_animated.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_bordered-pulled.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_core.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_fixed-width.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_icons.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_larger.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_list.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_mixins.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_path.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_rotated-flipped.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_screen-reader.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_stacked.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/_variables.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/font-awesome/scss/font-awesome.scss delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/api.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/building-testing.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/css-classes-reference.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/index.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/language-contribution.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/language-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/language-requests.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/line-numbers.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/reference.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/release-process.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/docs/style-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/highlight.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/1c.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/abnf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/accesslog.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/actionscript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ada.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/apache.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/applescript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/arduino.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/armasm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/asciidoc.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/aspectj.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/autohotkey.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/autoit.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/avrasm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/awk.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/axapta.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/bash.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/basic.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/bnf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/brainfuck.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/cal.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/capnproto.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ceylon.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/clean.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/clojure-repl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/clojure.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/cmake.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/coffeescript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/coq.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/cos.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/cpp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/crmsh.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/crystal.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/cs.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/csp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/css.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/d.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dart.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/delphi.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/diff.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/django.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dns.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dockerfile.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dos.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dsconfig.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dts.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/dust.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ebnf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/elixir.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/elm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/erb.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/erlang-repl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/erlang.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/excel.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/fix.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/flix.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/fortran.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/fsharp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/gams.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/gauss.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/gcode.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/gherkin.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/glsl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/go.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/golo.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/gradle.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/groovy.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/haml.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/handlebars.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/haskell.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/haxe.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/hsp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/htmlbars.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/http.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/inform7.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ini.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/irpf90.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/java.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/javascript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/json.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/julia.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/kotlin.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/lasso.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ldif.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/less.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/lisp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/livecodeserver.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/livescript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/llvm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/lsl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/lua.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/makefile.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/markdown.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/mathematica.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/matlab.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/maxima.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/mel.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/mercury.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/mipsasm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/mizar.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/mojolicious.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/monkey.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/moonscript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/nginx.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/nimrod.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/nix.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/nsis.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/objectivec.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ocaml.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/openscad.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/oxygene.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/parser3.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/perl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/pf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/php.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/pony.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/powershell.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/processing.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/profile.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/prolog.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/protobuf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/puppet.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/purebasic.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/python.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/q.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/qml.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/r.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/rib.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/roboconf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/rsl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ruby.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/ruleslanguage.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/rust.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/scala.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/scheme.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/scilab.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/scss.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/smali.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/smalltalk.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/sml.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/sqf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/sql.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/stan.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/stata.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/step21.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/stylus.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/subunit.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/swift.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/taggerscript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/tap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/tcl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/tex.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/thrift.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/tp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/twig.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/typescript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/vala.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/vbnet.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/vbscript-html.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/vbscript.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/verilog.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/vhdl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/vim.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/x86asm.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/xl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/xml.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/xquery.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/yaml.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/lib/languages/zephir.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/agate.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/androidstudio.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/arduino-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/arta.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/ascetic.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-cave-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-cave-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-dune-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-dune-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-estuary-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-estuary-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-forest-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-forest-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-heath-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-heath-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-lakeside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-lakeside-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-plateau-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-plateau-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-savanna-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-savanna-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-seaside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-seaside-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atelier-sulphurpool-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atom-one-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/atom-one-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/brown-paper.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/brown-papersq.png delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/codepen-embed.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/color-brewer.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/darcula.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/darkula.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/docco.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/dracula.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/far.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/foundation.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/github-gist.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/github.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/googlecode.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/grayscale.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/gruvbox-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/gruvbox-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/hopscotch.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/hybrid.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/idea.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/ir-black.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/kimbie.dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/kimbie.light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/magula.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/mono-blue.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/monokai-sublime.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/monokai.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/obsidian.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/ocean.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/paraiso-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/paraiso-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/pojoaque.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/pojoaque.jpg delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/purebasic.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/qtcreator_dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/qtcreator_light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/railscasts.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/rainbow.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/school-book.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/school-book.png delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/solarized-dark.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/solarized-light.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/sunburst.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/tomorrow-night-blue.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/tomorrow-night-bright.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/tomorrow-night-eighties.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/tomorrow-night.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/tomorrow.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/vs.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/xcode.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/xt256.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/zenburn.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/.jscsrc delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/bower.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/composer.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/demo/css/style.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/demo/css/style.old.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/demo/index.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/demo/index.old.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/jquery.scrollTo.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/WinMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/index.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/tests/test.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/AUTHORS.txt delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/bower.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/core.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/jquery.min.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/jquery.min.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/jquery.slim.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/jquery.slim.min.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/dist/jquery.slim.min.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/external/sizzle/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/external/sizzle/dist/sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/external/sizzle/dist/sizzle.min.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/external/sizzle/dist/sizzle.min.map delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/.eslintrc.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/jsonp.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/load.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/parseXML.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/script.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/var/location.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/var/nonce.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/var/rquery.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/ajax/xhr.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/attributes.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/attributes/attr.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/attributes/classes.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/attributes/prop.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/attributes/support.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/attributes/val.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/callbacks.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/DOMEval.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/access.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/init.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/parseHTML.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/ready-no-deferred.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/ready.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/readyException.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/stripAndCollapse.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/support.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/core/var/rsingleTag.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/addGetHookIf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/adjustCSS.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/curCSS.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/hiddenVisibleSelectors.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/showHide.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/support.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/var/cssExpand.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/var/getStyles.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/var/isHiddenWithinTree.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/var/rmargin.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/var/rnumnonpx.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/css/var/swap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/data.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/data/Data.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/data/var/acceptData.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/data/var/dataPriv.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/data/var/dataUser.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/deferred.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/deferred/exceptionHook.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/deprecated.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/dimensions.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/effects.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/effects/Tween.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/effects/animatedSelector.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/event.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/event/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/event/alias.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/event/focusin.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/event/support.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/event/trigger.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/exports/amd.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/exports/global.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/_evalUrl.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/buildFragment.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/getAll.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/setGlobalEval.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/support.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/var/rcheckableType.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/var/rscriptType.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/var/rtagName.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/manipulation/wrapMap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/offset.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/queue.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/queue/delay.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/selector-native.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/selector-sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/selector.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/serialize.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/traversing.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/traversing/findFilter.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/traversing/var/dir.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/traversing/var/rneedsContext.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/traversing/var/siblings.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/ObjectFunctionString.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/arr.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/class2type.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/concat.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/document.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/documentElement.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/fnToString.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/getProto.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/hasOwn.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/indexOf.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/pnum.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/push.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/rcssNum.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/rnothtmlwhite.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/slice.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/support.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/var/toString.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/jquery/src/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/Gulpfile.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/Makefile delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/README.md delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/marked/bin/marked delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/bower.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/component.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/doc/broken.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/doc/todo.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/index.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/lib/marked.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/man/marked.1 delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/marked.min.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/marked/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/build/build.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/build/test.js delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/mime/cli.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/mime.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/mime/types.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/example/parse.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/bool.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/default_bool.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/dotted.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/long.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/num.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/minimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/README.md delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/benchmark/node-static-0.3.0.txt delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/node-static/bin/cli.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/examples/file-server.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/lib/node-static.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/lib/node-static/util.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/test/fixtures/empty.css delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/test/fixtures/hello.txt delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/test/fixtures/index.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/test/fixtures/there/index.html delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/node-static/test/integration/node-static-test.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/bool.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/boolean_double.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/boolean_single.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/default_hash.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/default_singles.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/divide.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/line_count.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/line_count_options.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/line_count_wrap.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/nonopt.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/reflect.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/short.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/string.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/usage-options.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/example/xup.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/_.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/_/argv.js delete mode 100755 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/_/bin.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/usage.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/optimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/README.markdown delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/example/center.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/example/meat.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/index.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/test/break.js delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/test/idleness.txt delete mode 100644 docs/user-guide/kubectl/v1.5/node_modules/wordwrap/test/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.5/package.json delete mode 100644 docs/user-guide/kubectl/v1.5/scroll.js delete mode 100644 docs/user-guide/kubectl/v1.5/server.js delete mode 100644 docs/user-guide/kubectl/v1.6/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/actions.js delete mode 100644 docs/user-guide/kubectl/v1.6/brodoc.js delete mode 100644 docs/user-guide/kubectl/v1.6/index.html delete mode 100644 docs/user-guide/kubectl/v1.6/jsconfig.json delete mode 100644 docs/user-guide/kubectl/v1.6/markedDecorations.js delete mode 100644 docs/user-guide/kubectl/v1.6/navData.js delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/.bin/marked delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/.bin/mime delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/.bin/static delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/Gruntfile.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap-theme.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap-theme.css.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap-theme.min.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap.css.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap.min.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/css/bootstrap.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/js/bootstrap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/js/bootstrap.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/dist/js/npm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/bs-commonjs-generator.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/bs-lessdoc-parser.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/bs-raw-files-generator.js delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/change-version.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/configBridge.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/npm-shrinkwrap.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/grunt/sauce_browsers.yml delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/affix.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/alert.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/button.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/carousel.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/collapse.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/dropdown.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/modal.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/popover.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/scrollspy.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/tab.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/tooltip.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/js/transition.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/badges.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/bootstrap.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/breadcrumbs.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/button-groups.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/carousel.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/close.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/code.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/component-animations.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/dropdowns.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/forms.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/glyphicons.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/grid.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/input-groups.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/jumbotron.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/labels.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/media.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/background-variant.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/border-radius.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/center-block.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/clearfix.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/forms.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/gradients.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/grid-framework.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/grid.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/hide-text.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/image.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/labels.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/nav-divider.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/nav-vertical-align.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/opacity.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/panels.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/progress-bar.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/reset-filter.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/reset-text.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/resize.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/responsive-visibility.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/size.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/tab-focus.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/table-row.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/text-emphasis.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/text-overflow.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/mixins/vendor-prefixes.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/modals.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/navbar.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/navs.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/normalize.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/pager.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/panels.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/popovers.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/print.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/progress-bars.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/responsive-embed.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/responsive-utilities.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/scaffolding.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/tables.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/theme.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/thumbnails.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/tooltip.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/type.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/utilities.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/less/wells.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/bootstrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/ReadMe.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/examples/normal-usage.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/examples/safe-string.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/colors.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/custom/trap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/custom/zalgo.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/extendStringPrototype.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/maps/america.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/maps/rainbow.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/maps/random.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/maps/zebra.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/styles.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/lib/system/supports-colors.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/safe.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/colors/themes/generic-logging.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/Jakefile delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/ejs.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/lib/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/lib/utils.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/backslash.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/backslash.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/comments.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/comments.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/consecutive-tags.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/consecutive-tags.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/double-quote.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/double-quote.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/error.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/error.out delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/fail.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/hello-world.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include-abspath.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include-root.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include-simple.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include-simple.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include.css.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include.css.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_cache.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_cache.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor.css.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor.css.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor_cache.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor_cache.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/include_preprocessor_line_slurp_child.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/includes/bom.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/includes/menu-item.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/includes/menu/item.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/literal.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/literal.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/menu.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/menu.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/menu_preprocessor.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/menu_preprocessor.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/menu_var.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/messed.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/messed.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/newlines.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/newlines.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/newlines.mixed.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/newlines.mixed.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/no.newlines.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/no.newlines.error.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/no.newlines.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/no.semicolons.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/no.semicolons.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/para.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/pet.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/rmWhitespace.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/rmWhitespace.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/single-quote.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/single-quote.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/space-and-tab-slurp.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/space-and-tab-slurp.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/strict.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/style.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/user-no-with.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/user.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/fixtures/with-context.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/mocha.opts delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/tmp/include.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/tmp/include_preprocessor.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/ejs/test/tmp/renderFile.ejs delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/HELP-US-OUT.txt delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/css/font-awesome.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/css/font-awesome.css.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/css/font-awesome.min.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/fonts/FontAwesome.otf delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/fonts/fontawesome-webfont.eot delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/fonts/fontawesome-webfont.svg delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/fonts/fontawesome-webfont.ttf delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/fonts/fontawesome-webfont.woff delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/animated.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/bordered-pulled.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/core.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/fixed-width.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/font-awesome.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/icons.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/larger.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/list.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/path.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/rotated-flipped.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/screen-reader.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/stacked.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_animated.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_bordered-pulled.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_core.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_fixed-width.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_icons.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_larger.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_list.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_mixins.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_path.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_rotated-flipped.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_screen-reader.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_stacked.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/_variables.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/font-awesome/scss/font-awesome.scss delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/api.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/building-testing.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/css-classes-reference.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/index.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/language-contribution.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/language-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/language-requests.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/line-numbers.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/reference.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/release-process.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/docs/style-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/highlight.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/1c.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/abnf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/accesslog.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/actionscript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ada.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/apache.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/applescript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/arduino.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/armasm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/asciidoc.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/aspectj.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/autohotkey.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/autoit.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/avrasm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/awk.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/axapta.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/bash.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/basic.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/bnf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/brainfuck.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/cal.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/capnproto.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ceylon.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/clean.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/clojure-repl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/clojure.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/cmake.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/coffeescript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/coq.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/cos.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/cpp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/crmsh.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/crystal.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/cs.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/csp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/css.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/d.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dart.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/delphi.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/diff.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/django.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dns.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dockerfile.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dos.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dsconfig.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dts.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/dust.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ebnf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/elixir.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/elm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/erb.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/erlang-repl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/erlang.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/excel.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/fix.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/flix.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/fortran.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/fsharp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/gams.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/gauss.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/gcode.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/gherkin.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/glsl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/go.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/golo.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/gradle.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/groovy.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/haml.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/handlebars.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/haskell.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/haxe.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/hsp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/htmlbars.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/http.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/inform7.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ini.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/irpf90.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/java.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/javascript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/json.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/julia.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/kotlin.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/lasso.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ldif.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/less.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/lisp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/livecodeserver.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/livescript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/llvm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/lsl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/lua.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/makefile.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/markdown.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/mathematica.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/matlab.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/maxima.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/mel.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/mercury.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/mipsasm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/mizar.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/mojolicious.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/monkey.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/moonscript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/nginx.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/nimrod.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/nix.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/nsis.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/objectivec.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ocaml.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/openscad.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/oxygene.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/parser3.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/perl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/pf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/php.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/pony.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/powershell.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/processing.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/profile.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/prolog.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/protobuf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/puppet.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/purebasic.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/python.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/q.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/qml.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/r.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/rib.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/roboconf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/rsl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ruby.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/ruleslanguage.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/rust.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/scala.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/scheme.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/scilab.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/scss.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/smali.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/smalltalk.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/sml.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/sqf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/sql.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/stan.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/stata.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/step21.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/stylus.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/subunit.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/swift.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/taggerscript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/tap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/tcl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/tex.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/thrift.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/tp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/twig.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/typescript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/vala.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/vbnet.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/vbscript-html.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/vbscript.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/verilog.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/vhdl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/vim.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/x86asm.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/xl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/xml.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/xquery.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/yaml.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/lib/languages/zephir.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/agate.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/androidstudio.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/arduino-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/arta.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/ascetic.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-cave-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-cave-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-dune-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-dune-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-estuary-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-estuary-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-forest-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-forest-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-heath-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-heath-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-lakeside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-lakeside-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-plateau-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-plateau-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-savanna-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-savanna-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-seaside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-seaside-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atelier-sulphurpool-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atom-one-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/atom-one-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/brown-paper.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/brown-papersq.png delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/codepen-embed.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/color-brewer.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/darcula.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/darkula.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/default.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/docco.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/dracula.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/far.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/foundation.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/github-gist.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/github.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/googlecode.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/grayscale.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/gruvbox-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/gruvbox-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/hopscotch.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/hybrid.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/idea.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/ir-black.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/kimbie.dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/kimbie.light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/magula.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/mono-blue.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/monokai-sublime.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/monokai.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/obsidian.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/ocean.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/paraiso-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/paraiso-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/pojoaque.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/pojoaque.jpg delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/purebasic.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/qtcreator_dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/qtcreator_light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/railscasts.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/rainbow.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/school-book.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/school-book.png delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/solarized-dark.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/solarized-light.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/sunburst.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/tomorrow-night-blue.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/tomorrow-night-bright.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/tomorrow-night-eighties.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/tomorrow-night.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/tomorrow.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/vs.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/xcode.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/xt256.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/highlight.js/styles/zenburn.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/.jscsrc delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/bower.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/composer.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/demo/css/style.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/demo/css/style.old.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/demo/index.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/demo/index.old.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/jquery.scrollTo.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/jquery.scrollTo.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/WinMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/index.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery.scrollto/tests/test.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/AUTHORS.txt delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/bower.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/core.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/jquery.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/jquery.min.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/jquery.slim.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/jquery.slim.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/dist/jquery.slim.min.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/external/sizzle/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/external/sizzle/dist/sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/external/sizzle/dist/sizzle.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/external/sizzle/dist/sizzle.min.map delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/.eslintrc.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/jsonp.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/load.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/parseXML.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/script.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/var/location.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/var/nonce.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/var/rquery.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/ajax/xhr.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/attributes.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/attributes/attr.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/attributes/classes.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/attributes/prop.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/attributes/support.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/attributes/val.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/callbacks.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/DOMEval.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/access.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/init.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/parseHTML.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/ready-no-deferred.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/ready.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/readyException.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/stripAndCollapse.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/support.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/core/var/rsingleTag.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/addGetHookIf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/adjustCSS.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/curCSS.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/hiddenVisibleSelectors.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/showHide.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/support.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/var/cssExpand.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/var/getStyles.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/var/isHiddenWithinTree.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/var/rmargin.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/var/rnumnonpx.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/css/var/swap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/data.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/data/Data.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/data/var/acceptData.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/data/var/dataPriv.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/data/var/dataUser.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/deferred.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/deferred/exceptionHook.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/deprecated.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/dimensions.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/effects.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/effects/Tween.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/effects/animatedSelector.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/event.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/event/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/event/alias.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/event/focusin.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/event/support.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/event/trigger.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/exports/amd.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/exports/global.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/_evalUrl.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/buildFragment.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/getAll.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/setGlobalEval.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/support.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/var/rcheckableType.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/var/rscriptType.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/var/rtagName.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/manipulation/wrapMap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/offset.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/queue.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/queue/delay.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/selector-native.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/selector-sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/selector.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/serialize.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/traversing.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/traversing/findFilter.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/traversing/var/dir.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/traversing/var/rneedsContext.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/traversing/var/siblings.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/ObjectFunctionString.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/arr.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/class2type.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/concat.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/document.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/documentElement.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/fnToString.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/getProto.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/hasOwn.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/indexOf.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/pnum.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/push.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/rcssNum.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/rnothtmlwhite.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/slice.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/support.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/var/toString.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/jquery/src/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/Gulpfile.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/Makefile delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/README.md delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/marked/bin/marked delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/bower.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/component.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/doc/broken.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/doc/todo.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/index.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/lib/marked.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/man/marked.1 delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/marked.min.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/marked/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/build/build.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/build/test.js delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/mime/cli.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/mime.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/mime/types.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/example/parse.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/bool.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/default_bool.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/dotted.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/long.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/num.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/minimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/README.md delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/benchmark/node-static-0.3.0.txt delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/node-static/bin/cli.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/examples/file-server.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/lib/node-static.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/lib/node-static/util.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/test/fixtures/empty.css delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/test/fixtures/hello.txt delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/test/fixtures/index.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/test/fixtures/there/index.html delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/node-static/test/integration/node-static-test.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/bool.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/boolean_double.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/boolean_single.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/default_hash.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/default_singles.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/divide.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/line_count.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/line_count_options.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/line_count_wrap.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/nonopt.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/reflect.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/short.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/string.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/usage-options.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/example/xup.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/_.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/_/argv.js delete mode 100755 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/_/bin.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/usage.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/optimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/README.markdown delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/example/center.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/example/meat.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/index.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/test/break.js delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/test/idleness.txt delete mode 100644 docs/user-guide/kubectl/v1.6/node_modules/wordwrap/test/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.6/package.json delete mode 100644 docs/user-guide/kubectl/v1.6/scroll.js delete mode 100644 docs/user-guide/kubectl/v1.6/server.js delete mode 100644 docs/user-guide/kubectl/v1.6/stylesheet.css delete mode 100644 docs/user-guide/kubectl/v1.6/tabvisibility.js delete mode 100644 docs/user-guide/kubectl/v1.7/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/actions.js delete mode 100644 docs/user-guide/kubectl/v1.7/brodoc.js delete mode 100644 docs/user-guide/kubectl/v1.7/index.html delete mode 100644 docs/user-guide/kubectl/v1.7/jsconfig.json delete mode 100644 docs/user-guide/kubectl/v1.7/markedDecorations.js delete mode 100644 docs/user-guide/kubectl/v1.7/navData.js delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/.bin/marked delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/.bin/mime delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/.bin/static delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/Gruntfile.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap-theme.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap-theme.css.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap-theme.min.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap.css.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap.min.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/css/bootstrap.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/js/bootstrap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/js/bootstrap.min.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/dist/js/npm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/bs-commonjs-generator.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/bs-lessdoc-parser.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/bs-raw-files-generator.js delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/change-version.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/configBridge.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/npm-shrinkwrap.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/grunt/sauce_browsers.yml delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/affix.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/alert.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/button.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/carousel.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/collapse.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/dropdown.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/modal.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/popover.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/scrollspy.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/tab.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/tooltip.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/js/transition.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/badges.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/bootstrap.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/breadcrumbs.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/button-groups.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/carousel.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/close.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/code.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/component-animations.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/dropdowns.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/forms.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/glyphicons.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/grid.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/input-groups.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/jumbotron.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/labels.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/media.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/background-variant.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/border-radius.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/center-block.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/clearfix.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/forms.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/gradients.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/grid-framework.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/grid.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/hide-text.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/image.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/labels.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/nav-divider.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/nav-vertical-align.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/opacity.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/panels.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/progress-bar.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/reset-filter.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/reset-text.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/resize.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/responsive-visibility.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/size.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/tab-focus.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/table-row.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/text-emphasis.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/text-overflow.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/mixins/vendor-prefixes.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/modals.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/navbar.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/navs.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/normalize.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/pager.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/panels.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/popovers.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/print.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/progress-bars.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/responsive-embed.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/responsive-utilities.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/scaffolding.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/tables.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/theme.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/thumbnails.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/tooltip.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/type.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/utilities.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/less/wells.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/bootstrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/ReadMe.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/examples/normal-usage.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/examples/safe-string.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/colors.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/custom/trap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/custom/zalgo.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/extendStringPrototype.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/maps/america.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/maps/rainbow.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/maps/random.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/maps/zebra.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/styles.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/lib/system/supports-colors.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/safe.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/colors/themes/generic-logging.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/Jakefile delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/ejs.min.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/lib/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/lib/utils.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/ejs/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/HELP-US-OUT.txt delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/css/font-awesome.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/css/font-awesome.css.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/css/font-awesome.min.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/fonts/FontAwesome.otf delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/fonts/fontawesome-webfont.eot delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/fonts/fontawesome-webfont.svg delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/fonts/fontawesome-webfont.ttf delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/fonts/fontawesome-webfont.woff delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/animated.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/bordered-pulled.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/core.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/fixed-width.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/font-awesome.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/icons.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/larger.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/list.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/path.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/rotated-flipped.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/screen-reader.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/stacked.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_animated.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_bordered-pulled.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_core.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_fixed-width.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_icons.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_larger.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_list.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_mixins.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_path.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_rotated-flipped.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_screen-reader.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_stacked.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/_variables.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/font-awesome/scss/font-awesome.scss delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/api.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/building-testing.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/css-classes-reference.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/index.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/language-contribution.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/language-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/language-requests.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/line-numbers.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/reference.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/release-process.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/docs/style-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/highlight.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/1c.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/abnf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/accesslog.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/actionscript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ada.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/apache.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/applescript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/arduino.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/armasm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/asciidoc.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/aspectj.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/autohotkey.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/autoit.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/avrasm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/awk.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/axapta.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/bash.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/basic.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/bnf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/brainfuck.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/cal.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/capnproto.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ceylon.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/clean.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/clojure-repl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/clojure.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/cmake.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/coffeescript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/coq.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/cos.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/cpp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/crmsh.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/crystal.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/cs.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/csp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/css.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/d.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dart.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/delphi.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/diff.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/django.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dns.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dockerfile.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dos.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dsconfig.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dts.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/dust.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ebnf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/elixir.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/elm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/erb.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/erlang-repl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/erlang.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/excel.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/fix.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/flix.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/fortran.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/fsharp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/gams.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/gauss.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/gcode.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/gherkin.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/glsl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/go.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/golo.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/gradle.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/groovy.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/haml.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/handlebars.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/haskell.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/haxe.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/hsp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/htmlbars.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/http.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/hy.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/inform7.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ini.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/irpf90.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/java.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/javascript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/jboss-cli.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/json.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/julia-repl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/julia.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/kotlin.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/lasso.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ldif.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/leaf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/less.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/lisp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/livecodeserver.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/livescript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/llvm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/lsl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/lua.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/makefile.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/markdown.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/mathematica.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/matlab.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/maxima.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/mel.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/mercury.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/mipsasm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/mizar.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/mojolicious.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/monkey.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/moonscript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/n1ql.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/nginx.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/nimrod.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/nix.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/nsis.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/objectivec.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ocaml.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/openscad.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/oxygene.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/parser3.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/perl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/pf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/php.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/pony.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/powershell.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/processing.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/profile.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/prolog.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/protobuf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/puppet.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/purebasic.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/python.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/q.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/qml.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/r.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/rib.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/roboconf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/routeros.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/rsl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ruby.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/ruleslanguage.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/rust.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/scala.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/scheme.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/scilab.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/scss.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/shell.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/smali.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/smalltalk.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/sml.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/sqf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/sql.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/stan.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/stata.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/step21.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/stylus.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/subunit.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/swift.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/taggerscript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/tap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/tcl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/tex.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/thrift.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/tp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/twig.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/typescript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/vala.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/vbnet.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/vbscript-html.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/vbscript.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/verilog.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/vhdl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/vim.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/x86asm.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/xl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/xml.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/xquery.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/yaml.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/lib/languages/zephir.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/agate.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/androidstudio.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/arduino-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/arta.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/ascetic.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-cave-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-cave-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-dune-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-dune-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-estuary-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-estuary-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-forest-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-forest-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-heath-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-heath-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-lakeside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-lakeside-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-plateau-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-plateau-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-savanna-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-savanna-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-seaside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-seaside-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atelier-sulphurpool-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atom-one-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/atom-one-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/brown-paper.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/brown-papersq.png delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/codepen-embed.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/color-brewer.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/darcula.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/darkula.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/default.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/docco.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/dracula.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/far.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/foundation.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/github-gist.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/github.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/googlecode.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/grayscale.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/gruvbox-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/gruvbox-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/hopscotch.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/hybrid.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/idea.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/ir-black.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/kimbie.dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/kimbie.light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/magula.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/mono-blue.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/monokai-sublime.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/monokai.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/obsidian.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/ocean.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/paraiso-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/paraiso-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/pojoaque.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/pojoaque.jpg delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/purebasic.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/qtcreator_dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/qtcreator_light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/railscasts.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/rainbow.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/routeros.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/school-book.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/school-book.png delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/solarized-dark.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/solarized-light.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/sunburst.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/tomorrow-night-blue.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/tomorrow-night-bright.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/tomorrow-night-eighties.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/tomorrow-night.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/tomorrow.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/vs.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/vs2015.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/xcode.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/xt256.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/highlight.js/styles/zenburn.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/.jscsrc delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/bower.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/composer.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/demo/css/style.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/demo/css/style.old.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/demo/index.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/demo/index.old.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/jquery.scrollTo.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/jquery.scrollTo.min.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/WinMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/index.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery.scrollto/tests/test.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/AUTHORS.txt delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/bower.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/core.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.min.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.slim.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.slim.min.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.slim.min.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/external/sizzle/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/external/sizzle/dist/sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/external/sizzle/dist/sizzle.min.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/external/sizzle/dist/sizzle.min.map delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/.eslintrc.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/jsonp.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/load.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/parseXML.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/script.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/var/location.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/var/nonce.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/var/rquery.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/ajax/xhr.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/attributes.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/attributes/attr.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/attributes/classes.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/attributes/prop.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/attributes/support.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/attributes/val.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/callbacks.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/DOMEval.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/access.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/init.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/nodeName.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/parseHTML.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/ready-no-deferred.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/ready.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/readyException.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/stripAndCollapse.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/support.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/core/var/rsingleTag.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/addGetHookIf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/adjustCSS.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/curCSS.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/hiddenVisibleSelectors.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/showHide.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/support.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/var/cssExpand.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/var/getStyles.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/var/isHiddenWithinTree.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/var/rmargin.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/var/rnumnonpx.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/css/var/swap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/data.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/data/Data.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/data/var/acceptData.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/data/var/dataPriv.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/data/var/dataUser.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/deferred.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/deferred/exceptionHook.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/deprecated.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/dimensions.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/effects.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/effects/Tween.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/effects/animatedSelector.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/event.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/event/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/event/alias.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/event/focusin.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/event/support.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/event/trigger.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/exports/amd.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/exports/global.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/_evalUrl.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/buildFragment.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/getAll.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/setGlobalEval.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/support.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/var/rcheckableType.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/var/rscriptType.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/var/rtagName.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/manipulation/wrapMap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/offset.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/queue.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/queue/delay.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/selector-native.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/selector-sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/selector.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/serialize.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/traversing.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/traversing/findFilter.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/traversing/var/dir.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/traversing/var/rneedsContext.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/traversing/var/siblings.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/ObjectFunctionString.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/arr.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/class2type.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/concat.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/document.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/documentElement.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/fnToString.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/getProto.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/hasOwn.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/indexOf.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/pnum.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/push.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/rcssNum.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/rnothtmlwhite.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/slice.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/support.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/var/toString.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/jquery/src/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/Gulpfile.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/Makefile delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/README.md delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/marked/bin/marked delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/bower.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/component.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/doc/broken.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/doc/todo.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/index.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/lib/marked.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/man/marked.1 delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/marked.min.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/marked/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/build/build.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/build/test.js delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/mime/cli.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/mime.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/mime/types.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/example/parse.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/bool.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/default_bool.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/dotted.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/long.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/num.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/minimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/README.md delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/benchmark/node-static-0.3.0.txt delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/node-static/bin/cli.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/examples/file-server.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/lib/node-static.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/lib/node-static/util.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/test/fixtures/empty.css delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/test/fixtures/hello.txt delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/test/fixtures/index.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/test/fixtures/there/index.html delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/node-static/test/integration/node-static-test.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/bool.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/boolean_double.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/boolean_single.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/default_hash.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/default_singles.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/divide.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/line_count.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/line_count_options.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/line_count_wrap.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/nonopt.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/reflect.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/short.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/string.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/usage-options.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/example/xup.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/_.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/_/argv.js delete mode 100755 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/_/bin.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/usage.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/optimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/README.markdown delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/example/center.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/example/meat.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/index.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/test/break.js delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/test/idleness.txt delete mode 100644 docs/user-guide/kubectl/v1.7/node_modules/wordwrap/test/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.7/package.json delete mode 100644 docs/user-guide/kubectl/v1.7/server.js delete mode 100644 docs/user-guide/kubectl/v1.7/stylesheet.css delete mode 100644 docs/user-guide/kubectl/v1.7/tabvisibility.js delete mode 100644 docs/user-guide/kubectl/v1.8/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/actions.js delete mode 100644 docs/user-guide/kubectl/v1.8/brodoc.js delete mode 100644 docs/user-guide/kubectl/v1.8/jsconfig.json delete mode 100644 docs/user-guide/kubectl/v1.8/markedDecorations.js delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/.bin/marked delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/.bin/mime delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/.bin/static delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/Gruntfile.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap-theme.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap-theme.css.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap-theme.min.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap.css.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap.min.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/css/bootstrap.min.css.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/js/bootstrap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/js/bootstrap.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/dist/js/npm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/bs-commonjs-generator.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/bs-glyphicons-data-generator.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/bs-lessdoc-parser.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/bs-raw-files-generator.js delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/change-version.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/configBridge.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/npm-shrinkwrap.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/grunt/sauce_browsers.yml delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/affix.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/alert.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/button.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/carousel.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/collapse.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/dropdown.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/modal.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/popover.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/scrollspy.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/tab.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/tooltip.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/js/transition.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/badges.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/bootstrap.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/breadcrumbs.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/button-groups.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/carousel.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/close.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/code.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/component-animations.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/dropdowns.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/forms.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/glyphicons.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/grid.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/input-groups.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/jumbotron.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/labels.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/media.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/alerts.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/background-variant.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/border-radius.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/buttons.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/center-block.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/clearfix.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/forms.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/gradients.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/grid-framework.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/grid.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/hide-text.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/image.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/labels.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/list-group.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/nav-divider.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/nav-vertical-align.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/opacity.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/panels.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/progress-bar.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/reset-filter.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/reset-text.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/resize.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/responsive-visibility.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/size.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/tab-focus.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/table-row.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/text-emphasis.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/text-overflow.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/mixins/vendor-prefixes.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/modals.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/navbar.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/navs.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/normalize.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/pager.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/pagination.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/panels.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/popovers.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/print.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/progress-bars.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/responsive-embed.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/responsive-utilities.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/scaffolding.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/tables.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/theme.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/thumbnails.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/tooltip.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/type.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/utilities.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/less/wells.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/bootstrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/ReadMe.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/examples/normal-usage.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/examples/safe-string.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/colors.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/custom/trap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/custom/zalgo.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/extendStringPrototype.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/maps/america.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/maps/rainbow.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/maps/random.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/maps/zebra.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/styles.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/lib/system/supports-colors.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/safe.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/colors/themes/generic-logging.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/Jakefile delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/ejs.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/lib/ejs.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/lib/utils.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/ejs/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/HELP-US-OUT.txt delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/css/font-awesome.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/css/font-awesome.css.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/css/font-awesome.min.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/fonts/FontAwesome.otf delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/fonts/fontawesome-webfont.eot delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/fonts/fontawesome-webfont.svg delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/fonts/fontawesome-webfont.ttf delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/fonts/fontawesome-webfont.woff delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/animated.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/bordered-pulled.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/core.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/fixed-width.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/font-awesome.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/icons.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/larger.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/list.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/mixins.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/path.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/rotated-flipped.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/screen-reader.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/stacked.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/less/variables.less delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_animated.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_bordered-pulled.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_core.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_fixed-width.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_icons.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_larger.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_list.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_mixins.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_path.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_rotated-flipped.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_screen-reader.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_stacked.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/_variables.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/font-awesome/scss/font-awesome.scss delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/api.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/building-testing.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/css-classes-reference.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/index.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/language-contribution.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/language-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/language-requests.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/line-numbers.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/reference.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/release-process.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/docs/style-guide.rst delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/highlight.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/index.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/1c.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/abnf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/accesslog.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/actionscript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ada.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/apache.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/applescript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/arduino.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/armasm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/asciidoc.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/aspectj.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/autohotkey.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/autoit.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/avrasm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/awk.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/axapta.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/bash.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/basic.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/bnf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/brainfuck.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/cal.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/capnproto.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ceylon.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/clean.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/clojure-repl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/clojure.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/cmake.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/coffeescript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/coq.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/cos.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/cpp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/crmsh.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/crystal.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/cs.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/csp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/css.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/d.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dart.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/delphi.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/diff.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/django.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dns.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dockerfile.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dos.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dsconfig.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dts.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/dust.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ebnf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/elixir.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/elm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/erb.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/erlang-repl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/erlang.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/excel.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/fix.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/flix.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/fortran.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/fsharp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/gams.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/gauss.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/gcode.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/gherkin.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/glsl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/go.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/golo.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/gradle.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/groovy.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/haml.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/handlebars.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/haskell.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/haxe.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/hsp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/htmlbars.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/http.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/hy.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/inform7.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ini.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/irpf90.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/java.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/javascript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/jboss-cli.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/json.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/julia-repl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/julia.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/kotlin.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/lasso.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ldif.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/leaf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/less.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/lisp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/livecodeserver.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/livescript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/llvm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/lsl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/lua.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/makefile.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/markdown.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/mathematica.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/matlab.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/maxima.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/mel.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/mercury.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/mipsasm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/mizar.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/mojolicious.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/monkey.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/moonscript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/n1ql.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/nginx.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/nimrod.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/nix.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/nsis.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/objectivec.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ocaml.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/openscad.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/oxygene.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/parser3.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/perl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/pf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/php.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/pony.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/powershell.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/processing.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/profile.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/prolog.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/protobuf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/puppet.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/purebasic.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/python.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/q.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/qml.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/r.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/rib.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/roboconf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/routeros.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/rsl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ruby.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/ruleslanguage.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/rust.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/scala.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/scheme.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/scilab.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/scss.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/shell.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/smali.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/smalltalk.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/sml.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/sqf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/sql.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/stan.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/stata.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/step21.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/stylus.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/subunit.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/swift.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/taggerscript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/tap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/tcl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/tex.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/thrift.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/tp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/twig.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/typescript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/vala.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/vbnet.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/vbscript-html.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/vbscript.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/verilog.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/vhdl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/vim.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/x86asm.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/xl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/xml.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/xquery.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/yaml.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/lib/languages/zephir.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/agate.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/androidstudio.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/arduino-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/arta.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/ascetic.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-cave-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-cave-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-dune-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-dune-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-estuary-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-estuary-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-forest-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-forest-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-heath-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-heath-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-lakeside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-lakeside-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-plateau-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-plateau-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-savanna-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-savanna-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-seaside-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-seaside-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-sulphurpool-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atelier-sulphurpool-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atom-one-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/atom-one-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/brown-paper.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/brown-papersq.png delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/codepen-embed.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/color-brewer.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/darcula.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/darkula.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/default.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/docco.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/dracula.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/far.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/foundation.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/github-gist.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/github.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/googlecode.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/grayscale.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/gruvbox-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/gruvbox-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/hopscotch.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/hybrid.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/idea.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/ir-black.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/kimbie.dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/kimbie.light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/magula.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/mono-blue.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/monokai-sublime.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/monokai.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/obsidian.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/ocean.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/paraiso-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/paraiso-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/pojoaque.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/pojoaque.jpg delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/purebasic.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/qtcreator_dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/qtcreator_light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/railscasts.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/rainbow.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/routeros.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/school-book.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/school-book.png delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/solarized-dark.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/solarized-light.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/sunburst.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/tomorrow-night-blue.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/tomorrow-night-bright.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/tomorrow-night-eighties.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/tomorrow-night.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/tomorrow.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/vs.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/vs2015.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/xcode.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/xt256.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/highlight.js/styles/zenburn.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/.jscsrc delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/.jshintrc delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/CHANGELOG.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/bower.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/composer.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/demo/css/style.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/demo/css/style.old.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/demo/index.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/demo/index.old.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/jquery.scrollTo.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/jquery.scrollTo.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/WinMaxY-compat.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-quirks.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/index.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery.scrollto/tests/test.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/AUTHORS.txt delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/bower.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/core.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/jquery.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/jquery.min.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/jquery.slim.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/jquery.slim.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/dist/jquery.slim.min.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/external/sizzle/LICENSE.txt delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/external/sizzle/dist/sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/external/sizzle/dist/sizzle.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/external/sizzle/dist/sizzle.min.map delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/.eslintrc.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/jsonp.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/load.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/parseXML.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/script.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/var/location.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/var/nonce.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/var/rquery.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/ajax/xhr.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/attributes.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/attributes/attr.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/attributes/classes.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/attributes/prop.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/attributes/support.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/attributes/val.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/callbacks.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/DOMEval.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/access.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/init.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/nodeName.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/parseHTML.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/ready-no-deferred.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/ready.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/readyException.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/stripAndCollapse.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/support.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/core/var/rsingleTag.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/addGetHookIf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/adjustCSS.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/curCSS.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/hiddenVisibleSelectors.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/showHide.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/support.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/var/cssExpand.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/var/getStyles.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/var/isHiddenWithinTree.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/var/rmargin.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/var/rnumnonpx.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/css/var/swap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/data.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/data/Data.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/data/var/acceptData.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/data/var/dataPriv.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/data/var/dataUser.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/deferred.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/deferred/exceptionHook.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/deprecated.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/dimensions.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/effects.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/effects/Tween.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/effects/animatedSelector.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/event.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/event/ajax.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/event/alias.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/event/focusin.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/event/support.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/event/trigger.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/exports/amd.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/exports/global.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/jquery.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/_evalUrl.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/buildFragment.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/getAll.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/setGlobalEval.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/support.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/var/rcheckableType.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/var/rscriptType.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/var/rtagName.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/manipulation/wrapMap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/offset.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/queue.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/queue/delay.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/selector-native.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/selector-sizzle.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/selector.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/serialize.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/traversing.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/traversing/findFilter.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/traversing/var/dir.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/traversing/var/rneedsContext.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/traversing/var/siblings.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/ObjectFunctionString.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/arr.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/class2type.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/concat.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/document.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/documentElement.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/fnToString.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/getProto.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/hasOwn.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/indexOf.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/pnum.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/push.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/rcssNum.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/rnothtmlwhite.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/slice.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/support.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/var/toString.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/jquery/src/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/Gulpfile.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/Makefile delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/README.md delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/marked/bin/marked delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/bower.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/component.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/doc/broken.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/doc/todo.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/index.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/lib/marked.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/man/marked.1 delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/marked.min.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/marked/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/build/build.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/build/test.js delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/mime/cli.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/mime.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/mime/types.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/example/parse.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/bool.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/default_bool.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/dotted.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/long.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/num.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/minimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/.npmignore delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/README.md delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/benchmark/node-static-0.3.0.txt delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/node-static/bin/cli.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/examples/file-server.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/lib/node-static.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/lib/node-static/util.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/test/fixtures/empty.css delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/test/fixtures/hello.txt delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/test/fixtures/index.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/test/fixtures/there/index.html delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/node-static/test/integration/node-static-test.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/bool.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/boolean_double.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/boolean_single.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/default_hash.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/default_singles.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/divide.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/line_count.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/line_count_options.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/line_count_wrap.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/nonopt.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/reflect.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/short.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/string.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/usage-options.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/example/xup.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/index.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/readme.markdown delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/_.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/_/argv.js delete mode 100755 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/_/bin.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/dash.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/parse.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/parse_modified.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/short.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/usage.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/optimist/test/whitespace.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/LICENSE delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/README.markdown delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/example/center.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/example/meat.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/index.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/test/break.js delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/test/idleness.txt delete mode 100644 docs/user-guide/kubectl/v1.8/node_modules/wordwrap/test/wrap.js delete mode 100644 docs/user-guide/kubectl/v1.8/package.json delete mode 100644 docs/user-guide/kubectl/v1.8/scroll.js delete mode 100644 docs/user-guide/kubectl/v1.8/server.js delete mode 100644 docs/user-guide/kubectl/v1.8/stylesheet.css delete mode 100644 docs/user-guide/kubectl/v1.8/tabvisibility.js diff --git a/_data/reference.yml b/_data/reference.yml index 4275214b3a..ed7e57f37a 100644 --- a/_data/reference.yml +++ b/_data/reference.yml @@ -49,20 +49,14 @@ toc: - title: kubectl CLI section: - - docs/user-guide/kubectl-overview.md - - docs/user-guide/kubectl/index.md - - title: v1.8 Commands - path: /docs/user-guide/kubectl/v1.8/ - - title: v1.7 Commands - path: /docs/user-guide/kubectl/v1.7/ - - title: v1.6 Commands - path: /docs/user-guide/kubectl/v1.6/ - - title: v1.5 Commands - path: /docs/user-guide/kubectl/v1.5/ - - docs/user-guide/docker-cli-to-kubectl.md - - docs/user-guide/kubectl-conventions.md - - docs/user-guide/jsonpath.md - - docs/user-guide/kubectl-cheatsheet.md + - docs/reference/kubectl/overview.md + - docs/reference/generated/kubectl/kubectl-options.md + - title: kubectl Commands + path: /docs/reference/generated/kubectl/kubectl-commands.html + - docs/reference/kubectl/docker-cli-to-kubectl.md + - docs/reference/kubectl/conventions.md + - docs/reference/kubectl/jsonpath.md + - docs/reference/kubectl/cheatsheet.md - title: Setup Tools Reference section: diff --git a/_redirects b/_redirects index fd5e5ccce4..7066f706d6 100644 --- a/_redirects +++ b/_redirects @@ -292,6 +292,7 @@ /docs/user-guide/debugging-services/ /docs/tasks/debug-application-cluster/debug-service/ 301 /docs/user-guide/deploying-applications/ /docs/tasks/run-application/run-stateless-application-deployment/ 301 /docs/user-guide/deployments/ /docs/concepts/workloads/controllers/deployment/ 301 +/docs/user-guide/docker-cli-to-kubectl/ /docs/reference/kubectl/docker-cli-to-kubectl/ /docs/user-guide/downward-api/ /docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/ 301 /docs/user-guide/downward-api/README/ /docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/ 301 /docs/user-guide/downward-api/volume/ /docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/ 301 @@ -324,11 +325,17 @@ /docs/user-guide/ingress/ /docs/concepts/services-networking/ingress/ 301 /docs/user-guide/ingress.md /docs/concepts/services-networking/ingress/ 301 /docs/user-guide/introspection-and-debugging/ /docs/tasks/debug-application-cluster/debug-application-introspection/ 301 +/docs/user-guide/jsonpath/ /docs/reference/kubectl/jsonpath/ /docs/user-guide/jobs/ /docs/concepts/workloads/controllers/jobs-run-to-completion/ 301 /docs/user-guide/jobs/expansions/ /docs/tasks/job/parallel-processing-expansion/ 301 /docs/user-guide/jobs/work-queue-1/ /docs/tasks/job/coarse-parallel-processing-work-queue/ 301 /docs/user-guide/jobs/work-queue-2/ /docs/tasks/job/fine-parallel-processing-work-queue/ 301 /docs/user-guide/kubeconfig-file/ /docs/tasks/access-application-cluster/authenticate-across-clusters-kubeconfig/ 301 +/docs/user-guide/kubectl-overview/ /docs/reference/kubectl/overview/ +/docs/user-guide/kubectl/ /docs/reference/generated/kubectl/kubectl-options/ +/docs/user-guide/kubectl/v1.8/ /docs/reference/generated/kubectl/kubectl-commands/ +/docs/user-guide/kubectl-conventions/ /docs/reference/kubectl/conventions/ +/docs/user-guide/kubectl-cheatsheet/ /docs/reference/kubectl/cheatsheet/ /docs/user-guide/kubectl/1_5/* https://v1-5.docs.kubernetes.io/docs/user-guide/kubectl/v1.5/ 301 /docs/user-guide/kubectl/kubectl_*/ /docs/user-guide/kubectl/v1.7/#:splat 301 /docs/user-guide/kubectl/v1.5/node_modules/* https://v1-5.docs.kubernetes.io/docs/user-guide/kubectl/v1.5/ 301 diff --git a/docs/user-guide/kubectl/v1.8/index.html b/docs/reference/generated/kubectl/kubectl-commands.html similarity index 100% rename from docs/user-guide/kubectl/v1.8/index.html rename to docs/reference/generated/kubectl/kubectl-commands.html diff --git a/docs/user-guide/kubectl/index.md b/docs/reference/generated/kubectl/kubectl-options.md similarity index 100% rename from docs/user-guide/kubectl/index.md rename to docs/reference/generated/kubectl/kubectl-options.md diff --git a/docs/user-guide/kubectl/v1.8/navData.js b/docs/reference/generated/kubectl/navData.js similarity index 100% rename from docs/user-guide/kubectl/v1.8/navData.js rename to docs/reference/generated/kubectl/navData.js diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.min.css b/docs/reference/generated/kubectl/node_modules/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.min.css rename to docs/reference/generated/kubectl/node_modules/bootstrap/dist/css/bootstrap.min.css diff --git a/docs/user-guide/kubectl/v1.5/node_modules/font-awesome/css/font-awesome.min.css b/docs/reference/generated/kubectl/node_modules/font-awesome/css/font-awesome.min.css similarity index 100% rename from docs/user-guide/kubectl/v1.5/node_modules/font-awesome/css/font-awesome.min.css rename to docs/reference/generated/kubectl/node_modules/font-awesome/css/font-awesome.min.css diff --git a/docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/default.css b/docs/reference/generated/kubectl/node_modules/highlight.js/styles/default.css similarity index 100% rename from docs/user-guide/kubectl/v1.5/node_modules/highlight.js/styles/default.css rename to docs/reference/generated/kubectl/node_modules/highlight.js/styles/default.css diff --git a/docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/jquery.scrollTo.min.js b/docs/reference/generated/kubectl/node_modules/jquery.scrollto/jquery.scrollTo.min.js similarity index 100% rename from docs/user-guide/kubectl/v1.5/node_modules/jquery.scrollto/jquery.scrollTo.min.js rename to docs/reference/generated/kubectl/node_modules/jquery.scrollto/jquery.scrollTo.min.js diff --git a/docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.min.js b/docs/reference/generated/kubectl/node_modules/jquery/dist/jquery.min.js similarity index 100% rename from docs/user-guide/kubectl/v1.7/node_modules/jquery/dist/jquery.min.js rename to docs/reference/generated/kubectl/node_modules/jquery/dist/jquery.min.js diff --git a/docs/user-guide/kubectl/v1.7/scroll.js b/docs/reference/generated/kubectl/scroll.js similarity index 100% rename from docs/user-guide/kubectl/v1.7/scroll.js rename to docs/reference/generated/kubectl/scroll.js diff --git a/docs/user-guide/kubectl/v1.5/stylesheet.css b/docs/reference/generated/kubectl/stylesheet.css similarity index 100% rename from docs/user-guide/kubectl/v1.5/stylesheet.css rename to docs/reference/generated/kubectl/stylesheet.css diff --git a/docs/user-guide/kubectl/v1.5/tabvisibility.js b/docs/reference/generated/kubectl/tabvisibility.js similarity index 100% rename from docs/user-guide/kubectl/v1.5/tabvisibility.js rename to docs/reference/generated/kubectl/tabvisibility.js diff --git a/docs/user-guide/kubectl-cheatsheet.md b/docs/reference/kubectl/cheatsheet.md similarity index 100% rename from docs/user-guide/kubectl-cheatsheet.md rename to docs/reference/kubectl/cheatsheet.md diff --git a/docs/user-guide/kubectl-conventions.md b/docs/reference/kubectl/conventions.md similarity index 100% rename from docs/user-guide/kubectl-conventions.md rename to docs/reference/kubectl/conventions.md diff --git a/docs/user-guide/docker-cli-to-kubectl.md b/docs/reference/kubectl/docker-cli-to-kubectl.md similarity index 100% rename from docs/user-guide/docker-cli-to-kubectl.md rename to docs/reference/kubectl/docker-cli-to-kubectl.md diff --git a/docs/user-guide/jsonpath.md b/docs/reference/kubectl/jsonpath.md similarity index 100% rename from docs/user-guide/jsonpath.md rename to docs/reference/kubectl/jsonpath.md diff --git a/docs/user-guide/kubectl-overview.md b/docs/reference/kubectl/overview.md similarity index 100% rename from docs/user-guide/kubectl-overview.md rename to docs/reference/kubectl/overview.md diff --git a/docs/user-guide/kubectl/.files_generated b/docs/user-guide/kubectl/.files_generated deleted file mode 100644 index dc33265971..0000000000 --- a/docs/user-guide/kubectl/.files_generated +++ /dev/null @@ -1,35 +0,0 @@ -kubectl.md -kubectl_apply.md -kubectl_annotate.md -kubectl_api-versions.md -kubectl_attach.md -kubectl_cluster-info.md -kubectl_config.md -kubectl_config_set-cluster.md -kubectl_config_set-context.md -kubectl_config_set-credentials.md -kubectl_config_set.md -kubectl_config_unset.md -kubectl_config_use-context.md -kubectl_config_view.md -kubectl_convert.md -kubectl_create.md -kubectl_delete.md -kubectl_describe.md -kubectl_edit.md -kubectl_exec.md -kubectl_explain.md -kubectl_expose.md -kubectl_get.md -kubectl_label.md -kubectl_logs.md -kubectl_namespace.md -kubectl_patch.md -kubectl_port-forward.md -kubectl_proxy.md -kubectl_replace.md -kubectl_rolling-update.md -kubectl_run.md -kubectl_scale.md -kubectl_stop.md -kubectl_version.md diff --git a/docs/user-guide/kubectl/v1.5/LICENSE b/docs/user-guide/kubectl/v1.5/LICENSE deleted file mode 100644 index 8dada3edaf..0000000000 --- a/docs/user-guide/kubectl/v1.5/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright {yyyy} {name of copyright owner} - - Licensed 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. diff --git a/docs/user-guide/kubectl/v1.5/README.md b/docs/user-guide/kubectl/v1.5/README.md deleted file mode 100644 index 18abdc4c8b..0000000000 --- a/docs/user-guide/kubectl/v1.5/README.md +++ /dev/null @@ -1,69 +0,0 @@ -## Synopsis - -Static compilation of html from markdown including processing for grouping code snippets into arbitrary tabs. - -## Code Example - -\> bdocs-tab:kubectl Deployment Config to run 3 nginx instances (max rollback set to 10 revisions). - -bdocs-tab:tab will be stripped during rendering and utilized to with CSS to show or hide the preferred tab. kubectl indicates the desired tab, since blockquotes have no specific syntax highlighting. - -\`\`\`bdocs-tab:kubectl_yaml -apiVersion: extensions/v1beta1 -kind: Deployment -metadata: - name: deployment-example -spec: - replicas: 3 - revisionHistoryLimit: 10 - template: - metadata: - labels: - app: nginx - spec: - containers: - - name: nginx - image: nginx:1.10 -\`\`\` - -bdocs-tab:tab_lang will be used to indicate which tab these code snippets belong to. The tab section of the string indicates the tab, while, the language is pushed beyond the underscore. During rendering, the language will be properly highlighted as if the bdoc token was omitted. - -## Motivation - -This is a project to extend markdown documents and render them in html with a table of contents and code snippet pane. Most projects of this variety lean heavily on front end parsing with JavaScript/jQuery. This project uses NodeJS, Marked, and highlight.js to output syntax highlighted code blocks. - -With specific tokens on blockquotes and code blocks, the chunks can be placed according to their relevance. Ex: Multiple language code blocks that should be grouped under an arbitrary tab. - -## Installation - -Clone the repository, then add documents into documents directory. Modify the manifest.json to contain the document filenames in the order desired. The docs field is an array of objects with a filename key. - -As a NodeJS program, a valid installation of node is required. Once node is installed, verify if it can be run from command line. -``` -node --version -``` -Next, depedencies need to be installed via npm from the root of the project directory. -``` -npm install -``` - -Once dependencies are installed, run -``` -node brodoc.js -``` - -This will generate the index.html file, which can be opened in a browser or served. - -The included node-static server can be run from the project root via -``` -npm start -``` - -## License - -Apache License Version 2.0 - -## FAQ - -Q: Why is it named brodocs? -A: This project was born out of a collaboration with my brother to create a suitable docs app for his purposes. It was a fun name for the the two of us to use as actual brothers. diff --git a/docs/user-guide/kubectl/v1.5/actions.js b/docs/user-guide/kubectl/v1.5/actions.js deleted file mode 100644 index ce2b504b9e..0000000000 --- a/docs/user-guide/kubectl/v1.5/actions.js +++ /dev/null @@ -1,58 +0,0 @@ -// https://jsfiddle.net/upqwhou2/ - -$(document).ready(function() { - var navigationLinks = $('#sidebar-wrapper > ul li a'); - var navigationSections = $('#sidebar-wrapper > ul > ul'); - var sectionIdTonavigationLink = {}; - var sections = $('#page-content-wrapper').find('h1, h2').map(function(index, node) { - if (node.id) { - sectionIdTonavigationLink[node.id] = $('#sidebar-wrapper > ul li a[href="#' + node.id + '"]'); - return node; - } - }); - var sectionIdToNavContainerLink = {}; - var topLevelSections = $('#page-content-wrapper').find('h1').map(function(index, node) { - if (node.id) { - sectionIdToNavContainerLink[node.id] = $('#sidebar-wrapper > ul > ul[id="' + node.id + '-nav' +'"]'); - return node; - } - }); - - var firstLevelNavs = $('#sidebar-wrapper > li'); - var secondLevelNavs = $('#sidebar-wrapper > ul > ul'); - var secondLevelNavContents = $('#sidebar-wrapper > ul > ul > li'); - var thirdLevelNavs = null; // TODO: When compile provides 3 level nav, implement - - var sectionsReversed = $(sections.get().reverse()); - - function checkScroll(event) { - var scrollPosition = $(window).scrollTop(); - var offset = 50; - scrollPosition += offset; - sections.each(function() { - var currentSection = $(this); - var sectionTop = $(this).offset().top; - var id = $(this).attr('id'); - if (scrollPosition >= sectionTop) { - navigationLinks.removeClass('selected'); - sectionIdTonavigationLink[id].addClass('selected'); - var sectionNavContainer = sectionIdToNavContainerLink[id]; - var sectionNavContainerDisplay; - if (sectionNavContainer) { - sectionNavContainerDisplay = sectionNavContainer.css('display'); - } - if (sectionNavContainer && sectionNavContainerDisplay === 'none') { - navigationSections.toggle(false); - sectionNavContainer.toggle(true); - } - } - if (($(this).offset().top < window.pageYOffset + 50) && $(this).offset().top + $(this).height() > window.pageYOffset) { - window.location.hash = id; - } - }); - } - checkScroll(); - $(window).on('scroll', function(event) { - checkScroll(event); - }); -}); \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/brodoc.js b/docs/user-guide/kubectl/v1.5/brodoc.js deleted file mode 100644 index da3507af76..0000000000 --- a/docs/user-guide/kubectl/v1.5/brodoc.js +++ /dev/null @@ -1,211 +0,0 @@ -const docFolder = './documents/'; -const fs = require('fs'); -const marked = require('marked'); -const highlight = require('highlight.js'); -const renderer = new marked.Renderer(); -const brodocDec = require('./markedDecorations.js'); - - -marked.setOptions({ - renderer: renderer, - gfm: true, - tables: true, - breaks: false, - pedantic: false, - sanitize: false, - smartLists: true, - smartypants: false, - highlight: function (code, lang) { - return highlight.highlightAuto(code).value; - } -}); -brodocDec.decorateMarked(renderer); - -var config = require('./manifest'); -var docs = config.docs; - -var files = []; -var fileArray = []; -docs.forEach(file => { - files.push(file.filename); - fileArray.push(file); -}); - -var bodyContent = ''; -var navIds = brodocDec.navIds; -var codeTabs = brodocDec.codeTabs; - - -// const lexer = new marked.Lexer(); -// lexer.rules.bdoc = /^(\/{4} )(\w+).*$/; - -var path = docFolder; -var fIndex = 0; -var rIndex = 0; -var fileObj = {toc: [], content: [], tabs: []}; -fileArray.forEach((file, index) => { - fs.readFile(path + file.filename, 'utf8', (err, data) => { - rIndex++; - file.content = data; - - if (rIndex >= files.length) { - // do the things - parseFileContent(fileArray); - var navData = generateNavItems(navIds); - var navContent = navData.content; - var navDataArray = navData.navDataArray; - var codeTabContent = generateCodeTabItems(codeTabs); - var bodyContent = flattenContent(parsedContentArray); - generateDoc(navContent, bodyContent, codeTabContent); - generateNavJson(navDataArray); - } - }); -}); - -function flattenContent(content) { - var flattenedContent = content.reduce(function(accum, val) { - return accum + val; - }); - return flattenedContent; -} - -var parsedContentArray = []; -function parseFileContent(files) { - files.forEach((file, index) => { - parsedContentArray[index] = parseDoc(file.content); - }); -} -function parseDoc(doc) { - return marked(doc, { renderer: renderer }); -} - -function generateNavItems(navObjs) { - var reversedNavs = navObjs.reverse(); - var currentNestArray = []; - var currentStrongArray = []; - var flattenedNest = ''; - var nestedNavArray = []; // Array containing generated html menu items - is flattened into a string. - var navArrayInvert = []; // Deals with data layer of navigation; - var navSectionArray = []; - var navStrongSectionArray = []; - var navSectionArrayClone; - var flatNavArrayInvert = []; - reversedNavs.forEach(obj => { - flatNavArrayInvert.push(obj.id); - var strong = (obj.id.indexOf('-strong-') !== -1); - if (obj.level !== 1) { - if (strong && currentNestArray.length !== 0) { - flattenedNest = flattenContent(currentNestArray.reverse()); - currentStrongArray.push(generateNestedNav(obj, flattenedNest)); - currentNestArray.length = 0; - - navSectionArrayClone = Object.assign([], navSectionArray); - navStrongSectionArray.push({section: obj.id, subsections: navSectionArrayClone}); - navSectionArray.length = 0; - } else { - currentNestArray.push(generateNav(obj)); - navSectionArray.push({section: obj.id}); - } - } else if (obj.level === 1) { - if (currentStrongArray.length !== 0) { - currentNestArray.forEach(obj => { - currentStrongArray.push(obj); - }); - flattenedNest = flattenContent(currentStrongArray.reverse()); - } else if (currentNestArray.length !== 0) { - flattenedNest = flattenContent(currentNestArray.reverse()); - } - nestedNavArray.push(generateNestedNav(obj, flattenedNest)); - currentNestArray.length = 0; - currentStrongArray.length = 0; - flattenedNest = ''; - - navSectionArray.forEach(obj => { - navStrongSectionArray.push(obj); - }); - navSectionArrayClone = Object.assign([], navStrongSectionArray); - navStrongSectionArray.length = 0; - navArrayInvert.push({section: obj.id, subsections: navSectionArrayClone}); - navSectionArray.length = 0; - } - }); - - var navContent = flattenContent(nestedNavArray.reverse()); - return {content: navContent, navDataArray: {toc: navArrayInvert, flatToc: flatNavArrayInvert}}; -} - -function generateNav(obj) { - var classString = 'nav-level-' + obj.level; - var isStrong = obj.id.indexOf('-strong-') !== -1; - if (isStrong) { - classString += ' strong-nav'; - } - return '
  • ' + '' + obj.text + '
  • '; -} - -function generateNestedNav(parent, nest) { - var nestContent = ''; - if (nest.length > 0) { - nestContent = nest ? '' : ''; - } - return '
      ' + generateNav(parent) + nestContent + '
    '; -} - -function generateNavJson(data) { - var navJson = JSON.stringify(data); - navScript = `(function(){navData = ${navJson}})();`; - fs.writeFile('./navData.js', navScript, function(err) { - if (err) { - return console.log(err); - } - console.log("navData.js saved!"); - }); -} - -function generateCodeTabItems(tabs) { - var codeTabList = ''; - tabs.forEach(tab => { - codeTabList += generateCodeTab(tab); - }); - return codeTabList; -} - -function generateCodeTab(tab) { - return '
  • ' + tab + '
  • '; -} - -function generateDoc(navContent, bodyContent, codeTabContent) { - var doc = -` - - - -${config.title} - - - - - - - - - -
    -
      ${codeTabContent}
    -
    ${bodyContent}
    -
    - - - - - - - -`; - fs.writeFile('./index.html', doc, function (err) { - if (err) { - return console.log(err); - } - console.log("index.html saved!"); - }); -} \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/index.html b/docs/user-guide/kubectl/v1.5/index.html deleted file mode 100644 index 959d332df6..0000000000 --- a/docs/user-guide/kubectl/v1.5/index.html +++ /dev/null @@ -1,5734 +0,0 @@ - - - - -Kubectl Reference Docs - - - - - - - - - -
    -
    • example
    -

    GETTING STARTED

    -

    This section contains the most basic commands for getting a workload -running on your cluster.

    -
      -
    • run will start running 1 or more instances of a container image on your cluster.
    • -
    • expose will load balance traffic across the running instances, and can create a HA proxy for accessing the containers from outside the cluster.
    • -
    -

    Once your workloads are running, you can use the commands in the -WORKING WITH APPS section to -inspect them.

    -
    -

    run

    -
    -

    Start a single instance of nginx.

    -
    -
    kubectl run nginx --image=nginx
    -
    -
    -

    Start a single instance of hazelcast and let the container expose port 5701 .

    -
    -
    kubectl run hazelcast --image=hazelcast --port=5701
    -
    -
    -

    Start a single instance of hazelcast and set environment variables "DNS_DOMAIN=cluster" and "POD_NAMESPACE=default" in the container.

    -
    -
    kubectl run hazelcast --image=hazelcast --env="DNS_DOMAIN=cluster" --env="POD_NAMESPACE=default"
    -
    -
    -

    Start a replicated instance of nginx.

    -
    -
    kubectl run nginx --image=nginx --replicas=5
    -
    -
    -

    Dry run. Print the corresponding API objects without creating them.

    -
    -
    kubectl run nginx --image=nginx --dry-run
    -
    -
    -

    Start a single instance of nginx, but overload the spec of the deployment with a partial set of values parsed from JSON.

    -
    -
    kubectl run nginx --image=nginx --overrides='{ "apiVersion": "v1", "spec": { ... } }'
    -
    -
    -

    Start a pod of busybox and keep it in the foreground, don't restart it if it exits.

    -
    -
    kubectl run -i -t busybox --image=busybox --restart=Never
    -
    -
    -

    Start the nginx container using the default command, but use custom arguments (arg1 .. argN) for that command.

    -
    -
    kubectl run nginx --image=nginx -- <arg1> <arg2> ... <argN>
    -
    -
    -

    Start the nginx container using a different command and custom arguments.

    -
    -
    kubectl run nginx --image=nginx --command -- <cmd> <arg1> ... <argN>
    -
    -
    -

    Start the perl container to compute π to 2000 places and print it out.

    -
    -
    kubectl run pi --image=perl --restart=OnFailure -- perl -Mbignum=bpi -wle 'print bpi(2000)'
    -
    -
    -

    Start the cron job to compute π to 2000 places and print it out every 5 minutes.

    -
    -
    kubectl run pi --schedule="0/5 * * * ?" --image=perl --restart=OnFailure -- perl -Mbignum=bpi -wle 'print bpi(2000)'
    -
    -

    Create and run a particular image, possibly replicated.

    -

    Creates a deployment or job to manage the created container(s).

    -

    Usage

    -

    $ run NAME --image=image [--env="key=value"] [--port=port] [--replicas=replicas] [--dry-run=bool] [--overrides=inline-json] [--command] -- [COMMAND] [args...]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    attachfalseIf true, wait for the Pod to start running, and then attach to the Pod as if 'kubectl attach ...' were called. Default false, unless '-i/--stdin' is set, in which case the default is true. With '--restart=Never' the exit code of the container process is returned.
    commandfalseIf true and extra arguments are present, use them as the 'command' field in the container, rather than the 'args' field which is the default.
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    env[]Environment variables to set in the container
    exposefalseIf true, a public, external service is created for the container(s) which are run
    generatorThe name of the API generator to use, see http://kubernetes.io/docs/user-guide/kubectl-conventions/#generators for a list.
    hostport-1The host port mapping for the container port. To demonstrate a single-machine container.
    imageThe image for the container to run.
    image-pull-policyThe image pull policy for the container. If left empty, this value will not be specified by the client and defaulted by the server
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    labelslLabels to apply to the pod(s).
    leave-stdin-openfalseIf the pod is started in interactive mode or with stdin, leave stdin open after the first attach completes. By default, stdin will be closed after the first attach completes.
    limitsThe resource requirement limits for this container. For example, 'cpu=200m,memory=512Mi'. Note that server side components may assign limits depending on the server configuration, such as limit ranges.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    overridesAn inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field.
    portThe port that this container exposes. If --expose is true, this is also the port used by the service that is created.
    quietfalseIf true, suppress prompt messages.
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    replicasr1Number of replicas to create for this container. Default is 1.
    requestsThe resource requirement requests for this container. For example, 'cpu=100m,memory=256Mi'. Note that server side components may assign requests depending on the server configuration, such as limit ranges.
    restartAlwaysThe restart policy for this Pod. Legal values [Always, OnFailure, Never]. If set to 'Always' a deployment is created, if set to 'OnFailure' a job is created, if set to 'Never', a regular pod is created. For the latter two --replicas must be 1. Default 'Always', for CronJobs Never.
    rmfalseIf true, delete resources created in this command for attached containers.
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    scheduleA schedule in the Cron format the job should be run with.
    service-generatorservice/v2The name of the generator to use for creating a service. Only used if --expose is true
    service-overridesAn inline JSON override for the generated service object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field. Only used if --expose is true.
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    stdinifalseKeep stdin open on the container(s) in the pod, even if nothing is attached.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    ttytfalseAllocated a TTY for each container in the pod.
    -
    -

    expose

    -
    -

    Create a service for a replicated nginx, which serves on port 80 and connects to the containers on port 8000.

    -
    -
    kubectl expose rc nginx --port=80 --target-port=8000
    -
    -
    -

    Create a service for a replication controller identified by type and name specified in "nginx-controller.yaml", which serves on port 80 and connects to the containers on port 8000.

    -
    -
    kubectl expose -f nginx-controller.yaml --port=80 --target-port=8000
    -
    -
    -

    Create a service for a pod valid-pod, which serves on port 444 with the name "frontend"

    -
    -
    kubectl expose pod valid-pod --port=444 --name=frontend
    -
    -
    -

    Create a second service based on the above service, exposing the container port 8443 as port 443 with the name "nginx-https"

    -
    -
    kubectl expose service nginx --port=443 --target-port=8443 --name=nginx-https
    -
    -
    -

    Create a service for a replicated streaming application on port 4100 balancing UDP traffic and named 'video-stream'.

    -
    -
    kubectl expose rc streamer --port=4100 --protocol=udp --name=video-stream
    -
    -
    -

    Create a service for a replicated nginx using replica set, which serves on port 80 and connects to the containers on port 8000.

    -
    -
    kubectl expose rs nginx --port=80 --target-port=8000
    -
    -
    -

    Create a service for an nginx deployment, which serves on port 80 and connects to the containers on port 8000.

    -
    -
    kubectl expose deployment nginx --port=80 --target-port=8000
    -
    -

    Expose a resource as a new Kubernetes service.

    -

    Looks up a deployment, service, replica set, replication controller or pod by name and uses the selector for that resource as the selector for a new service on the specified port. A deployment or replica set will be exposed as a service only if its selector is convertible to a selector that service supports, i.e. when the selector contains only the matchLabels component. Note that if no port is specified via --port and the exposed resource has multiple ports, all will be re-used by the new service. Also if no labels are specified, the new service will re-use the labels from the resource it exposes.

    -

    Possible resources include (case insensitive):

    -

    pod (po), service (svc), replicationcontroller (rc), deployment (deploy), replicaset (rs)

    -

    Usage

    -

    $ expose (-f FILENAME | TYPE NAME) [--port=port] [--protocol=TCP|UDP] [--target-port=number-or-name] [--name=name] [--external-ip=external-ip-of-service] [--type=type]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    cluster-ipClusterIP to be assigned to the service. Leave empty to auto-allocate, or set to 'None' to create a headless service.
    container-portSynonym for --target-port
    create-external-load-balancerfalseIf true, create an external load balancer for this service (trumped by --type). Implementation is cloud provider dependent. Default is 'false'.
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    external-ipAdditional external IP address (not managed by Kubernetes) to accept for the service. If this IP is routed to a node, the service can be accessed by this IP in addition to its generated service IP.
    filenamef[]Filename, directory, or URL to files identifying the resource to expose a service
    generatorservice/v2The name of the API generator to use. There are 2 generators: 'service/v1' and 'service/v2'. The only difference between them is that service port in v1 is named 'default', while it is left unnamed in v2. Default is 'service/v2'.
    labelslLabels to apply to the service created by this call.
    load-balancer-ipIP to assign to the Load Balancer. If empty, an ephemeral IP will be created and used (cloud-provider specific).
    nameThe name for the newly created object.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    overridesAn inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field.
    portThe port that the service should serve on. Copied from the resource being exposed, if unspecified
    protocolThe network protocol for the service to be created. Default is 'TCP'.
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    selectorA label selector to use for this service. Only equality-based selector requirements are supported. If empty (the default) infer the selector from the replication controller or replica set.
    session-affinityIf non-empty, set the session affinity for the service to this; legal values: 'None', 'ClientIP'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    target-portName or number for the port on the container that the service should direct traffic to. Optional.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    typeType for this service: ClusterIP, NodePort, or LoadBalancer. Default is 'ClusterIP'.
    -

    APP MANAGEMENT

    -

    This section contains commands for creating, updating, deleting, and -viewing your workloads in a Kubernetes cluster.

    -
    -

    annotate

    -
    -

    Update pod 'foo' with the annotation 'description' and the value 'my frontend'. # If the same annotation is set multiple times, only the last value will be applied

    -
    -
    kubectl annotate pods foo description='my frontend'
    -
    -
    -

    Update a pod identified by type and name in "pod.json"

    -
    -
    kubectl annotate -f pod.json description='my frontend'
    -
    -
    -

    Update pod 'foo' with the annotation 'description' and the value 'my frontend running nginx', overwriting any existing value.

    -
    -
    kubectl annotate --overwrite pods foo description='my frontend running nginx'
    -
    -
    -

    Update all pods in the namespace

    -
    -
    kubectl annotate pods --all description='my frontend running nginx'
    -
    -
    -

    Update pod 'foo' only if the resource is unchanged from version 1.

    -
    -
    kubectl annotate pods foo description='my frontend running nginx' --resource-version=1
    -
    -
    -

    Update pod 'foo' by removing an annotation named 'description' if it exists. # Does not require the --overwrite flag.

    -
    -
    kubectl annotate pods foo description-
    -
    -

    Update the annotations on one or more resources.

    -
      -
    • An annotation is a key/value pair that can hold larger (compared to a label), and possibly not human-readable, data.
    • -
    • It is intended to store non-identifying auxiliary data, especially data manipulated by tools and system extensions.
    • -
    • If --overwrite is true, then existing annotations can be overwritten, otherwise attempting to overwrite an annotation will result in an error.
    • -
    • If --resource-version is specified, then updates will use this resource version, otherwise the existing resource-version will be used.
    • -
    -

    Valid resource types include:

    -
      -
    • clusters (valid only for federation apiservers)
    • -
    • componentstatuses (aka 'cs')
    • -
    • configmaps (aka 'cm')
    • -
    • daemonsets (aka 'ds')
    • -
    • deployments (aka 'deploy')
    • -
    • endpoints (aka 'ep')
    • -
    • events (aka 'ev')
    • -
    • horizontalpodautoscalers (aka 'hpa')
    • -
    • ingresses (aka 'ing')
    • -
    • jobs
    • -
    • limitranges (aka 'limits')
    • -
    • namespaces (aka 'ns')
    • -
    • networkpolicies
    • -
    • nodes (aka 'no')
    • -
    • persistentvolumeclaims (aka 'pvc')
    • -
    • persistentvolumes (aka 'pv')
    • -
    • pods (aka 'po')
    • -
    • podsecuritypolicies (aka 'psp')
    • -
    • podtemplates
    • -
    • replicasets (aka 'rs')
    • -
    • replicationcontrollers (aka 'rc')
    • -
    • resourcequotas (aka 'quota')
    • -
    • secrets
    • -
    • serviceaccounts (aka 'sa')
    • -
    • services (aka 'svc')
    • -
    • statefulsets
    • -
    • storageclasses
    • -
    • thirdpartyresources
    • -
    -

    Usage

    -

    $ annotate [--overwrite] (-f FILENAME | TYPE NAME) KEY_1=VAL_1 ... KEY_N=VAL_N [--resource-version=version]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalseselect all resources in the namespace of the specified resource types
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename, directory, or URL to files identifying the resource to update the annotation
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    localfalseIf true, annotation will NOT contact api-server but run locally.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    overwritefalseIf true, allow annotations to be overwritten, otherwise reject annotation updates that overwrite existing annotations.
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    resource-versionIf non-empty, the annotation update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    -
    -

    autoscale

    -
    -

    Auto scale a deployment "foo", with the number of pods between 2 and 10, target CPU utilization specified so a default autoscaling policy will be used:

    -
    -
    kubectl autoscale deployment foo --min=2 --max=10
    -
    -
    -

    Auto scale a replication controller "foo", with the number of pods between 1 and 5, target CPU utilization at 80%:

    -
    -
    kubectl autoscale rc foo --max=5 --cpu-percent=80
    -
    -

    Creates an autoscaler that automatically chooses and sets the number of pods that run in a kubernetes cluster.

    -

    Looks up a Deployment, ReplicaSet, or ReplicationController by name and creates an autoscaler that uses the given resource as a reference. An autoscaler can automatically increase or decrease number of pods deployed within the system as needed.

    -

    Usage

    -

    $ autoscale (-f FILENAME | TYPE NAME | TYPE/NAME) [--min=MINPODS] --max=MAXPODS [--cpu-percent=CPU] [flags]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    cpu-percent-1The target average CPU utilization (represented as a percent of requested CPU) over all the pods. If it's not specified or negative, a default autoscaling policy will be used.
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename, directory, or URL to files identifying the resource to autoscale.
    generatorhorizontalpodautoscaler/v1The name of the API generator to use. Currently there is only 1 generator.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    max-1The upper limit for the number of pods that can be set by the autoscaler. Required.
    min-1The lower limit for the number of pods that can be set by the autoscaler. If it's not specified or negative, the server will apply a default value.
    nameThe name for the newly created object. If not specified, the name of the input resource will be used.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    -
    -

    convert

    -
    -

    Convert 'pod.yaml' to latest version and print to stdout.

    -
    -
    kubectl convert -f pod.yaml
    -
    -
    -

    Convert the live state of the resource specified by 'pod.yaml' to the latest version # and print to stdout in json format.

    -
    -
    kubectl convert -f pod.yaml --local -o json
    -
    -
    -

    Convert all files under current directory to latest version and create them all.

    -
    -
    kubectl convert -f . | kubectl create -f -
    -
    -

    Convert config files between different API versions. Both YAML and JSON formats are accepted.

    -

    The command takes filename, directory, or URL as input, and convert it into format of version specified by --output-version flag. If target version is not specified or not supported, convert to latest version.

    -

    The default output will be printed to stdout in YAML format. One can use -o option to change to output destination.

    -

    Usage

    -

    $ convert -f FILENAME

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files to need to get converted.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    localtrueIf true, convert will NOT try to contact api-server but run locally.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    create

    -
    -

    Create a pod using the data in pod.json.

    -
    -
    kubectl create -f ./pod.json
    -
    -
    -

    Create a pod based on the JSON passed into stdin.

    -
    -
    cat pod.json | kubectl create -f -
    -
    -
    -

    Edit the data in docker-registry.yaml in JSON using the v1 API format then create the resource using the edited data.

    -
    -
    kubectl create -f docker-registry.yaml --edit --output-version=v1 -o json
    -
    -

    Create a resource by filename or stdin.

    -

    JSON and YAML formats are accepted.

    -

    Usage

    -

    $ create -f FILENAME

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    editfalseEdit the API resource before creating
    filenamef[]Filename, directory, or URL to files to use to create the resource
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    windows-line-endingsfalseOnly relevant if --edit=true. Use Windows line-endings (default Unix line-endings)
    -
    -

    configmap

    -
    -

    Create a new configmap named my-config with keys for each file in folder bar

    -
    -
    kubectl create configmap my-config --from-file=path/to/bar
    -
    -
    -

    Create a new configmap named my-config with specified keys instead of names on disk

    -
    -
    kubectl create configmap my-config --from-file=key1=/path/to/bar/file1.txt --from-file=key2=/path/to/bar/file2.txt
    -
    -
    -

    Create a new configmap named my-config with key1=config1 and key2=config2

    -
    -
    kubectl create configmap my-config --from-literal=key1=config1 --from-literal=key2=config2
    -
    -

    Create a configmap based on a file, directory, or specified literal value.

    -

    A single configmap may package one or more key/value pairs.

    -

    When creating a configmap based on a file, the key will default to the basename of the file, and the value will default to the file content. If the basename is an invalid key, you may specify an alternate key.

    -

    When creating a configmap based on a directory, each file whose basename is a valid key in the directory will be packaged into the configmap. Any directory entries except regular files are ignored (e.g. subdirectories, symlinks, devices, pipes, etc).

    -

    Usage

    -

    $ configmap NAME [--from-file=[key=]source] [--from-literal=key1=value1] [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    from-file[]Key files can be specified using their file path, in which case a default name will be given to them, or optionally with a name and file path, in which case the given name will be used. Specifying a directory will iterate each named file in the directory that is a valid configmap key.
    from-literal[]Specify a key and literal value to insert in configmap (i.e. mykey=somevalue)
    generatorconfigmap/v1The name of the API generator to use.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    deployment

    -
    -

    Create a new deployment named my-dep that runs the busybox image.

    -
    -
    kubectl create deployment my-dep --image=busybox
    -
    -

    Create a deployment with the specified name.

    -

    Usage

    -

    $ deployment NAME --image=image [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatordeployment-basic/v1beta1The name of the API generator to use.
    image[]Image name to run.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    namespace

    -
    -

    Create a new namespace named my-namespace

    -
    -
    kubectl create namespace my-namespace
    -
    -

    Create a namespace with the specified name.

    -

    Usage

    -

    $ namespace NAME [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatornamespace/v1The name of the API generator to use.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    quota

    -
    -

    Create a new resourcequota named my-quota

    -
    -
    $ kubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3,replicationcontrollers=2,resourcequotas=1,secrets=5,persistentvolumeclaims=10
    -
    -
    -

    Create a new resourcequota named best-effort

    -
    -
    $ kubectl create quota best-effort --hard=pods=100 --scopes=BestEffort
    -
    -

    Create a resourcequota with the specified name, hard limits and optional scopes

    -

    Usage

    -

    $ quota NAME [--hard=key1=value1,key2=value2] [--scopes=Scope1,Scope2] [--dry-run=bool]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorresourcequotas/v1The name of the API generator to use.
    hardA comma-delimited set of resource=quantity pairs that define a hard limit.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    scopesA comma-delimited set of quota scopes that must all match each object tracked by the quota.
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    secret

    -

    Create a secret using specified subcommand.

    -

    Usage

    -

    $ secret

    -
    -

    secret docker-registry

    -
    -

    If you don't already have a .dockercfg file, you can create a dockercfg secret directly by using:

    -
    -
    kubectl create secret docker-registry my-secret --docker-server=DOCKER_REGISTRY_SERVER --docker-username=DOCKER_USER --docker-password=DOCKER_PASSWORD --docker-email=DOCKER_EMAIL
    -
    -

    Create a new secret for use with Docker registries.

    -

    Dockercfg secrets are used to authenticate against Docker registries.

    -

    When using the Docker command line to push images, you can authenticate to a given registry by running

    -

    $ docker login DOCKER_REGISTRY_SERVER --username=DOCKER_USER --password=DOCKER_PASSWORD --email=DOCKER_EMAIL'.

    -

    That produces a ~/.dockercfg file that is used by subsequent 'docker push' and 'docker pull' commands to authenticate to the registry.

    -

    When creating applications, you may have a Docker registry that requires authentication. In order for the nodes to pull images on your behalf, they have to have the credentials. You can provide this information by creating a dockercfg secret and attaching it to your service account.

    -

    Usage

    -

    $ docker-registry NAME --docker-username=user --docker-password=password --docker-email=email [--docker-server=string] [--from-literal=key1=value1] [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    docker-emailEmail for Docker registry
    docker-passwordPassword for Docker registry authentication
    docker-serverhttps://index.docker.io/v1/Server location for Docker registry
    docker-usernameUsername for Docker registry authentication
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorsecret-for-docker-registry/v1The name of the API generator to use.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    secret generic

    -
    -

    Create a new secret named my-secret with keys for each file in folder bar

    -
    -
    kubectl create secret generic my-secret --from-file=path/to/bar
    -
    -
    -

    Create a new secret named my-secret with specified keys instead of names on disk

    -
    -
    kubectl create secret generic my-secret --from-file=ssh-privatekey=~/.ssh/id_rsa --from-file=ssh-publickey=~/.ssh/id_rsa.pub
    -
    -
    -

    Create a new secret named my-secret with key1=supersecret and key2=topsecret

    -
    -
    kubectl create secret generic my-secret --from-literal=key1=supersecret --from-literal=key2=topsecret
    -
    -

    Create a secret based on a file, directory, or specified literal value.

    -

    A single secret may package one or more key/value pairs.

    -

    When creating a secret based on a file, the key will default to the basename of the file, and the value will default to the file content. If the basename is an invalid key, you may specify an alternate key.

    -

    When creating a secret based on a directory, each file whose basename is a valid key in the directory will be packaged into the secret. Any directory entries except regular files are ignored (e.g. subdirectories, symlinks, devices, pipes, etc).

    -

    Usage

    -

    $ generic NAME [--type=string] [--from-file=[key=]source] [--from-literal=key1=value1] [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    from-file[]Key files can be specified using their file path, in which case a default name will be given to them, or optionally with a name and file path, in which case the given name will be used. Specifying a directory will iterate each named file in the directory that is a valid secret key.
    from-literal[]Specify a key and literal value to insert in secret (i.e. mykey=somevalue)
    generatorsecret/v1The name of the API generator to use.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    typeThe type of secret to create
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    secret tls

    -
    -

    Create a new TLS secret named tls-secret with the given key pair:

    -
    -
    kubectl create secret tls tls-secret --cert=path/to/tls.cert --key=path/to/tls.key
    -
    -

    Create a TLS secret from the given public/private key pair.

    -

    The public/private key pair must exist before hand. The public key certificate must be .PEM encoded and match the given private key.

    -

    Usage

    -

    $ tls NAME --cert=path/to/cert/file --key=path/to/key/file [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    certPath to PEM encoded public key certificate.
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorsecret-for-tls/v1The name of the API generator to use.
    keyPath to private key associated with given certificate.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    service

    -

    Create a service using specified subcommand.

    -

    Usage

    -

    $ service

    -
    -

    service clusterip

    -
    -

    Create a new clusterIP service named my-cs

    -
    -
    kubectl create service clusterip my-cs --tcp=5678:8080
    -
    -
    -

    Create a new clusterIP service named my-cs (in headless mode)

    -
    -
    kubectl create service clusterip my-cs --clusterip="None"
    -
    -

    Create a clusterIP service with the specified name.

    -

    Usage

    -

    $ clusterip NAME [--tcp=<port>:<targetPort>] [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    clusteripAssign your own ClusterIP or set to 'None' for a 'headless' service (no loadbalancing).
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorservice-clusterip/v1The name of the API generator to use.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    tcp[]Port pairs can be specified as ':'.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    service loadbalancer

    -
    -

    Create a new LoadBalancer service named my-lbs

    -
    -
    kubectl create service loadbalancer my-lbs --tcp=5678:8080
    -
    -

    Create a LoadBalancer service with the specified name.

    -

    Usage

    -

    $ loadbalancer NAME [--tcp=port:targetPort] [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorservice-loadbalancer/v1The name of the API generator to use.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    tcp[]Port pairs can be specified as ':'.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    service nodeport

    -
    -

    Create a new nodeport service named my-ns

    -
    -
    kubectl create service nodeport my-ns --tcp=5678:8080
    -
    -

    Create a nodeport service with the specified name.

    -

    Usage

    -

    $ nodeport NAME [--tcp=port:targetPort] [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorservice-nodeport/v1The name of the API generator to use.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    node-port0Port used to expose the service on each node in a cluster.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    tcp[]Port pairs can be specified as ':'.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    serviceaccount

    -
    -

    Create a new service account named my-service-account

    -
    -
    $ kubectl create serviceaccount my-service-account
    -
    -

    Create a service account with the specified name.

    -

    Usage

    -

    $ serviceaccount NAME [--dry-run]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    generatorserviceaccount/v1The name of the API generator to use.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    delete

    -
    -

    Delete a pod using the type and name specified in pod.json.

    -
    -
    kubectl delete -f ./pod.json
    -
    -
    -

    Delete a pod based on the type and name in the JSON passed into stdin.

    -
    -
    cat pod.json | kubectl delete -f -
    -
    -
    -

    Delete pods and services with same names "baz" and "foo"

    -
    -
    kubectl delete pod,service baz foo
    -
    -
    -

    Delete pods and services with label name=myLabel.

    -
    -
    kubectl delete pods,services -l name=myLabel
    -
    -
    -

    Delete a pod with minimal delay

    -
    -
    kubectl delete pod foo --now
    -
    -
    -

    Force delete a pod on a dead node

    -
    -
    kubectl delete pod foo --grace-period=0 --force
    -
    -
    -

    Delete a pod with UID 1234-56-7890-234234-456456.

    -
    -
    kubectl delete pod 1234-56-7890-234234-456456
    -
    -
    -

    Delete all pods

    -
    -
    kubectl delete pods --all
    -
    -

    Delete resources by filenames, stdin, resources and names, or by resources and label selector.

    -

    JSON and YAML formats are accepted. Only one type of the arguments may be specified: filenames, resources and names, or resources and label selector.

    -

    Some resources, such as pods, support graceful deletion. These resources define a default period before they are forcibly terminated (the grace period) but you may override that value with the --grace-period flag, or pass --now to set a grace-period of 1. Because these resources often represent entities in the cluster, deletion may not be acknowledged immediately. If the node hosting a pod is down or cannot reach the API server, termination may take significantly longer than the grace period. To force delete a resource, you must pass a grace period of 0 and specify the --force flag.

    -

    IMPORTANT: Force deleting pods does not wait for confirmation that the pod's processes have been terminated, which can leave those processes running until the node detects the deletion and completes graceful deletion. If your processes use shared storage or talk to a remote API and depend on the name of the pod to identify themselves, force deleting those pods may result in multiple processes running on different machines using the same identification which may lead to data corruption or inconsistency. Only force delete pods when you are sure the pod is terminated, or if your application can tolerate multiple copies of the same pod running at once. Also, if you force delete pods the scheduler may place new pods on those nodes before the node has released those resources and causing those pods to be evicted immediately.

    -

    Note that the delete command does NOT do resource version checks, so if someone submits an update to a resource right when you submit a delete, their update will be lost along with the rest of the resource.

    -

    Usage

    -

    $ delete ([-f FILENAME] | TYPE [(NAME | -l label | --all)])

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalse[-all] to select all the specified resources.
    cascadetrueIf true, cascade the deletion of the resources managed by this resource (e.g. Pods created by a ReplicationController). Default true.
    filenamef[]Filename, directory, or URL to files containing the resource to delete.
    forcefalseImmediate deletion of some resources may result in inconsistency or data loss and requires confirmation.
    grace-period-1Period of time in seconds given to the resource to terminate gracefully. Ignored if negative.
    ignore-not-foundfalseTreat "resource not found" as a successful delete. Defaults to "true" when --all is specified.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    nowfalseIf true, resources are signaled for immediate shutdown (same as --grace-period=1).
    outputoOutput mode. Use "-o name" for shorter output (resource/name).
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    selectorlSelector (label query) to filter on.
    timeout0sThe length of time to wait before giving up on a delete, zero means determine a timeout from the size of the object
    -
    -

    edit

    -
    -

    Edit the service named 'docker-registry':

    -
    -
    kubectl edit svc/docker-registry
    -
    -
    -

    Use an alternative editor

    -
    -
    KUBE_EDITOR="nano" kubectl edit svc/docker-registry
    -
    -
    -

    Edit the service 'docker-registry' in JSON using the v1 API format:

    -
    -
    kubectl edit svc/docker-registry --output-version=v1 -o json
    -
    -

    Edit a resource from the default editor.

    -

    The edit command allows you to directly edit any API resource you can retrieve via the command line tools. It will open the editor defined by your KUBE _EDITOR, or EDITOR environment variables, or fall back to 'vi' for Linux or 'notepad' for Windows. You can edit multiple objects, although changes are applied one at a time. The command accepts filenames as well as command line arguments, although the files you point to must be previously saved versions of resources.

    -

    The files to edit will be output in the default API version, or a version specified by --output-version. The default format is YAML - if you would like to edit in JSON pass -o json. The flag --windows-line-endings can be used to force Windows line endings, otherwise the default for your operating system will be used.

    -

    In the event an error occurs while updating, a temporary file will be created on disk that contains your unapplied changes. The most common error when updating a resource is another editor changing the resource on the server. When this occurs, you will have to apply your changes to the newer version of the resource, or update your temporary saved copy to include the latest resource version.

    -

    Usage

    -

    $ edit (RESOURCE/NAME | -f FILENAME)

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files to use to edit the resource
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    outputoyamlOutput format. One of: yaml|json.
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    validatetrueIf true, use a schema to validate the input before sending it
    windows-line-endingsfalseUse Windows line-endings (default Unix line-endings)
    -
    -

    get

    -
    -

    List all pods in ps output format.

    -
    -
    kubectl get pods
    -
    -
    -

    List all pods in ps output format with more information (such as node name).

    -
    -
    kubectl get pods -o wide
    -
    -
    -

    List a single replication controller with specified NAME in ps output format.

    -
    -
    kubectl get replicationcontroller web
    -
    -
    -

    List a single pod in JSON output format.

    -
    -
    kubectl get -o json pod web-pod-13je7
    -
    -
    -

    List a pod identified by type and name specified in "pod.yaml" in JSON output format.

    -
    -
    kubectl get -f pod.yaml -o json
    -
    -
    -

    Return only the phase value of the specified pod.

    -
    -
    kubectl get -o template pod/web-pod-13je7 --template={{.status.phase}}
    -
    -
    -

    List all replication controllers and services together in ps output format.

    -
    -
    kubectl get rc,services
    -
    -
    -

    List one or more resources by their type and names.

    -
    -
    kubectl get rc/web service/frontend pods/web-pod-13je7
    -
    -

    Display one or many resources.

    -

    Valid resource types include:

    -
      -
    • clusters (valid only for federation apiservers)
    • -
    • componentstatuses (aka 'cs')
    • -
    • configmaps (aka 'cm')
    • -
    • daemonsets (aka 'ds')
    • -
    • deployments (aka 'deploy')
    • -
    • endpoints (aka 'ep')
    • -
    • events (aka 'ev')
    • -
    • horizontalpodautoscalers (aka 'hpa')
    • -
    • ingresses (aka 'ing')
    • -
    • jobs
    • -
    • limitranges (aka 'limits')
    • -
    • namespaces (aka 'ns')
    • -
    • networkpolicies
    • -
    • nodes (aka 'no')
    • -
    • persistentvolumeclaims (aka 'pvc')
    • -
    • persistentvolumes (aka 'pv')
    • -
    • pods (aka 'po')
    • -
    • podsecuritypolicies (aka 'psp')
    • -
    • podtemplates
    • -
    • replicasets (aka 'rs')
    • -
    • replicationcontrollers (aka 'rc')
    • -
    • resourcequotas (aka 'quota')
    • -
    • secrets
    • -
    • serviceaccounts (aka 'sa')
    • -
    • services (aka 'svc')
    • -
    • statefulsets
    • -
    • storageclasses
    • -
    • thirdpartyresources
    • -
    -

    This command will hide resources that have completed. For instance, pods that are in the Succeeded or Failed phases. You can see the full results for any resource by providing the '--show-all' flag.

    -

    By specifying the output as 'template' and providing a Go template as the value of the --template flag, you can filter the attributes of the fetched resource(s).

    -

    Usage

    -

    $ get [(-o|--output=)json|yaml|wide|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=...] (TYPE [NAME | -l label] | TYPE/NAME ...) [flags]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    all-namespacesfalseIf present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace.
    exportfalseIf true, use 'export' for the resources. Exported resources are stripped of cluster-specific information.
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    label-columnsL[]Accepts a comma separated list of labels that are going to be presented as columns. Names are case-sensitive. You can also use multiple flag options like -L label1 -L label2...
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    rawRaw URI to request from the server. Uses the transport specified by the kubeconfig file.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-kindfalseIf present, list the resource type for the requested object(s).
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    watchwfalseAfter listing/getting the requested object, watch for changes.
    watch-onlyfalseWatch for changes to the requested object(s), without listing/getting first.
    -
    -

    label

    -
    -

    Update pod 'foo' with the label 'unhealthy' and the value 'true'.

    -
    -
    kubectl label pods foo unhealthy=true
    -
    -
    -

    Update pod 'foo' with the label 'status' and the value 'unhealthy', overwriting any existing value.

    -
    -
    kubectl label --overwrite pods foo status=unhealthy
    -
    -
    -

    Update all pods in the namespace

    -
    -
    kubectl label pods --all status=unhealthy
    -
    -
    -

    Update a pod identified by the type and name in "pod.json"

    -
    -
    kubectl label -f pod.json status=unhealthy
    -
    -
    -

    Update pod 'foo' only if the resource is unchanged from version 1.

    -
    -
    kubectl label pods foo status=unhealthy --resource-version=1
    -
    -
    -

    Update pod 'foo' by removing a label named 'bar' if it exists. # Does not require the --overwrite flag.

    -
    -
    kubectl label pods foo bar-
    -
    -

    Update the labels on a resource.

    -
      -
    • A label must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to 63 characters.
    • -
    • If --overwrite is true, then existing labels can be overwritten, otherwise attempting to overwrite a label will result in an error.
    • -
    • If --resource-version is specified, then updates will use this resource version, otherwise the existing resource-version will be used.
    • -
    -

    Usage

    -

    $ label [--overwrite] (-f FILENAME | TYPE NAME) KEY_1=VAL_1 ... KEY_N=VAL_N [--resource-version=version]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalseselect all resources in the namespace of the specified resource types
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename, directory, or URL to files identifying the resource to update the labels
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    localfalseIf true, label will NOT contact api-server but run locally.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    overwritefalseIf true, allow labels to be overwritten, otherwise reject label updates that overwrite existing labels.
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    resource-versionIf non-empty, the labels update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    -
    -

    patch

    -
    -

    Partially update a node using strategic merge patch

    -
    -
    kubectl patch node k8s-node-1 -p '{"spec":{"unschedulable":true}}'
    -
    -
    -

    Partially update a node identified by the type and name specified in "node.json" using strategic merge patch

    -
    -
    kubectl patch -f node.json -p '{"spec":{"unschedulable":true}}'
    -
    -
    -

    Update a container's image; spec.containers[*].name is required because it's a merge key

    -
    -
    kubectl patch pod valid-pod -p '{"spec":{"containers":[{"name":"kubernetes-serve-hostname","image":"new image"}]}}'
    -
    -
    -

    Update a container's image using a json patch with positional arrays

    -
    -
    kubectl patch pod valid-pod --type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new image"}]'
    -
    -

    Update field(s) of a resource using strategic merge patch

    -

    JSON and YAML formats are accepted.

    -

    Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.

    -

    Usage

    -

    $ patch (-f FILENAME | TYPE NAME) -p PATCH

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to update
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    localfalseIf true, patch will operate on the content of the file, not the server-side resource.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    patchpThe patch to be applied to the resource JSON file.
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    typestrategicThe type of patch being provided; one of [json merge strategic]
    -
    -

    replace

    -
    -

    Replace a pod using the data in pod.json.

    -
    -
    kubectl replace -f ./pod.json
    -
    -
    -

    Replace a pod based on the JSON passed into stdin.

    -
    -
    cat pod.json | kubectl replace -f -
    -
    -
    -

    Update a single-container pod's image version (tag) to v4

    -
    -
    kubectl get pod mypod -o yaml | sed 's/\(image: myimage\):.*$/\1:v4/' | kubectl replace -f -
    -
    -
    -

    Force replace, delete and then re-create the resource

    -
    -
    kubectl replace --force -f ./pod.json
    -
    -

    Replace a resource by filename or stdin.

    -

    JSON and YAML formats are accepted. If replacing an existing resource, the complete resource spec must be provided. This can be obtained by

    -

    $ kubectl get TYPE NAME -o yaml

    -

    Please refer to the models in https://htmlpreview.github.io/?https://github.com/kubernetes/kubernetes/blob/HEAD/docs/api-reference/v1/definitions.html to find if a field is mutable.

    -

    Usage

    -

    $ replace -f FILENAME

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    cascadefalseOnly relevant during a force replace. If true, cascade the deletion of the resources managed by this resource (e.g. Pods created by a ReplicationController).
    filenamef[]Filename, directory, or URL to files to use to replace the resource.
    forcefalseDelete and re-create the specified resource
    grace-period-1Only relevant during a force replace. Period of time in seconds given to the old resource to terminate gracefully. Ignored if negative.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    outputoOutput mode. Use "-o name" for shorter output (resource/name).
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    save-configfalseIf true, the configuration of current object will be saved in its annotation. This is useful when you want to perform kubectl apply on this object in the future.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    timeout0sOnly relevant during a force replace. The length of time to wait before giving up on a delete of the old resource, zero means determine a timeout from the size of the object. Any other values should contain a corresponding time unit (e.g. 1s, 2m, 3h).
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    rolling-update

    -
    -

    Update pods of frontend-v1 using new replication controller data in frontend-v2.json.

    -
    -
    kubectl rolling-update frontend-v1 -f frontend-v2.json
    -
    -
    -

    Update pods of frontend-v1 using JSON data passed into stdin.

    -
    -
    cat frontend-v2.json | kubectl rolling-update frontend-v1 -f -
    -
    -
    -

    Update the pods of frontend-v1 to frontend-v2 by just changing the image, and switching the # name of the replication controller.

    -
    -
    kubectl rolling-update frontend-v1 frontend-v2 --image=image:v2
    -
    -
    -

    Update the pods of frontend by just changing the image, and keeping the old name.

    -
    -
    kubectl rolling-update frontend --image=image:v2
    -
    -
    -

    Abort and reverse an existing rollout in progress (from frontend-v1 to frontend-v2).

    -
    -
    kubectl rolling-update frontend-v1 frontend-v2 --rollback
    -
    -

    Perform a rolling update of the given ReplicationController.

    -

    Replaces the specified replication controller with a new replication controller by updating one pod at a time to use the new PodTemplate. The new-controller.json must specify the same namespace as the existing replication controller and overwrite at least one (common) label in its replicaSelector.

    -

    ! http://kubernetes.io/images/docs/kubectl_rollingupdate.svg

    -

    Usage

    -

    $ rolling-update OLD_CONTROLLER_NAME ([NEW_CONTROLLER_NAME] --image=NEW_CONTAINER_IMAGE | -f NEW_CONTROLLER_SPEC)

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    containerContainer name which will have its image upgraded. Only relevant when --image is specified, ignored otherwise. Required when using --image on a multi-container pod
    deployment-label-keydeploymentThe key to use to differentiate between two different controllers, default 'deployment'. Only relevant when --image is specified, ignored otherwise
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename or URL to file to use to create the new replication controller.
    imageImage to use for upgrading the replication controller. Must be distinct from the existing image (either new image or new image tag). Can not be used with --filename/-f
    image-pull-policyExplicit policy for when to pull container images. Required when --image is same as existing image, ignored otherwise.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    poll-interval3sTime delay between polling for replication controller status after the update. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
    rollbackfalseIf true, this is a request to abort an existing rollout that is partially rolled out. It effectively reverses current and next and runs a rollout
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    timeout5m0sMax time to wait for a replication controller to update before giving up. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
    update-period1m0sTime to wait between updating pods. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    rollout

    -
    -

    Rollback to the previous deployment

    -
    -
    kubectl rollout undo deployment/abc
    -
    -

    Manage a deployment using subcommands like "kubectl rollout undo deployment/abc"

    -

    Usage

    -

    $ rollout SUBCOMMAND

    -
    -

    history

    -
    -

    View the rollout history of a deployment

    -
    -
    kubectl rollout history deployment/abc
    -
    -
    -

    View the details of deployment revision 3

    -
    -
    kubectl rollout history deployment/abc --revision=3
    -
    -

    View previous rollout revisions and configurations.

    -

    Usage

    -

    $ history (TYPE NAME | TYPE/NAME) [flags]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    revision0See the details, including podTemplate of the revision specified
    -
    -

    pause

    -
    -

    Mark the nginx deployment as paused. Any current state of # the deployment will continue its function, new updates to the deployment will not # have an effect as long as the deployment is paused.

    -
    -
    kubectl rollout pause deployment/nginx
    -
    -

    Mark the provided resource as paused

    -

    Paused resources will not be reconciled by a controller. Use \"kubectl rollout resume \" to resume a paused resource. Currently only deployments support being paused.

    -

    Usage

    -

    $ pause RESOURCE

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    -
    -

    resume

    -
    -

    Resume an already paused deployment

    -
    -
    kubectl rollout resume deployment/nginx
    -
    -

    Resume a paused resource

    -

    Paused resources will not be reconciled by a controller. By resuming a resource, we allow it to be reconciled again. Currently only deployments support being resumed.

    -

    Usage

    -

    $ resume RESOURCE

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    -
    -

    status

    -
    -

    Watch the rollout status of a deployment

    -
    -
    kubectl rollout status deployment/nginx
    -
    -

    Show the status of the rollout.

    -

    By default 'rollout status' will watch the status of the latest rollout until it's done. If you don't want to wait for the rollout to finish then you can use --watch=false. Note that if a new rollout starts in-between, then 'rollout status' will continue watching the latest revision. If you want to pin to a specific revision and abort if it is rolled over by another revision, use --revision=N where N is the revision you need to watch for.

    -

    Usage

    -

    $ status (TYPE NAME | TYPE/NAME) [flags]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    revision0Pin to a specific revision for showing its status. Defaults to 0 (last revision).
    watchwtrueWatch the status of the rollout until it's done.
    -
    -

    undo

    -
    -

    Rollback to the previous deployment

    -
    -
    kubectl rollout undo deployment/abc
    -
    -
    -

    Rollback to deployment revision 3

    -
    -
    kubectl rollout undo deployment/abc --to-revision=3
    -
    -
    -

    Rollback to the previous deployment with dry-run

    -
    -
    kubectl rollout undo --dry-run=true deployment/abc
    -
    -

    Rollback to a previous rollout.

    -

    Usage

    -

    $ undo (TYPE NAME | TYPE/NAME) [flags]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    to-revision0The revision to rollback to. Default to 0 (last revision).
    -
    -

    scale

    -
    -

    Scale a replicaset named 'foo' to 3.

    -
    -
    kubectl scale --replicas=3 rs/foo
    -
    -
    -

    Scale a resource identified by type and name specified in "foo.yaml" to 3.

    -
    -
    kubectl scale --replicas=3 -f foo.yaml
    -
    -
    -

    If the deployment named mysql's current size is 2, scale mysql to 3.

    -
    -
    kubectl scale --current-replicas=2 --replicas=3 deployment/mysql
    -
    -
    -

    Scale multiple replication controllers.

    -
    -
    kubectl scale --replicas=5 rc/foo rc/bar rc/baz
    -
    -
    -

    Scale job named 'cron' to 3.

    -
    -
    kubectl scale --replicas=3 job/cron
    -
    -

    Set a new size for a Deployment, ReplicaSet, Replication Controller, or Job.

    -

    Scale also allows users to specify one or more preconditions for the scale action.

    -

    If --current-replicas or --resource-version is specified, it is validated before the scale is attempted, and it is guaranteed that the precondition holds true when the scale is sent to the server.

    -

    Usage

    -

    $ scale [--resource-version=version] [--current-replicas=count] --replicas=COUNT (-f FILENAME | TYPE NAME)

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    current-replicas-1Precondition for current size. Requires that the current size of the resource match this value in order to scale.
    filenamef[]Filename, directory, or URL to files identifying the resource to set a new size
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    outputoOutput mode. Use "-o name" for shorter output (resource/name).
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    replicas-1The new desired number of replicas. Required.
    resource-versionPrecondition for resource version. Requires that the current resource version match this value in order to scale.
    timeout0sThe length of time to wait before giving up on a scale operation, zero means don't wait. Any other values should contain a corresponding time unit (e.g. 1s, 2m, 3h).
    -
    -

    set

    -

    Configure application resources

    -

    These commands help you make changes to existing application resources.

    -

    Usage

    -

    $ set SUBCOMMAND

    -
    -

    image

    -
    -

    Set a deployment's nginx container image to 'nginx:1.9.1', and its busybox container image to 'busybox'.

    -
    -
    kubectl set image deployment/nginx busybox=busybox nginx=nginx:1.9.1
    -
    -
    -

    Update all deployments' and rc's nginx container's image to 'nginx:1.9.1'

    -
    -
    kubectl set image deployments,rc nginx=nginx:1.9.1 --all
    -
    -
    -

    Update image of all containers of daemonset abc to 'nginx:1.9.1'

    -
    -
    kubectl set image daemonset abc *=nginx:1.9.1
    -
    -
    -

    Print result (in yaml format) of updating nginx container image from local file, without hitting the server

    -
    -
    kubectl set image -f path/to/file.yaml nginx=nginx:1.9.1 --local -o yaml
    -
    -

    Update existing container image(s) of resources.

    -

    Possible resources include (case insensitive):

    -

    pod (po), replicationcontroller (rc), deployment (deploy), daemonset (ds), job, replicaset (rs)

    -

    Usage

    -

    $ image (-f FILENAME | TYPE NAME) CONTAINER_NAME_1=CONTAINER_IMAGE_1 ... CONTAINER_NAME_N=CONTAINER_IMAGE_N

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalseselect all resources in the namespace of the specified resource types
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    localfalseIf true, set image will NOT contact api-server but run locally.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    -
    -

    resources

    -
    -

    Set a deployments nginx container cpu limits to "200m" and memory to "512Mi"

    -
    -
    kubectl set resources deployment nginx -c=nginx --limits=cpu=200m,memory=512Mi
    -
    -
    -

    Set the resource request and limits for all containers in nginx

    -
    -
    kubectl set resources deployment nginx --limits=cpu=200m,memory=512Mi --requests=cpu=100m,memory=256Mi
    -
    -
    -

    Remove the resource requests for resources on containers in nginx

    -
    -
    kubectl set resources deployment nginx --limits=cpu=0,memory=0 --requests=cpu=0,memory=0
    -
    -
    -

    Print the result (in yaml format) of updating nginx container limits from a local, without hitting the server

    -
    -
    kubectl set resources -f path/to/file.yaml --limits=cpu=200m,memory=512Mi --local -o yaml
    -
    -

    Specify compute resource requirements (cpu, memory) for any resource that defines a pod template. If a pod is successfully scheduled, it is guaranteed the amount of resource requested, but may burst up to its specified limits.

    -

    for each compute resource, if a limit is specified and a request is omitted, the request will default to the limit.

    -

    Possible resources include (case insensitive): replicationcontroller, deployment, daemonset, job, replicaset.

    -

    Usage

    -

    $ resources (-f FILENAME | TYPE NAME) ([--limits=LIMITS & --requests=REQUESTS]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalseselect all resources in the namespace of the specified resource types
    containersc*The names of containers in the selected pod templates to change, all containers are selected by default - may use wildcards
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename, directory, or URL to files identifying the resource to get from a server.
    limitsThe resource requirement requests for this container. For example, 'cpu=100m,memory=256Mi'. Note that server side components may assign requests depending on the server configuration, such as limit ranges.
    localfalseIf true, set resources will NOT contact api-server but run locally.
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    requestsThe resource requirement requests for this container. For example, 'cpu=100m,memory=256Mi'. Note that server side components may assign requests depending on the server configuration, such as limit ranges.
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    -

    DECLARATIVE APP MANAGEMENT

    -
    -

    apply

    -
    -

    Apply the configuration in pod.json to a pod.

    -
    -
    kubectl apply -f ./pod.json
    -
    -
    -

    Apply the JSON passed into stdin to a pod.

    -
    -
    cat pod.json | kubectl apply -f -
    -
    -
    -

    Note: --prune is still in Alpha # Apply the configuration in manifest.yaml that matches label app=nginx and delete all the other resources that are not in the file and match label app=nginx.

    -
    -
    kubectl apply --prune -f manifest.yaml -l app=nginx
    -
    -
    -

    Apply the configuration in manifest.yaml and delete all the other configmaps that are not in the file.

    -
    -
    kubectl apply --prune -f manifest.yaml --all --prune-whitelist=core/v1/ConfigMap
    -
    -

    Apply a configuration to a resource by filename or stdin. The resource name must be specified. This resource will be created if it doesn't exist yet. To use 'apply', always create the resource initially with either 'apply' or 'create --save-config'.

    -

    JSON and YAML formats are accepted.

    -

    Alpha Disclaimer: the --prune functionality is not yet complete. Do not use unless you are aware of what the current state is. See https://issues.k8s.io/34274.

    -

    Usage

    -

    $ apply -f FILENAME

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalse[-all] to select all the specified resources.
    cascadetrueOnly relevant during a prune or a force apply. If true, cascade the deletion of the resources managed by pruned or deleted resources (e.g. Pods created by a ReplicationController).
    dry-runfalseIf true, only print the object that would be sent, without sending it.
    filenamef[]Filename, directory, or URL to files that contains the configuration to apply
    forcefalseDelete and re-create the specified resource, when PATCH encounters conflict and has retried for 5 times.
    grace-period-1Only relevant during a prune or a force apply. Period of time in seconds given to pruned or deleted resources to terminate gracefully. Ignored if negative.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    overwritetrueAutomatically resolve conflicts between the modified and live configuration by using values from the modified configuration
    prunefalseAutomatically delete resource objects that do not appear in the configs and are created by either apply or create --save-config. Should be used with either -l or --all.
    prune-whitelist[]Overwrite the default whitelist with for --prune
    recordfalseRecord current kubectl command in the resource annotation. If set to false, do not record the command. If set to true, record the command. If not set, default to updating the existing annotation value only if one already exists.
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    timeout0sOnly relevant during a force apply. The length of time to wait before giving up on a delete of the old resource, zero means determine a timeout from the size of the object. Any other values should contain a corresponding time unit (e.g. 1s, 2m, 3h).
    validatetrueIf true, use a schema to validate the input before sending it
    -

    WORKING WITH APPS

    -

    This section contains commands for inspecting and debugging your -applications.

    -
      -
    • logs will print the logs from the specified pod + container.
    • -
    • exec can be used to get an interactive shell on a pod + container.
    • -
    • describe will print debug information about the given resource.
    • -
    -
    -

    attach

    -
    -

    Get output from running pod 123456-7890, using the first container by default

    -
    -
    kubectl attach 123456-7890
    -
    -
    -

    Get output from ruby-container from pod 123456-7890

    -
    -
    kubectl attach 123456-7890 -c ruby-container
    -
    -
    -

    Switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-7890 # and sends stdout/stderr from 'bash' back to the client

    -
    -
    kubectl attach 123456-7890 -c ruby-container -i -t
    -
    -

    Attach to a process that is already running inside an existing container.

    -

    Usage

    -

    $ attach POD -c CONTAINER

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    containercContainer name. If omitted, the first container in the pod will be chosen
    stdinifalsePass stdin to the container
    ttytfalseStdin is a TTY
    -
    -

    cp

    -
    -

    !!!Important Note!!! # Requires that the 'tar' binary is present in your container # image. If 'tar' is not present, 'kubectl cp' will fail. # Copy /tmp/foo_dir local directory to /tmp/bar_dir in a remote pod in the default namespace

    -
    -
    kubectl cp /tmp/foo_dir <some-pod>:/tmp/bar_dir
    -
    -
    -

    Copy /tmp/foo local file to /tmp/bar in a remote pod in a specific container

    -
    -
    kubectl cp /tmp/foo <some-pod>:/tmp/bar -c <specific-container>
    -
    -
    -

    Copy /tmp/foo local file to /tmp/bar in a remote pod in namespace

    -
    -
    kubectl cp /tmp/foo <some-namespace>/<some-pod>:/tmp/bar
    -
    -
    -

    Copy /tmp/foo from a remote pod to /tmp/bar locally

    -
    -
    kubectl cp <some-namespace>/<some-pod>:/tmp/foo /tmp/bar
    -
    -

    Copy files and directories to and from containers.

    -

    Usage

    -

    $ cp <file-spec-src> <file-spec-dest>

    -

    Flags

    - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    containercContainer name. If omitted, the first container in the pod will be chosen
    -
    -

    describe

    -
    -

    Describe a node

    -
    -
    kubectl describe nodes kubernetes-node-emt8.c.myproject.internal
    -
    -
    -

    Describe a pod

    -
    -
    kubectl describe pods/nginx
    -
    -
    -

    Describe a pod identified by type and name in "pod.json"

    -
    -
    kubectl describe -f pod.json
    -
    -
    -

    Describe all pods

    -
    -
    kubectl describe pods
    -
    -
    -

    Describe pods by label name=myLabel

    -
    -
    kubectl describe po -l name=myLabel
    -
    -
    -

    Describe all pods managed by the 'frontend' replication controller (rc-created pods # get the name of the rc as a prefix in the pod the name).

    -
    -
    kubectl describe pods frontend
    -
    -

    Show details of a specific resource or group of resources. This command joins many API calls together to form a detailed description of a given resource or group of resources.

    -

    $ kubectl describe TYPE NAME_PREFIX

    -

    will first check for an exact match on TYPE and NAME PREFIX. If no such resource exists, it will output details for every resource that has a name prefixed with NAME PREFIX.

    -

    Valid resource types include:

    -
      -
    • clusters (valid only for federation apiservers)
    • -
    • componentstatuses (aka 'cs')
    • -
    • configmaps (aka 'cm')
    • -
    • daemonsets (aka 'ds')
    • -
    • deployments (aka 'deploy')
    • -
    • endpoints (aka 'ep')
    • -
    • events (aka 'ev')
    • -
    • horizontalpodautoscalers (aka 'hpa')
    • -
    • ingresses (aka 'ing')
    • -
    • jobs
    • -
    • limitranges (aka 'limits')
    • -
    • namespaces (aka 'ns')
    • -
    • networkpolicies
    • -
    • nodes (aka 'no')
    • -
    • persistentvolumeclaims (aka 'pvc')
    • -
    • persistentvolumes (aka 'pv')
    • -
    • pods (aka 'po')
    • -
    • podsecuritypolicies (aka 'psp')
    • -
    • podtemplates
    • -
    • replicasets (aka 'rs')
    • -
    • replicationcontrollers (aka 'rc')
    • -
    • resourcequotas (aka 'quota')
    • -
    • secrets
    • -
    • serviceaccounts (aka 'sa')
    • -
    • services (aka 'svc')
    • -
    • statefulsets
    • -
    • storageclasses
    • -
    • thirdpartyresources
    • -
    -

    Usage

    -

    $ describe (-f FILENAME | TYPE [NAME_PREFIX | -l label] | TYPE/NAME)

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    all-namespacesfalseIf present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace.
    filenamef[]Filename, directory, or URL to files containing the resource to describe
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    selectorlSelector (label query) to filter on
    show-eventstrueIf true, display events related to the described object.
    -
    -

    exec

    -
    -

    Get output from running 'date' from pod 123456-7890, using the first container by default

    -
    -
    kubectl exec 123456-7890 date
    -
    -
    -

    Get output from running 'date' in ruby-container from pod 123456-7890

    -
    -
    kubectl exec 123456-7890 -c ruby-container date
    -
    -
    -

    Switch to raw terminal mode, sends stdin to 'bash' in ruby-container from pod 123456-7890 # and sends stdout/stderr from 'bash' back to the client

    -
    -
    kubectl exec 123456-7890 -c ruby-container -i -t -- bash -il
    -
    -

    Execute a command in a container.

    -

    Usage

    -

    $ exec POD [-c CONTAINER] -- COMMAND [args...]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    containercContainer name. If omitted, the first container in the pod will be chosen
    podpPod name
    stdinifalsePass stdin to the container
    ttytfalseStdin is a TTY
    -
    -

    logs

    -
    -

    Return snapshot logs from pod nginx with only one container

    -
    -
    kubectl logs nginx
    -
    -
    -

    Return snapshot of previous terminated ruby container logs from pod web-1

    -
    -
    kubectl logs -p -c ruby web-1
    -
    -
    -

    Begin streaming the logs of the ruby container in pod web-1

    -
    -
    kubectl logs -f -c ruby web-1
    -
    -
    -

    Display only the most recent 20 lines of output in pod nginx

    -
    -
    kubectl logs --tail=20 nginx
    -
    -
    -

    Show all logs from pod nginx written in the last hour

    -
    -
    kubectl logs --since=1h nginx
    -
    -

    Print the logs for a container in a pod. If the pod has only one container, the container name is optional.

    -

    Usage

    -

    $ logs [-f] [-p] POD [-c CONTAINER]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    containercPrint the logs of this container
    followffalseSpecify if the logs should be streamed.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    interactivefalseIf true, prompt the user for input when required.
    limit-bytes0Maximum bytes of logs to return. Defaults to no limit.
    previouspfalseIf true, print the logs for the previous instance of the container in a pod if it exists.
    since0sOnly return logs newer than a relative duration like 5s, 2m, or 3h. Defaults to all logs. Only one of since-time / since may be used.
    since-timeOnly return logs after a specific date (RFC3339). Defaults to all logs. Only one of since-time / since may be used.
    tail-1Lines of recent log file to display. Defaults to -1, showing all log lines.
    timestampsfalseInclude timestamps on each line in the log output
    -
    -

    port-forward

    -
    -

    Listen on ports 5000 and 6000 locally, forwarding data to/from ports 5000 and 6000 in the pod

    -
    -
    kubectl port-forward mypod 5000 6000
    -
    -
    -

    Listen on port 8888 locally, forwarding to 5000 in the pod

    -
    -
    kubectl port-forward mypod 8888:5000
    -
    -
    -

    Listen on a random port locally, forwarding to 5000 in the pod

    -
    -
    kubectl port-forward mypod :5000
    -
    -
    -

    Listen on a random port locally, forwarding to 5000 in the pod

    -
    -
    kubectl port-forward  mypod 0:5000
    -
    -

    Forward one or more local ports to a pod.

    -

    Usage

    -

    $ port-forward POD [LOCAL_PORT:]REMOTE_PORT [...[LOCAL_PORT_N:]REMOTE_PORT_N]

    -

    Flags

    - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    podpPod name
    -
    -

    proxy

    -
    -

    Run a proxy to kubernetes apiserver on port 8011, serving static content from ./local/www/

    -
    -
    kubectl proxy --port=8011 --www=./local/www/
    -
    -
    -

    Run a proxy to kubernetes apiserver on an arbitrary local port. # The chosen port for the server will be output to stdout.

    -
    -
    kubectl proxy --port=0
    -
    -
    -

    Run a proxy to kubernetes apiserver, changing the api prefix to k8s-api # This makes e.g. the pods api available at localhost:8011/k8s-api/v1/pods/

    -
    -
    kubectl proxy --api-prefix=/k8s-api
    -
    -

    To proxy all of the kubernetes api and nothing else, use:

    -

    $ kubectl proxy --api-prefix=/

    -

    To proxy only part of the kubernetes api and also some static files:

    -

    $ kubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/

    -

    The above lets you 'curl localhost:8001/api/v1/pods'.

    -

    To proxy the entire kubernetes api at a different root, use:

    -

    $ kubectl proxy --api-prefix=/custom/

    -

    The above lets you 'curl localhost:8001/custom/api/v1/pods'

    -

    Usage

    -

    $ proxy [--port=PORT] [--www=static-dir] [--www-prefix=prefix] [--api-prefix=prefix]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    accept-hosts^localhost$,^127.0.0.1$,^[::1]$Regular expression for hosts that the proxy should accept.
    accept-paths^/.*Regular expression for paths that the proxy should accept.
    address127.0.0.1The IP address on which to serve on.
    api-prefix/Prefix to serve the proxied API under.
    disable-filterfalseIf true, disable request filtering in the proxy. This is dangerous, and can leave you vulnerable to XSRF attacks, when used with an accessible port.
    portp8001The port on which to run the proxy. Set to 0 to pick a random port.
    reject-methodsPOST,PUT,PATCHRegular expression for HTTP methods that the proxy should reject.
    reject-paths^/api/./pods/./exec,^/api/./pods/./attachRegular expression for paths that the proxy should reject.
    unix-socketuUnix socket on which to run the proxy.
    wwwwAlso serve static files from the given directory under the specified prefix.
    www-prefixP/static/Prefix to serve static files under, if static file directory is specified.
    -
    -

    top

    -

    Display Resource (CPU/Memory/Storage) usage.

    -

    The top command allows you to see the resource consumption for nodes or pods.

    -

    Usage

    -

    $ top

    -
    -

    node

    -
    -

    Show metrics for all nodes

    -
    -
    kubectl top node
    -
    -
    -

    Show metrics for a given node

    -
    -
    kubectl top node NODE_NAME
    -
    -

    Display Resource (CPU/Memory/Storage) usage of nodes.

    -

    The top-node command allows you to see the resource consumption of nodes.

    -

    Usage

    -

    $ node [NAME | -l label]

    -

    Flags

    - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    selectorlSelector (label query) to filter on
    -
    -

    pod

    -
    -

    Show metrics for all pods in the default namespace

    -
    -
    kubectl top pod
    -
    -
    -

    Show metrics for all pods in the given namespace

    -
    -
    kubectl top pod --namespace=NAMESPACE
    -
    -
    -

    Show metrics for a given pod and its containers

    -
    -
    kubectl top pod POD_NAME --containers
    -
    -
    -

    Show metrics for the pods defined by label name=myLabel

    -
    -
    kubectl top pod -l name=myLabel
    -
    -

    Display Resource (CPU/Memory/Storage) usage of pods.

    -

    The 'top pod' command allows you to see the resource consumption of pods.

    -

    Due to the metrics pipeline delay, they may be unavailable for a few minutes since pod creation.

    -

    Usage

    -

    $ pod [NAME | -l label]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    all-namespacesfalseIf present, list the requested object(s) across all namespaces. Namespace in current context is ignored even if specified with --namespace.
    containersfalseIf present, print usage of containers within a pod.
    selectorlSelector (label query) to filter on
    -

    CLUSTER MANAGEMENT

    -
    -

    api-versions

    -

    Usage

    -

    $ api-versions

    -
    -

    certificate

    -

    Usage

    -

    $ certificate SUBCOMMAND

    -
    -

    approve

    -

    Approve a certificate signing request.

    -

    kubectl certificate approve allows a cluster admin to approve a certificate signing request (CSR). This action tells a certificate signing controller to issue a certificate to the requestor with the attributes requested in the CSR.

    -

    SECURITY NOTICE: Depending on the requested attributes, the issued certificate can potentially grant a requester access to cluster resources or to authenticate as a requested identity. Before approving a CSR, ensure you understand what the signed certificate can do.

    -

    Usage

    -

    $ approve (-f FILENAME | NAME)

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to update
    outputoOutput mode. Use "-o name" for shorter output (resource/name).
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    -
    -

    deny

    -

    Deny a certificate signing request.

    -

    kubectl certificate deny allows a cluster admin to deny a certificate signing request (CSR). This action tells a certificate signing controller to not to issue a certificate to the requestor.

    -

    Usage

    -

    $ deny (-f FILENAME | NAME)

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    filenamef[]Filename, directory, or URL to files identifying the resource to update
    outputoOutput mode. Use "-o name" for shorter output (resource/name).
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    -
    -

    cluster-info

    -

    Display addresses of the master and services with label kubernetes.io/cluster-service=true To further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.

    -

    Usage

    -

    $ cluster-info

    -

    Flags

    - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    -
    -

    dump

    -
    -

    Dump current cluster state to stdout

    -
    -
    kubectl cluster-info dump
    -
    -
    -

    Dump current cluster state to /path/to/cluster-state

    -
    -
    kubectl cluster-info dump --output-directory=/path/to/cluster-state
    -
    -
    -

    Dump all namespaces to stdout

    -
    -
    kubectl cluster-info dump --all-namespaces
    -
    -
    -

    Dump a set of namespaces to /path/to/cluster-state

    -
    -
    kubectl cluster-info dump --namespaces default,kube-system --output-directory=/path/to/cluster-state
    -
    -

    Dumps cluster info out suitable for debugging and diagnosing cluster problems. By default, dumps everything to stdout. You can optionally specify a directory with --output-directory. If you specify a directory, kubernetes will build a set of files in that directory. By default only dumps things in the 'kube-system' namespace, but you can switch to a different namespace with the --namespaces flag, or specify --all-namespaces to dump all namespaces.

    -

    The command also dumps the logs of all of the pods in the cluster, these logs are dumped into different directories based on namespace and pod name.

    -

    Usage

    -

    $ dump

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    all-namespacesfalseIf true, dump all namespaces. If true, --namespaces is ignored.
    namespaces[]A comma separated list of namespaces to dump.
    output-directoryWhere to output the files. If empty or '-' uses stdout, otherwise creates a directory hierarchy in that directory
    -
    -

    cordon

    -
    -

    Mark node "foo" as unschedulable.

    -
    -
    kubectl cordon foo
    -
    -

    Mark node as unschedulable.

    -

    Usage

    -

    $ cordon NODE

    -
    -

    drain

    -
    -

    Drain node "foo", even if there are pods not managed by a ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet on it.

    -
    -
    $ kubectl drain foo --force
    -
    -
    -

    As above, but abort if there are pods not managed by a ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet, and use a grace period of 15 minutes.

    -
    -
    $ kubectl drain foo --grace-period=900
    -
    -

    Drain node in preparation for maintenance.

    -

    The given node will be marked unschedulable to prevent new pods from arriving. 'drain' evicts the pods if the APIServer supports eviciton (http://kubernetes.io/docs/admin/disruptions/). Otherwise, it will use normal DELETE to delete the pods. The 'drain' evicts or deletes all pods except mirror pods (which cannot be deleted through the API server). If there are DaemonSet-managed pods, drain will not proceed without --ignore-daemonsets, and regardless it will not delete any DaemonSet-managed pods, because those pods would be immediately replaced by the DaemonSet controller, which ignores unschedulable markings. If there are any pods that are neither mirror pods nor managed by ReplicationController, ReplicaSet, DaemonSet, StatefulSet or Job, then drain will not delete any pods unless you use --force.

    -

    'drain' waits for graceful termination. You should not operate on the machine until the command completes.

    -

    When you are ready to put the node back into service, use kubectl uncordon, which will make the node schedulable again.

    -

    ! http://kubernetes.io/images/docs/kubectl_drain.svg

    -

    Usage

    -

    $ drain NODE

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    delete-local-datafalseContinue even if there are pods using emptyDir (local data that will be deleted when the node is drained).
    forcefalseContinue even if there are pods not managed by a ReplicationController, ReplicaSet, Job, DaemonSet or StatefulSet.
    grace-period-1Period of time in seconds given to each pod to terminate gracefully. If negative, the default value specified in the pod will be used.
    ignore-daemonsetsfalseIgnore DaemonSet-managed pods.
    timeout0sThe length of time to wait before giving up, zero means infinite
    -
    -

    taint

    -
    -

    Update node 'foo' with a taint with key 'dedicated' and value 'special-user' and effect 'NoSchedule'. # If a taint with that key and effect already exists, its value is replaced as specified.

    -
    -
    kubectl taint nodes foo dedicated=special-user:NoSchedule
    -
    -
    -

    Remove from node 'foo' the taint with key 'dedicated' and effect 'NoSchedule' if one exists.

    -
    -
    kubectl taint nodes foo dedicated:NoSchedule-
    -
    -
    -

    Remove from node 'foo' all the taints with key 'dedicated'

    -
    -
    kubectl taint nodes foo dedicated-
    -
    -

    Update the taints on one or more nodes.

    -
      -
    • A taint consists of a key, value, and effect. As an argument here, it is expressed as key=value:effect.
    • -
    • The key must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to 253 characters.
    • -
    • The value must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to 253 characters.
    • -
    • The effect must be NoSchedule or PreferNoSchedule.
    • -
    • Currently taint can only apply to node.
    • -
    -

    Usage

    -

    $ taint NODE NAME KEY_1=VAL_1:TAINT_EFFECT_1 ... KEY_N=VAL_N:TAINT_EFFECT_N

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalseselect all nodes in the cluster
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    overwritefalseIf true, allow taints to be overwritten, otherwise reject taint updates that overwrite existing taints.
    schema-cache-dir~/.kube/schemaIf non-empty, load/store cached API schemas in this directory, default is '$HOME/.kube/schema'
    selectorlSelector (label query) to filter on
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    validatetrueIf true, use a schema to validate the input before sending it
    -
    -

    uncordon

    -
    -

    Mark node "foo" as schedulable.

    -
    -
    $ kubectl uncordon foo
    -
    -

    Mark node as schedulable.

    -

    Usage

    -

    $ uncordon NODE

    -

    KUBECTL SETTINGS AND USAGE

    -
    -

    completion

    -

    Output shell completion code for the given shell (bash or zsh).

    -

    This command prints shell code which must be evaluation to provide interactive completion of kubectl commands.

    -

    $ source <(kubectl completion bash)

    -

    will load the kubectl completion code for bash. Note that this depends on the bash-completion framework. It must be sourced before sourcing the kubectl completion, e.g. on the Mac:

    -

    $ brew install bash-completion - $ source $(brew --prefix)/etc/bash_completion - $ source <(kubectl completion bash)

    -

    If you use zsh [1], the following will load kubectl zsh completion:

    -

    $ source <(kubectl completion zsh)

    -

    [1] zsh completions are only supported in versions of zsh >= 5.2

    -

    Usage

    -

    $ completion SHELL

    -
    -

    config

    -

    Modify kubeconfig files using subcommands like "kubectl config set current-context my-context"

    -

    The loading order follows these rules:

    -
      -
    1. If the --kubeconfig flag is set, then only that file is loaded. The flag may only be set once and no merging takes place.
    2. -
    3. If $KUBECONFIG environment variable is set, then it is used a list of paths (normal path delimitting rules for your system). These paths are merged. When a value is modified, it is modified in the file that defines the stanza. When a value is created, it is created in the first file that exists. If no files in the chain exist, then it creates the last file in the list.
    4. -
    5. Otherwise, ${HOME}/.kube/config is used and no merging takes place.
    6. -
    -

    Usage

    -

    $ config SUBCOMMAND

    -

    Flags

    - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    kubeconfiguse a particular kubeconfig file
    -
    -

    current-context

    -
    -

    Display the current-context

    -
    -
    kubectl config current-context
    -
    -

    Displays the current-context

    -

    Usage

    -

    $ current-context

    -
    -

    delete-cluster

    -

    Usage

    -

    $ delete-cluster NAME

    -
    -

    delete-context

    -

    Usage

    -

    $ delete-context NAME

    -
    -

    get-clusters

    -

    Usage

    -

    $ get-clusters

    -
    -

    get-contexts

    -
    -

    List all the contexts in your kubeconfig file

    -
    -
    kubectl config get-contexts
    -
    -
    -

    Describe one context in your kubeconfig file.

    -
    -
    kubectl config get-contexts my-context
    -
    -

    Displays one or many contexts from the kubeconfig file.

    -

    Usage

    -

    $ get-contexts [(-o|--output=)name)]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    -
    -

    set

    -

    Sets an individual value in a kubeconfig file

    -

    PROPERTY _NAME is a dot delimited name where each token represents either an attribute name or a map key. Map keys may not contain dots.

    -

    PROPERTY _VALUE is the new value you wish to set. Binary fields such as 'certificate-authority-data' expect a base64 encoded string unless the --set-raw-bytes flag is used.

    -

    Usage

    -

    $ set PROPERTY_NAME PROPERTY_VALUE

    -

    Flags

    - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    set-raw-bytesfalseWhen writing a []byte PROPERTY_VALUE, write the given string directly without base64 decoding.
    -
    -

    set-cluster

    -
    -

    Set only the server field on the e2e cluster entry without touching other values.

    -
    -
    kubectl config set-cluster e2e --server=https://1.2.3.4
    -
    -
    -

    Embed certificate authority data for the e2e cluster entry

    -
    -
    kubectl config set-cluster e2e --certificate-authority=~/.kube/e2e/kubernetes.ca.crt
    -
    -
    -

    Disable cert checking for the dev cluster entry

    -
    -
    kubectl config set-cluster e2e --insecure-skip-tls-verify=true
    -
    -

    Sets a cluster entry in kubeconfig.

    -

    Specifying a name that already exists will merge new fields on top of existing values for those fields.

    -

    Usage

    -

    $ set-cluster NAME [--server=server] [--certificate-authority=path/to/certificate/authority] [--insecure-skip-tls-verify=true]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    api-versionapi-version for the cluster entry in kubeconfig
    certificate-authoritypath to certificate-authority file for the cluster entry in kubeconfig
    embed-certsfalseembed-certs for the cluster entry in kubeconfig
    insecure-skip-tls-verifyfalseinsecure-skip-tls-verify for the cluster entry in kubeconfig
    serverserver for the cluster entry in kubeconfig
    -
    -

    set-context

    -
    -

    Set the user field on the gce context entry without touching other values

    -
    -
    kubectl config set-context gce --user=cluster-admin
    -
    -

    Sets a context entry in kubeconfig

    -

    Specifying a name that already exists will merge new fields on top of existing values for those fields.

    -

    Usage

    -

    $ set-context NAME [--cluster=cluster_nickname] [--user=user_nickname] [--namespace=namespace]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    clustercluster for the context entry in kubeconfig
    namespacenamespace for the context entry in kubeconfig
    useruser for the context entry in kubeconfig
    -
    -

    set-credentials

    -
    -

    Set only the "client-key" field on the "cluster-admin" # entry, without touching other values:

    -
    -
    kubectl config set-credentials cluster-admin --client-key=~/.kube/admin.key
    -
    -
    -

    Set basic auth for the "cluster-admin" entry

    -
    -
    kubectl config set-credentials cluster-admin --username=admin --password=uXFGweU9l35qcif
    -
    -
    -

    Embed client certificate data in the "cluster-admin" entry

    -
    -
    kubectl config set-credentials cluster-admin --client-certificate=~/.kube/admin.crt --embed-certs=true
    -
    -
    -

    Enable the Google Compute Platform auth provider for the "cluster-admin" entry

    -
    -
    kubectl config set-credentials cluster-admin --auth-provider=gcp
    -
    -
    -

    Enable the OpenID Connect auth provider for the "cluster-admin" entry with additional args

    -
    -
    kubectl config set-credentials cluster-admin --auth-provider=oidc --auth-provider-arg=client-id=foo --auth-provider-arg=client-secret=bar
    -
    -
    -

    Remove the "client-secret" config value for the OpenID Connect auth provider for the "cluster-admin" entry

    -
    -
    kubectl config set-credentials cluster-admin --auth-provider=oidc --auth-provider-arg=client-secret-
    -
    -

    Sets a user entry in kubeconfig

    -

    Specifying a name that already exists will merge new fields on top of existing values.

    -

    Client-certificate flags: - --client-certificate=certfile --client-key=keyfile

    -

    Bearer token flags: - --token=bearer_token

    -

    Basic auth flags: - --username=basic_user --password=basic_password

    -

    Bearer token and basic auth are mutually exclusive.

    -

    Usage

    -

    $ set-credentials NAME [--client-certificate=path/to/certfile] [--client-key=path/to/keyfile] [--token=bearer_token] [--username=basic_user] [--password=basic_password] [--auth-provider=provider_name] [--auth-provider-arg=key=value]

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    auth-providerauth provider for the user entry in kubeconfig
    auth-provider-arg[]'key=value' arugments for the auth provider
    client-certificatepath to client-certificate file for the user entry in kubeconfig
    client-keypath to client-key file for the user entry in kubeconfig
    embed-certsfalseembed client cert/key for the user entry in kubeconfig
    passwordpassword for the user entry in kubeconfig
    tokentoken for the user entry in kubeconfig
    usernameusername for the user entry in kubeconfig
    -
    -

    unset

    -

    Unsets an individual value in a kubeconfig file

    -

    PROPERTY _NAME is a dot delimited name where each token represents either an attribute name or a map key. Map keys may not contain dots.

    -

    Usage

    -

    $ unset PROPERTY_NAME

    -
    -

    use-context

    -

    Sets the current-context in a kubeconfig file

    -

    Usage

    -

    $ use-context CONTEXT_NAME

    -
    -

    view

    -
    -

    Show Merged kubeconfig settings.

    -
    -
    kubectl config view
    -
    -
    -

    Get the password for the e2e user

    -
    -
    kubectl config view -o jsonpath='{.users[?(@.name == "e2e")].user.password}'
    -
    -

    Display merged kubeconfig settings or a specified kubeconfig file.

    -

    You can use --output jsonpath={...} to extract specific values using a jsonpath expression.

    -

    Usage

    -

    $ view

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    flattenfalseflatten the resulting kubeconfig file into self-contained output (useful for creating portable kubeconfig files)
    mergetruemerge the full hierarchy of kubeconfig files
    minifyfalseremove all information not used by current-context from the output
    no-headersfalseWhen using the default or custom-column output format, don't print headers.
    outputoOutput format. One of: json|yaml|wide|name|custom-columns=...|custom-columns-file=...|go-template=...|go-template-file=...|jsonpath=...|jsonpath-file=... See custom columns [http://kubernetes.io/docs/user-guide/kubectl-overview/#custom-columns], golang template [http://golang.org/pkg/text/template/#pkg-overview] and jsonpath template [http://kubernetes.io/docs/user-guide/jsonpath].
    output-versionOutput the formatted object with the given group version (for ex: 'extensions/v1beta1').
    rawfalsedisplay raw byte data
    show-allafalseWhen printing, show all resources (default hide terminated pods.)
    show-labelsfalseWhen printing, show all labels as the last column (default hide labels column)
    sort-byIf non-empty, sort list types using this field specification. The field specification is expressed as a JSONPath expression (e.g. '{.metadata.name}'). The field in the API resource specified by this JSONPath expression must be an integer or a string.
    templateTemplate string or path to template file to use when -o=go-template, -o=go-template-file. The template format is golang templates [http://golang.org/pkg/text/template/#pkg-overview].
    -
    -

    explain

    -
    -

    Get the documentation of the resource and its fields

    -
    -
    kubectl explain pods
    -
    -
    -

    Get the documentation of a specific field of a resource

    -
    -
    kubectl explain pods.spec.containers
    -
    -

    Documentation of resources.

    -

    Valid resource types include:

    -
      -
    • clusters (valid only for federation apiservers)
    • -
    • componentstatuses (aka 'cs')
    • -
    • configmaps (aka 'cm')
    • -
    • daemonsets (aka 'ds')
    • -
    • deployments (aka 'deploy')
    • -
    • endpoints (aka 'ep')
    • -
    • events (aka 'ev')
    • -
    • horizontalpodautoscalers (aka 'hpa')
    • -
    • ingresses (aka 'ing')
    • -
    • jobs
    • -
    • limitranges (aka 'limits')
    • -
    • namespaces (aka 'ns')
    • -
    • networkpolicies
    • -
    • nodes (aka 'no')
    • -
    • persistentvolumeclaims (aka 'pvc')
    • -
    • persistentvolumes (aka 'pv')
    • -
    • pods (aka 'po')
    • -
    • podsecuritypolicies (aka 'psp')
    • -
    • podtemplates
    • -
    • replicasets (aka 'rs')
    • -
    • replicationcontrollers (aka 'rc')
    • -
    • resourcequotas (aka 'quota')
    • -
    • secrets
    • -
    • serviceaccounts (aka 'sa')
    • -
    • services (aka 'svc')
    • -
    • statefulsets
    • -
    • storageclasses
    • -
    • thirdpartyresources
    • -
    -

    Usage

    -

    $ explain RESOURCE

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    recursivefalsePrint the fields of fields (Currently only 1 level deep)
    -
    -

    options

    -

    Usage

    -

    $ options

    -
    -

    version

    -

    Usage

    -

    $ version

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    clientcfalseClient version only (no server required).
    shortfalsePrint just the version number.
    -

    DEPRECATED COMMANDS

    -
    -

    stop

    -
    -

    Shut down foo.

    -
    -
    kubectl stop replicationcontroller foo
    -
    -
    -

    Stop pods and services with label name=myLabel.

    -
    -
    kubectl stop pods,services -l name=myLabel
    -
    -
    -

    Shut down the service defined in service.json

    -
    -
    kubectl stop -f service.json
    -
    -
    -

    Shut down all resources in the path/to/resources directory

    -
    -
    kubectl stop -f path/to/resources
    -
    -

    Deprecated: This command is deprecated, all its functionalities are covered by "kubectl delete"

    -

    Usage

    -

    $ stop (-f FILENAME | TYPE (NAME | -l label | --all))

    -

    Flags

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    NameShorthandDefaultUsage
    allfalse[-all] to select all the specified resources.
    filenamef[]Filename, directory, or URL to files of resource(s) to be stopped.
    grace-period-1Period of time in seconds given to the resource to terminate gracefully. Ignored if negative.
    ignore-not-foundfalseTreat "resource not found" as a successful stop.
    include-extended-apistrueIf true, include definitions of new APIs via calls to the API server. [default true]
    outputoOutput mode. Use "-o name" for shorter output (resource/name).
    recursiveRfalseProcess the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.
    selectorlSelector (label query) to filter on.
    timeout0sThe length of time to wait before giving up on a delete, zero means determine a timeout from the size of the object
    -
    -
    - - - - - - - - \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/jsconfig.json b/docs/user-guide/kubectl/v1.5/jsconfig.json deleted file mode 100644 index 8b8e742791..0000000000 --- a/docs/user-guide/kubectl/v1.5/jsconfig.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "compilerOptions": { - "target": "ES6", - "module": "commonjs" - } -} \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/markedDecorations.js b/docs/user-guide/kubectl/v1.5/markedDecorations.js deleted file mode 100644 index 9171226b7a..0000000000 --- a/docs/user-guide/kubectl/v1.5/markedDecorations.js +++ /dev/null @@ -1,101 +0,0 @@ -;(function() { - var brodocDec = {}; - - var navIds = []; - var bodyContent = ''; - var codeTabs = []; - - var idAffix = 0; - var uniqueNav = []; - - brodocDec.decorateMarked = function(renderer) { - renderer.heading = (text, level, raw) => { - var id = raw.toLowerCase().replace(/[^\w]+/g, '-'); - if ((uniqueNav.indexOf(id) !== -1) && (level === 2)) { - idAffix++; - id += '-' + idAffix; - } else { - uniqueNav.push(id); - } - if (level < 3) { - navIds.push( - { - id: id, - text: text, - level: level - } - ); - } - return '' - + text - + '\n'; - }; - - renderer.blockquote = function(quote) { - var bdregex = /(bdocs-tab:)[^\s]*/; - var bdoc = quote.match(bdregex); - if (bdoc) { - var bdocTab = bdoc[0].split(':')[1]; - var bdquote = quote.replace(bdoc[0], ''); - return '
    \n' + bdquote + '
    \n'; - } else { - return '
    \n' + quote + '
    \n'; - } - }; - - renderer.code = function (code, lang, escaped) { - var bdocGroup = lang.substring(0, lang.indexOf('_')); - var bdocTab = bdocGroup.split(':')[1]; - var hlang = lang.substring(lang.indexOf('_')+1); - - if (renderer.options.highlight) { - var out = renderer.options.highlight(code, hlang); - if (out !== null && out !== code) { - escaped = true; - code = out; - } - } - - var tabLang = hlang ? hlang : 'generic'; - if (codeTabs.indexOf(bdocTab) === -1) { - codeTabs.push(bdocTab); - } - - if (!hlang) { - return '
    '
    -                    + (escaped ? code : escape(code, true))
    -                    + '\n
    '; - } - - return '
    '
    -                + (escaped ? code : escape(code, true))
    -                + '\n
    \n'; - }; - }; - - if (typeof module !== 'undefined' && typeof exports === 'object') { - module.exports = brodocDec; - } else if (typeof define === 'function' && define.amd) { - define(function() { return brodocDec; }); - } else { - this.brodocDec = brodocDec; - } - brodocDec.navIds = navIds; - brodocDec.codeTabs = codeTabs; - return brodocDec; - -}).call(function() { - return this || (typeof window !== 'undefined' ? window : global); -}()); \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/navData.js b/docs/user-guide/kubectl/v1.5/navData.js deleted file mode 100644 index 299c0fa379..0000000000 --- a/docs/user-guide/kubectl/v1.5/navData.js +++ /dev/null @@ -1 +0,0 @@ -(function(){navData = {"toc":[{"section":"stop","subsections":[]},{"section":"-strong-deprecated-commands-strong-","subsections":[]},{"section":"version","subsections":[]},{"section":"options","subsections":[]},{"section":"explain","subsections":[]},{"section":"config","subsections":[{"section":"-em-view-em-"},{"section":"-em-use-context-em-"},{"section":"-em-unset-em-"},{"section":"-em-set-credentials-em-"},{"section":"-em-set-context-em-"},{"section":"-em-set-cluster-em-"},{"section":"-em-set-em-"},{"section":"-em-get-contexts-em-"},{"section":"-em-get-clusters-em-"},{"section":"-em-delete-context-em-"},{"section":"-em-delete-cluster-em-"},{"section":"-em-current-context-em-"}]},{"section":"completion","subsections":[]},{"section":"-strong-kubectl-settings-and-usage-strong-","subsections":[]},{"section":"uncordon","subsections":[]},{"section":"taint","subsections":[]},{"section":"drain","subsections":[]},{"section":"cordon","subsections":[]},{"section":"cluster-info","subsections":[{"section":"-em-dump-em-"}]},{"section":"certificate","subsections":[{"section":"-em-deny-em-"},{"section":"-em-approve-em-"}]},{"section":"api-versions","subsections":[]},{"section":"-strong-cluster-management-strong-","subsections":[]},{"section":"top","subsections":[{"section":"-em-pod-em-"},{"section":"-em-node-em-"}]},{"section":"proxy","subsections":[]},{"section":"port-forward","subsections":[]},{"section":"logs","subsections":[]},{"section":"exec","subsections":[]},{"section":"describe","subsections":[]},{"section":"cp","subsections":[]},{"section":"attach","subsections":[]},{"section":"-strong-working-with-apps-strong-","subsections":[]},{"section":"apply","subsections":[]},{"section":"-strong-declarative-app-management-strong-","subsections":[]},{"section":"set","subsections":[{"section":"-em-resources-em-"},{"section":"-em-image-em-"}]},{"section":"scale","subsections":[]},{"section":"rollout","subsections":[{"section":"-em-undo-em-"},{"section":"-em-status-em-"},{"section":"-em-resume-em-"},{"section":"-em-pause-em-"},{"section":"-em-history-em-"}]},{"section":"rolling-update","subsections":[]},{"section":"replace","subsections":[]},{"section":"patch","subsections":[]},{"section":"label","subsections":[]},{"section":"get","subsections":[]},{"section":"edit","subsections":[]},{"section":"delete","subsections":[]},{"section":"create","subsections":[{"section":"-em-serviceaccount-em-"},{"section":"-em-service-nodeport-em-"},{"section":"-em-service-loadbalancer-em-"},{"section":"-em-service-clusterip-em-"},{"section":"-em-service-em-"},{"section":"-em-secret-tls-em-"},{"section":"-em-secret-generic-em-"},{"section":"-em-secret-docker-registry-em-"},{"section":"-em-secret-em-"},{"section":"-em-quota-em-"},{"section":"-em-namespace-em-"},{"section":"-em-deployment-em-"},{"section":"-em-configmap-em-"}]},{"section":"convert","subsections":[]},{"section":"autoscale","subsections":[]},{"section":"annotate","subsections":[]},{"section":"-strong-app-management-strong-","subsections":[]},{"section":"expose","subsections":[]},{"section":"run","subsections":[]},{"section":"-strong-getting-started-strong-","subsections":[]}],"flatToc":["stop","-strong-deprecated-commands-strong-","version","options","explain","-em-view-em-","-em-use-context-em-","-em-unset-em-","-em-set-credentials-em-","-em-set-context-em-","-em-set-cluster-em-","-em-set-em-","-em-get-contexts-em-","-em-get-clusters-em-","-em-delete-context-em-","-em-delete-cluster-em-","-em-current-context-em-","config","completion","-strong-kubectl-settings-and-usage-strong-","uncordon","taint","drain","cordon","-em-dump-em-","cluster-info","-em-deny-em-","-em-approve-em-","certificate","api-versions","-strong-cluster-management-strong-","-em-pod-em-","-em-node-em-","top","proxy","port-forward","logs","exec","describe","cp","attach","-strong-working-with-apps-strong-","apply","-strong-declarative-app-management-strong-","-em-resources-em-","-em-image-em-","set","scale","-em-undo-em-","-em-status-em-","-em-resume-em-","-em-pause-em-","-em-history-em-","rollout","rolling-update","replace","patch","label","get","edit","delete","-em-serviceaccount-em-","-em-service-nodeport-em-","-em-service-loadbalancer-em-","-em-service-clusterip-em-","-em-service-em-","-em-secret-tls-em-","-em-secret-generic-em-","-em-secret-docker-registry-em-","-em-secret-em-","-em-quota-em-","-em-namespace-em-","-em-deployment-em-","-em-configmap-em-","create","convert","autoscale","annotate","-strong-app-management-strong-","expose","run","-strong-getting-started-strong-"]}})(); \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/node_modules/.bin/marked b/docs/user-guide/kubectl/v1.5/node_modules/.bin/marked deleted file mode 100755 index 64254fc3eb..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/.bin/marked +++ /dev/null @@ -1,187 +0,0 @@ -#!/usr/bin/env node - -/** - * Marked CLI - * Copyright (c) 2011-2013, Christopher Jeffrey (MIT License) - */ - -var fs = require('fs') - , util = require('util') - , marked = require('../'); - -/** - * Man Page - */ - -function help() { - var spawn = require('child_process').spawn; - - var options = { - cwd: process.cwd(), - env: process.env, - setsid: false, - customFds: [0, 1, 2] - }; - - spawn('man', - [__dirname + '/../man/marked.1'], - options); -} - -/** - * Main - */ - -function main(argv, callback) { - var files = [] - , options = {} - , input - , output - , arg - , tokens - , opt; - - function getarg() { - var arg = argv.shift(); - - if (arg.indexOf('--') === 0) { - // e.g. --opt - arg = arg.split('='); - if (arg.length > 1) { - // e.g. --opt=val - argv.unshift(arg.slice(1).join('=')); - } - arg = arg[0]; - } else if (arg[0] === '-') { - if (arg.length > 2) { - // e.g. -abc - argv = arg.substring(1).split('').map(function(ch) { - return '-' + ch; - }).concat(argv); - arg = argv.shift(); - } else { - // e.g. -a - } - } else { - // e.g. foo - } - - return arg; - } - - while (argv.length) { - arg = getarg(); - switch (arg) { - case '--test': - return require('../test').main(process.argv.slice()); - case '-o': - case '--output': - output = argv.shift(); - break; - case '-i': - case '--input': - input = argv.shift(); - break; - case '-t': - case '--tokens': - tokens = true; - break; - case '-h': - case '--help': - return help(); - default: - if (arg.indexOf('--') === 0) { - opt = camelize(arg.replace(/^--(no-)?/, '')); - if (!marked.defaults.hasOwnProperty(opt)) { - continue; - } - if (arg.indexOf('--no-') === 0) { - options[opt] = typeof marked.defaults[opt] !== 'boolean' - ? null - : false; - } else { - options[opt] = typeof marked.defaults[opt] !== 'boolean' - ? argv.shift() - : true; - } - } else { - files.push(arg); - } - break; - } - } - - function getData(callback) { - if (!input) { - if (files.length <= 2) { - return getStdin(callback); - } - input = files.pop(); - } - return fs.readFile(input, 'utf8', callback); - } - - return getData(function(err, data) { - if (err) return callback(err); - - data = tokens - ? JSON.stringify(marked.lexer(data, options), null, 2) - : marked(data, options); - - if (!output) { - process.stdout.write(data + '\n'); - return callback(); - } - - return fs.writeFile(output, data, callback); - }); -} - -/** - * Helpers - */ - -function getStdin(callback) { - var stdin = process.stdin - , buff = ''; - - stdin.setEncoding('utf8'); - - stdin.on('data', function(data) { - buff += data; - }); - - stdin.on('error', function(err) { - return callback(err); - }); - - stdin.on('end', function() { - return callback(null, buff); - }); - - try { - stdin.resume(); - } catch (e) { - callback(e); - } -} - -function camelize(text) { - return text.replace(/(\w)-(\w)/g, function(_, a, b) { - return a + b.toUpperCase(); - }); -} - -/** - * Expose / Entry Point - */ - -if (!module.parent) { - process.title = 'marked'; - main(process.argv.slice(), function(err, code) { - if (err) throw err; - return process.exit(code || 0); - }); -} else { - module.exports = main; -} diff --git a/docs/user-guide/kubectl/v1.5/node_modules/.bin/mime b/docs/user-guide/kubectl/v1.5/node_modules/.bin/mime deleted file mode 100755 index 20b1ffeb2f..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/.bin/mime +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env node - -var mime = require('./mime.js'); -var file = process.argv[2]; -var type = mime.lookup(file); - -process.stdout.write(type + '\n'); - diff --git a/docs/user-guide/kubectl/v1.5/node_modules/.bin/static b/docs/user-guide/kubectl/v1.5/node_modules/.bin/static deleted file mode 100755 index b3179fc9b8..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/.bin/static +++ /dev/null @@ -1,132 +0,0 @@ -#!/usr/bin/env node - -var fs = require('fs'), - path = require('path'), - tty = require('tty'), - statik = require('./../lib/node-static'); - - var argv = require('optimist') - .usage([ - 'USAGE: $0 [-p ] []', - 'simple, rfc 2616 compliant file streaming module for node'] - .join('\n\n')) - .option('port', { - alias: 'p', - 'default': 8080, - description: 'TCP port at which the files will be served' - }) - .option('host-address', { - alias: 'a', - 'default': '127.0.0.1', - description: 'the local network interface at which to listen' - }) - .option('cache', { - alias: 'c', - description: '"Cache-Control" header setting, defaults to 3600' - }) - .option('version', { - alias: 'v', - description: 'node-static version' - }) - .option('headers', { - alias: 'H', - description: 'additional headers (in JSON format)' - }) - .option('header-file', { - alias: 'f', - description: 'JSON file of additional headers' - }) - .option('gzip', { - alias: 'z', - description: 'enable compression (tries to serve file of same name plus \'.gz\')' - }) - .option('spa', { - description: 'serve the content as a single page app by redirecting all non-file requests to the index html file' - }) - .option('indexFile', { - alias: 'i', - 'default': 'index.html', - description: 'specify a custom index file when serving up directories' - }) - .option('help', { - alias: 'h', - description: 'display this help message' - }) - .argv; - - var dir = argv._[0] || '.'; - - var colors = require('colors'); - - var log = function(request, response, statusCode) { - var d = new Date(); - var seconds = d.getSeconds() < 10? '0'+d.getSeconds() : d.getSeconds(), - datestr = d.getHours() + ':' + d.getMinutes() + ':' + seconds, - line = datestr + ' [' + response.statusCode + ']: ' + request.url, - colorized = line; - if (tty.isatty(process.stdout.fd)) - colorized = (response.statusCode >= 500) ? line.red.bold : - (response.statusCode >= 400) ? line.red : - line; - console.log(colorized); - }; - - var file, options; - -if (argv.help) { - require('optimist').showHelp(console.log); - process.exit(0); -} - -if (argv.version) { - console.log('node-static', statik.version.join('.')); - process.exit(0); -} - -if (argv.cache) { - (options = options || {}).cache = argv.cache; -} - -if (argv.headers) { - (options = options || {}).headers = JSON.parse(argv.headers); -} - -if (argv['header-file']) { - (options = options || {}).headers = - JSON.parse(fs.readFileSync(argv['header-file'])); -} - -if (argv.gzip) { - (options = options || {}).gzip = true; -} - -if (argv.indexFile) { - (options = options || {}).indexFile = argv['indexFile']; -} - -file = new(statik.Server)(dir, options); - -require('http').createServer(function (request, response) { - request.addListener('end', function () { - var callback = function(e, rsp) { - if (e && e.status === 404) { - response.writeHead(e.status, e.headers); - response.end("Not Found"); - log(request, response); - } else { - log(request, response); - } - }; - - if (argv['spa'] && request.url.indexOf(".") == -1) { - file.serveFile(argv['indexFile'], 500, {}, request, response); - } else { - file.serve(request, response, callback); - } - }).resume(); -}).listen(+argv.port, argv['host-address']); - -console.log('serving "' + dir + '" at http://' + argv['host-address'] + ':' + argv.port); -if (argv.spa) { - console.log('serving as a single page app (all non-file requests redirect to ' + argv['indexFile'] +')'); -} diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/CHANGELOG.md b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/CHANGELOG.md deleted file mode 100644 index b25f838413..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/CHANGELOG.md +++ /dev/null @@ -1,5 +0,0 @@ -Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. - -See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. - -Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/Gruntfile.js b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/Gruntfile.js deleted file mode 100644 index 994a500871..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/Gruntfile.js +++ /dev/null @@ -1,511 +0,0 @@ -/*! - * Bootstrap's Gruntfile - * http://getbootstrap.com - * Copyright 2013-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -module.exports = function (grunt) { - 'use strict'; - - // Force use of Unix newlines - grunt.util.linefeed = '\n'; - - RegExp.quote = function (string) { - return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&'); - }; - - var fs = require('fs'); - var path = require('path'); - var generateGlyphiconsData = require('./grunt/bs-glyphicons-data-generator.js'); - var BsLessdocParser = require('./grunt/bs-lessdoc-parser.js'); - var getLessVarsData = function () { - var filePath = path.join(__dirname, 'less/variables.less'); - var fileContent = fs.readFileSync(filePath, { encoding: 'utf8' }); - var parser = new BsLessdocParser(fileContent); - return { sections: parser.parseFile() }; - }; - var generateRawFiles = require('./grunt/bs-raw-files-generator.js'); - var generateCommonJSModule = require('./grunt/bs-commonjs-generator.js'); - var configBridge = grunt.file.readJSON('./grunt/configBridge.json', { encoding: 'utf8' }); - - Object.keys(configBridge.paths).forEach(function (key) { - configBridge.paths[key].forEach(function (val, i, arr) { - arr[i] = path.join('./docs/assets', val); - }); - }); - - // Project configuration. - grunt.initConfig({ - - // Metadata. - pkg: grunt.file.readJSON('package.json'), - banner: '/*!\n' + - ' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' + - ' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + - ' * Licensed under the <%= pkg.license %> license\n' + - ' */\n', - jqueryCheck: configBridge.config.jqueryCheck.join('\n'), - jqueryVersionCheck: configBridge.config.jqueryVersionCheck.join('\n'), - - // Task configuration. - clean: { - dist: 'dist', - docs: 'docs/dist' - }, - - jshint: { - options: { - jshintrc: 'js/.jshintrc' - }, - grunt: { - options: { - jshintrc: 'grunt/.jshintrc' - }, - src: ['Gruntfile.js', 'package.js', 'grunt/*.js'] - }, - core: { - src: 'js/*.js' - }, - test: { - options: { - jshintrc: 'js/tests/unit/.jshintrc' - }, - src: 'js/tests/unit/*.js' - }, - assets: { - src: ['docs/assets/js/src/*.js', 'docs/assets/js/*.js', '!docs/assets/js/*.min.js'] - } - }, - - jscs: { - options: { - config: 'js/.jscsrc' - }, - grunt: { - src: '<%= jshint.grunt.src %>' - }, - core: { - src: '<%= jshint.core.src %>' - }, - test: { - src: '<%= jshint.test.src %>' - }, - assets: { - options: { - requireCamelCaseOrUpperCaseIdentifiers: null - }, - src: '<%= jshint.assets.src %>' - } - }, - - concat: { - options: { - banner: '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>', - stripBanners: false - }, - bootstrap: { - src: [ - 'js/transition.js', - 'js/alert.js', - 'js/button.js', - 'js/carousel.js', - 'js/collapse.js', - 'js/dropdown.js', - 'js/modal.js', - 'js/tooltip.js', - 'js/popover.js', - 'js/scrollspy.js', - 'js/tab.js', - 'js/affix.js' - ], - dest: 'dist/js/<%= pkg.name %>.js' - } - }, - - uglify: { - options: { - compress: { - warnings: false - }, - mangle: true, - preserveComments: /^!|@preserve|@license|@cc_on/i - }, - core: { - src: '<%= concat.bootstrap.dest %>', - dest: 'dist/js/<%= pkg.name %>.min.js' - }, - customize: { - src: configBridge.paths.customizerJs, - dest: 'docs/assets/js/customize.min.js' - }, - docsJs: { - src: configBridge.paths.docsJs, - dest: 'docs/assets/js/docs.min.js' - } - }, - - qunit: { - options: { - inject: 'js/tests/unit/phantom.js' - }, - files: 'js/tests/index.html' - }, - - less: { - compileCore: { - options: { - strictMath: true, - sourceMap: true, - outputSourceFiles: true, - sourceMapURL: '<%= pkg.name %>.css.map', - sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map' - }, - src: 'less/bootstrap.less', - dest: 'dist/css/<%= pkg.name %>.css' - }, - compileTheme: { - options: { - strictMath: true, - sourceMap: true, - outputSourceFiles: true, - sourceMapURL: '<%= pkg.name %>-theme.css.map', - sourceMapFilename: 'dist/css/<%= pkg.name %>-theme.css.map' - }, - src: 'less/theme.less', - dest: 'dist/css/<%= pkg.name %>-theme.css' - } - }, - - autoprefixer: { - options: { - browsers: configBridge.config.autoprefixerBrowsers - }, - core: { - options: { - map: true - }, - src: 'dist/css/<%= pkg.name %>.css' - }, - theme: { - options: { - map: true - }, - src: 'dist/css/<%= pkg.name %>-theme.css' - }, - docs: { - src: ['docs/assets/css/src/docs.css'] - }, - examples: { - expand: true, - cwd: 'docs/examples/', - src: ['**/*.css'], - dest: 'docs/examples/' - } - }, - - csslint: { - options: { - csslintrc: 'less/.csslintrc' - }, - dist: [ - 'dist/css/bootstrap.css', - 'dist/css/bootstrap-theme.css' - ], - examples: [ - 'docs/examples/**/*.css' - ], - docs: { - options: { - ids: false, - 'overqualified-elements': false - }, - src: 'docs/assets/css/src/docs.css' - } - }, - - cssmin: { - options: { - // TODO: disable `zeroUnits` optimization once clean-css 3.2 is released - // and then simplify the fix for https://github.com/twbs/bootstrap/issues/14837 accordingly - compatibility: 'ie8', - keepSpecialComments: '*', - sourceMap: true, - sourceMapInlineSources: true, - advanced: false - }, - minifyCore: { - src: 'dist/css/<%= pkg.name %>.css', - dest: 'dist/css/<%= pkg.name %>.min.css' - }, - minifyTheme: { - src: 'dist/css/<%= pkg.name %>-theme.css', - dest: 'dist/css/<%= pkg.name %>-theme.min.css' - }, - docs: { - src: [ - 'docs/assets/css/ie10-viewport-bug-workaround.css', - 'docs/assets/css/src/pygments-manni.css', - 'docs/assets/css/src/docs.css' - ], - dest: 'docs/assets/css/docs.min.css' - } - }, - - csscomb: { - options: { - config: 'less/.csscomb.json' - }, - dist: { - expand: true, - cwd: 'dist/css/', - src: ['*.css', '!*.min.css'], - dest: 'dist/css/' - }, - examples: { - expand: true, - cwd: 'docs/examples/', - src: '**/*.css', - dest: 'docs/examples/' - }, - docs: { - src: 'docs/assets/css/src/docs.css', - dest: 'docs/assets/css/src/docs.css' - } - }, - - copy: { - fonts: { - expand: true, - src: 'fonts/**', - dest: 'dist/' - }, - docs: { - expand: true, - cwd: 'dist/', - src: [ - '**/*' - ], - dest: 'docs/dist/' - } - }, - - connect: { - server: { - options: { - port: 3000, - base: '.' - } - } - }, - - jekyll: { - options: { - bundleExec: true, - config: '_config.yml', - incremental: false - }, - docs: {}, - github: { - options: { - raw: 'github: true' - } - } - }, - - htmlmin: { - dist: { - options: { - collapseBooleanAttributes: true, - collapseWhitespace: true, - conservativeCollapse: true, - decodeEntities: false, - minifyCSS: { - compatibility: 'ie8', - keepSpecialComments: 0 - }, - minifyJS: true, - minifyURLs: false, - processConditionalComments: true, - removeAttributeQuotes: true, - removeComments: true, - removeOptionalAttributes: true, - removeOptionalTags: true, - removeRedundantAttributes: true, - removeScriptTypeAttributes: true, - removeStyleLinkTypeAttributes: true, - removeTagWhitespace: false, - sortAttributes: true, - sortClassName: true - }, - expand: true, - cwd: '_gh_pages', - dest: '_gh_pages', - src: [ - '**/*.html', - '!examples/**/*.html' - ] - } - }, - - pug: { - options: { - pretty: true, - data: getLessVarsData - }, - customizerVars: { - src: 'docs/_pug/customizer-variables.pug', - dest: 'docs/_includes/customizer-variables.html' - }, - customizerNav: { - src: 'docs/_pug/customizer-nav.pug', - dest: 'docs/_includes/nav/customize.html' - } - }, - - htmllint: { - options: { - ignore: [ - 'Attribute "autocomplete" not allowed on element "button" at this point.', - 'Attribute "autocomplete" is only allowed when the input type is "color", "date", "datetime", "datetime-local", "email", "hidden", "month", "number", "password", "range", "search", "tel", "text", "time", "url", or "week".', - 'Element "img" is missing required attribute "src".' - ] - }, - src: '_gh_pages/**/*.html' - }, - - watch: { - src: { - files: '<%= jshint.core.src %>', - tasks: ['jshint:core', 'qunit', 'concat'] - }, - test: { - files: '<%= jshint.test.src %>', - tasks: ['jshint:test', 'qunit'] - }, - less: { - files: 'less/**/*.less', - tasks: 'less' - } - }, - - 'saucelabs-qunit': { - all: { - options: { - build: process.env.TRAVIS_JOB_ID, - throttled: 10, - maxRetries: 3, - maxPollRetries: 4, - urls: ['http://127.0.0.1:3000/js/tests/index.html?hidepassed'], - browsers: grunt.file.readYAML('grunt/sauce_browsers.yml') - } - } - }, - - exec: { - npmUpdate: { - command: 'npm update' - } - }, - - compress: { - main: { - options: { - archive: 'bootstrap-<%= pkg.version %>-dist.zip', - mode: 'zip', - level: 9, - pretty: true - }, - files: [ - { - expand: true, - cwd: 'dist/', - src: ['**'], - dest: 'bootstrap-<%= pkg.version %>-dist' - } - ] - } - } - - }); - - - // These plugins provide necessary tasks. - require('load-grunt-tasks')(grunt, { scope: 'devDependencies' }); - require('time-grunt')(grunt); - - // Docs HTML validation task - grunt.registerTask('validate-html', ['jekyll:docs', 'htmllint']); - - var runSubset = function (subset) { - return !process.env.TWBS_TEST || process.env.TWBS_TEST === subset; - }; - var isUndefOrNonZero = function (val) { - return val === undefined || val !== '0'; - }; - - // Test task. - var testSubtasks = []; - // Skip core tests if running a different subset of the test suite - if (runSubset('core') && - // Skip core tests if this is a Savage build - process.env.TRAVIS_REPO_SLUG !== 'twbs-savage/bootstrap') { - testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'csslint:dist', 'test-js', 'docs']); - } - // Skip HTML validation if running a different subset of the test suite - if (runSubset('validate-html') && - // Skip HTML5 validator on Travis when [skip validator] is in the commit message - isUndefOrNonZero(process.env.TWBS_DO_VALIDATOR)) { - testSubtasks.push('validate-html'); - } - // Only run Sauce Labs tests if there's a Sauce access key - if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined' && - // Skip Sauce if running a different subset of the test suite - runSubset('sauce-js-unit') && - // Skip Sauce on Travis when [skip sauce] is in the commit message - isUndefOrNonZero(process.env.TWBS_DO_SAUCE)) { - testSubtasks.push('connect'); - testSubtasks.push('saucelabs-qunit'); - } - grunt.registerTask('test', testSubtasks); - grunt.registerTask('test-js', ['jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']); - - // JS distribution task. - grunt.registerTask('dist-js', ['concat', 'uglify:core', 'commonjs']); - - // CSS distribution task. - grunt.registerTask('less-compile', ['less:compileCore', 'less:compileTheme']); - grunt.registerTask('dist-css', ['less-compile', 'autoprefixer:core', 'autoprefixer:theme', 'csscomb:dist', 'cssmin:minifyCore', 'cssmin:minifyTheme']); - - // Full distribution task. - grunt.registerTask('dist', ['clean:dist', 'dist-css', 'copy:fonts', 'dist-js']); - - // Default task. - grunt.registerTask('default', ['clean:dist', 'copy:fonts', 'test']); - - grunt.registerTask('build-glyphicons-data', function () { generateGlyphiconsData.call(this, grunt); }); - - // task for building customizer - grunt.registerTask('build-customizer', ['build-customizer-html', 'build-raw-files']); - grunt.registerTask('build-customizer-html', 'pug'); - grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () { - var banner = grunt.template.process('<%= banner %>'); - generateRawFiles(grunt, banner); - }); - - grunt.registerTask('commonjs', 'Generate CommonJS entrypoint module in dist dir.', function () { - var srcFiles = grunt.config.get('concat.bootstrap.src'); - var destFilepath = 'dist/js/npm.js'; - generateCommonJSModule(grunt, srcFiles, destFilepath); - }); - - // Docs task. - grunt.registerTask('docs-css', ['autoprefixer:docs', 'autoprefixer:examples', 'csscomb:docs', 'csscomb:examples', 'cssmin:docs']); - grunt.registerTask('lint-docs-css', ['csslint:docs', 'csslint:examples']); - grunt.registerTask('docs-js', ['uglify:docsJs', 'uglify:customize']); - grunt.registerTask('lint-docs-js', ['jshint:assets', 'jscs:assets']); - grunt.registerTask('docs', ['docs-css', 'lint-docs-css', 'docs-js', 'lint-docs-js', 'clean:docs', 'copy:docs', 'build-glyphicons-data', 'build-customizer']); - grunt.registerTask('docs-github', ['jekyll:github', 'htmlmin']); - - grunt.registerTask('prep-release', ['dist', 'docs', 'docs-github', 'compress']); -}; diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/LICENSE b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/LICENSE deleted file mode 100644 index 7a300022c3..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2011-2016 Twitter, 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/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/README.md b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/README.md deleted file mode 100644 index f92150f4f6..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/README.md +++ /dev/null @@ -1,142 +0,0 @@ -# [Bootstrap](http://getbootstrap.com) - -[![Slack](https://bootstrap-slack.herokuapp.com/badge.svg)](https://bootstrap-slack.herokuapp.com) -![Bower version](https://img.shields.io/bower/v/bootstrap.svg) -[![npm version](https://img.shields.io/npm/v/bootstrap.svg)](https://www.npmjs.com/package/bootstrap) -[![Build Status](https://img.shields.io/travis/twbs/bootstrap/master.svg)](https://travis-ci.org/twbs/bootstrap) -[![devDependency Status](https://img.shields.io/david/dev/twbs/bootstrap.svg)](https://david-dm.org/twbs/bootstrap#info=devDependencies) -[![NuGet](https://img.shields.io/nuget/v/bootstrap.svg)](https://www.nuget.org/packages/Bootstrap) -[![Selenium Test Status](https://saucelabs.com/browser-matrix/bootstrap.svg)](https://saucelabs.com/u/bootstrap) - -Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thornton](https://twitter.com/fat), and maintained by the [core team](https://github.com/orgs/twbs/people) with the massive support and involvement of the community. - -To get started, check out ! - - -## Table of contents - -* [Quick start](#quick-start) -* [Bugs and feature requests](#bugs-and-feature-requests) -* [Documentation](#documentation) -* [Contributing](#contributing) -* [Community](#community) -* [Versioning](#versioning) -* [Creators](#creators) -* [Copyright and license](#copyright-and-license) - - -## Quick start - -Several quick start options are available: - -* [Download the latest release](https://github.com/twbs/bootstrap/archive/v3.3.7.zip). -* Clone the repo: `git clone https://github.com/twbs/bootstrap.git`. -* Install with [Bower](http://bower.io): `bower install bootstrap`. -* Install with [npm](https://www.npmjs.com): `npm install bootstrap@3`. -* Install with [Meteor](https://www.meteor.com): `meteor add twbs:bootstrap`. -* Install with [Composer](https://getcomposer.org): `composer require twbs/bootstrap`. - -Read the [Getting started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more. - -### What's included - -Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this: - -``` -bootstrap/ -├── css/ -│ ├── bootstrap.css -│ ├── bootstrap.css.map -│ ├── bootstrap.min.css -│ ├── bootstrap.min.css.map -│ ├── bootstrap-theme.css -│ ├── bootstrap-theme.css.map -│ ├── bootstrap-theme.min.css -│ └── bootstrap-theme.min.css.map -├── js/ -│ ├── bootstrap.js -│ └── bootstrap.min.js -└── fonts/ - ├── glyphicons-halflings-regular.eot - ├── glyphicons-halflings-regular.svg - ├── glyphicons-halflings-regular.ttf - ├── glyphicons-halflings-regular.woff - └── glyphicons-halflings-regular.woff2 -``` - -We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). CSS [source maps](https://developer.chrome.com/devtools/docs/css-preprocessors) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Fonts from Glyphicons are included, as is the optional Bootstrap theme. - - -## Bugs and feature requests - -Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new). - -Note that **feature requests must target [Bootstrap v4](https://github.com/twbs/bootstrap/tree/v4-dev),** because Bootstrap v3 is now in maintenance mode and is closed off to new features. This is so that we can focus our efforts on Bootstrap v4. - - -## Documentation - -Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at . The docs may also be run locally. - -### Running documentation locally - -1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) and other Ruby dependencies with `bundle install`. - **Note for Windows users:** Read [this unofficial guide](http://jekyll-windows.juthilo.com/) to get Jekyll up and running without problems. -2. From the root `/bootstrap` directory, run `bundle exec jekyll serve` in the command line. -4. Open `http://localhost:9001` in your browser, and voilà. - -Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/). - -### Documentation for previous releases - -Documentation for v2.3.2 has been made available for the time being at while folks transition to Bootstrap 3. - -[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download. - - -## Contributing - -Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. - -Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/twbs/bootstrap/tree/master/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo). - -**Bootstrap v3 is now closed off to new features.** It has gone into maintenance mode so that we can focus our efforts on [Bootstrap v4](https://github.com/twbs/bootstrap/tree/v4-dev), the future of the framework. Pull requests which add new features (rather than fix bugs) should target [Bootstrap v4 (the `v4-dev` git branch)](https://github.com/twbs/bootstrap/tree/v4-dev) instead. - -Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at . - - -## Community - -Get updates on Bootstrap's development and chat with the project maintainers and community members. - -* Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap). -* Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com). -* Join [the official Slack room](https://bootstrap-slack.herokuapp.com). -* Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel. -* Implementation help may be found at Stack Overflow (tagged [`twitter-bootstrap-3`](https://stackoverflow.com/questions/tagged/twitter-bootstrap-3)). -* Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/browse/keyword/bootstrap) or similar delivery mechanisms for maximum discoverability. - - -## Versioning - -For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible. - -See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. - - -## Creators - -**Mark Otto** - -* -* - -**Jacob Thornton** - -* -* - - -## Copyright and license - -Code and documentation copyright 2011-2016 Twitter, Inc. Code released under [the MIT license](https://github.com/twbs/bootstrap/blob/master/LICENSE). Docs released under [Creative Commons](https://github.com/twbs/bootstrap/blob/master/docs/LICENSE). diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css deleted file mode 100644 index 31d8882661..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css +++ /dev/null @@ -1,587 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -.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-default.disabled, -.btn-primary.disabled, -.btn-success.disabled, -.btn-info.disabled, -.btn-warning.disabled, -.btn-danger.disabled, -.btn-default[disabled], -.btn-primary[disabled], -.btn-success[disabled], -.btn-info[disabled], -.btn-warning[disabled], -.btn-danger[disabled], -fieldset[disabled] .btn-default, -fieldset[disabled] .btn-primary, -fieldset[disabled] .btn-success, -fieldset[disabled] .btn-info, -fieldset[disabled] .btn-warning, -fieldset[disabled] .btn-danger { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default .badge, -.btn-primary .badge, -.btn-success .badge, -.btn-info .badge, -.btn-warning .badge, -.btn-danger .badge { - text-shadow: none; -} -.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], -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.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: #e0e0e0; - background-image: none; -} -.btn-primary { - background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); - background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #245580; -} -.btn-primary:hover, -.btn-primary:focus { - background-color: #265a88; - background-position: 0 -15px; -} -.btn-primary:active, -.btn-primary.active { - background-color: #265a88; - border-color: #245580; -} -.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.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: #265a88; - background-image: none; -} -.btn-success { - background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); - background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); - background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #3e8f3e; -} -.btn-success:hover, -.btn-success:focus { - background-color: #419641; - background-position: 0 -15px; -} -.btn-success:active, -.btn-success.active { - background-color: #419641; - border-color: #3e8f3e; -} -.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.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: #419641; - background-image: none; -} -.btn-info { - background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); - background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); - background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #28a4c9; -} -.btn-info:hover, -.btn-info:focus { - background-color: #2aabd2; - background-position: 0 -15px; -} -.btn-info:active, -.btn-info.active { - background-color: #2aabd2; - border-color: #28a4c9; -} -.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.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: #2aabd2; - background-image: none; -} -.btn-warning { - background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); - background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); - background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #e38d13; -} -.btn-warning:hover, -.btn-warning:focus { - background-color: #eb9316; - background-position: 0 -15px; -} -.btn-warning:active, -.btn-warning.active { - background-color: #eb9316; - border-color: #e38d13; -} -.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.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: #eb9316; - background-image: none; -} -.btn-danger { - background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); - background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); - background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #b92c28; -} -.btn-danger:hover, -.btn-danger:focus { - background-color: #c12e2a; - background-position: 0 -15px; -} -.btn-danger:active, -.btn-danger.active { - background-color: #c12e2a; - border-color: #b92c28; -} -.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.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: #c12e2a; - 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: #e8e8e8; - 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; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - background-color: #2e6da4; - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', 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 > .open > a, -.navbar-default .navbar-nav > .active > a { - background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); - background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); - background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', 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; - border-radius: 4px; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .active > a { - background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); - background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); - background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', 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; -} -@media (max-width: 767px) { - .navbar .navbar-nav .open .dropdown-menu > .active > a, - .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); - background-repeat: repeat-x; - } -} -.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, #dff0d8 0%, #c8e5bc 100%); - background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); - background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); - background-repeat: repeat-x; - border-color: #b2dba1; -} -.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, #fcf8e3 0%, #f8efc0 100%); - background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); - background-repeat: repeat-x; - border-color: #f5e79e; -} -.alert-danger { - background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); - background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); - background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); - background-repeat: repeat-x; - border-color: #dca7a7; -} -.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, #337ab7 0%, #286090 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); - background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-success { - background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); - background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); - background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-info { - background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); - background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); - background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-warning { - background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); - background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); - background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); - background-repeat: repeat-x; -} -.progress-bar-danger { - background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); - background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); - background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', 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 #286090; - background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); - background-repeat: repeat-x; - border-color: #2b669a; -} -.list-group-item.active .badge, -.list-group-item.active:hover .badge, -.list-group-item.active:focus .badge { - text-shadow: none; -} -.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, #337ab7 0%, #2e6da4 100%); - background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); - background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); - background-repeat: repeat-x; -} -.panel-success > .panel-heading { - background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); - background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); - background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', 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, #fcf8e3 0%, #faf2cc 100%); - background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); - background-repeat: repeat-x; -} -.panel-danger > .panel-heading { - background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); - background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); - background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', 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); -} -/*# sourceMappingURL=bootstrap-theme.css.map */ diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css.map b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css.map deleted file mode 100644 index d876f60fb4..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\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, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n 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);\n 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);\n 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);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 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 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\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 &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\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; see https://github.com/twbs/bootstrap/issues/10620\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 fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\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// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\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// 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 > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-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; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-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// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\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// 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 .badge {\n text-shadow: none;\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// 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 have been 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 // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\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/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css deleted file mode 100644 index 5e39401957..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css +++ /dev/null @@ -1,6 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{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-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning: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-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.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:focus,.btn-default:hover{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.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.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:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;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}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', 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,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', 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;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', 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-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.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,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.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,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.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,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', 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:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.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,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', 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,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', 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)} -/*# sourceMappingURL=bootstrap-theme.min.css.map */ \ No newline at end of file diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map deleted file mode 100644 index 94813e9006..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap-theme.min.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","sourcesContent":["/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\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 &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\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; see https://github.com/twbs/bootstrap/issues/10620\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 fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\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// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\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// 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 > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-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; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-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// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\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// 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 .badge {\n text-shadow: none;\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// 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 have been 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 // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\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/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css deleted file mode 100644 index 6167622cec..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css +++ /dev/null @@ -1,6757 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -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, -menu, -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-color: transparent; -} -a:active, -a:hover { - outline: 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -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 #c0c0c0; -} -legend { - padding: 0; - border: 0; -} -textarea { - overflow: auto; -} -optgroup { - font-weight: bold; -} -table { - border-spacing: 0; - border-collapse: collapse; -} -td, -th { - padding: 0; -} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - 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^="#"]:after, - a[href^="javascript:"]: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; - } - .navbar { - display: none; - } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !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.woff2') format('woff2'), 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: "\002a"; -} -.glyphicon-plus:before { - content: "\002b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -.glyphicon-cd:before { - content: "\e201"; -} -.glyphicon-save-file:before { - content: "\e202"; -} -.glyphicon-open-file:before { - content: "\e203"; -} -.glyphicon-level-up:before { - content: "\e204"; -} -.glyphicon-copy:before { - content: "\e205"; -} -.glyphicon-paste:before { - content: "\e206"; -} -.glyphicon-alert:before { - content: "\e209"; -} -.glyphicon-equalizer:before { - content: "\e210"; -} -.glyphicon-king:before { - content: "\e211"; -} -.glyphicon-queen:before { - content: "\e212"; -} -.glyphicon-pawn:before { - content: "\e213"; -} -.glyphicon-bishop:before { - content: "\e214"; -} -.glyphicon-knight:before { - content: "\e215"; -} -.glyphicon-baby-formula:before { - content: "\e216"; -} -.glyphicon-tent:before { - content: "\26fa"; -} -.glyphicon-blackboard:before { - content: "\e218"; -} -.glyphicon-bed:before { - content: "\e219"; -} -.glyphicon-apple:before { - content: "\f8ff"; -} -.glyphicon-erase:before { - content: "\e221"; -} -.glyphicon-hourglass:before { - content: "\231b"; -} -.glyphicon-lamp:before { - content: "\e223"; -} -.glyphicon-duplicate:before { - content: "\e224"; -} -.glyphicon-piggy-bank:before { - content: "\e225"; -} -.glyphicon-scissors:before { - content: "\e226"; -} -.glyphicon-bitcoin:before { - content: "\e227"; -} -.glyphicon-btc:before { - content: "\e227"; -} -.glyphicon-xbt:before { - content: "\e227"; -} -.glyphicon-yen:before { - content: "\00a5"; -} -.glyphicon-jpy:before { - content: "\00a5"; -} -.glyphicon-ruble:before { - content: "\20bd"; -} -.glyphicon-rub:before { - content: "\20bd"; -} -.glyphicon-scale:before { - content: "\e230"; -} -.glyphicon-ice-lolly:before { - content: "\e231"; -} -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} -.glyphicon-education:before { - content: "\e233"; -} -.glyphicon-option-horizontal:before { - content: "\e234"; -} -.glyphicon-option-vertical:before { - content: "\e235"; -} -.glyphicon-menu-hamburger:before { - content: "\e236"; -} -.glyphicon-modal-window:before { - content: "\e237"; -} -.glyphicon-oil:before { - content: "\e238"; -} -.glyphicon-grain:before { - content: "\e239"; -} -.glyphicon-sunglasses:before { - content: "\e240"; -} -.glyphicon-text-size:before { - content: "\e241"; -} -.glyphicon-text-color:before { - content: "\e242"; -} -.glyphicon-text-background:before { - content: "\e243"; -} -.glyphicon-object-align-top:before { - content: "\e244"; -} -.glyphicon-object-align-bottom:before { - content: "\e245"; -} -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} -.glyphicon-object-align-left:before { - content: "\e247"; -} -.glyphicon-object-align-vertical:before { - content: "\e248"; -} -.glyphicon-object-align-right:before { - content: "\e249"; -} -.glyphicon-triangle-right:before { - content: "\e250"; -} -.glyphicon-triangle-left:before { - content: "\e251"; -} -.glyphicon-triangle-bottom:before { - content: "\e252"; -} -.glyphicon-triangle-top:before { - content: "\e253"; -} -.glyphicon-console:before { - content: "\e254"; -} -.glyphicon-superscript:before { - content: "\e255"; -} -.glyphicon-subscript:before { - content: "\e256"; -} -.glyphicon-menu-left:before { - content: "\e257"; -} -.glyphicon-menu-right:before { - content: "\e258"; -} -.glyphicon-menu-down:before { - content: "\e259"; -} -.glyphicon-menu-up:before { - content: "\e260"; -} -* { - -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: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - line-height: 1.42857143; - color: #333; - background-color: #fff; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #337ab7; - text-decoration: none; -} -a:hover, -a:focus { - color: #23527c; - text-decoration: underline; -} -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 6px; -} -.img-thumbnail { - display: inline-block; - max-width: 100%; - height: auto; - padding: 4px; - line-height: 1.42857143; - 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: 20px; - margin-bottom: 20px; - border: 0; - border-top: 1px solid #eee; -} -.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; -} -[role="button"] { - cursor: pointer; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 500; - line-height: 1.1; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #777; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 20px; - margin-bottom: 10px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 10px; - margin-bottom: 10px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 36px; -} -h2, -.h2 { - font-size: 30px; -} -h3, -.h3 { - font-size: 24px; -} -h4, -.h4 { - font-size: 18px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 12px; -} -p { - margin: 0 0 10px; -} -.lead { - margin-bottom: 20px; - font-size: 16px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 21px; - } -} -small, -.small { - font-size: 85%; -} -mark, -.mark { - padding: .2em; - background-color: #fcf8e3; -} -.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: #777; -} -.text-primary { - color: #337ab7; -} -a.text-primary:hover, -a.text-primary:focus { - color: #286090; -} -.text-success { - color: #3c763d; -} -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover, -a.text-info:focus { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #337ab7; -} -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #286090; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 9px; - margin: 40px 0 20px; - border-bottom: 1px solid #eee; -} -ul, -ol { - margin-top: 0; - margin-bottom: 10px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - margin-left: -5px; - list-style: none; -} -.list-inline > li { - display: inline-block; - padding-right: 5px; - padding-left: 5px; -} -dl { - margin-top: 0; - margin-bottom: 20px; -} -dt, -dd { - line-height: 1.42857143; -} -dt { - font-weight: bold; -} -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 #777; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 10px 20px; - margin: 0 0 20px; - font-size: 17.5px; - border-left: 5px solid #eee; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.42857143; - color: #777; -} -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 #eee; - 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'; -} -address { - margin-bottom: 20px; - font-style: normal; - line-height: 1.42857143; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - 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%; - font-weight: bold; - -webkit-box-shadow: none; - box-shadow: none; -} -pre { - display: block; - padding: 9.5px; - margin: 0 0 10px; - font-size: 13px; - line-height: 1.42857143; - color: #333; - 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; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #777; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 20px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.42857143; - vertical-align: top; - border-top: 1px solid #ddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #ddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - 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: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr: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: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - min-height: .01%; - overflow-x: auto; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 15px; - overflow-y: hidden; - -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: 20px; - font-size: 21px; - line-height: inherit; - color: #333; - 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: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 14px; - line-height: 1.42857143; - color: #555; -} -.form-control { - display: block; - width: 100%; - height: 34px; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - -webkit-transition: border-color ease-in-out .15s, -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: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); -} -.form-control::-moz-placeholder { - color: #999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999; -} -.form-control::-webkit-input-placeholder { - color: #999; -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - background-color: #eee; - opacity: 1; -} -.form-control[disabled], -fieldset[disabled] .form-control { - cursor: not-allowed; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"].form-control, - input[type="time"].form-control, - input[type="datetime-local"].form-control, - input[type="month"].form-control { - line-height: 34px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm, - .input-group-sm input[type="date"], - .input-group-sm input[type="time"], - .input-group-sm input[type="datetime-local"], - .input-group-sm input[type="month"] { - line-height: 30px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg, - .input-group-lg input[type="date"], - .input-group-lg input[type="time"], - .input-group-lg input[type="datetime-local"], - .input-group-lg input[type="month"] { - line-height: 46px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 20px; - 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-top: 4px \9; - margin-left: -20px; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - 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 { - min-height: 34px; - 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 { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-sm { - height: 30px; - line-height: 30px; -} -textarea.input-sm, -select[multiple].input-sm { - height: auto; -} -.form-group-sm .form-control { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 30px; - line-height: 30px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 30px; - min-height: 32px; - padding: 6px 10px; - font-size: 12px; - line-height: 1.5; -} -.input-lg { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -select.input-lg { - height: 46px; - line-height: 46px; -} -textarea.input-lg, -select[multiple].input-lg { - height: auto; -} -.form-group-lg .form-control { - height: 46px; - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.form-group-lg select.form-control { - height: 46px; - line-height: 46px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 46px; - min-height: 38px; - padding: 11px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 42.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 34px; - height: 34px; - line-height: 34px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 46px; - height: 46px; - line-height: 46px; -} -.input-sm + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 30px; - height: 30px; - line-height: 30px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - background-color: #dff0d8; - border-color: #3c763d; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #8a6d3b; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - background-color: #f2dede; - border-color: #a94442; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 25px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .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: 27px; -} -.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 { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 18px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 12px; - } -} -.btn { - display: inline-block; - padding: 6px 12px; - margin-bottom: 0; - font-size: 14px; - font-weight: normal; - line-height: 1.42857143; - text-align: center; - white-space: nowrap; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - 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; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333; - text-decoration: none; -} -.btn:active, -.btn.active { - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; - opacity: .65; -} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; -} -.btn-default { - color: #333; - background-color: #fff; - border-color: #ccc; -} -.btn-default:focus, -.btn-default.focus { - color: #333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active:hover, -.btn-default.active:hover, -.open > .dropdown-toggle.btn-default:hover, -.btn-default:active:focus, -.btn-default.active:focus, -.open > .dropdown-toggle.btn-default:focus, -.btn-default:active.focus, -.btn-default.active.focus, -.open > .dropdown-toggle.btn-default.focus { - color: #333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.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.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: #ccc; -} -.btn-default .badge { - color: #fff; - background-color: #333; -} -.btn-primary { - color: #fff; - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary:focus, -.btn-primary.focus { - color: #fff; - background-color: #286090; - border-color: #122b40; -} -.btn-primary:hover { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #fff; - background-color: #286090; - border-color: #204d74; -} -.btn-primary:active:hover, -.btn-primary.active:hover, -.open > .dropdown-toggle.btn-primary:hover, -.btn-primary:active:focus, -.btn-primary.active:focus, -.open > .dropdown-toggle.btn-primary:focus, -.btn-primary:active.focus, -.btn-primary.active.focus, -.open > .dropdown-toggle.btn-primary.focus { - color: #fff; - background-color: #204d74; - border-color: #122b40; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.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.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus { - background-color: #337ab7; - border-color: #2e6da4; -} -.btn-primary .badge { - color: #337ab7; - background-color: #fff; -} -.btn-success { - color: #fff; - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success:focus, -.btn-success.focus { - color: #fff; - background-color: #449d44; - border-color: #255625; -} -.btn-success:hover { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #fff; - background-color: #449d44; - border-color: #398439; -} -.btn-success:active:hover, -.btn-success.active:hover, -.open > .dropdown-toggle.btn-success:hover, -.btn-success:active:focus, -.btn-success.active:focus, -.open > .dropdown-toggle.btn-success:focus, -.btn-success:active.focus, -.btn-success.active.focus, -.open > .dropdown-toggle.btn-success.focus { - color: #fff; - background-color: #398439; - border-color: #255625; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.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.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus { - background-color: #5cb85c; - border-color: #4cae4c; -} -.btn-success .badge { - color: #5cb85c; - background-color: #fff; -} -.btn-info { - color: #fff; - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info:focus, -.btn-info.focus { - color: #fff; - background-color: #31b0d5; - border-color: #1b6d85; -} -.btn-info:hover { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #fff; - background-color: #31b0d5; - border-color: #269abc; -} -.btn-info:active:hover, -.btn-info.active:hover, -.open > .dropdown-toggle.btn-info:hover, -.btn-info:active:focus, -.btn-info.active:focus, -.open > .dropdown-toggle.btn-info:focus, -.btn-info:active.focus, -.btn-info.active.focus, -.open > .dropdown-toggle.btn-info.focus { - color: #fff; - background-color: #269abc; - border-color: #1b6d85; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.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.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus { - background-color: #5bc0de; - border-color: #46b8da; -} -.btn-info .badge { - color: #5bc0de; - background-color: #fff; -} -.btn-warning { - color: #fff; - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning:focus, -.btn-warning.focus { - color: #fff; - background-color: #ec971f; - border-color: #985f0d; -} -.btn-warning:hover { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #fff; - background-color: #ec971f; - border-color: #d58512; -} -.btn-warning:active:hover, -.btn-warning.active:hover, -.open > .dropdown-toggle.btn-warning:hover, -.btn-warning:active:focus, -.btn-warning.active:focus, -.open > .dropdown-toggle.btn-warning:focus, -.btn-warning:active.focus, -.btn-warning.active.focus, -.open > .dropdown-toggle.btn-warning.focus { - color: #fff; - background-color: #d58512; - border-color: #985f0d; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.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.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus { - background-color: #f0ad4e; - border-color: #eea236; -} -.btn-warning .badge { - color: #f0ad4e; - background-color: #fff; -} -.btn-danger { - color: #fff; - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger:focus, -.btn-danger.focus { - color: #fff; - background-color: #c9302c; - border-color: #761c19; -} -.btn-danger:hover { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #fff; - background-color: #c9302c; - border-color: #ac2925; -} -.btn-danger:active:hover, -.btn-danger.active:hover, -.open > .dropdown-toggle.btn-danger:hover, -.btn-danger:active:focus, -.btn-danger.active:focus, -.open > .dropdown-toggle.btn-danger:focus, -.btn-danger:active.focus, -.btn-danger.active.focus, -.open > .dropdown-toggle.btn-danger.focus { - color: #fff; - background-color: #ac2925; - border-color: #761c19; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.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.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus { - background-color: #d9534f; - border-color: #d43f3a; -} -.btn-danger .badge { - color: #d9534f; - background-color: #fff; -} -.btn-link { - font-weight: normal; - color: #337ab7; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.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: #23527c; - 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: #777; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; - border-radius: 6px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -.btn-block { - display: block; - width: 100%; -} -.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-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; - -webkit-transition-duration: .35s; - -o-transition-duration: .35s; - transition-duration: .35s; - -webkit-transition-property: height, visibility; - -o-transition-property: height, visibility; - transition-property: height, visibility; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropup, -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - font-size: 14px; - 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: 0 6px 12px rgba(0, 0, 0, .175); - box-shadow: 0 6px 12px rgba(0, 0, 0, .175); -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.42857143; - color: #333; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - color: #262626; - text-decoration: none; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - background-color: #337ab7; - outline: 0; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #777; -} -.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-menu-right { - right: 0; - left: auto; -} -.dropdown-menu-left { - right: auto; - left: 0; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 12px; - line-height: 1.42857143; - color: #777; - 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 { - content: ""; - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \9; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} -@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:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .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, -.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:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn-group:last-child:not(:first-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 0 3px 5px rgba(0, 0, 0, .125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-left-radius: 4px; - 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-right-radius: 4px; - 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; -} -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.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 .form-control:focus { - z-index: 3; -} -.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.3333333; - border-radius: 6px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 46px; - line-height: 46px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 30px; - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; - border-radius: 3px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 30px; - line-height: 30px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 14px; - font-weight: normal; - line-height: 1; - color: #555; - text-align: center; - background-color: #eee; - border: 1px solid #ccc; - border-radius: 4px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 12px; - border-radius: 3px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 18px; - border-radius: 6px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-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; -} -.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 { - z-index: 2; - margin-left: -1px; -} -.nav { - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #eee; -} -.nav > li.disabled > a { - color: #777; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #777; - text-decoration: none; - cursor: not-allowed; - background-color: transparent; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: #eee; - border-color: #337ab7; -} -.nav .nav-divider { - height: 1px; - margin: 9px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.42857143; - border: 1px solid transparent; - border-radius: 4px 4px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eee #eee #ddd; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #555; - cursor: default; - background-color: #fff; - border: 1px solid #ddd; - border-bottom-color: transparent; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - margin-bottom: 5px; - text-align: center; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 4px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 4px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #fff; - background-color: #337ab7; -} -.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; - border-radius: 4px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #ddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #ddd; - border-radius: 4px 4px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: #fff; - } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 20px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 4px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - 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-device-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; -} -@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: 15px 15px; - font-size: 18px; - line-height: 20px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@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.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 20px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - -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: 20px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 15px; - padding-bottom: 15px; - } -} -.navbar-form { - padding: 10px 15px; - margin-top: 8px; - margin-right: -15px; - margin-bottom: 8px; - 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; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .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; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@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-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 { - margin-bottom: 0; - border-top-left-radius: 4px; - border-top-right-radius: 4px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 8px; - margin-bottom: 8px; -} -.navbar-btn.btn-sm { - margin-top: 10px; - margin-bottom: 10px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 15px; - margin-bottom: 15px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-right: 15px; - margin-left: 15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - 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: #9d9d9d; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #9d9d9d; -} -.navbar-inverse .navbar-nav > li > a { - color: #9d9d9d; -} -.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: #9d9d9d; - } - .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: #9d9d9d; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #9d9d9d; -} -.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: 20px; - list-style: none; - background-color: #f5f5f5; - border-radius: 4px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - padding: 0 5px; - color: #ccc; - content: "/\00a0"; -} -.breadcrumb > .active { - color: #777; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 20px 0; - border-radius: 4px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #337ab7; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -.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: 2; - color: #23527c; - background-color: #eee; - border-color: #ddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - cursor: default; - background-color: #337ab7; - border-color: #337ab7; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 18px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 12px; - line-height: 1.5; -} -.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: 20px 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: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #eee; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #777; - cursor: not-allowed; - background-color: #fff; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - 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: #777; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #5e5e5e; -} -.label-primary { - background-color: #337ab7; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #286090; -} -.label-success { - background-color: #5cb85c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #449d44; -} -.label-info { - background-color: #5bc0de; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #31b0d5; -} -.label-warning { - background-color: #f0ad4e; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #ec971f; -} -.label-danger { - background-color: #d9534f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #c9302c; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 12px; - font-weight: bold; - line-height: 1; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: middle; - background-color: #777; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, -.btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #337ab7; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eee; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 21px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, -.container-fluid .jumbotron { - padding-right: 15px; - padding-left: 15px; - border-radius: 6px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, - .container-fluid .jumbotron { - padding-right: 60px; - padding-left: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 63px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 20px; - line-height: 1.42857143; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: border .2s ease-in-out; - -o-transition: border .2s ease-in-out; - transition: border .2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-right: auto; - margin-left: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #337ab7; -} -.thumbnail .caption { - padding: 9px; - color: #333; -} -.alert { - padding: 15px; - margin-bottom: 20px; - border: 1px solid transparent; - border-radius: 4px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.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: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@-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: 20px; - margin-bottom: 20px; - overflow: hidden; - background-color: #f5f5f5; - border-radius: 4px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); -} -.progress-bar { - float: left; - width: 0; - height: 100%; - font-size: 12px; - line-height: 20px; - color: #fff; - text-align: center; - background-color: #337ab7; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); - -webkit-transition: width .6s ease; - -o-transition: width .6s ease; - transition: width .6s ease; -} -.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-success { - background-color: #5cb85c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -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: #5bc0de; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -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: #f0ad4e; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -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: #d9534f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); - background-image: -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 { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media, -.media-body { - overflow: hidden; - zoom: 1; -} -.media-body { - width: 10000px; -} -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} -.media-right, -.media > .pull-right { - padding-left: 10px; -} -.media-left, -.media > .pull-left { - padding-right: 10px; -} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} -.media-middle { - vertical-align: middle; -} -.media-bottom { - vertical-align: bottom; -} -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} -.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; -} -a.list-group-item, -button.list-group-item { - color: #555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333; -} -a.list-group-item:hover, -button.list-group-item:hover, -a.list-group-item:focus, -button.list-group-item:focus { - color: #555; - text-decoration: none; - background-color: #f5f5f5; -} -button.list-group-item { - width: 100%; - text-align: left; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - color: #777; - cursor: not-allowed; - background-color: #eee; -} -.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: #777; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.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: #c7ddef; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -button.list-group-item-success:hover, -a.list-group-item-success:focus, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -button.list-group-item-success.active, -a.list-group-item-success.active:hover, -button.list-group-item-success.active:hover, -a.list-group-item-success.active:focus, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -button.list-group-item-info:hover, -a.list-group-item-info:focus, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -button.list-group-item-info.active, -a.list-group-item-info.active:hover, -button.list-group-item-info.active:hover, -a.list-group-item-info.active:focus, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -button.list-group-item-warning:hover, -a.list-group-item-warning:focus, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -button.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -button.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -button.list-group-item-danger:hover, -a.list-group-item-danger:focus, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -button.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -button.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 20px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 4px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); - box-shadow: 0 1px 1px rgba(0, 0, 0, .05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-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, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > 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, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .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, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.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 caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-right: 15px; - padding-left: 15px; -} -.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, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr: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, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr: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, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - 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: 20px; -} -.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, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #ddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ddd; -} -.panel-default { - border-color: #ddd; -} -.panel-default > .panel-heading { - color: #333; - background-color: #f5f5f5; - border-color: #ddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #333; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} -.panel-primary { - border-color: #337ab7; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #337ab7; - border-color: #337ab7; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #337ab7; -} -.panel-primary > .panel-heading .badge { - color: #337ab7; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #337ab7; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.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, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.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: 6px; -} -.well-sm { - padding: 9px; - border-radius: 3px; -} -.close { - float: right; - font-size: 21px; - font-weight: bold; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - filter: alpha(opacity=20); - opacity: .2; -} -.close:hover, -.close:focus { - color: #000; - text-decoration: none; - cursor: pointer; - filter: alpha(opacity=50); - opacity: .5; -} -button.close { - -webkit-appearance: none; - padding: 0; - cursor: pointer; - background: transparent; - 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: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.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: 6px; - 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 { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.42857143; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-bottom: 0; - margin-left: 5px; -} -.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-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 12px; - font-style: normal; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - white-space: normal; - filter: alpha(opacity=0); - opacity: 0; - - line-break: auto; -} -.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; - 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 { - right: 5px; - bottom: 0; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -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; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 14px; - font-style: normal; - font-weight: normal; - line-height: 1.42857143; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - 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: 6px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - box-shadow: 0 5px 10px rgba(0, 0, 0, .2); - - line-break: auto; -} -.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; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 5px 5px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - 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; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform .6s ease-in-out; - -o-transition: -o-transform .6s ease-in-out; - transition: transform .6s ease-in-out; - - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, - .carousel-inner > .item.active.right { - left: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - .carousel-inner > .item.prev, - .carousel-inner > .item.active.left { - left: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right, - .carousel-inner > .item.active { - left: 0; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.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: 15%; - font-size: 20px; - color: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, .6); - background-color: rgba(0, 0, 0, 0); - filter: alpha(opacity=50); - opacity: .5; -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); - background-repeat: repeat-x; -} -.carousel-control.right { - right: 0; - left: auto; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); - background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); - background-repeat: repeat-x; -} -.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; - margin-top: -10px; -} -.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; - font-family: serif; - line-height: 1; -} -.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: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; - } - .carousel-caption { - right: 20%; - left: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.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-header:before, -.modal-header: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-header: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; -} -.affix { - position: fixed; -} -@-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 !important; - } - 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 !important; - } - 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 !important; - } - 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 !important; - } - 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 !important; - } - 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 */ diff --git a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css.map b/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css.map deleted file mode 100644 index f010c82d11..0000000000 --- a/docs/user-guide/kubectl/v1.5/node_modules/bootstrap/dist/css/bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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AW,iBAAA;CHsR9C;AGrRmC;EAAW,iBAAA;CHwR9C;AGvRmC;EAAW,iBAAA;CH0R9C;AGzRmC;EAAW,iBAAA;CH4R9C;AG3RmC;EAAW,iBAAA;CH8R9C;AG7RmC;EAAW,iBAAA;CHgS9C;AG/RmC;EAAW,iBAAA;CHkS9C;AGjSmC;EAAW,iBAAA;CHoS9C;AGnSmC;EAAW,iBAAA;CHsS9C;AGrSmC;EAAW,iBAAA;CHwS9C;AGvSmC;EAAW,iBAAA;CH0S9C;AGzSmC;EAAW,iBAAA;CH4S9C;AG3SmC;EAAW,iBAAA;CH8S9C;AG7SmC;EAAW,iBAAA;CHgT9C;AG/SmC;EAAW,iBAAA;CHkT9C;AGjTmC;EAAW,iBAAA;CHoT9C;AGnTmC;EAAW,iBAAA;CHsT9C;AGrTmC;EAAW,iBAAA;CHwT9C;AGvTmC;EAAW,iBAAA;CH0T9C;AGzTmC;EAAW,iBAAA;CH4T9C;AG3TmC;EAAW,iBAAA;CH8T9C;AG7TmC;EAAW,iBAAA;CHgU9C;AG/TmC;EAAW,iBAAA;CHkU9C;AGjUmC;EAAW,iBAAA;CHoU9C;AGnUmC;EAAW,iBAAA;CHsU9C;AGrUmC;EAAW,iBAAA;CHwU9C;AGvUmC;EAAW,iBAAA;CH0U9C;AGzUmC;EAAW,iBAAA;CH4U9C;AG3UmC;EAAW,iBAAA;CH8U9C;AG7UmC;EAAW,iBAAA;CHgV9C;AG/UmC;EAAW,iBAAA;CHkV9C;AGjVmC;EAAW,iBAAA;CHoV9C;AGnVmC;EAAW,iBAAA;CHsV9C;AGrVmC;EAAW,iBAAA;CHwV9C;AGvVmC;EAAW,iBAAA;CH0V9C;AGzVmC;EAAW,iBAAA;CH4V9C;AG3VmC;EAAW,iBAAA;CH8V9C;AG7VmC;EAAW,iBAAA;CHgW9C;AG/VmC;EAAW,iBAAA;CHkW9C;AGjWmC;EAAW,iBAAA;CHoW9C;AGnWmC;EAAW,iBAAA;CHsW9C;AGrWmC;EAAW,iBAAA;CHwW9C;AGvWmC;EAAW,iBAAA;CH0W9C;AGzWmC;EAAW,iBAAA;CH4W9C;AG3WmC;EAAW,iBAAA;CH8W9C;AG7WmC;EAAW,iBAAA;CHgX9C;AG/WmC;EAAW,iBAAA;CHkX9C;AGjXmC;EAAW,iBAAA;CHoX9C;AGnXmC;EAAW,iBAAA;CHsX9C;AGrXmC;EAAW,iBAAA;CHwX9C;AGvXmC;EAAW,iBAAA;CH0X9C;AGzXmC;EAAW,iBAAA;CH4X9C;AG3XmC;EAAW,iBAAA;CH8X9C;AG7XmC;EAAW,iBAAA;CHgY9C;AG/XmC;EAAW,iBAAA;CHkY9C;AGjYmC;EAAW,iBAAA;CHoY9C;AGnYmC;EAAW,iBAAA;CHsY9C;AGrYmC;EAAW,iBAAA;CHwY9C;AGvYmC;EAAW,iBAAA;CH0Y9C;AGzYmC;EAAW,iBAAA;CH4Y9C;AG3YmC;EAAW,iBAAA;CH8Y9C;AG7YmC;EAAW,iBAAA;CHgZ9C;AG/YmC;EAAW,iBAAA;CHkZ9C;AGjZmC;EAAW,iBAAA;CHoZ9C;AGnZmC;EAAW,iBAAA;CHsZ9C;AGrZmC;EAAW,iBAAA;CHwZ9C;AGvZmC;EAAW,iBAAA;CH0Z9C;AGzZmC;EAAW,iBAAA;CH4Z9C;AG3ZmC;EAAW,iBAAA;CH8Z9C;AG7ZmC;EAAW,iBAAA;CHga9C;AG/ZmC;EAAW,iBAAA;CHka9C;AGjamC;EAAW,iBAAA;CHoa9C;AGnamC;EAAW,iBAAA;CHsa9C;AGramC;EAAW,iBAAA;CHwa9C;AGvamC;EAAW,iBAAA;CH0a9C;AGzamC;EAAW,iBAAA;CH4a9C;AG3amC;EAAW,iBAAA;CH8a9C;AG7amC;EAAW,iBAAA;CHgb9C;AG/amC;EAAW,iBAAA;CHkb9C;AGjbmC;EAAW,iBAAA;CHob9C;AGnbmC;EAAW,iBAAA;CHsb9C;AGrbmC;EAAW,iBAAA;CHwb9C;AGvbmC;EAAW,iBAAA;CH0b9C;AGzbmC;EAAW,iBAAA;CH4b9C;AG3bmC;EAAW,iBAAA;CH8b9C;AG7bmC;EAAW,iBAAA;CHgc9C;AG/bmC;EAAW,iBAAA;CHkc9C;AGjcmC;EAAW,iBAAA;CHoc9C;AGncmC;EAAW,iBAAA;CHsc9C;AGrcmC;EAAW,iBAAA;CHwc9C;AGvcmC;EAAW,iBAAA;CH0c9C;AGzcmC;EAAW,iBAAA;CH4c9C;AG3cmC;EAAW,iBAAA;CH8c9C;AG7cmC;EAAW,iBAAA;CHgd9C;AG/cmC;EAAW,iBAAA;CHkd9C;AGjdmC;EAAW,iBAAA;CHod9C;AGndmC;EAAW,iBAAA;CHsd9C;AGrdmC;EAAW,iBAAA;CHwd9C;AGvdmC;EAAW,iBAAA;CH0d9C;AGzdmC;EAAW,iBAAA;CH4d9C;AG3dmC;EAAW,iBAAA;CH8d9C;AG7dmC;EAAW,iBAAA;CHge9C;AG/dmC;EAAW,iBAAA;CHke9C;AGjemC;EAAW,iBAAA;CHoe9C;AGnemC;EAAW,iBAAA;CHse9C;AGremC;EAAW,iBAAA;CHwe9C;AGvemC;EAAW,iBAAA;CH0e9C;AGzemC;EAAW,iBAAA;CH4e9C;AG3emC;EAAW,iBAAA;CH8e9C;AG7emC;EAAW,iBAAA;CHgf9C;AG/emC;EAAW,iBAAA;CHkf9C;AGjfmC;EAAW,iBAAA;CHof9C;AGnfmC;EAAW,iBAAA;CHsf9C;AGrfmC;EAAW,iBAAA;CHwf9C;AGvfmC;EAAW,iBAAA;CH0f9C;AGzfmC;EAAW,iBAAA;CH4f9C;AG3fmC;EAAW,iBAAA;CH8f9C;AG7fmC;EAAW,iBAAA;CHggB9C;AG/fmC;EAAW,iBAAA;CHkgB9C;AGjgBmC;EAAW,iBAAA;CHogB9C;AGngBmC;EAAW,iBAAA;CHsgB9C;AGrgBmC;EAAW,iBAAA;CHwgB9C;AGvgBmC;EAAW,iBAAA;CH0gB9C;AGzgBmC;EAAW,iBAAA;CH4gB9C;AG3gBmC;EAAW,iBAAA;CH8gB9C;AG7gBmC;EAAW,iBAAA;CHghB9C;AG/gBmC;EAAW,iBAAA;CHkhB9C;AGjhBmC;EAAW,iBAAA;CHohB9C;AGnhBmC;EAAW,iBAAA;CHshB9C;AGrhBmC;EAAW,iBAAA;CHwhB9C;AGvhBmC;EAAW,iBAAA;CH0hB9C;AGzhBmC;EAAW,iBAAA;CH4hB9C;AG3hBmC;EAAW,iBAAA;CH8hB9C;AG7hBmC;EAAW,iBAAA;CHgiB9C;AG/hBmC;EAAW,iBAAA;CHkiB9C;AGjiBmC;EAAW,iBAAA;CHoiB9C;AGniBmC;EAAW,iBAAA;CHsiB9C;AGriBmC;EAAW,iBAAA;CHwiB9C;AGviBmC;EAAW,iBAAA;CH0iB9C;AGziBmC;EAAW,iBAAA;CH4iB9C;AG3iBmC;EAAW,iBAAA;CH8iB9C;AG7iBmC;EAAW,iBAAA;CHgjB9C;AG/iBmC;EAAW,iBAAA;CHkjB9C;AGjjBmC;EAAW,iBAAA;CHojB9C;AGnjBmC;EAAW,iBAAA;CHsjB9C;AGrjBmC;EAAW,iBAAA;CHwjB9C;AGvjBmC;EAAW,iBAAA;CH0jB9C;AGzjBmC;EAAW,iBAAA;CH4jB9C;AG3jBmC;EAAW,iBAAA;CH8jB9C;AG7jBmC;EAAW,iBAAA;CHgkB9C;AG/jBmC;EAAW,iBAAA;CHkkB9C;AGjkBmC;EAAW,iBAAA;CHokB9C;AGnkBmC;EAAW,iBAAA;CHskB9C;AGrkBmC;EAAW,iBAAA;CHwkB9C;AGvkBmC;EAAW,iBAAA;CH0kB9C;AGzkBmC;EAAW,iBAAA;CH4kB9C;AG3kBmC;EAAW,iBAAA;CH8kB9C;AG7kBmC;EAAW,iBAAA;CHglB9C;AG/kBmC;EAAW,iBAAA;CHklB9C;AGjlBmC;EAAW,iBAAA;CHolB9C;AGnlBmC;EAAW,iBAAA;CHslB9C;AGrlBmC;EAAW,iBAAA;CHwlB9C;AGvlBmC;EAAW,iBAAA;CH0lB9C;AGzlBmC;EAAW,iBAAA;CH4lB9C;AG3lBmC;EAAW,iBAAA;CH8lB9C;AG7lBmC;EAAW,iBAAA;CHgmB9C;AG/lBmC;EAAW,iBAAA;CHkmB9C;AGjmBmC;EAAW,iBAAA;CHomB9C;AGnmBmC;EAAW,iBAAA;CHsmB9C;AGrmBmC;EAAW,iBAAA;CHwmB9C;AGvmBmC;EAAW,iBAAA;CH0mB9C;AGzmBmC;EAAW,iBAAA;CH4mB9C;AG3mBmC;EAAW,iBAAA;CH8mB9C;AG7mBmC;EAAW,iBAAA;CHgnB9C;AG/mBmC;EAAW,iBAAA;CHknB9C;AGjnBmC;EAAW,iBAAA;CHonB9C;AGnnBmC;EAAW,iBAAA;CHsnB9C;AGrnBmC;EAAW,iBAAA;CHwnB9C;AGvnBmC;EAAW,iBAAA;CH0nB9C;AGznBmC;EAAW,iBAAA;CH4nB9C;AG3nBmC;EAAW,iBAAA;CH8nB9C;AG7nBmC;EAAW,iBAAA;CHgoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AGvoBmC;EAAW,iBAAA;CH0oB9C;AGzoBmC;EAAW,iBAAA;CH4oB9C;AG3oBmC;EAAW,iBAAA;CH8oB9C;AG7oBmC;EAAW,iBAAA;CHgpB9C;AG/oBmC;EAAW,iBAAA;CHkpB9C;AGjpBmC;EAAW,iBAAA;CHopB9C;AGnpBmC;EAAW,iBAAA;CHspB9C;AGrpBmC;EAAW,iBAAA;CHwpB9C;AGvpBmC;EAAW,iBAAA;CH0pB9C;AGzpBmC;EAAW,iBAAA;CH4pB9C;AG3pBmC;EAAW,iBAAA;CH8pB9C;AG7pBmC;EAAW,iBAAA;CHgqB9C;AG/pBmC;EAAW,iBAAA;CHkqB9C;AGjqBmC;EAAW,iBAAA;CHoqB9C;AGnqBmC;EAAW,iBAAA;CHsqB9C;AGrqBmC;EAAW,iBAAA;CHwqB9C;AGvqBmC;EAAW,iBAAA;CH0qB9C;AGzqBmC;EAAW,iBAAA;CH4qB9C;AG3qBmC;EAAW,iBAAA;CH8qB9C;AG7qBmC;EAAW,iBAAA;CHgrB9C;AG/qBmC;EAAW,iBAAA;CHkrB9C;AGjrBmC;EAAW,iBAAA;CHorB9C;AGnrBmC;EAAW,iBAAA;CHsrB9C;AGrrBmC;EAAW,iBAAA;CHwrB9C;AGvrBmC;EAAW,iBAAA;CH0rB9C;AGzrBmC;EAAW,iBAAA;CH4rB9C;AG3rBmC;EAAW,iBAAA;CH8rB9C;AG7rBmC;EAAW,iBAAA;CHgsB9C;AG/rBmC;EAAW,iBAAA;CHksB9C;AGjsBmC;EAAW,iBAAA;CHosB9C;AGnsBmC;EAAW,iBAAA;CHssB9C;AGrsBmC;EAAW,iBAAA;CHwsB9C;AGvsBmC;EAAW,iBAAA;CH0sB9C;AGzsBmC;EAAW,iBAAA;CH4sB9C;AG3sBmC;EAAW,iBAAA;CH8sB9C;AG7sBmC;EAAW,iBAAA;CHgtB9C;AG/sBmC;EAAW,iBAAA;CHktB9C;AGjtBmC;EAAW,iBAAA;CHotB9C;AGntBmC;EAAW,iBAAA;CHstB9C;AGrtBmC;EAAW,iBAAA;CHwtB9C;AGvtBmC;EAAW,iBAAA;CH0tB9C;AGztBmC;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ukDH;AexkDC;EACE,oBAAA;Cf0kDH;Ae3kDC;EACE,WAAA;Cf6kDH;Ae9kDC;EACE,oBAAA;CfglDH;AejlDC;EACE,mBAAA;CfmlDH;Ae/kDC;EACE,YAAA;CfilDH;AejmDC;EACE,WAAA;CfmmDH;AepmDC;EACE,mBAAA;CfsmDH;AevmDC;EACE,mBAAA;CfymDH;Ae1mDC;EACE,UAAA;Cf4mDH;Ae7mDC;EACE,mBAAA;Cf+mDH;AehnDC;EACE,mBAAA;CfknDH;AennDC;EACE,UAAA;CfqnDH;AetnDC;EACE,mBAAA;CfwnDH;AeznDC;EACE,mBAAA;Cf2nDH;Ae5nDC;EACE,UAAA;Cf8nDH;Ae/nDC;EACE,mBAAA;CfioDH;AeloDC;EACE,kBAAA;CfooDH;AehoDC;EACE,WAAA;CfkoDH;AepnDC;EACE,kBAAA;CfsnDH;AevnDC;EACE,0BAAA;CfynDH;Ae1nDC;EACE,0BAAA;Cf4nDH;Ae7nDC;EACE,iBAAA;Cf+nDH;AehoDC;EACE,0BAAA;CfkoDH;AenoDC;EACE,0BAAA;CfqoDH;AetoDC;EACE,iBAAA;CfwoDH;AezoDC;EACE,0BAAA;Cf2oDH;Ae5oDC;EACE,0BAAA;Cf8oDH;Ae/oDC;EACE,iBAAA;CfipDH;AelpDC;EACE,0BAAA;CfopDH;AerpDC;EACE,yBAAA;CfupDH;AexpDC;EACE,gBAAA;Cf0pDH;Aa1pDD;EElCI;IACE,YAAA;Gf+rDH;EexrDD;IACE,YAAA;Gf0rDD;Ee3rDD;IACE,oBAAA;Gf6rDD;Ee9rDD;IACE,oBAAA;GfgsDD;EejsDD;IACE,WAAA;GfmsDD;EepsDD;IACE,oBAAA;GfssDD;EevsDD;IACE,oBAAA;GfysDD;Ee1sDD;IACE,WAAA;Gf4sDD;Ee7sDD;IACE,oBAAA;Gf+sDD;EehtDD;IACE,oBAAA;GfktDD;EentDD;IACE,WAAA;GfqtDD;EettDD;IACE,oBAAA;GfwtDD;EeztDD;IACE,mBAAA;Gf2tDD;Ee7sDD;IACE,YAAA;Gf+sDD;EehtDD;IACE,oBAAA;GfktDD;EentDD;IACE,oBAAA;GfqtDD;EettDD;IACE,WAAA;GfwtDD;EeztDD;IACE,oBAAA;Gf2tDD;Ee5tDD;IACE,oBAAA;Gf8tDD;Ee/tDD;IACE,WAAA;GfiuDD;EeluDD;IACE,oBAAA;GfouDD;EeruDD;IACE,oBAAA;GfuuDD;EexuDD;IACE,WAAA;Gf0uDD;Ee3uDD;IACE,oBAAA;Gf6uDD;Ee9uDD;IACE,mBAAA;GfgvDD;Ee5uDD;IACE,YAAA;Gf8uDD;Ee9vDD;IACE,WAAA;GfgwDD;EejwDD;IACE,mBAAA;GfmwDD;EepwDD;IACE,mBAAA;GfswDD;EevwDD;IACE,UAAA;GfywDD;Ee1wDD;IACE,mBAAA;Gf4wDD;Ee7wDD;IACE,mBAAA;Gf+wDD;EehxDD;IACE,UAAA;GfkxDD;EenxDD;IACE,mBAAA;GfqxDD;EetxDD;IACE,mBAAA;GfwxDD;EezxDD;IACE,UAAA;Gf2xDD;Ee5xDD;IACE,mBAAA;Gf8xDD;Ee/xDD;IACE,kBAAA;GfiyDD;Ee7xDD;IACE,WAAA;Gf+xDD;EejxDD;IACE,kBAAA;GfmxDD;EepxDD;IACE,0BAAA;GfsxDD;EevxDD;IACE,0BAAA;GfyxDD;Ee1xDD;IACE,iBAAA;Gf4xDD;Ee7xDD;IACE,0BAAA;Gf+xDD;EehyDD;IACE,0BAAA;GfkyDD;EenyDD;IACE,iBAAA;GfqyDD;EetyDD;IACE,0BAAA;GfwyDD;EezyDD;IACE,0BAAA;Gf2yDD;Ee5yDD;IACE,iBAAA;Gf8yDD;Ee/yDD;IACE,0BAAA;GfizDD;EelzDD;IACE,yBAAA;GfozDD;EerzDD;IACE,gBAAA;GfuzDD;CACF;Aa/yDD;EE3CI;IACE,YAAA;Gf61DH;Eet1DD;IACE,YAAA;Gfw1DD;Eez1DD;IACE,oBAAA;Gf21DD;Ee51DD;IACE,oBAAA;Gf81DD;Ee/1DD;IACE,WAAA;Gfi2DD;Eel2DD;IACE,oBAAA;Gfo2DD;Eer2DD;IACE,oBAAA;Gfu2DD;Eex2DD;IACE,WAAA;Gf02DD;Ee32DD;IACE,oBAAA;Gf62DD;Ee92DD;IACE,oBAAA;Gfg3DD;Eej3DD;IACE,WAAA;Gfm3DD;Eep3DD;IACE,oBAAA;Gfs3DD;Eev3DD;IACE,mBAAA;Gfy3DD;Ee32DD;IACE,YAAA;Gf62DD;Ee92DD;IACE,oBAAA;Gfg3DD;Eej3DD;IACE,oBAAA;Gfm3DD;Eep3DD;IACE,WAAA;Gfs3DD;Eev3DD;IACE,oBAAA;Gfy3DD;Ee13DD;IACE,oBAAA;Gf43DD;Ee73DD;IACE,WAAA;Gf+3DD;Eeh4DD;IACE,oBAAA;Gfk4DD;Een4DD;IACE,oBAAA;Gfq4DD;Eet4DD;IACE,WAAA;Gfw4DD;Eez4DD;IACE,oBAAA;Gf24DD;Ee54DD;IACE,mBAAA;Gf84DD;Ee14DD;IACE,YAAA;Gf44DD;Ee55DD;IACE,WAAA;Gf85DD;Ee/5DD;IACE,mBAAA;Gfi6DD;Eel6DD;IACE,mBAAA;Gfo6DD;Eer6DD;IACE,UAAA;Gfu6DD;Eex6DD;IACE,mBAAA;Gf06DD;Ee36DD;IACE,mBAAA;Gf66DD;Ee96DD;IACE,UAAA;Gfg7DD;Eej7DD;IACE,mBAAA;Gfm7DD;Eep7DD;IACE,mBAAA;Gfs7DD;Eev7DD;IACE,UAAA;Gfy7DD;Ee17DD;IACE,mBAAA;Gf47DD;Ee77DD;IACE,kBAAA;Gf+7DD;Ee37DD;IACE,WAAA;Gf67DD;Ee/6DD;IACE,kBAAA;Gfi7DD;Eel7DD;IACE,0BAAA;Gfo7DD;Eer7DD;IACE,0BAAA;Gfu7DD;Eex7DD;IACE,iBAAA;Gf07DD;Ee37DD;IACE,0BAAA;Gf67DD;Ee97DD;IACE,0BAAA;Gfg8DD;Eej8DD;IACE,iBAAA;Gfm8DD;Eep8DD;IACE,0BAAA;Gfs8DD;Eev8DD;IACE,0BAAA;Gfy8DD;Ee18DD;IACE,iBAAA;Gf48DD;Ee78DD;IACE,0BAAA;Gf+8DD;Eeh9DD;IACE,yBAAA;Gfk9DD;Een9DD;IACE,gBAAA;Gfq9DD;CACF;Aa18DD;EE9CI;IACE,YAAA;Gf2/DH;Eep/DD;IACE,YAAA;Gfs/DD;Eev/DD;IACE,oBAAA;Gfy/DD;Ee1/DD;IACE,oBAAA;Gf4/DD;Ee7/DD;IACE,WAAA;Gf+/DD;EehgED;IACE,oBAAA;GfkgED;EengED;IACE,oBAAA;GfqgED;EetgED;IACE,WAAA;GfwgED;EezgED;IACE,oBAAA;Gf2gED;Ee5gED;IACE,oBAAA;Gf8gED;Ee/gED;IACE,WAAA;GfihED;EelhED;IACE,oBAAA;GfohED;EerhED;IACE,mBAAA;GfuhED;EezgED;IACE,YAAA;Gf2gED;Ee5gED;IACE,oBAAA;Gf8gED;Ee/gED;IACE,oBAAA;GfihED;EelhED;IACE,WAAA;GfohED;EerhED;IACE,oBAAA;GfuhED;EexhED;IACE,oBAAA;Gf0hED;Ee3hED;IACE,WAAA;Gf6hED;Ee9hED;IACE,oBAAA;GfgiED;EejiED;IACE,oBAAA;GfmiED;EepiED;IACE,WAAA;GfsiED;EeviED;IACE,oBAAA;GfyiED;Ee1iED;IACE,mBAAA;Gf4iED;EexiED;IACE,YAAA;Gf0iED;Ee1jED;IACE,WAAA;Gf4jED;Ee7jED;IACE,mBAAA;Gf+jED;EehkED;IACE,mBAAA;GfkkED;EenkED;IACE,UAAA;GfqkED;EetkED;IACE,mBAAA;GfwkED;EezkED;IACE,mBAAA;Gf2kED;Ee5kED;IACE,UAAA;Gf8kED;Ee/kED;IACE,mBAAA;GfilED;EellED;IACE,mBAAA;GfolED;EerlED;IACE,UAAA;GfulED;EexlED;IACE,mBAAA;Gf0lED;Ee3lED;IACE,kBAAA;Gf6lED;EezlED;IACE,WAAA;Gf2lED;Ee7kED;IACE,kBAAA;Gf+kED;EehlED;IACE,0BAAA;GfklED;EenlED;IACE,0BAAA;GfqlED;EetlED;IACE,iBAAA;GfwlED;EezlED;IACE,0BAAA;Gf2lED;Ee5lED;IACE,0BAAA;Gf8lED;Ee/lED;IACE,iBAAA;GfimED;EelmED;IACE,0BAAA;GfomED;EermED;IACE,0BAAA;GfumED;EexmED;IACE,iBAAA;Gf0mED;Ee3mED;IACE,0BAAA;Gf6mED;Ee9mED;IACE,yBAAA;GfgnED;EejnED;IACE,gBAAA;GfmnED;CACF;AgBvrED;EACE,8BAAA;ChByrED;AgBvrED;EACE,iBAAA;EACA,oBAAA;EACA,eAAA;EACA,iBAAA;ChByrED;AgBvrED;EACE,iBAAA;ChByrED;AgBnrED;EACE,YAAA;EACA,gBAAA;EACA,oBAAA;ChBqrED;AgBxrED;;;;;;EAWQ,aAAA;EACA,wBAAA;EACA,oBAAA;EACA,2BAAA;ChBqrEP;AgBnsED;EAoBI,uBAAA;EACA,8BAAA;ChBkrEH;AgBvsED;;;;;;EA8BQ,cAAA;ChBirEP;AgB/sED;EAoCI,2BAAA;ChB8qEH;AgBltED;EAyCI,uBAAA;ChB4qEH;AgBrqED;;;;;;EAOQ,aAAA;ChBsqEP;AgB3pED;EACE,uBAAA;ChB6pED;AgB9pED;;;;;;EAQQ,uBAAA;ChB8pEP;AgBtqED;;EAeM,yBAAA;ChB2pEL;AgBjpED;EAEI,0BAAA;ChBkpEH;AgBzoED;EAEI,0BAAA;ChB0oEH;AgBjoED;EACE,iBAAA;EACA,YAAA;EACA,sBAAA;ChBmoED;AgB9nEG;;EACE,iBAAA;EACA,YAAA;EACA,oBAAA;ChBioEL;AiB7wEC;;;;;;;;;;;;EAOI,0BAAA;CjBoxEL;AiB9wEC;;;;;EAMI,0BAAA;CjB+wEL;AiBlyEC;;;;;;;;;;;;EAOI,0BAAA;CjByyEL;AiBnyEC;;;;;EAMI,0BAAA;CjBoyEL;AiBvzEC;;;;;;;;;;;;EAOI,0BAAA;CjB8zEL;AiBxzEC;;;;;EAMI,0BAAA;CjByzEL;AiB50EC;;;;;;;;;;;;EAOI,0BAAA;CjBm1EL;AiB70EC;;;;;EAMI,0BAAA;CjB80EL;AiBj2EC;;;;;;;;;;;;EAOI,0BAAA;CjBw2EL;AiBl2EC;;;;;EAMI,0BAAA;CjBm2EL;AgBjtED;EACE,iBAAA;EACA,kBAAA;ChBmtED;AgBtpED;EACA;IA3DI,YAAA;IACA,oBAAA;IACA,mBAAA;IACA,6CAAA;IACA,uBAAA;GhBotED;EgB7pEH;IAnDM,iBAAA;GhBmtEH;EgBhqEH;;;;;;IA1CY,oBAAA;GhBktET;EgBxqEH;IAlCM,UAAA;GhB6sEH;EgB3qEH;;;;;;IAzBY,eAAA;GhB4sET;EgBnrEH;;;;;;IArBY,gBAAA;GhBgtET;EgB3rEH;;;;IARY,iBAAA;GhBysET;CACF;AkBn6ED;EACE,WAAA;EACA,UAAA;EACA,UAAA;EAIA,aAAA;ClBk6ED;AkB/5ED;EACE,eAAA;EACA,YAAA;EACA,WAAA;EACA,oBAAA;EACA,gBAAA;EACA,qBAAA;EACA,eAAA;EACA,UAAA;EACA,iCAAA;ClBi6ED;AkB95ED;EACE,sBAAA;EACA,gBAAA;EACA,mBAAA;EACA,kBAAA;ClBg6ED;AkBr5ED;Eb4BE,+BAAA;EACG,4BAAA;EACK,uBAAA;CL43ET;AkBr5ED;;EAEE,gBAAA;EACA,mBAAA;EACA,oBAAA;ClBu5ED;AkBp5ED;EACE,eAAA;ClBs5ED;AkBl5ED;EACE,eAAA;EACA,YAAA;ClBo5ED;AkBh5ED;;EAEE,aAAA;ClBk5ED;AkB94ED;;;EZrEE,2CAAA;EACA,qBAAA;CNw9ED;AkB74ED;EACE,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;ClB+4ED;AkBr3ED;EACE,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;EbxDA,yDAAA;EACQ,iDAAA;EAyHR,uFAAA;EACK,0EAAA;EACG,uEAAA;CLwzET;AmBh8EC;EACE,sBAAA;EACA,WAAA;EdUF,uFAAA;EACQ,+EAAA;CLy7ET;AKx5EC;EACE,YAAA;EACA,WAAA;CL05EH;AKx5EC;EAA0B,YAAA;CL25E3B;AK15EC;EAAgC,YAAA;CL65EjC;AkBj4EC;EACE,UAAA;EACA,8BAAA;ClBm4EH;AkB33EC;;;EAGE,0BAAA;EACA,WAAA;ClB63EH;AkB13EC;;EAEE,oBAAA;ClB43EH;AkBx3EC;EACE,aAAA;ClB03EH;AkB92ED;EACE,yBAAA;ClBg3ED;AkBx0ED;EAtBI;;;;IACE,kBAAA;GlBo2EH;EkBj2EC;;;;;;;;IAEE,kBAAA;GlBy2EH;EkBt2EC;;;;;;;;IAEE,kBAAA;GlB82EH;CACF;AkBp2ED;EACE,oBAAA;ClBs2ED;AkB91ED;;EAEE,mBAAA;EACA,eAAA;EACA,iBAAA;EACA,oBAAA;ClBg2ED;AkBr2ED;;EAQI,iBAAA;EACA,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,gBAAA;ClBi2EH;AkB91ED;;;;EAIE,mBAAA;EACA,mBAAA;EACA,mBAAA;ClBg2ED;AkB71ED;;EAEE,iBAAA;ClB+1ED;AkB31ED;;EAEE,mBAAA;EACA,sBAAA;EACA,mBAAA;EACA,iBAAA;EACA,uBAAA;EACA,oBAAA;EACA,gBAAA;ClB61ED;AkB31ED;;EAEE,cAAA;EACA,kBAAA;ClB61ED;AkBp1EC;;;;;;EAGE,oBAAA;ClBy1EH;AkBn1EC;;;;EAEE,oBAAA;ClBu1EH;AkBj1EC;;;;EAGI,oBAAA;ClBo1EL;AkBz0ED;EAEE,iBAAA;EACA,oBAAA;EAEA,iBAAA;EACA,iBAAA;ClBy0ED;AkBv0EC;;EAEE,gBAAA;EACA,iBAAA;ClBy0EH;AkB5zED;ECnQE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnBkkFD;AmBhkFC;EACE,aAAA;EACA,kBAAA;CnBkkFH;AmB/jFC;;EAEE,aAAA;CnBikFH;AkBx0ED;EAEI,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;ClBy0EH;AkB/0ED;EASI,aAAA;EACA,kBAAA;ClBy0EH;AkBn1ED;;EAcI,aAAA;ClBy0EH;AkBv1ED;EAiBI,aAAA;EACA,iBAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;ClBy0EH;AkBr0ED;EC/RE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnBumFD;AmBrmFC;EACE,aAAA;EACA,kBAAA;CnBumFH;AmBpmFC;;EAEE,aAAA;CnBsmFH;AkBj1ED;EAEI,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;ClBk1EH;AkBx1ED;EASI,aAAA;EACA,kBAAA;ClBk1EH;AkB51ED;;EAcI,aAAA;ClBk1EH;AkBh2ED;EAiBI,aAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;ClBk1EH;AkBz0ED;EAEE,mBAAA;ClB00ED;AkB50ED;EAMI,sBAAA;ClBy0EH;AkBr0ED;EACE,mBAAA;EACA,OAAA;EACA,SAAA;EACA,WAAA;EACA,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,mBAAA;EACA,qBAAA;ClBu0ED;AkBr0ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBu0ED;AkBr0ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBu0ED;AkBn0ED;;;;;;;;;;EC1ZI,eAAA;CnByuFH;AkB/0ED;ECtZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CL0rFT;AmBxuFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL+rFT;AkBz1ED;EC5YI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBwuFH;AkB91ED;ECtYI,eAAA;CnBuuFH;AkB91ED;;;;;;;;;;EC7ZI,eAAA;CnBuwFH;AkB12ED;ECzZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CLwtFT;AmBtwFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL6tFT;AkBp3ED;EC/YI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBswFH;AkBz3ED;ECzYI,eAAA;CnBqwFH;AkBz3ED;;;;;;;;;;EChaI,eAAA;CnBqyFH;AkBr4ED;EC5ZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CLsvFT;AmBpyFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL2vFT;AkB/4ED;EClZI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBoyFH;AkBp5ED;EC5YI,eAAA;CnBmyFH;AkBh5EC;EACE,UAAA;ClBk5EH;AkBh5EC;EACE,OAAA;ClBk5EH;AkBx4ED;EACE,eAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;ClB04ED;AkBvzED;EAwEA;IAtIM,sBAAA;IACA,iBAAA;IACA,uBAAA;GlBy3EH;EkBrvEH;IA/HM,sBAAA;IACA,YAAA;IACA,uBAAA;GlBu3EH;EkB1vEH;IAxHM,sBAAA;GlBq3EH;EkB7vEH;IApHM,sBAAA;IACA,uBAAA;GlBo3EH;EkBjwEH;;;IA9GQ,YAAA;GlBo3EL;EkBtwEH;IAxGM,YAAA;GlBi3EH;EkBzwEH;IApGM,iBAAA;IACA,uBAAA;GlBg3EH;EkB7wEH;;IA5FM,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB62EH;EkBpxEH;;IAtFQ,gBAAA;GlB82EL;EkBxxEH;;IAjFM,mBAAA;IACA,eAAA;GlB62EH;EkB7xEH;IA3EM,OAAA;GlB22EH;CACF;AkBj2ED;;;;EASI,cAAA;EACA,iBAAA;EACA,iBAAA;ClB81EH;AkBz2ED;;EAiBI,iBAAA;ClB41EH;AkB72ED;EJthBE,mBAAA;EACA,oBAAA;Cds4FD;AkB10EC;EAyBF;IAnCM,kBAAA;IACA,iBAAA;IACA,iBAAA;GlBw1EH;CACF;AkBx3ED;EAwCI,YAAA;ClBm1EH;AkBr0EC;EAUF;IAdQ,kBAAA;IACA,gBAAA;GlB60EL;CACF;AkBn0EC;EAEF;IANQ,iBAAA;IACA,gBAAA;GlB20EL;CACF;AoBp6FD;EACE,sBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,uBAAA;EACA,+BAAA;MAAA,2BAAA;EACA,gBAAA;EACA,uBAAA;EACA,8BAAA;EACA,oBAAA;EC0CA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,mBAAA;EhB+JA,0BAAA;EACG,uBAAA;EACC,sBAAA;EACI,kBAAA;CL+tFT;AoBv6FG;;;;;;EdnBF,2CAAA;EACA,qBAAA;CNk8FD;AoB16FC;;;EAGE,YAAA;EACA,sBAAA;CpB46FH;AoBz6FC;;EAEE,WAAA;EACA,uBAAA;Ef2BF,yDAAA;EACQ,iDAAA;CLi5FT;AoBz6FC;;;EAGE,oBAAA;EE7CF,cAAA;EAGA,0BAAA;EjB8DA,yBAAA;EACQ,iBAAA;CL05FT;AoBz6FG;;EAEE,qBAAA;CpB26FL;AoBl6FD;EC3DE,YAAA;EACA,uBAAA;EACA,mBAAA;CrBg+FD;AqB99FC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBg+FP;AqB99FC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBg+FP;AqB99FC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBg+FP;AqB99FG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBs+FT;AqBn+FC;;;EAGE,uBAAA;CrBq+FH;AqBh+FG;;;;;;;;;EAGE,uBAAA;EACI,mBAAA;CrBw+FT;AoBv9FD;ECZI,YAAA;EACA,uBAAA;CrBs+FH;AoBx9FD;EC9DE,YAAA;EACA,0BAAA;EACA,sBAAA;CrByhGD;AqBvhGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrByhGP;AqBvhGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrByhGP;AqBvhGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrByhGP;AqBvhGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB+hGT;AqB5hGC;;;EAGE,uBAAA;CrB8hGH;AqBzhGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBiiGT;AoB7gGD;ECfI,eAAA;EACA,uBAAA;CrB+hGH;AoB7gGD;EClEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBklGD;AqBhlGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBklGP;AqBhlGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBklGP;AqBhlGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBklGP;AqBhlGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBwlGT;AqBrlGC;;;EAGE,uBAAA;CrBulGH;AqBllGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrB0lGT;AoBlkGD;ECnBI,eAAA;EACA,uBAAA;CrBwlGH;AoBlkGD;ECtEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB2oGD;AqBzoGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB2oGP;AqBzoGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB2oGP;AqBzoGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB2oGP;AqBzoGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBipGT;AqB9oGC;;;EAGE,uBAAA;CrBgpGH;AqB3oGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBmpGT;AoBvnGD;ECvBI,eAAA;EACA,uBAAA;CrBipGH;AoBvnGD;EC1EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBosGD;AqBlsGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBosGP;AqBlsGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBosGP;AqBlsGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBosGP;AqBlsGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB0sGT;AqBvsGC;;;EAGE,uBAAA;CrBysGH;AqBpsGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrB4sGT;AoB5qGD;EC3BI,eAAA;EACA,uBAAA;CrB0sGH;AoB5qGD;EC9EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB6vGD;AqB3vGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB6vGP;AqB3vGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB6vGP;AqB3vGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB6vGP;AqB3vGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBmwGT;AqBhwGC;;;EAGE,uBAAA;CrBkwGH;AqB7vGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBqwGT;AoBjuGD;EC/BI,eAAA;EACA,uBAAA;CrBmwGH;AoB5tGD;EACE,eAAA;EACA,oBAAA;EACA,iBAAA;CpB8tGD;AoB5tGC;;;;;EAKE,8BAAA;EfnCF,yBAAA;EACQ,iBAAA;CLkwGT;AoB7tGC;;;;EAIE,0BAAA;CpB+tGH;AoB7tGC;;EAEE,eAAA;EACA,2BAAA;EACA,8BAAA;CpB+tGH;AoB3tGG;;;;EAEE,eAAA;EACA,sBAAA;CpB+tGL;AoBttGD;;ECxEE,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CrBkyGD;AoBztGD;;EC5EE,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrByyGD;AoB5tGD;;EChFE,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrBgzGD;AoB3tGD;EACE,eAAA;EACA,YAAA;CpB6tGD;AoBztGD;EACE,gBAAA;CpB2tGD;AoBptGC;;;EACE,YAAA;CpBwtGH;AuBl3GD;EACE,WAAA;ElBoLA,yCAAA;EACK,oCAAA;EACG,iCAAA;CLisGT;AuBr3GC;EACE,WAAA;CvBu3GH;AuBn3GD;EACE,cAAA;CvBq3GD;AuBn3GC;EAAY,eAAA;CvBs3Gb;AuBr3GC;EAAY,mBAAA;CvBw3Gb;AuBv3GC;EAAY,yBAAA;CvB03Gb;AuBv3GD;EACE,mBAAA;EACA,UAAA;EACA,iBAAA;ElBuKA,gDAAA;EACQ,2CAAA;KAAA,wCAAA;EAOR,mCAAA;EACQ,8BAAA;KAAA,2BAAA;EAGR,yCAAA;EACQ,oCAAA;KAAA,iCAAA;CL2sGT;AwBr5GD;EACE,sBAAA;EACA,SAAA;EACA,UAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,yBAAA;EACA,oCAAA;EACA,mCAAA;CxBu5GD;AwBn5GD;;EAEE,mBAAA;CxBq5GD;AwBj5GD;EACE,WAAA;CxBm5GD;AwB/4GD;EACE,mBAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,sCAAA;EACA,mBAAA;EnBsBA,oDAAA;EACQ,4CAAA;EmBrBR,qCAAA;UAAA,6BAAA;CxBk5GD;AwB74GC;EACE,SAAA;EACA,WAAA;CxB+4GH;AwBx6GD;ECzBE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzBo8GD;AwB96GD;EAmCI,eAAA;EACA,kBAAA;EACA,YAAA;EACA,oBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxB84GH;AwBx4GC;;EAEE,sBAAA;EACA,eAAA;EACA,0BAAA;CxB04GH;AwBp4GC;;;EAGE,YAAA;EACA,sBAAA;EACA,WAAA;EACA,0BAAA;CxBs4GH;AwB73GC;;;EAGE,eAAA;CxB+3GH;AwB33GC;;EAEE,sBAAA;EACA,8BAAA;EACA,uBAAA;EE3GF,oEAAA;EF6GE,oBAAA;CxB63GH;AwBx3GD;EAGI,eAAA;CxBw3GH;AwB33GD;EAQI,WAAA;CxBs3GH;AwB92GD;EACE,WAAA;EACA,SAAA;CxBg3GD;AwBx2GD;EACE,QAAA;EACA,YAAA;CxB02GD;AwBt2GD;EACE,eAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxBw2GD;AwBp2GD;EACE,gBAAA;EACA,QAAA;EACA,SAAA;EACA,UAAA;EACA,OAAA;EACA,aAAA;CxBs2GD;AwBl2GD;EACE,SAAA;EACA,WAAA;CxBo2GD;AwB51GD;;EAII,cAAA;EACA,0BAAA;EACA,4BAAA;EACA,YAAA;CxB41GH;AwBn2GD;;EAWI,UAAA;EACA,aAAA;EACA,mBAAA;CxB41GH;AwBv0GD;EAXE;IApEA,WAAA;IACA,SAAA;GxB05GC;EwBv1GD;IA1DA,QAAA;IACA,YAAA;GxBo5GC;CACF;A2BpiHD;;EAEE,mBAAA;EACA,sBAAA;EACA,uBAAA;C3BsiHD;A2B1iHD;;EAMI,mBAAA;EACA,YAAA;C3BwiHH;A2BtiHG;;;;;;;;EAIE,WAAA;C3B4iHL;A2BtiHD;;;;EAKI,kBAAA;C3BuiHH;A2BliHD;EACE,kBAAA;C3BoiHD;A2BriHD;;;EAOI,YAAA;C3BmiHH;A2B1iHD;;;EAYI,iBAAA;C3BmiHH;A2B/hHD;EACE,iBAAA;C3BiiHD;A2B7hHD;EACE,eAAA;C3B+hHD;A2B9hHC;EClDA,8BAAA;EACG,2BAAA;C5BmlHJ;A2B7hHD;;EC/CE,6BAAA;EACG,0BAAA;C5BglHJ;A2B5hHD;EACE,YAAA;C3B8hHD;A2B5hHD;EACE,iBAAA;C3B8hHD;A2B5hHD;;ECnEE,8BAAA;EACG,2BAAA;C5BmmHJ;A2B3hHD;ECjEE,6BAAA;EACG,0BAAA;C5B+lHJ;A2B1hHD;;EAEE,WAAA;C3B4hHD;A2B3gHD;EACE,kBAAA;EACA,mBAAA;C3B6gHD;A2B3gHD;EACE,mBAAA;EACA,oBAAA;C3B6gHD;A2BxgHD;EtB/CE,yDAAA;EACQ,iDAAA;CL0jHT;A2BxgHC;EtBnDA,yBAAA;EACQ,iBAAA;CL8jHT;A2BrgHD;EACE,eAAA;C3BugHD;A2BpgHD;EACE,wBAAA;EACA,uBAAA;C3BsgHD;A2BngHD;EACE,wBAAA;C3BqgHD;A2B9/GD;;;EAII,eAAA;EACA,YAAA;EACA,YAAA;EACA,gBAAA;C3B+/GH;A2BtgHD;EAcM,YAAA;C3B2/GL;A2BzgHD;;;;EAsBI,iBAAA;EACA,eAAA;C3By/GH;A2Bp/GC;EACE,iBAAA;C3Bs/GH;A2Bp/GC;EC3KA,6BAAA;EACC,4BAAA;EAOD,8BAAA;EACC,6BAAA;C5B4pHF;A2Bt/GC;EC/KA,2BAAA;EACC,0BAAA;EAOD,gCAAA;EACC,+BAAA;C5BkqHF;A2Bv/GD;EACE,iBAAA;C3By/GD;A2Bv/GD;;EC/KE,8BAAA;EACC,6BAAA;C5B0qHF;A2Bt/GD;EC7LE,2BAAA;EACC,0BAAA;C5BsrHF;A2Bl/GD;EACE,eAAA;EACA,YAAA;EACA,oBAAA;EACA,0BAAA;C3Bo/GD;A2Bx/GD;;EAOI,YAAA;EACA,oBAAA;EACA,UAAA;C3Bq/GH;A2B9/GD;EAYI,YAAA;C3Bq/GH;A2BjgHD;EAgBI,WAAA;C3Bo/GH;A2Bn+GD;;;;EAKM,mBAAA;EACA,uBAAA;EACA,qBAAA;C3Bo+GL;A6B9sHD;EACE,mBAAA;EACA,eAAA;EACA,0BAAA;C7BgtHD;A6B7sHC;EACE,YAAA;EACA,gBAAA;EACA,iBAAA;C7B+sHH;A6BxtHD;EAeI,mBAAA;EACA,WAAA;EAKA,YAAA;EAEA,YAAA;EACA,iBAAA;C7BusHH;A6BrsHG;EACE,WAAA;C7BusHL;A6B7rHD;;;EV0BE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnBwqHD;AmBtqHC;;;EACE,aAAA;EACA,kBAAA;CnB0qHH;AmBvqHC;;;;;;EAEE,aAAA;CnB6qHH;A6B/sHD;;;EVqBE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnB+rHD;AmB7rHC;;;EACE,aAAA;EACA,kBAAA;CnBisHH;AmB9rHC;;;;;;EAEE,aAAA;CnBosHH;A6B7tHD;;;EAGE,oBAAA;C7B+tHD;A6B7tHC;;;EACE,iBAAA;C7BiuHH;A6B7tHD;;EAEE,UAAA;EACA,oBAAA;EACA,uBAAA;C7B+tHD;A6B1tHD;EACE,kBAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;EACA,eAAA;EACA,mBAAA;EACA,0BAAA;EACA,uBAAA;EACA,mBAAA;C7B4tHD;A6BztHC;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;C7B2tHH;A6BztHC;EACE,mBAAA;EACA,gBAAA;EACA,mBAAA;C7B2tHH;A6B/uHD;;EA0BI,cAAA;C7BytHH;A6BptHD;;;;;;;EDpGE,8BAAA;EACG,2BAAA;C5Bi0HJ;A6BrtHD;EACE,gBAAA;C7ButHD;A6BrtHD;;;;;;;EDxGE,6BAAA;EACG,0BAAA;C5Bs0HJ;A6BttHD;EACE,eAAA;C7BwtHD;A6BntHD;EACE,mBAAA;EAGA,aAAA;EACA,oBAAA;C7BmtHD;A6BxtHD;EAUI,mBAAA;C7BitHH;A6B3tHD;EAYM,kBAAA;C7BktHL;A6B/sHG;;;EAGE,WAAA;C7BitHL;A6B5sHC;;EAGI,mBAAA;C7B6sHL;A6B1sHC;;EAGI,WAAA;EACA,kBAAA;C7B2sHL;A8B12HD;EACE,iBAAA;EACA,gBAAA;EACA,iBAAA;C9B42HD;A8B/2HD;EAOI,mBAAA;EACA,eAAA;C9B22HH;A8Bn3HD;EAWM,mBAAA;EACA,eAAA;EACA,mBAAA;C9B22HL;A8B12HK;;EAEE,sBAAA;EACA,0BAAA;C9B42HP;A8Bv2HG;EACE,eAAA;C9By2HL;A8Bv2HK;;EAEE,eAAA;EACA,sBAAA;EACA,8BAAA;EACA,oBAAA;C9By2HP;A8Bl2HG;;;EAGE,0BAAA;EACA,sBAAA;C9Bo2HL;A8B74HD;ELHE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzBm5HD;A8Bn5HD;EA0DI,gBAAA;C9B41HH;A8Bn1HD;EACE,8BAAA;C9Bq1HD;A8Bt1HD;EAGI,YAAA;EAEA,oBAAA;C9Bq1HH;A8B11HD;EASM,kBAAA;EACA,wBAAA;EACA,8BAAA;EACA,2BAAA;C9Bo1HL;A8Bn1HK;EACE,mCAAA;C9Bq1HP;A8B/0HK;;;EAGE,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,iCAAA;EACA,gBAAA;C9Bi1HP;A8B50HC;EAqDA,YAAA;EA8BA,iBAAA;C9B6vHD;A8Bh1HC;EAwDE,YAAA;C9B2xHH;A8Bn1HC;EA0DI,mBAAA;EACA,mBAAA;C9B4xHL;A8Bv1HC;EAgEE,UAAA;EACA,WAAA;C9B0xHH;A8B9wHD;EA0DA;IAjEM,oBAAA;IACA,UAAA;G9ByxHH;E8BztHH;IA9DQ,iBAAA;G9B0xHL;CACF;A8Bp2HC;EAuFE,gBAAA;EACA,mBAAA;C9BgxHH;A8Bx2HC;;;EA8FE,uBAAA;C9B+wHH;A8BjwHD;EA2BA;IApCM,8BAAA;IACA,2BAAA;G9B8wHH;E8B3uHH;;;IA9BM,0BAAA;G9B8wHH;CACF;A8B/2HD;EAEI,YAAA;C9Bg3HH;A8Bl3HD;EAMM,mBAAA;C9B+2HL;A8Br3HD;EASM,iBAAA;C9B+2HL;A8B12HK;;;EAGE,YAAA;EACA,0BAAA;C9B42HP;A8Bp2HD;EAEI,YAAA;C9Bq2HH;A8Bv2HD;EAIM,gBAAA;EACA,eAAA;C9Bs2HL;A8B11HD;EACE,YAAA;C9B41HD;A8B71HD;EAII,YAAA;C9B41HH;A8Bh2HD;EAMM,mBAAA;EACA,mBAAA;C9B61HL;A8Bp2HD;EAYI,UAAA;EACA,WAAA;C9B21HH;A8B/0HD;EA0DA;IAjEM,oBAAA;IACA,UAAA;G9B01HH;E8B1xHH;IA9DQ,iBAAA;G9B21HL;CACF;A8Bn1HD;EACE,iBAAA;C9Bq1HD;A8Bt1HD;EAKI,gBAAA;EACA,mBAAA;C9Bo1HH;A8B11HD;;;EAYI,uBAAA;C9Bm1HH;A8Br0HD;EA2BA;IApCM,8BAAA;IACA,2BAAA;G9Bk1HH;E8B/yHH;;;IA9BM,0BAAA;G9Bk1HH;CACF;A8Bz0HD;EAEI,cAAA;C9B00HH;A8B50HD;EAKI,eAAA;C9B00HH;A8Bj0HD;EAEE,iBAAA;EF3OA,2BAAA;EACC,0BAAA;C5B8iIF;A+BxiID;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,8BAAA;C/B0iID;A+BliID;EA8nBA;IAhoBI,mBAAA;G/BwiID;CACF;A+BzhID;EAgnBA;IAlnBI,YAAA;G/B+hID;CACF;A+BjhID;EACE,oBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,2DAAA;UAAA,mDAAA;EAEA,kCAAA;C/BkhID;A+BhhIC;EACE,iBAAA;C/BkhIH;A+Bt/HD;EA6jBA;IArlBI,YAAA;IACA,cAAA;IACA,yBAAA;YAAA,iBAAA;G/BkhID;E+BhhIC;IACE,0BAAA;IACA,wBAAA;IACA,kBAAA;IACA,6BAAA;G/BkhIH;E+B/gIC;IACE,oBAAA;G/BihIH;E+B5gIC;;;IAGE,gBAAA;IACA,iBAAA;G/B8gIH;CACF;A+B1gID;;EAGI,kBAAA;C/B2gIH;A+BtgIC;EAmjBF;;IArjBM,kBAAA;G/B6gIH;CACF;A+BpgID;;;;EAII,oBAAA;EACA,mBAAA;C/BsgIH;A+BhgIC;EAgiBF;;;;IAniBM,gBAAA;IACA,eAAA;G/B0gIH;CACF;A+B9/HD;EACE,cAAA;EACA,sBAAA;C/BggID;A+B3/HD;EA8gBA;IAhhBI,iBAAA;G/BigID;CACF;A+B7/HD;;EAEE,gBAAA;EACA,SAAA;EACA,QAAA;EACA,cAAA;C/B+/HD;A+Bz/HD;EAggBA;;IAlgBI,iBAAA;G/BggID;CACF;A+B9/HD;EACE,OAAA;EACA,sBAAA;C/BggID;A+B9/HD;EACE,UAAA;EACA,iBAAA;EACA,sBAAA;C/BggID;A+B1/HD;EACE,YAAA;EACA,mBAAA;EACA,gBAAA;EACA,kBAAA;EACA,aAAA;C/B4/HD;A+B1/HC;;EAEE,sBAAA;C/B4/HH;A+BrgID;EAaI,eAAA;C/B2/HH;A+Bl/HD;EALI;;IAEE,mBAAA;G/B0/HH;CACF;A+Bh/HD;EACE,mBAAA;EACA,aAAA;EACA,mBAAA;EACA,kBAAA;EC9LA,gBAAA;EACA,mBAAA;ED+LA,8BAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;C/Bm/HD;A+B/+HC;EACE,WAAA;C/Bi/HH;A+B//HD;EAmBI,eAAA;EACA,YAAA;EACA,YAAA;EACA,mBAAA;C/B++HH;A+BrgID;EAyBI,gBAAA;C/B++HH;A+Bz+HD;EAqbA;IAvbI,cAAA;G/B++HD;CACF;A+Bt+HD;EACE,oBAAA;C/Bw+HD;A+Bz+HD;EAII,kBAAA;EACA,qBAAA;EACA,kBAAA;C/Bw+HH;A+B58HC;EA2YF;IAjaM,iBAAA;IACA,YAAA;IACA,YAAA;IACA,cAAA;IACA,8BAAA;IACA,UAAA;IACA,yBAAA;YAAA,iBAAA;G/Bs+HH;E+B3kHH;;IAxZQ,2BAAA;G/Bu+HL;E+B/kHH;IArZQ,kBAAA;G/Bu+HL;E+Bt+HK;;IAEE,uBAAA;G/Bw+HP;CACF;A+Bt9HD;EA+XA;IA1YI,YAAA;IACA,UAAA;G/Bq+HD;E+B5lHH;IAtYM,YAAA;G/Bq+HH;E+B/lHH;IApYQ,kBAAA;IACA,qBAAA;G/Bs+HL;CACF;A+B39HD;EACE,mBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,qCAAA;E1B9NA,6FAAA;EACQ,qFAAA;E2B/DR,gBAAA;EACA,mBAAA;ChC4vID;AkBtuHD;EAwEA;IAtIM,sBAAA;IACA,iBAAA;IACA,uBAAA;GlBwyHH;EkBpqHH;IA/HM,sBAAA;IACA,YAAA;IACA,uBAAA;GlBsyHH;EkBzqHH;IAxHM,sBAAA;GlBoyHH;EkB5qHH;IApHM,sBAAA;IACA,uBAAA;GlBmyHH;EkBhrHH;;;IA9GQ,YAAA;GlBmyHL;EkBrrHH;IAxGM,YAAA;GlBgyHH;EkBxrHH;IApGM,iBAAA;IACA,uBAAA;GlB+xHH;EkB5rHH;;IA5FM,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB4xHH;EkBnsHH;;IAtFQ,gBAAA;GlB6xHL;EkBvsHH;;IAjFM,mBAAA;IACA,eAAA;GlB4xHH;EkB5sHH;IA3EM,OAAA;GlB0xHH;CACF;A+BpgIC;EAmWF;IAzWM,mBAAA;G/B8gIH;E+B5gIG;IACE,iBAAA;G/B8gIL;CACF;A+B7/HD;EAoVA;IA5VI,YAAA;IACA,UAAA;IACA,eAAA;IACA,gBAAA;IACA,eAAA;IACA,kBAAA;I1BzPF,yBAAA;IACQ,iBAAA;GLmwIP;CACF;A+BngID;EACE,cAAA;EHpUA,2BAAA;EACC,0BAAA;C5B00IF;A+BngID;EACE,iBAAA;EHzUA,6BAAA;EACC,4BAAA;EAOD,8BAAA;EACC,6BAAA;C5By0IF;A+B//HD;EChVE,gBAAA;EACA,mBAAA;ChCk1ID;A+BhgIC;ECnVA,iBAAA;EACA,oBAAA;ChCs1ID;A+BjgIC;ECtVA,iBAAA;EACA,oBAAA;ChC01ID;A+B3/HD;EChWE,iBAAA;EACA,oBAAA;ChC81ID;A+Bv/HD;EAsSA;IA1SI,YAAA;IACA,kBAAA;IACA,mBAAA;G/B+/HD;CACF;A+Bl+HD;EAhBE;IExWA,uBAAA;GjC81IC;E+Br/HD;IE5WA,wBAAA;IF8WE,oBAAA;G/Bu/HD;E+Bz/HD;IAKI,gBAAA;G/Bu/HH;CACF;A+B9+HD;EACE,0BAAA;EACA,sBAAA;C/Bg/HD;A+Bl/HD;EAKI,YAAA;C/Bg/HH;A+B/+HG;;EAEE,eAAA;EACA,8BAAA;C/Bi/HL;A+B1/HD;EAcI,YAAA;C/B++HH;A+B7/HD;EAmBM,YAAA;C/B6+HL;A+B3+HK;;EAEE,YAAA;EACA,8BAAA;C/B6+HP;A+Bz+HK;;;EAGE,YAAA;EACA,0BAAA;C/B2+HP;A+Bv+HK;;;EAGE,YAAA;EACA,8BAAA;C/By+HP;A+BjhID;EA8CI,mBAAA;C/Bs+HH;A+Br+HG;;EAEE,uBAAA;C/Bu+HL;A+BxhID;EAoDM,uBAAA;C/Bu+HL;A+B3hID;;EA0DI,sBAAA;C/Bq+HH;A+B99HK;;;EAGE,0BAAA;EACA,YAAA;C/Bg+HP;A+B/7HC;EAoKF;IA7LU,YAAA;G/B49HP;E+B39HO;;IAEE,YAAA;IACA,8BAAA;G/B69HT;E+Bz9HO;;;IAGE,YAAA;IACA,0BAAA;G/B29HT;E+Bv9HO;;;IAGE,YAAA;IACA,8BAAA;G/By9HT;CACF;A+B3jID;EA8GI,YAAA;C/Bg9HH;A+B/8HG;EACE,YAAA;C/Bi9HL;A+BjkID;EAqHI,YAAA;C/B+8HH;A+B98HG;;EAEE,YAAA;C/Bg9HL;A+B58HK;;;;EAEE,YAAA;C/Bg9HP;A+Bx8HD;EACE,uBAAA;EACA,sBAAA;C/B08HD;A+B58HD;EAKI,eAAA;C/B08HH;A+Bz8HG;;EAEE,YAAA;EACA,8BAAA;C/B28HL;A+Bp9HD;EAcI,eAAA;C/By8HH;A+Bv9HD;EAmBM,eAAA;C/Bu8HL;A+Br8HK;;EAEE,YAAA;EACA,8BAAA;C/Bu8HP;A+Bn8HK;;;EAGE,YAAA;EACA,0BAAA;C/Bq8HP;A+Bj8HK;;;EAGE,YAAA;EACA,8BAAA;C/Bm8HP;A+B3+HD;EA+CI,mBAAA;C/B+7HH;A+B97HG;;EAEE,uBAAA;C/Bg8HL;A+Bl/HD;EAqDM,uBAAA;C/Bg8HL;A+Br/HD;;EA2DI,sBAAA;C/B87HH;A+Bx7HK;;;EAGE,0BAAA;EACA,YAAA;C/B07HP;A+Bn5HC;EAwBF;IAvDU,sBAAA;G/Bs7HP;E+B/3HH;IApDU,0BAAA;G/Bs7HP;E+Bl4HH;IAjDU,eAAA;G/Bs7HP;E+Br7HO;;IAEE,YAAA;IACA,8BAAA;G/Bu7HT;E+Bn7HO;;;IAGE,YAAA;IACA,0BAAA;G/Bq7HT;E+Bj7HO;;;IAGE,YAAA;IACA,8BAAA;G/Bm7HT;CACF;A+B3hID;EA+GI,eAAA;C/B+6HH;A+B96HG;EACE,YAAA;C/Bg7HL;A+BjiID;EAsHI,eAAA;C/B86HH;A+B76HG;;EAEE,YAAA;C/B+6HL;A+B36HK;;;;EAEE,YAAA;C/B+6HP;AkCzjJD;EACE,kBAAA;EACA,oBAAA;EACA,iBAAA;EACA,0BAAA;EACA,mBAAA;ClC2jJD;AkChkJD;EAQI,sBAAA;ClC2jJH;AkCnkJD;EAWM,kBAAA;EACA,eAAA;EACA,YAAA;ClC2jJL;AkCxkJD;EAkBI,eAAA;ClCyjJH;AmC7kJD;EACE,sBAAA;EACA,gBAAA;EACA,eAAA;EACA,mBAAA;CnC+kJD;AmCnlJD;EAOI,gBAAA;CnC+kJH;AmCtlJD;;EAUM,mBAAA;EACA,YAAA;EACA,kBAAA;EACA,wBAAA;EACA,sBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,kBAAA;CnCglJL;AmC9kJG;;EAGI,eAAA;EPXN,+BAAA;EACG,4BAAA;C5B2lJJ;AmC7kJG;;EPvBF,gCAAA;EACG,6BAAA;C5BwmJJ;AmCxkJG;;;;EAEE,WAAA;EACA,eAAA;EACA,0BAAA;EACA,mBAAA;CnC4kJL;AmCtkJG;;;;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;EACA,gBAAA;CnC2kJL;AmCloJD;;;;;;EAkEM,eAAA;EACA,uBAAA;EACA,mBAAA;EACA,oBAAA;CnCwkJL;AmC/jJD;;EC3EM,mBAAA;EACA,gBAAA;EACA,uBAAA;CpC8oJL;AoC5oJG;;ERKF,+BAAA;EACG,4BAAA;C5B2oJJ;AoC3oJG;;ERTF,gCAAA;EACG,6BAAA;C5BwpJJ;AmC1kJD;;EChFM,kBAAA;EACA,gBAAA;EACA,iBAAA;CpC8pJL;AoC5pJG;;ERKF,+BAAA;EACG,4BAAA;C5B2pJJ;AoC3pJG;;ERTF,gCAAA;EACG,6BAAA;C5BwqJJ;AqC3qJD;EACE,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,mBAAA;CrC6qJD;AqCjrJD;EAOI,gBAAA;CrC6qJH;AqCprJD;;EAUM,sBAAA;EACA,kBAAA;EACA,uBAAA;EACA,uBAAA;EACA,oBAAA;CrC8qJL;AqC5rJD;;EAmBM,sBAAA;EACA,0BAAA;CrC6qJL;AqCjsJD;;EA2BM,aAAA;CrC0qJL;AqCrsJD;;EAkCM,YAAA;CrCuqJL;AqCzsJD;;;;EA2CM,eAAA;EACA,uBAAA;EACA,oBAAA;CrCoqJL;AsCltJD;EACE,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,mBAAA;EACA,oBAAA;EACA,yBAAA;EACA,qBAAA;CtCotJD;AsChtJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CtCktJL;AsC7sJC;EACE,cAAA;CtC+sJH;AsC3sJC;EACE,mBAAA;EACA,UAAA;CtC6sJH;AsCtsJD;ECtCE,0BAAA;CvC+uJD;AuC5uJG;;EAEE,0BAAA;CvC8uJL;AsCzsJD;EC1CE,0BAAA;CvCsvJD;AuCnvJG;;EAEE,0BAAA;CvCqvJL;AsC5sJD;EC9CE,0BAAA;CvC6vJD;AuC1vJG;;EAEE,0BAAA;CvC4vJL;AsC/sJD;EClDE,0BAAA;CvCowJD;AuCjwJG;;EAEE,0BAAA;CvCmwJL;AsCltJD;ECtDE,0BAAA;CvC2wJD;AuCxwJG;;EAEE,0BAAA;CvC0wJL;AsCrtJD;EC1DE,0BAAA;CvCkxJD;AuC/wJG;;EAEE,0BAAA;CvCixJL;AwCnxJD;EACE,sBAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,eAAA;EACA,uBAAA;EACA,oBAAA;EACA,mBAAA;EACA,0BAAA;EACA,oBAAA;CxCqxJD;AwClxJC;EACE,cAAA;CxCoxJH;AwChxJC;EACE,mBAAA;EACA,UAAA;CxCkxJH;AwC/wJC;;EAEE,OAAA;EACA,iBAAA;CxCixJH;AwC5wJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CxC8wJL;AwCzwJC;;EAEE,eAAA;EACA,uBAAA;CxC2wJH;AwCxwJC;EACE,aAAA;CxC0wJH;AwCvwJC;EACE,kBAAA;CxCywJH;AwCtwJC;EACE,iBAAA;CxCwwJH;AyCl0JD;EACE,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,eAAA;EACA,0BAAA;CzCo0JD;AyCz0JD;;EASI,eAAA;CzCo0JH;AyC70JD;EAaI,oBAAA;EACA,gBAAA;EACA,iBAAA;CzCm0JH;AyCl1JD;EAmBI,0BAAA;CzCk0JH;AyC/zJC;;EAEE,mBAAA;EACA,mBAAA;EACA,oBAAA;CzCi0JH;AyC31JD;EA8BI,gBAAA;CzCg0JH;AyC9yJD;EACA;IAfI,kBAAA;IACA,qBAAA;GzCg0JD;EyC9zJC;;IAEE,mBAAA;IACA,oBAAA;GzCg0JH;EyCvzJH;;IAJM,gBAAA;GzC+zJH;CACF;A0C52JD;EACE,eAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;ErCiLA,4CAAA;EACK,uCAAA;EACG,oCAAA;CL8rJT;A0Cx3JD;;EAaI,kBAAA;EACA,mBAAA;C1C+2JH;A0C32JC;;;EAGE,sBAAA;C1C62JH;A0Cl4JD;EA0BI,aAAA;EACA,eAAA;C1C22JH;A2Cp4JD;EACE,cAAA;EACA,oBAAA;EACA,8BAAA;EACA,mBAAA;C3Cs4JD;A2C14JD;EAQI,cAAA;EAEA,eAAA;C3Co4JH;A2C94JD;EAeI,kBAAA;C3Ck4JH;A2Cj5JD;;EAqBI,iBAAA;C3Cg4JH;A2Cr5JD;EAyBI,gBAAA;C3C+3JH;A2Cv3JD;;EAEE,oBAAA;C3Cy3JD;A2C33JD;;EAMI,mBAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;C3Cy3JH;A2Cj3JD;ECvDE,0BAAA;EACA,sBAAA;EACA,eAAA;C5C26JD;A2Ct3JD;EClDI,0BAAA;C5C26JH;A2Cz3JD;EC/CI,eAAA;C5C26JH;A2Cx3JD;EC3DE,0BAAA;EACA,sBAAA;EACA,eAAA;C5Cs7JD;A2C73JD;ECtDI,0BAAA;C5Cs7JH;A2Ch4JD;ECnDI,eAAA;C5Cs7JH;A2C/3JD;EC/DE,0BAAA;EACA,sBAAA;EACA,eAAA;C5Ci8JD;A2Cp4JD;EC1DI,0BAAA;C5Ci8JH;A2Cv4JD;ECvDI,eAAA;C5Ci8JH;A2Ct4JD;ECnEE,0BAAA;EACA,sBAAA;EACA,eAAA;C5C48JD;A2C34JD;EC9DI,0BAAA;C5C48JH;A2C94JD;EC3DI,eAAA;C5C48JH;A6C98JD;EACE;IAAQ,4BAAA;G7Ci9JP;E6Ch9JD;IAAQ,yBAAA;G7Cm9JP;CACF;A6Ch9JD;EACE;IAAQ,4BAAA;G7Cm9JP;E6Cl9JD;IAAQ,yBAAA;G7Cq9JP;CACF;A6Cx9JD;EACE;IAAQ,4BAAA;G7Cm9JP;E6Cl9JD;IAAQ,yBAAA;G7Cq9JP;CACF;A6C98JD;EACE,iBAAA;EACA,aAAA;EACA,oBAAA;EACA,0BAAA;EACA,mBAAA;ExCsCA,uDAAA;EACQ,+CAAA;CL26JT;A6C78JD;EACE,YAAA;EACA,UAAA;EACA,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,mBAAA;EACA,0BAAA;ExCyBA,uDAAA;EACQ,+CAAA;EAyHR,oCAAA;EACK,+BAAA;EACG,4BAAA;CL+zJT;A6C18JD;;ECCI,8MAAA;EACA,yMAAA;EACA,sMAAA;EDAF,mCAAA;UAAA,2BAAA;C7C88JD;A6Cv8JD;;ExC5CE,2DAAA;EACK,sDAAA;EACG,mDAAA;CLu/JT;A6Cp8JD;EErEE,0BAAA;C/C4gKD;A+CzgKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C49JH;A6Cx8JD;EEzEE,0BAAA;C/CohKD;A+CjhKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9Co+JH;A6C58JD;EE7EE,0BAAA;C/C4hKD;A+CzhKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C4+JH;A6Ch9JD;EEjFE,0BAAA;C/CoiKD;A+CjiKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9Co/JH;AgD5iKD;EAEE,iBAAA;ChD6iKD;AgD3iKC;EACE,cAAA;ChD6iKH;AgDziKD;;EAEE,QAAA;EACA,iBAAA;ChD2iKD;AgDxiKD;EACE,eAAA;ChD0iKD;AgDviKD;EACE,eAAA;ChDyiKD;AgDtiKC;EACE,gBAAA;ChDwiKH;AgDpiKD;;EAEE,mBAAA;ChDsiKD;AgDniKD;;EAEE,oBAAA;ChDqiKD;AgDliKD;;;EAGE,oBAAA;EACA,oBAAA;ChDoiKD;AgDjiKD;EACE,uBAAA;ChDmiKD;AgDhiKD;EACE,uBAAA;ChDkiKD;AgD9hKD;EACE,cAAA;EACA,mBAAA;ChDgiKD;AgD1hKD;EACE,gBAAA;EACA,iBAAA;ChD4hKD;AiDnlKD;EAEE,oBAAA;EACA,gBAAA;CjDolKD;AiD5kKD;EACE,mBAAA;EACA,eAAA;EACA,mBAAA;EAEA,oBAAA;EACA,uBAAA;EACA,uBAAA;CjD6kKD;AiD1kKC;ErB3BA,6BAAA;EACC,4BAAA;C5BwmKF;AiD3kKC;EACE,iBAAA;ErBvBF,gCAAA;EACC,+BAAA;C5BqmKF;AiDpkKD;;EAEE,YAAA;CjDskKD;AiDxkKD;;EAKI,YAAA;CjDukKH;AiDnkKC;;;;EAEE,sBAAA;EACA,YAAA;EACA,0BAAA;CjDukKH;AiDnkKD;EACE,YAAA;EACA,iBAAA;CjDqkKD;AiDhkKC;;;EAGE,0BAAA;EACA,eAAA;EACA,oBAAA;CjDkkKH;AiDvkKC;;;EASI,eAAA;CjDmkKL;AiD5kKC;;;EAYI,eAAA;CjDqkKL;AiDhkKC;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;CjDkkKH;AiDxkKC;;;;;;;;;EAYI,eAAA;CjDukKL;AiDnlKC;;;EAeI,eAAA;CjDykKL;AkD3qKC;EACE,eAAA;EACA,0BAAA;ClD6qKH;AkD3qKG;;EAEE,eAAA;ClD6qKL;AkD/qKG;;EAKI,eAAA;ClD8qKP;AkD3qKK;;;;EAEE,eAAA;EACA,0BAAA;ClD+qKP;AkD7qKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDkrKP;AkDxsKC;EACE,eAAA;EACA,0BAAA;ClD0sKH;AkDxsKG;;EAEE,eAAA;ClD0sKL;AkD5sKG;;EAKI,eAAA;ClD2sKP;AkDxsKK;;;;EAEE,eAAA;EACA,0BAAA;ClD4sKP;AkD1sKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD+sKP;AkDruKC;EACE,eAAA;EACA,0BAAA;ClDuuKH;AkDruKG;;EAEE,eAAA;ClDuuKL;AkDzuKG;;EAKI,eAAA;ClDwuKP;AkDruKK;;;;EAEE,eAAA;EACA,0BAAA;ClDyuKP;AkDvuKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD4uKP;AkDlwKC;EACE,eAAA;EACA,0BAAA;ClDowKH;AkDlwKG;;EAEE,eAAA;ClDowKL;AkDtwKG;;EAKI,eAAA;ClDqwKP;AkDlwKK;;;;EAEE,eAAA;EACA,0BAAA;ClDswKP;AkDpwKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDywKP;AiDxqKD;EACE,cAAA;EACA,mBAAA;CjD0qKD;AiDxqKD;EACE,iBAAA;EACA,iBAAA;CjD0qKD;AmDpyKD;EACE,oBAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;E9C0DA,kDAAA;EACQ,0CAAA;CL6uKT;AmDnyKD;EACE,cAAA;CnDqyKD;AmDhyKD;EACE,mBAAA;EACA,qCAAA;EvBpBA,6BAAA;EACC,4BAAA;C5BuzKF;AmDtyKD;EAMI,eAAA;CnDmyKH;AmD9xKD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,eAAA;CnDgyKD;AmDpyKD;;;;;EAWI,eAAA;CnDgyKH;AmD3xKD;EACE,mBAAA;EACA,0BAAA;EACA,2BAAA;EvBxCA,gCAAA;EACC,+BAAA;C5Bs0KF;AmDrxKD;;EAGI,iBAAA;CnDsxKH;AmDzxKD;;EAMM,oBAAA;EACA,iBAAA;CnDuxKL;AmDnxKG;;EAEI,cAAA;EvBvEN,6BAAA;EACC,4BAAA;C5B61KF;AmDjxKG;;EAEI,iBAAA;EvBvEN,gCAAA;EACC,+BAAA;C5B21KF;AmD1yKD;EvB1DE,2BAAA;EACC,0BAAA;C5Bu2KF;AmD7wKD;EAEI,oBAAA;CnD8wKH;AmD3wKD;EACE,oBAAA;CnD6wKD;AmDrwKD;;;EAII,iBAAA;CnDswKH;AmD1wKD;;;EAOM,mBAAA;EACA,oBAAA;CnDwwKL;AmDhxKD;;EvBzGE,6BAAA;EACC,4BAAA;C5B63KF;AmDrxKD;;;;EAmBQ,4BAAA;EACA,6BAAA;CnDwwKP;AmD5xKD;;;;;;;;EAwBU,4BAAA;CnD8wKT;AmDtyKD;;;;;;;;EA4BU,6BAAA;CnDoxKT;AmDhzKD;;EvBjGE,gCAAA;EACC,+BAAA;C5Bq5KF;AmDrzKD;;;;EAyCQ,+BAAA;EACA,gCAAA;CnDkxKP;AmD5zKD;;;;;;;;EA8CU,+BAAA;CnDwxKT;AmDt0KD;;;;;;;;EAkDU,gCAAA;CnD8xKT;AmDh1KD;;;;EA2DI,2BAAA;CnD2xKH;AmDt1KD;;EA+DI,cAAA;CnD2xKH;AmD11KD;;EAmEI,UAAA;CnD2xKH;AmD91KD;;;;;;;;;;;;EA0EU,eAAA;CnDkyKT;AmD52KD;;;;;;;;;;;;EA8EU,gBAAA;CnD4yKT;AmD13KD;;;;;;;;EAuFU,iBAAA;CnD6yKT;AmDp4KD;;;;;;;;EAgGU,iBAAA;CnD8yKT;AmD94KD;EAsGI,UAAA;EACA,iBAAA;CnD2yKH;AmDjyKD;EACE,oBAAA;CnDmyKD;AmDpyKD;EAKI,iBAAA;EACA,mBAAA;CnDkyKH;AmDxyKD;EASM,gBAAA;CnDkyKL;AmD3yKD;EAcI,iBAAA;CnDgyKH;AmD9yKD;;EAkBM,2BAAA;CnDgyKL;AmDlzKD;EAuBI,cAAA;CnD8xKH;AmDrzKD;EAyBM,8BAAA;CnD+xKL;AmDxxKD;EC1PE,mBAAA;CpDqhLD;AoDnhLC;EACE,eAAA;EACA,0BAAA;EACA,mBAAA;CpDqhLH;AoDxhLC;EAMI,uBAAA;CpDqhLL;AoD3hLC;EASI,eAAA;EACA,0BAAA;CpDqhLL;AoDlhLC;EAEI,0BAAA;CpDmhLL;AmDvyKD;EC7PE,sBAAA;CpDuiLD;AoDriLC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CpDuiLH;AoD1iLC;EAMI,0BAAA;CpDuiLL;AoD7iLC;EASI,eAAA;EACA,uBAAA;CpDuiLL;AoDpiLC;EAEI,6BAAA;CpDqiLL;AmDtzKD;EChQE,sBAAA;CpDyjLD;AoDvjLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDyjLH;AoD5jLC;EAMI,0BAAA;CpDyjLL;AoD/jLC;EASI,eAAA;EACA,0BAAA;CpDyjLL;AoDtjLC;EAEI,6BAAA;CpDujLL;AmDr0KD;ECnQE,sBAAA;CpD2kLD;AoDzkLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD2kLH;AoD9kLC;EAMI,0BAAA;CpD2kLL;AoDjlLC;EASI,eAAA;EACA,0BAAA;CpD2kLL;AoDxkLC;EAEI,6BAAA;CpDykLL;AmDp1KD;ECtQE,sBAAA;CpD6lLD;AoD3lLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD6lLH;AoDhmLC;EAMI,0BAAA;CpD6lLL;AoDnmLC;EASI,eAAA;EACA,0BAAA;CpD6lLL;AoD1lLC;EAEI,6BAAA;CpD2lLL;AmDn2KD;ECzQE,sBAAA;CpD+mLD;AoD7mLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD+mLH;AoDlnLC;EAMI,0BAAA;CpD+mLL;AoDrnLC;EASI,eAAA;EACA,0BAAA;CpD+mLL;AoD5mLC;EAEI,6BAAA;CpD6mLL;AqD7nLD;EACE,mBAAA;EACA,eAAA;EACA,UAAA;EACA,WAAA;EACA,iBAAA;CrD+nLD;AqDpoLD;;;;;EAYI,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,aAAA;EACA,YAAA;EACA,UAAA;CrD+nLH;AqD1nLD;EACE,uBAAA;CrD4nLD;AqDxnLD;EACE,oBAAA;CrD0nLD;AsDrpLD;EACE,iBAAA;EACA,cAAA;EACA,oBAAA;EACA,0BAAA;EACA,0BAAA;EACA,mBAAA;EjDwDA,wDAAA;EACQ,gDAAA;CLgmLT;AsD/pLD;EASI,mBAAA;EACA,kCAAA;CtDypLH;AsDppLD;EACE,cAAA;EACA,mBAAA;CtDspLD;AsDppLD;EACE,aAAA;EACA,mBAAA;CtDspLD;AuD5qLD;EACE,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,0BAAA;EjCRA,aAAA;EAGA,0BAAA;CtBqrLD;AuD7qLC;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;EjCfF,aAAA;EAGA,0BAAA;CtB6rLD;AuDzqLC;EACE,WAAA;EACA,gBAAA;EACA,wBAAA;EACA,UAAA;EACA,yBAAA;CvD2qLH;AwDhsLD;EACE,iBAAA;CxDksLD;AwD9rLD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,kCAAA;EAIA,WAAA;CxD6rLD;AwD1rLC;EnD+GA,sCAAA;EACI,kCAAA;EACC,iCAAA;EACG,8BAAA;EAkER,oDAAA;EAEK,0CAAA;EACG,oCAAA;CL6gLT;AwDhsLC;EnD2GA,mCAAA;EACI,+BAAA;EACC,8BAAA;EACG,2BAAA;CLwlLT;AwDpsLD;EACE,mBAAA;EACA,iBAAA;CxDssLD;AwDlsLD;EACE,mBAAA;EACA,YAAA;EACA,aAAA;CxDosLD;AwDhsLD;EACE,mBAAA;EACA,uBAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EnDaA,iDAAA;EACQ,yCAAA;EmDZR,qCAAA;UAAA,6BAAA;EAEA,WAAA;CxDksLD;AwD9rLD;EACE,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,uBAAA;CxDgsLD;AwD9rLC;ElCrEA,WAAA;EAGA,yBAAA;CtBowLD;AwDjsLC;ElCtEA,aAAA;EAGA,0BAAA;CtBwwLD;AwDhsLD;EACE,cAAA;EACA,iCAAA;CxDksLD;AwD9rLD;EACE,iBAAA;CxDgsLD;AwD5rLD;EACE,UAAA;EACA,wBAAA;CxD8rLD;AwDzrLD;EACE,mBAAA;EACA,cAAA;CxD2rLD;AwDvrLD;EACE,cAAA;EACA,kBAAA;EACA,8BAAA;CxDyrLD;AwD5rLD;EAQI,iBAAA;EACA,iBAAA;CxDurLH;AwDhsLD;EAaI,kBAAA;CxDsrLH;AwDnsLD;EAiBI,eAAA;CxDqrLH;AwDhrLD;EACE,mBAAA;EACA,aAAA;EACA,YAAA;EACA,aAAA;EACA,iBAAA;CxDkrLD;AwDhqLD;EAZE;IACE,aAAA;IACA,kBAAA;GxD+qLD;EwD7qLD;InDvEA,kDAAA;IACQ,0CAAA;GLuvLP;EwD5qLD;IAAY,aAAA;GxD+qLX;CACF;AwD1qLD;EAFE;IAAY,aAAA;GxDgrLX;CACF;AyD/zLD;EACE,mBAAA;EACA,cAAA;EACA,eAAA;ECRA,4DAAA;EAEA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;EDHA,gBAAA;EnCVA,WAAA;EAGA,yBAAA;CtBs1LD;AyD30LC;EnCdA,aAAA;EAGA,0BAAA;CtB01LD;AyD90LC;EAAW,iBAAA;EAAmB,eAAA;CzDk1L/B;AyDj1LC;EAAW,iBAAA;EAAmB,eAAA;CzDq1L/B;AyDp1LC;EAAW,gBAAA;EAAmB,eAAA;CzDw1L/B;AyDv1LC;EAAW,kBAAA;EAAmB,eAAA;CzD21L/B;AyDv1LD;EACE,iBAAA;EACA,iBAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,mBAAA;CzDy1LD;AyDr1LD;EACE,mBAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;CzDu1LD;AyDn1LC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,uBAAA;CzDq1LH;AyDn1LC;EACE,UAAA;EACA,WAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzDq1LH;AyDn1LC;EACE,UAAA;EACA,UAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzDq1LH;AyDn1LC;EACE,SAAA;EACA,QAAA;EACA,iBAAA;EACA,4BAAA;EACA,yBAAA;CzDq1LH;AyDn1LC;EACE,SAAA;EACA,SAAA;EACA,iBAAA;EACA,4BAAA;EACA,wBAAA;CzDq1LH;AyDn1LC;EACE,OAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,0BAAA;CzDq1LH;AyDn1LC;EACE,OAAA;EACA,WAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzDq1LH;AyDn1LC;EACE,OAAA;EACA,UAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzDq1LH;A2Dl7LD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,iBAAA;EACA,aAAA;EDXA,4DAAA;EAEA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;ECAA,gBAAA;EAEA,uBAAA;EACA,qCAAA;UAAA,6BAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EtD8CA,kDAAA;EACQ,0CAAA;CLk5LT;A2D77LC;EAAY,kBAAA;C3Dg8Lb;A2D/7LC;EAAY,kBAAA;C3Dk8Lb;A2Dj8LC;EAAY,iBAAA;C3Do8Lb;A2Dn8LC;EAAY,mBAAA;C3Ds8Lb;A2Dn8LD;EACE,UAAA;EACA,kBAAA;EACA,gBAAA;EACA,0BAAA;EACA,iCAAA;EACA,2BAAA;C3Dq8LD;A2Dl8LD;EACE,kBAAA;C3Do8LD;A2D57LC;;EAEE,mBAAA;EACA,eAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;C3D87LH;A2D37LD;EACE,mBAAA;C3D67LD;A2D37LD;EACE,mBAAA;EACA,YAAA;C3D67LD;A2Dz7LC;EACE,UAAA;EACA,mBAAA;EACA,uBAAA;EACA,0BAAA;EACA,sCAAA;EACA,cAAA;C3D27LH;A2D17LG;EACE,aAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,uBAAA;C3D47LL;A2Dz7LC;EACE,SAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,4BAAA;EACA,wCAAA;C3D27LH;A2D17LG;EACE,aAAA;EACA,UAAA;EACA,cAAA;EACA,qBAAA;EACA,yBAAA;C3D47LL;A2Dz7LC;EACE,UAAA;EACA,mBAAA;EACA,oBAAA;EACA,6BAAA;EACA,yCAAA;EACA,WAAA;C3D27LH;A2D17LG;EACE,aAAA;EACA,SAAA;EACA,mBAAA;EACA,oBAAA;EACA,0BAAA;C3D47LL;A2Dx7LC;EACE,SAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,2BAAA;EACA,uCAAA;C3D07LH;A2Dz7LG;EACE,aAAA;EACA,WAAA;EACA,sBAAA;EACA,wBAAA;EACA,cAAA;C3D27LL;A4DpjMD;EACE,mBAAA;C5DsjMD;A4DnjMD;EACE,mBAAA;EACA,iBAAA;EACA,YAAA;C5DqjMD;A4DxjMD;EAMI,cAAA;EACA,mBAAA;EvD6KF,0CAAA;EACK,qCAAA;EACG,kCAAA;CLy4LT;A4D/jMD;;EAcM,eAAA;C5DqjML;A4D3hMC;EA4NF;IvD3DE,uDAAA;IAEK,6CAAA;IACG,uCAAA;IA7JR,oCAAA;IAEQ,4BAAA;IA+GR,4BAAA;IAEQ,oBAAA;GL86LP;E4DzjMG;;IvDmHJ,2CAAA;IACQ,mCAAA;IuDjHF,QAAA;G5D4jML;E4D1jMG;;IvD8GJ,4CAAA;IACQ,oCAAA;IuD5GF,QAAA;G5D6jML;E4D3jMG;;;IvDyGJ,wCAAA;IACQ,gCAAA;IuDtGF,QAAA;G5D8jML;CACF;A4DpmMD;;;EA6CI,eAAA;C5D4jMH;A4DzmMD;EAiDI,QAAA;C5D2jMH;A4D5mMD;;EAsDI,mBAAA;EACA,OAAA;EACA,YAAA;C5D0jMH;A4DlnMD;EA4DI,WAAA;C5DyjMH;A4DrnMD;EA+DI,YAAA;C5DyjMH;A4DxnMD;;EAmEI,QAAA;C5DyjMH;A4D5nMD;EAuEI,YAAA;C5DwjMH;A4D/nMD;EA0EI,WAAA;C5DwjMH;A4DhjMD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EtC9FA,aAAA;EAGA,0BAAA;EsC6FA,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;EACA,mCAAA;C5DmjMD;A4D9iMC;EdnGE,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,4BAAA;EACA,uHAAA;C9CopMH;A4DljMC;EACE,WAAA;EACA,SAAA;EdxGA,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,4BAAA;EACA,uHAAA;C9C6pMH;A4DpjMC;;EAEE,WAAA;EACA,YAAA;EACA,sBAAA;EtCvHF,aAAA;EAGA,0BAAA;CtB4qMD;A4DtlMD;;;;EAuCI,mBAAA;EACA,SAAA;EACA,kBAAA;EACA,WAAA;EACA,sBAAA;C5DqjMH;A4DhmMD;;EA+CI,UAAA;EACA,mBAAA;C5DqjMH;A4DrmMD;;EAoDI,WAAA;EACA,oBAAA;C5DqjMH;A4D1mMD;;EAyDI,YAAA;EACA,aAAA;EACA,eAAA;EACA,mBAAA;C5DqjMH;A4DhjMG;EACE,iBAAA;C5DkjML;A4D9iMG;EACE,iBAAA;C5DgjML;A4DtiMD;EACE,mBAAA;EACA,aAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;C5DwiMD;A4DjjMD;EAYI,sBAAA;EACA,YAAA;EACA,aAAA;EACA,YAAA;EACA,oBAAA;EACA,uBAAA;EACA,oBAAA;EACA,gBAAA;EAWA,0BAAA;EACA,mCAAA;C5D8hMH;A4D7jMD;EAkCI,UAAA;EACA,YAAA;EACA,aAAA;EACA,uBAAA;C5D8hMH;A4DvhMD;EACE,mBAAA;EACA,UAAA;EACA,WAAA;EACA,aAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;C5DyhMD;A4DxhMC;EACE,kBAAA;C5D0hMH;A4Dj/LD;EAhCE;;;;IAKI,YAAA;IACA,aAAA;IACA,kBAAA;IACA,gBAAA;G5DmhMH;E4D3hMD;;IAYI,mBAAA;G5DmhMH;E4D/hMD;;IAgBI,oBAAA;G5DmhMH;E4D9gMD;IACE,UAAA;IACA,WAAA;IACA,qBAAA;G5DghMD;E4D5gMD;IACE,aAAA;G5D8gMD;CACF;A6D7wMC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,aAAA;EACA,eAAA;C7D6yMH;A6D3yMC;;;;;;;;;;;;;;;;EACE,YAAA;C7D4zMH;AiCp0MD;E6BRE,eAAA;EACA,kBAAA;EACA,mBAAA;C9D+0MD;AiCt0MD;EACE,wBAAA;CjCw0MD;AiCt0MD;EACE,uBAAA;CjCw0MD;AiCh0MD;EACE,yBAAA;CjCk0MD;AiCh0MD;EACE,0BAAA;CjCk0MD;AiCh0MD;EACE,mBAAA;CjCk0MD;AiCh0MD;E8BzBE,YAAA;EACA,mBAAA;EACA,kBAAA;EACA,8BAAA;EACA,UAAA;C/D41MD;AiC9zMD;EACE,yBAAA;CjCg0MD;AiCzzMD;EACE,gBAAA;CjC2zMD;AgE51MD;EACE,oBAAA;ChE81MD;AgEx1MD;;;;ECdE,yBAAA;CjE42MD;AgEv1MD;;;;;;;;;;;;EAYE,yBAAA;ChEy1MD;AgEl1MD;EA6IA;IC7LE,0BAAA;GjEs4MC;EiEr4MD;IAAU,0BAAA;GjEw4MT;EiEv4MD;IAAU,8BAAA;GjE04MT;EiEz4MD;;IACU,+BAAA;GjE44MT;CACF;AgE51MD;EAwIA;IA1II,0BAAA;GhEk2MD;CACF;AgE51MD;EAmIA;IArII,2BAAA;GhEk2MD;CACF;AgE51MD;EA8HA;IAhII,iCAAA;GhEk2MD;CACF;AgE31MD;EAwHA;IC7LE,0BAAA;GjEo6MC;EiEn6MD;IAAU,0BAAA;GjEs6MT;EiEr6MD;IAAU,8BAAA;GjEw6MT;EiEv6MD;;IACU,+BAAA;GjE06MT;CACF;AgEr2MD;EAmHA;IArHI,0BAAA;GhE22MD;CACF;AgEr2MD;EA8GA;IAhHI,2BAAA;GhE22MD;CACF;AgEr2MD;EAyGA;IA3GI,iCAAA;GhE22MD;CACF;AgEp2MD;EAmGA;IC7LE,0BAAA;GjEk8MC;EiEj8MD;IAAU,0BAAA;GjEo8MT;EiEn8MD;IAAU,8BAAA;GjEs8MT;EiEr8MD;;IACU,+BAAA;GjEw8MT;CACF;AgE92MD;EA8FA;IAhGI,0BAAA;GhEo3MD;CACF;AgE92MD;EAyFA;IA3FI,2BAAA;GhEo3MD;CACF;AgE92MD;EAoFA;IAtFI,iCAAA;GhEo3MD;CACF;AgE72MD;EA8EA;IC7LE,0BAAA;GjEg+MC;EiE/9MD;IAAU,0BAAA;GjEk+MT;EiEj+MD;IAAU,8BAAA;GjEo+MT;EiEn+MD;;IACU,+BAAA;GjEs+MT;CACF;AgEv3MD;EAyEA;IA3EI,0BAAA;GhE63MD;CACF;AgEv3MD;EAoEA;IAtEI,2BAAA;GhE63MD;CACF;AgEv3MD;EA+DA;IAjEI,iCAAA;GhE63MD;CACF;AgEt3MD;EAyDA;ICrLE,yBAAA;GjEs/MC;CACF;AgEt3MD;EAoDA;ICrLE,yBAAA;GjE2/MC;CACF;AgEt3MD;EA+CA;ICrLE,yBAAA;GjEggNC;CACF;AgEt3MD;EA0CA;ICrLE,yBAAA;GjEqgNC;CACF;AgEn3MD;ECnJE,yBAAA;CjEygND;AgEh3MD;EA4BA;IC7LE,0BAAA;GjEqhNC;EiEphND;IAAU,0BAAA;GjEuhNT;EiEthND;IAAU,8BAAA;GjEyhNT;EiExhND;;IACU,+BAAA;GjE2hNT;CACF;AgE93MD;EACE,yBAAA;ChEg4MD;AgE33MD;EAqBA;IAvBI,0BAAA;GhEi4MD;CACF;AgE/3MD;EACE,yBAAA;ChEi4MD;AgE53MD;EAcA;IAhBI,2BAAA;GhEk4MD;CACF;AgEh4MD;EACE,yBAAA;ChEk4MD;AgE73MD;EAOA;IATI,iCAAA;GhEm4MD;CACF;AgE53MD;EACA;ICrLE,yBAAA;GjEojNC;CACF","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v3.3.7 (http://getbootstrap.com)\n * Copyright 2011-2016 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), 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');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\002a\";\n}\n.glyphicon-plus:before {\n content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.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 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.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 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .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 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .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 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .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 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n.table .table {\n background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999;\n}\n.form-control::-ms-expand {\n border: 0;\n background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"].form-control,\n input[type=\"time\"].form-control,\n input[type=\"datetime-local\"].form-control,\n input[type=\"month\"].form-control {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.form-group-sm select.form-control {\n height: 30px;\n line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.form-group-lg select.form-control {\n height: 46px;\n line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n color: #333;\n background-color: #e6e6e6;\n border-color: #8c8c8c;\n}\n.btn-default:hover {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n color: #333;\n background-color: #d4d4d4;\n border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default .badge {\n color: #fff;\n background-color: #333;\n}\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n color: #fff;\n background-color: #449d44;\n border-color: #255625;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n color: #fff;\n background-color: #398439;\n border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #fff;\n}\n.btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n color: #fff;\n background-color: #31b0d5;\n border-color: #1b6d85;\n}\n.btn-info:hover {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n color: #fff;\n background-color: #269abc;\n border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #fff;\n}\n.btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n color: #fff;\n background-color: #ec971f;\n border-color: #985f0d;\n}\n.btn-warning:hover {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n color: #fff;\n background-color: #d58512;\n border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff;\n}\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n color: #fff;\n background-color: #ac2925;\n border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #fff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #fff;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px dashed;\n border-bottom: 4px solid \\9;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group .form-control:focus {\n z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #fff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777;\n}\n.navbar-default .navbar-link:hover {\n color: #333;\n}\n.navbar-default .btn-link {\n color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n}\n.navbar-inverse {\n background-color: #222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #fff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #fff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #ccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #fff;\n border: 1px solid #ddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n z-index: 2;\n color: #23527c;\n background-color: #eeeeee;\n border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 3;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #fff;\n border-color: #ddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #fff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #fff;\n line-height: 1;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding-top: 30px;\n padding-bottom: 30px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding-top: 48px;\n padding-bottom: 48px;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #fff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n 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);\n 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);\n 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);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n 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);\n 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);\n 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);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n 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);\n 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);\n 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);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n 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);\n 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);\n 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);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n 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);\n 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);\n 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);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-object.img-thumbnail {\n max-width: none;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n text-decoration: none;\n color: #555;\n background-color: #f5f5f5;\n}\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #fff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n}\n.panel-default {\n border-color: #ddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #fff;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.42857143;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 12px;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.42857143;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 14px;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #fff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #fff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #fff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #fff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #fff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -10px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -10px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -10px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table !important;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table !important;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table !important;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table !important;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table !important;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\002a\"; } }\n.glyphicon-plus { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\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 have been 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 // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\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","// WebKit-style focus\n\n.tab-focus() {\n // WebKit-specific. Other browsers will keep their default outline style.\n // (Initially tried to also force default via `outline: initial`,\n // but that seems to erroneously remove the outline in Firefox altogether.)\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @dl-horizontal-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover,\n a&:focus {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover,\n a&:focus {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: floor((@gutter / 2));\n padding-right: ceil((@gutter / 2));\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: ceil((@gutter / -2));\n margin-right: floor((@gutter / -2));\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: ceil((@grid-gutter-width / 2));\n padding-right: floor((@grid-gutter-width / 2));\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Unstyle the caret on ``\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n .opacity(.65);\n .box-shadow(none);\n }\n\n a& {\n &.disabled,\n fieldset[disabled] & {\n pointer-events: none; // Future-proof disabling of clicks on `` elements\n }\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 25%);\n }\n &:hover {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n\n &:hover,\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 17%);\n border-color: darken(@border, 25%);\n }\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus,\n &.focus {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n\n &.in { display: block; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base dashed;\n border-top: @caret-width-base solid ~\"\\9\"; // IE8\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: @cursor-disabled;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base dashed;\n border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\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","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn,\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n .border-top-radius(@btn-border-radius-base);\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n .border-top-radius(0);\n .border-bottom-radius(@btn-border-radius-base);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0,0,0,0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n\n &:focus {\n z-index: 3;\n }\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @input-border-radius;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @input-border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @input-border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n z-index: 2;\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: @cursor-disabled;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 3;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: @cursor-disabled;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: @cursor-disabled;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n\n .btn-xs &,\n .btn-group-xs > .btn & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n\n .list-group-item > & {\n float: right;\n }\n\n .list-group-item > & + & {\n margin-right: 5px;\n }\n\n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding-top: @jumbotron-padding;\n padding-bottom: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container &,\n .container-fluid & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: @jumbotron-heading-font-size;\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\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","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n\n // Fix collapse in webkit from max-width: 100% and display: table-cell.\n &.img-thumbnail {\n max-width: none;\n }\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on