/****************************************************************************
 **
 ** This demo file is part of yFiles for HTML 1.3.0.1.
 ** Copyright (c) 2000-2015 by yWorks GmbH, Vor dem Kreuzberg 28,
 ** 72070 Tuebingen, Germany. All rights reserved.
 **
 ** yFiles demo files exhibit yFiles for HTML functionalities. Any redistribution
 ** of demo files in source code or binary form, with or without
 ** modification, is not permitted.
 **
 ** Owners of a valid software license for a yFiles for HTML version that this
 ** demo is shipped with are allowed to use the demo source code as basis
 ** for their own yFiles for HTML powered applications. Use of such programs is
 ** governed by the rights and conditions as set out in the yFiles for HTML
 ** license agreement.
 **
 ** THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY EXPRESS OR IMPLIED
 ** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 ** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
 ** NO EVENT SHALL yWorks BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
 ** TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 ** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 ** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 ** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 ** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 **
 ***************************************************************************/
@import url(http://fonts.googleapis.com/css?family=Roboto:400,300,100);

.demo-app {
  background-color: #F7F7F7;
}

aside {
  background-color: white;
}

.hoverable {
}

.hoverable.onhover {
  fill: #249AE7;
}

dt {
    font-weight: bold;
    margin-top: 4px;
    color: #333333;
}

dt img {
    vertical-align: bottom;
}

dd {
    margin-left: 10px;
}

#propertiesView {
  padding: 10px;
}

#propertiesView td {
  padding: 3px 0;
}

#propertiesView td:first-of-type {
  text-transform: uppercase;
  color: #5c606d;
  font-weight: bold;
  padding-right: 20px;
}

#propertiesView td.green, #propertiesView td div.green {
  color: #4eb198;
  font-weight: bold;
}
#propertiesView td.orange, #propertiesView td div.orange {
  color: #ff9d02;
  font-weight: bold;
}
#propertiesView td.left {
	text-align: left;
}
#propertiesView td.right {
	text-align: right;
}
#propertiesView td a {
  color: #407fbf;
  text-decoration: none;
}
#propertiesView td a.btn {
	color: #FFFFFF;
}
#propertiesView td a:hover {
  color: orange;
}
#propertiesView td a.btn:hover {
  color: #f7f7f7;
}

#expandable-float-container {
  position: absolute;
  top: 50px;
  left: 10px;
  height: 40px;
  width: 40px;
  z-index: 100;
  overflow: hidden;
  padding: 5px;
}
#expandable-float-container.expanded {
  width: 280px;
  height: auto;
}
.expandable-float-header {
  background-color: #336699;
  color: #ffffff;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  font-size: 1.5em;
}

#expandable-float-content {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  min-width: 200px;
  max-height: 100%;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
  opacity: 0;
  margin-top: -10px;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0s, margin-top 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.expanded #expandable-float-content {
  opacity: 1;
  margin-top: 0;
}
#expandable-float-content .demo-collapsible-pane-content {
  padding: 0;
}
#expandable-float-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-color: #A0A0A0;
  display: inline-block;
  text-align: center;
}
#expandable-float-icon svg {
  margin-top: 10px;
  position: absolute;
  top: 0;
  left: 10px;
}
#expandable-float-icon svg.angle-left {
  visibility: hidden;
}
#expandable-float-icon:hover {
  background-color: #A7A7A7;
  color: #000000;
}
.expanded #expandable-float-icon {
  top: 5px;
  right: 5px;
  left: auto;
  background-color: transparent;
}
.expanded #expandable-float-icon svg.eye {
  visibility: hidden;
}
.expanded #expandable-float-icon svg.angle-left {
  visibility: visible;
}
.expanded #expandable-float-icon:hover {
  background-color: #A7A7A7;
  color: #000000;
}

.search-wrapper {
  padding: 20px;
  overflow-y: auto;
}

#search-input {
  width: 100%;
  margin: 10px 0;
  height: 28px;
  padding-left: 10px;
  border: 1px solid #CCCCCC;
}

.demo-overview-control {
  background-color: #F7F7F7;
}

.demo-overview-control svg g rect {
  stroke: #538cc6;
  stroke-width: 2;
}

.demo-overview-control svg defs rect {
  fill: #336699;
}

.user-detail {
  position: relative;
  height: 50px;
  margin: 10px 0;
}

.user-detail svg {
  position: absolute;
  top: 0;
  left: 0;
}

.user-detail h2 {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 5px 60px;
  color: #336699;
}

.user-detail div {
  margin-left: 60px;
  font-weight: 400;
  text-transform: uppercase;
}

.search-result.user-detail div {
  font-weight: 300;
}

.search-result.user-detail h2 {
  font-size: 18px;
}