From 2695b2bea9e6acb17f4e783596a0a8d5b7a13d08 Mon Sep 17 00:00:00 2001 From: Jan Christoph Uhde Date: Thu, 14 Jul 2016 08:39:44 +0200 Subject: [PATCH 01/10] ignore build.sh --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5f06d558a7..173eed27cf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ tags build core.* +build.sh .deps .dirstamp From 682cf7a2f1f9ab1a14b3928eb20d7c9c64a0df24 Mon Sep 17 00:00:00 2001 From: Jan Christoph Uhde Date: Thu, 14 Jul 2016 08:40:05 +0200 Subject: [PATCH 02/10] virtualize functions of request/response --- arangod/Cluster/ClusterComm.cpp | 27 ++++----- arangod/Cluster/ClusterComm.h | 14 +++-- arangod/Cluster/ClusterMethods.cpp | 20 +++---- arangod/HttpServer/HttpServer.cpp | 2 +- arangod/RestHandler/RestBatchHandler.cpp | 48 +++++++-------- arangod/RestHandler/RestImportHandler.cpp | 56 ++++++++--------- .../RestHandler/RestReplicationHandler.cpp | 60 +++++++------------ arangod/RestHandler/RestUploadHandler.cpp | 12 ++-- .../RestHandler/RestVocbaseBaseHandler.cpp | 8 +-- arangod/V8Server/v8-actions.cpp | 4 +- lib/Rest/GeneralRequest.h | 5 ++ lib/Rest/GeneralResponse.h | 17 ++++++ lib/Rest/HttpRequest.h | 6 +- lib/Rest/HttpResponse.h | 18 ++---- 14 files changed, 134 insertions(+), 163 deletions(-) diff --git a/arangod/Cluster/ClusterComm.cpp b/arangod/Cluster/ClusterComm.cpp index e9ba60b15e..cd7c0f61a8 100644 --- a/arangod/Cluster/ClusterComm.cpp +++ b/arangod/Cluster/ClusterComm.cpp @@ -220,7 +220,7 @@ OperationID ClusterComm::getOperationID() { return TRI_NewTickServer(); } /// here in the form of "server:" followed by a serverID. Furthermore, /// it is possible to specify the target endpoint directly using /// "tcp://..." or "ssl://..." endpoints, if `singleRequest` is true. -/// +/// /// There are two timeout arguments. `timeout` is the globale timeout /// specifying after how many seconds the complete operation must be /// completed. `initTimeout` is a second timeout, which is used to @@ -228,7 +228,7 @@ OperationID ClusterComm::getOperationID() { return TRI_NewTickServer(); } /// is negative (as for example in the default value), then `initTimeout` /// is taken to be the same as `timeout`. The idea behind the two timeouts /// is to be able to specify correct behaviour for automatic failover. -/// The idea is that if the initial request cannot be sent within +/// The idea is that if the initial request cannot be sent within /// `initTimeout`, one can retry after a potential failover. //////////////////////////////////////////////////////////////////////////////// @@ -793,14 +793,12 @@ void ClusterComm::drop(ClientTransactionID const& clientTransactionID, //////////////////////////////////////////////////////////////////////////////// void ClusterComm::asyncAnswer(std::string& coordinatorHeader, - GeneralResponse* responseToSendGeneral) { - // TODO needs to generalized - auto responseToSend = dynamic_cast(responseToSendGeneral); + GeneralResponse* responseToSend) { if (responseToSend == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - + // First take apart the header to get the coordinatorID: ServerID coordinatorID; size_t start = 0; @@ -881,14 +879,11 @@ void ClusterComm::asyncAnswer(std::string& coordinatorHeader, //////////////////////////////////////////////////////////////////////////////// std::string ClusterComm::processAnswer(std::string& coordinatorHeader, - GeneralRequest* answerGeneral) { - // TODO needs to generalized - auto answer = dynamic_cast(answerGeneral); - + GeneralRequest* answer) { if (answer == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - + TRI_ASSERT(answer != nullptr); // First take apart the header to get the operaitonID: OperationID operationID; @@ -981,7 +976,7 @@ bool ClusterComm::moveFromSendToReceived(OperationID operationID) { CONDITION_LOCKER(locker, somethingReceived); CONDITION_LOCKER(sendLocker, somethingToSend); - IndexIterator i = toSendByOpID.find(operationID); // cannot fail + IndexIterator i = toSendByOpID.find(operationID); // cannot fail // TRI_ASSERT(i != toSendByOpID.end()); //KV: Except the operation has been dropped in the meantime @@ -1089,7 +1084,7 @@ size_t ClusterComm::performRequests(std::vector& requests, for (size_t i = 0; i < requests.size(); ++i) { dueTime.push_back(startTime); } - + nrDone = 0; size_t nrGood = 0; @@ -1106,7 +1101,7 @@ size_t ClusterComm::performRequests(std::vector& requests, for (size_t i = 0; i < requests.size(); i++) { if (!requests[i].done && now >= dueTime[i]) { if (requests[i].headerFields.get() == nullptr) { - requests[i].headerFields + requests[i].headerFields = std::make_unique>(); } LOG_TOPIC(TRACE, logTopic) @@ -1181,7 +1176,7 @@ size_t ClusterComm::performRequests(std::vector& requests, } LOG_TOPIC(TRACE, logTopic) << "ClusterComm::performRequests: " << "got answer from " << requests[index].destination << ":" - << requests[index].path << " with return code " + << requests[index].path << " with return code " << (int) res.answer_code; } else if (res.status == CL_COMM_BACKEND_UNAVAILABLE || (res.status == CL_COMM_TIMEOUT && !res.sendWasComplete)) { @@ -1226,7 +1221,7 @@ size_t ClusterComm::performRequests(std::vector& requests, LOG_TOPIC(DEBUG, logTopic) << "ClusterComm::performRequests: " << "got timeout, this will be reported..."; - // Forget about + // Forget about drop("", coordinatorTransactionID, 0, ""); return nrGood; } diff --git a/arangod/Cluster/ClusterComm.h b/arangod/Cluster/ClusterComm.h index 9a5c55ecf6..a058cda374 100644 --- a/arangod/Cluster/ClusterComm.h +++ b/arangod/Cluster/ClusterComm.h @@ -32,6 +32,8 @@ #include "Basics/Thread.h" #include "Cluster/AgencyComm.h" #include "Cluster/ClusterInfo.h" +#include "Rest/GeneralRequest.h" +#include "Rest/GeneralResponse.h" #include "Rest/HttpRequest.h" #include "Rest/HttpResponse.h" #include "SimpleHttpClient/SimpleHttpResult.h" @@ -90,8 +92,8 @@ enum ClusterCommOpStatus { /// /// First, the actual destination is determined. If the responsible server /// for a shard is not found or the endpoint for a named server is not found, -/// or if the given endpoint is no known protocol (currently "tcp://" or -/// "ssl://", then `status` is set to CL_COMM_BACKEND_UNAVAILABLE, +/// or if the given endpoint is no known protocol (currently "tcp://" or +/// "ssl://", then `status` is set to CL_COMM_BACKEND_UNAVAILABLE, /// `errorMessage` is set but `result` and `answer` are both set /// to nullptr. The flag `sendWasComplete` remains false and the /// `answer_code` remains GeneralResponse::ResponseCode::PROCESSING. @@ -111,7 +113,7 @@ enum ClusterCommOpStatus { /// error cases `result`, `answer` and `answer_code` are still unset. /// /// If the connection was successfully created the request is sent. -/// If the request ended with a timeout, `status` is set to +/// If the request ended with a timeout, `status` is set to /// CL_COMM_TIMEOUT as above. If another communication error (broken /// connection) happens, `status` is set to CL_COMM_BACKEND_UNAVAILABLE. /// In both cases, `result` can be set or can still be a nullptr. @@ -125,7 +127,7 @@ enum ClusterCommOpStatus { /// stage. The callback is called, and the result either left in the /// receiving queue or dropped. A call to ClusterComm::enquire or /// ClusterComm::wait can return a result in this state. Note that -/// `answer` and `answer_code` are still not set. The flag +/// `answer` and `answer_code` are still not set. The flag /// `sendWasComplete` is correctly set, though. /// /// In the `singleRequest==false` mode, an asynchronous operation happens @@ -189,9 +191,9 @@ struct ClusterCommResult { std::shared_ptr result; // the field answer is != nullptr if status is == CL_COMM_RECEIVED // answer_code is valid iff answer is != 0 - std::shared_ptr answer; + std::shared_ptr answer; GeneralResponse::ResponseCode answer_code; - + // The following flag indicates whether or not the complete request was // sent to the other side. This is often important to judge whether or // not the operation could have been completed on the server, for example diff --git a/arangod/Cluster/ClusterMethods.cpp b/arangod/Cluster/ClusterMethods.cpp index 9da09e2237..bd73dea818 100644 --- a/arangod/Cluster/ClusterMethods.cpp +++ b/arangod/Cluster/ClusterMethods.cpp @@ -48,7 +48,7 @@ static double const CL_DEFAULT_TIMEOUT = 60.0; namespace arangodb { static int handleGeneralCommErrors(ClusterCommResult const* res) { - // This function creates an error code from a ClusterCommResult, + // This function creates an error code from a ClusterCommResult, // but only if it is a communication error. If the communication // was successful and there was an HTTP error code, this function // returns TRI_ERROR_NO_ERROR. @@ -405,10 +405,8 @@ std::unordered_map getForwardableRequestHeaders( ++it; } - auto httpRequest = dynamic_cast(request); - - if (httpRequest != nullptr) { - result["content-length"] = StringUtils::itoa(httpRequest->contentLength()); + if (request != nullptr) { + result["content-length"] = StringUtils::itoa(request->contentLength()); } return result; @@ -671,7 +669,7 @@ int countOnCoordinator(std::string const& dbname, std::string const& collname, for (auto const& p : *shards) { requests.emplace_back("shard:" + p.first, arangodb::GeneralRequest::RequestType::GET, - "/_db/" + StringUtils::urlEncode(dbname) + + "/_db/" + StringUtils::urlEncode(dbname) + "/_api/collection/" + StringUtils::urlEncode(p.first) + "/count", body); } @@ -699,7 +697,7 @@ int countOnCoordinator(std::string const& dbname, std::string const& collname, return TRI_ERROR_CLUSTER_BACKEND_UNAVAILABLE; } } - + return TRI_ERROR_NO_ERROR; } @@ -972,7 +970,7 @@ int deleteDocumentOnCoordinator( TRI_ASSERT(requests.size() == 1); auto const& req = requests[0]; auto& res = req.result; - + int commError = handleGeneralCommErrors(&res); if (commError != TRI_ERROR_NO_ERROR) { return commError; @@ -1218,7 +1216,7 @@ int getDocumentOnCoordinator( headers->emplace("if-match", slice.get(StaticStrings::RevString).copyString()); } - + VPackSlice keySlice = slice; if (slice.isObject()) { keySlice = slice.get(StaticStrings::KeyString); @@ -1964,7 +1962,7 @@ int flushWalOnAllDBServers(bool waitForSync, bool waitForCollector) { //////////////////////////////////////////////////////////////////////////////// /// @brief compute a shard distribution for a new collection, the list -/// dbServers must be a list of DBserver ids to distribute across. +/// dbServers must be a list of DBserver ids to distribute across. /// If this list is empty, the complete current list of DBservers is /// fetched from ClusterInfo and with random_shuffle to mix it up. //////////////////////////////////////////////////////////////////////////////// @@ -2008,7 +2006,7 @@ std::map> distributeShards( found = false; break; } - } while (std::find(serverIds.begin(), serverIds.end(), candidate) != + } while (std::find(serverIds.begin(), serverIds.end(), candidate) != serverIds.end()); if (found) { serverIds.push_back(candidate); diff --git a/arangod/HttpServer/HttpServer.cpp b/arangod/HttpServer/HttpServer.cpp index 852c9981a3..d1837e6efa 100644 --- a/arangod/HttpServer/HttpServer.cpp +++ b/arangod/HttpServer/HttpServer.cpp @@ -66,7 +66,7 @@ int HttpServer::sendChunk(uint64_t taskId, std::string const& data) { //////////////////////////////////////////////////////////////////////////////// HttpServer::HttpServer( - double keepAliveTimeout, + double keepAliveTimeout, bool allowMethodOverride, std::vector const& accessControlAllowOrigins) : _listenTasks(), diff --git a/arangod/RestHandler/RestBatchHandler.cpp b/arangod/RestHandler/RestBatchHandler.cpp index b62ea27ecf..f425231beb 100644 --- a/arangod/RestHandler/RestBatchHandler.cpp +++ b/arangod/RestHandler/RestBatchHandler.cpp @@ -46,17 +46,12 @@ RestBatchHandler::~RestBatchHandler() {} //////////////////////////////////////////////////////////////////////////////// RestHandler::status RestBatchHandler::execute() { - // TODO needs to generalized - auto response = dynamic_cast(_response); - - if (response == nullptr) { + // TODO OBI - generalize function + if (_response == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - // TODO needs to generalized - auto httpRequest = dynamic_cast(_request); - - if (httpRequest == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } @@ -86,15 +81,15 @@ RestHandler::status RestBatchHandler::execute() { // get authorization header. we will inject this into the subparts std::string const& authorization = - httpRequest->header(StaticStrings::Authorization); + _request->header(StaticStrings::Authorization); // create the response setResponseCode(GeneralResponse::ResponseCode::OK); - response->setContentType( - httpRequest->header(StaticStrings::ContentTypeHeader)); + _response->setContentType( + _request->header(StaticStrings::ContentTypeHeader)); // setup some auxiliary structures to parse the multipart message - std::string const& bodyStr = httpRequest->body(); + std::string const& bodyStr = _request->body(); MultipartMessage message(boundary.c_str(), boundary.size(), bodyStr.c_str(), bodyStr.c_str() + bodyStr.size()); @@ -148,7 +143,7 @@ RestHandler::status RestBatchHandler::execute() { // set up request object for the part LOG(TRACE) << "part header is: " << std::string(headerStart, headerLength); - HttpRequest* request = new HttpRequest(httpRequest->connectionInfo(), + HttpRequest* request = new HttpRequest(_request->connectionInfo(), headerStart, headerLength, false); // we do not have a client task id here @@ -204,8 +199,7 @@ RestHandler::status RestBatchHandler::execute() { return status::FAILED; } - HttpResponse* partResponse = - dynamic_cast(handler->response()); + GeneralResponse* partResponse = handler->response(); if (partResponse == nullptr) { generateError(GeneralResponse::ResponseCode::BAD, TRI_ERROR_INTERNAL, @@ -222,28 +216,28 @@ RestHandler::status RestBatchHandler::execute() { } // append the boundary for this subpart - response->body().appendText(boundary + "\r\nContent-Type: "); - response->body().appendText(StaticStrings::BatchContentType); + _response->body().appendText(boundary + "\r\nContent-Type: "); + _response->body().appendText(StaticStrings::BatchContentType); // append content-id if it is present if (helper.contentId != 0) { - response->body().appendText( + _response->body().appendText( "\r\nContent-Id: " + std::string(helper.contentId, helper.contentIdLength)); } - response->body().appendText(TRI_CHAR_LENGTH_PAIR("\r\n\r\n")); + _response->body().appendText(TRI_CHAR_LENGTH_PAIR("\r\n\r\n")); // remove some headers we don't need partResponse->setConnectionType(HttpResponse::CONNECTION_NONE); partResponse->setHeaderNC(StaticStrings::Server, ""); // append the part response header - partResponse->writeHeader(&response->body()); + partResponse->writeHeader(&_response->body()); // append the part response body - response->body().appendText(partResponse->body()); - response->body().appendText(TRI_CHAR_LENGTH_PAIR("\r\n")); + _response->body().appendText(partResponse->body()); + _response->body().appendText(TRI_CHAR_LENGTH_PAIR("\r\n")); } // we've read the last part @@ -253,10 +247,10 @@ RestHandler::status RestBatchHandler::execute() { } // append final boundary + "--" - response->body().appendText(boundary + "--"); + _response->body().appendText(boundary + "--"); if (errors > 0) { - response->setHeaderNC(StaticStrings::Errors, StringUtils::itoa(errors)); + _response->setHeaderNC(StaticStrings::Errors, StringUtils::itoa(errors)); } // success @@ -268,14 +262,12 @@ RestHandler::status RestBatchHandler::execute() { //////////////////////////////////////////////////////////////////////////////// bool RestBatchHandler::getBoundaryBody(std::string* result) { - // TODO needs to generalized - auto request = dynamic_cast(_request); - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - std::string const& bodyStr = request->body(); + std::string const& bodyStr = _request->body(); char const* p = bodyStr.c_str(); char const* e = p + bodyStr.size(); diff --git a/arangod/RestHandler/RestImportHandler.cpp b/arangod/RestHandler/RestImportHandler.cpp index 7557ebe098..cd79914b2c 100644 --- a/arangod/RestHandler/RestImportHandler.cpp +++ b/arangod/RestHandler/RestImportHandler.cpp @@ -161,7 +161,7 @@ std::string RestImportHandler::buildParseError(size_t i, int RestImportHandler::handleSingleDocument( SingleCollectionTransaction& trx, RestImportResult& result, - VPackBuilder& babies, char const* lineStart, VPackSlice slice, + VPackBuilder& babies, char const* lineStart, VPackSlice slice, bool isEdgeCollection, size_t i) { if (!slice.isObject()) { @@ -188,7 +188,7 @@ int RestImportHandler::handleSingleDocument( // add prefixes to _from and _to if (!_fromPrefix.empty() || !_toPrefix.empty()) { TransactionBuilderLeaser tempBuilder(&trx); - + tempBuilder->openObject(); if (!_fromPrefix.empty()) { VPackSlice from = slice.get(StaticStrings::FromString); @@ -253,10 +253,8 @@ int RestImportHandler::handleSingleDocument( //////////////////////////////////////////////////////////////////////////////// bool RestImportHandler::createFromJson(std::string const& type) { - // TODO needs to generalized - auto request = dynamic_cast(_request); - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } @@ -300,15 +298,12 @@ bool RestImportHandler::createFromJson(std::string const& type) { } else if (type == "auto") { linewise = true; - // TODO generalize - auto* httpResponse = dynamic_cast(_response); - - if (httpResponse == nullptr) { + if (_response == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } // auto detect import type by peeking at first non-whitespace character - std::string const& body = request->body(); + std::string const& body = _request->body(); char const* ptr = body.c_str(); char const* end = ptr + body.size(); @@ -361,7 +356,7 @@ bool RestImportHandler::createFromJson(std::string const& type) { if (linewise) { // each line is a separate JSON document - std::string const& body = request->body(); + std::string const& body = _request->body(); char const* ptr = body.c_str(); char const* end = ptr + body.size(); size_t i = 0; @@ -395,8 +390,8 @@ bool RestImportHandler::createFromJson(std::string const& type) { ptr = pos + 1; ++result._numEmpty; continue; - } - + } + if (pos != nullptr) { // non-empty line *(const_cast(pos)) = '\0'; @@ -442,7 +437,7 @@ bool RestImportHandler::createFromJson(std::string const& type) { // the entire request body is one JSON document std::shared_ptr parsedDocuments; try { - parsedDocuments = VPackParser::fromJson(request->body()); + parsedDocuments = VPackParser::fromJson(_request->body()); } catch (VPackException const&) { generateError(GeneralResponse::ResponseCode::BAD, TRI_ERROR_HTTP_BAD_PARAMETER, @@ -477,14 +472,14 @@ bool RestImportHandler::createFromJson(std::string const& type) { } } } - + babies.close(); - + if (res == TRI_ERROR_NO_ERROR) { // no error so far. go on and perform the actual insert res = performImport(trx, result, collectionName, babies, complete, opOptions); } - + res = trx.finish(res); if (res != TRI_ERROR_NO_ERROR) { @@ -500,10 +495,7 @@ bool RestImportHandler::createFromJson(std::string const& type) { //////////////////////////////////////////////////////////////////////////////// bool RestImportHandler::createFromKeyValueList() { - // TODO needs to generalized - auto* request = dynamic_cast(_request); - - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } @@ -544,7 +536,7 @@ bool RestImportHandler::createFromKeyValueList() { lineNumber = StringUtils::int64(lineNumValue); } - std::string const& bodyStr = request->body(); + std::string const& bodyStr = _request->body(); char const* current = bodyStr.c_str(); char const* bodyEnd = current + bodyStr.size(); @@ -702,12 +694,12 @@ bool RestImportHandler::createFromKeyValueList() { } babies.close(); - + if (res == TRI_ERROR_NO_ERROR) { // no error so far. go on and perform the actual insert res = performImport(trx, result, collectionName, babies, complete, opOptions); } - + res = trx.finish(res); if (res != TRI_ERROR_NO_ERROR) { @@ -723,7 +715,7 @@ bool RestImportHandler::createFromKeyValueList() { //////////////////////////////////////////////////////////////////////////////// int RestImportHandler::performImport(SingleCollectionTransaction& trx, - RestImportResult& result, + RestImportResult& result, std::string const& collectionName, VPackBuilder const& babies, bool complete, @@ -767,10 +759,10 @@ int RestImportHandler::performImport(SingleCollectionTransaction& trx, // special behavior in case of unique constraint violation . . . if (errorCode == TRI_ERROR_ARANGO_UNIQUE_CONSTRAINT_VIOLATED && _onDuplicateAction != DUPLICATE_ERROR) { VPackSlice const keySlice = which.get(StaticStrings::KeyString); - + if (keySlice.isString()) { // insert failed. now try an update/replace - if (_onDuplicateAction == DUPLICATE_UPDATE || + if (_onDuplicateAction == DUPLICATE_UPDATE || _onDuplicateAction == DUPLICATE_REPLACE) { // update/replace updateReplace.add(which); @@ -795,7 +787,7 @@ int RestImportHandler::performImport(SingleCollectionTransaction& trx, break; } } - } + } ++pos; } @@ -803,14 +795,14 @@ int RestImportHandler::performImport(SingleCollectionTransaction& trx, updateReplace.close(); if (res == TRI_ERROR_NO_ERROR && updateReplace.slice().length() > 0) { - if (_onDuplicateAction == DUPLICATE_UPDATE) { + if (_onDuplicateAction == DUPLICATE_UPDATE) { opResult = trx.update(collectionName, updateReplace.slice(), opOptions); } else { opResult = trx.replace(collectionName, updateReplace.slice(), opOptions); } - + VPackSlice resultSlice = opResult.slice(); - size_t pos = 0; + size_t pos = 0; for (auto const& it : VPackArrayIterator(resultSlice)) { if (!it.hasKey("error") || !it.get("error").getBool()) { ++result._numUpdated; @@ -827,7 +819,7 @@ int RestImportHandler::performImport(SingleCollectionTransaction& trx, ++pos; } } - + return res; } diff --git a/arangod/RestHandler/RestReplicationHandler.cpp b/arangod/RestHandler/RestReplicationHandler.cpp index f663a58d9e..57f03a647a 100644 --- a/arangod/RestHandler/RestReplicationHandler.cpp +++ b/arangod/RestHandler/RestReplicationHandler.cpp @@ -778,10 +778,8 @@ void RestReplicationHandler::handleCommandBarrier() { //////////////////////////////////////////////////////////////////////////////// void RestReplicationHandler::handleTrampolineCoordinator() { - // TODO needs to generalized - auto request = dynamic_cast(_request); - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } @@ -821,7 +819,7 @@ void RestReplicationHandler::handleTrampolineCoordinator() { _request->requestType(), "/_db/" + StringUtils::urlEncode(dbname) + _request->requestPath() + params, - request->body(), *headers, 300.0); + _request->body(), *headers, 300.0); if (res->status == CL_COMM_TIMEOUT) { // No reply, we give up: @@ -848,16 +846,13 @@ void RestReplicationHandler::handleTrampolineCoordinator() { setResponseCode(static_cast( res->result->getHttpReturnCode())); - // TODO needs to generalized - auto response = dynamic_cast(_response); - - if (response == nullptr) { + if (_response == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - response->setContentType( + _response->setContentType( res->result->getHeaderField(StaticStrings::ContentTypeHeader, dummy)); - response->body().swap(&(res->result->getBody())); + _response->body().swap(&(res->result->getBody())); auto const& resultHeaders = res->result->getHeaderFields(); for (auto const& it : resultHeaders) { @@ -1003,14 +998,11 @@ void RestReplicationHandler::handleCommandLoggerFollow() { setResponseCode(GeneralResponse::ResponseCode::OK); } - // TODO needs to generalized - auto response = dynamic_cast(_response); - - if (response == nullptr) { + if (_response == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - response->setContentType(GeneralResponse::ContentType::DUMP); + _response->setContentType(GeneralResponse::ContentType::DUMP); // set headers _response->setHeaderNC(TRI_REPLICATION_HEADER_CHECKMORE, @@ -1029,7 +1021,7 @@ void RestReplicationHandler::handleCommandLoggerFollow() { if (length > 0) { // transfer ownership of the buffer contents - response->body().set(dump._buffer); + _response->body().set(dump._buffer); // to avoid double freeing TRI_StealStringBuffer(dump._buffer); @@ -1106,14 +1098,11 @@ void RestReplicationHandler::handleCommandDetermineOpenTransactions() { setResponseCode(GeneralResponse::ResponseCode::OK); } - // TODO needs to generalized - auto response = dynamic_cast(_response); - - if (response == nullptr) { + if (_response == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - response->setContentType(HttpResponse::ContentType::DUMP); + _response->setContentType(HttpResponse::ContentType::DUMP); _response->setHeaderNC(TRI_REPLICATION_HEADER_FROMPRESENT, dump._fromTickIncluded ? "true" : "false"); @@ -1123,7 +1112,7 @@ void RestReplicationHandler::handleCommandDetermineOpenTransactions() { if (length > 0) { // transfer ownership of the buffer contents - response->body().set(dump._buffer); + _response->body().set(dump._buffer); // to avoid double freeing TRI_StealStringBuffer(dump._buffer); @@ -1215,10 +1204,10 @@ void RestReplicationHandler::handleCommandClusterInventory() { AgencyComm _agency; AgencyCommResult result; - + std::string prefix("Plan/Collections/"); prefix.append(dbName); - + result = _agency.getValues(prefix); if (!result.successful()) { generateError(GeneralResponse::ResponseCode::SERVER_ERROR, @@ -1258,7 +1247,7 @@ void RestReplicationHandler::handleCommandClusterInventory() { resultBuilder.slice()); } } - + } //////////////////////////////////////////////////////////////////////////////// @@ -2186,14 +2175,12 @@ int RestReplicationHandler::processRestoreDataBatch( VPackBuilder builder; - // TODO needs to generalized - auto request = dynamic_cast(_request); - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - std::string const& bodyStr = request->body(); + std::string const& bodyStr = _request->body(); char const* ptr = bodyStr.c_str(); char const* end = ptr + bodyStr.size(); @@ -2528,14 +2515,11 @@ void RestReplicationHandler::handleCommandRestoreDataCoordinator() { std::string("received invalid JSON data for collection ") + name; VPackBuilder builder; - // TODO needs to generalized - auto request = dynamic_cast(_request); - - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - std::string const& bodyStr = request->body(); + std::string const& bodyStr = _request->body(); char const* ptr = bodyStr.c_str(); char const* end = ptr + bodyStr.size(); @@ -3153,7 +3137,7 @@ void RestReplicationHandler::handleCommandDump() { bool compat28 = false; std::string const& value8 = _request->value("compat28", found); - + if (found) { compat28 = StringUtils::boolean(value8); } @@ -3195,7 +3179,7 @@ void RestReplicationHandler::handleCommandDump() { TRI_replication_dump_t dump(transactionContext, static_cast(determineChunkSize()), includeSystem, 0); - + if (compat28) { dump._compat28 = true; } @@ -3507,7 +3491,7 @@ void RestReplicationHandler::handleCommandSync() { config._includeSystem = includeSystem; config._verbose = verbose; config._useCollectionId = useCollectionId; - + // wait until all data in current logfile got synced arangodb::wal::LogfileManager::instance()->waitForSync(5.0); @@ -4018,7 +4002,7 @@ void RestReplicationHandler::handleCommandHoldReadLockCollection() { double now = TRI_microtime(); double startTime = now; double endTime = startTime + ttl; - + { CONDITION_LOCKER(locker, _condVar); while (now < endTime) { diff --git a/arangod/RestHandler/RestUploadHandler.cpp b/arangod/RestHandler/RestUploadHandler.cpp index ccdba89424..2a6687b3f8 100644 --- a/arangod/RestHandler/RestUploadHandler.cpp +++ b/arangod/RestHandler/RestUploadHandler.cpp @@ -42,10 +42,8 @@ RestUploadHandler::RestUploadHandler(GeneralRequest* request, RestUploadHandler::~RestUploadHandler() {} RestHandler::status RestUploadHandler::execute() { - // TODO needs to generalized - auto request = dynamic_cast(_request); - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } @@ -73,7 +71,7 @@ RestHandler::status RestUploadHandler::execute() { char* relative = TRI_GetFilename(filename); - std::string const& bodyStr = request->body(); + std::string const& bodyStr = _request->body(); char const* body = bodyStr.c_str(); size_t bodySize = bodyStr.size(); @@ -135,14 +133,12 @@ RestHandler::status RestUploadHandler::execute() { //////////////////////////////////////////////////////////////////////////////// bool RestUploadHandler::parseMultiPart(char const*& body, size_t& length) { - // TODO needs to generalized - auto request = dynamic_cast(_request); - if (request == nullptr) { + if (_request == nullptr) { THROW_ARANGO_EXCEPTION(TRI_ERROR_INTERNAL); } - std::string const& bodyStr = request->body(); + std::string const& bodyStr = _request->body(); char const* beg = bodyStr.c_str(); char const* end = beg + bodyStr.size(); diff --git a/arangod/RestHandler/RestVocbaseBaseHandler.cpp b/arangod/RestHandler/RestVocbaseBaseHandler.cpp index 0acbd95cc2..165322837c 100644 --- a/arangod/RestHandler/RestVocbaseBaseHandler.cpp +++ b/arangod/RestHandler/RestVocbaseBaseHandler.cpp @@ -655,12 +655,8 @@ std::shared_ptr RestVocbaseBaseHandler::parseVelocyPackBody( contentType == StaticStrings::MimeTypeVPack) { VPackValidator validator; - //FIXME broken casts!! - validator.validate(static_cast(_request)->body().c_str() - ,static_cast(_request)->body().length() - ); - - VPackSlice slice{ static_cast(_request)->body().c_str()}; + validator.validate(_request->body().c_str() ,_request->body().length()); + VPackSlice slice{_request->body().c_str()}; auto builder = std::make_shared(options); builder->add(slice); return builder; diff --git a/arangod/V8Server/v8-actions.cpp b/arangod/V8Server/v8-actions.cpp index 7d6bcb61d1..53793b003a 100644 --- a/arangod/V8Server/v8-actions.cpp +++ b/arangod/V8Server/v8-actions.cpp @@ -290,11 +290,11 @@ static void AddCookie(v8::Isolate* isolate, TRI_v8_global_t const* v8g, static v8::Handle RequestCppToV8(v8::Isolate* isolate, TRI_v8_global_t const* v8g, - GeneralRequest* generalRequest) { + GeneralRequest* request) { // setup the request v8::Handle req = v8::Object::New(isolate); - auto request = dynamic_cast(generalRequest); + //auto request = dynamic_cast(generalRequest); // TODO generalize if (request == nullptr) { diff --git a/lib/Rest/GeneralRequest.h b/lib/Rest/GeneralRequest.h index c55d1c0a38..348ed264f5 100644 --- a/lib/Rest/GeneralRequest.h +++ b/lib/Rest/GeneralRequest.h @@ -173,6 +173,11 @@ class GeneralRequest { virtual std::shared_ptr toVelocyPack( arangodb::velocypack::Options const*) = 0; + virtual std::string const& body() const = 0; + virtual int64_t contentLength() const = 0; + + virtual std::unordered_map cookieValues() const = 0; + protected: void setValue(char const* key, char const* value); void setArrayValue(char* key, size_t length, char const* value); diff --git a/lib/Rest/GeneralResponse.h b/lib/Rest/GeneralResponse.h index 2248c54b6f..0525b5a0e4 100644 --- a/lib/Rest/GeneralResponse.h +++ b/lib/Rest/GeneralResponse.h @@ -28,6 +28,7 @@ #include "Basics/StaticStrings.h" #include "Basics/StringUtils.h" +#include "Basics/StringBuffer.h" namespace arangodb { namespace velocypack { @@ -106,6 +107,13 @@ class GeneralResponse { DUMP // application/x-arango-dump }; + enum ConnectionType { + CONNECTION_NONE, + CONNECTION_KEEP_ALIVE, + CONNECTION_CLOSE + }; + + public: // converts the response code to a string for delivering to a http client. static std::string responseString(ResponseCode); @@ -116,6 +124,15 @@ class GeneralResponse { // response code from integer error code static ResponseCode responseCode(int); + // TODO OBI - check what can be implemented in this base class + virtual basics::StringBuffer& body() = 0; + virtual void setContentType(ContentType type) = 0; + virtual void setContentType(std::string const& contentType) = 0; + virtual void setContentType(std::string&& contentType) = 0; + virtual void setConnectionType(ConnectionType type) = 0; + virtual void writeHeader(basics::StringBuffer*) = 0; + + protected: explicit GeneralResponse(ResponseCode); diff --git a/lib/Rest/HttpRequest.h b/lib/Rest/HttpRequest.h index be71eabe07..7c3081961a 100644 --- a/lib/Rest/HttpRequest.h +++ b/lib/Rest/HttpRequest.h @@ -60,15 +60,15 @@ class HttpRequest : public GeneralRequest { public: // the content length - int64_t contentLength() const { return _contentLength; } + int64_t contentLength() const override { return _contentLength; } std::string const& cookieValue(std::string const& key) const; std::string const& cookieValue(std::string const& key, bool& found) const; - std::unordered_map cookieValues() const { + std::unordered_map cookieValues() const override { return _cookies; } - std::string const& body() const; + std::string const& body() const override; void setBody(char const* body, size_t length); // the request body as VelocyPackBuilder diff --git a/lib/Rest/HttpResponse.h b/lib/Rest/HttpResponse.h index ccb1a24c8c..1388618d4f 100644 --- a/lib/Rest/HttpResponse.h +++ b/lib/Rest/HttpResponse.h @@ -49,12 +49,6 @@ class HttpResponse : public GeneralResponse { public: bool isHeadResponse() const { return _isHeadResponse; } - enum ConnectionType { - CONNECTION_NONE, - CONNECTION_KEEP_ALIVE, - CONNECTION_CLOSE - }; - public: void setCookie(std::string const& name, std::string const& value, int lifeTimeSeconds, std::string const& path, @@ -69,30 +63,30 @@ class HttpResponse : public GeneralResponse { // information to the string buffer. Note that adding data to the body // invalidates any previously returned header. You must call header // again. - basics::StringBuffer& body() { return _body; } + basics::StringBuffer& body() override { return _body; } size_t bodySize() const; /// @brief set type of connection - void setConnectionType(ConnectionType type) { _connectionType = type; } + void setConnectionType(ConnectionType type) override { _connectionType = type; } /// @brief set content-type - void setContentType(ContentType type) { _contentType = type; } + void setContentType(ContentType type) override { _contentType = type; } /// @brief set content-type from a string. this should only be used in /// cases when the content-type is user-defined - void setContentType(std::string const& contentType) { + void setContentType(std::string const& contentType) override { _headers[arangodb::StaticStrings::ContentTypeHeader] = contentType; _contentType = ContentType::CUSTOM; } - void setContentType(std::string&& contentType) { + void setContentType(std::string&& contentType) override { _headers[arangodb::StaticStrings::ContentTypeHeader] = std::move(contentType); _contentType = ContentType::CUSTOM; } // you should call writeHeader only after the body has been created - void writeHeader(basics::StringBuffer*); + void writeHeader(basics::StringBuffer*) override; public: void reset(ResponseCode code) override final; From 60bb0f2dde778a9b6ad41ea697ed478fa46f5818 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Fri, 15 Jul 2016 17:40:42 +0200 Subject: [PATCH 03/10] attempt to fix issue #1943 --- arangod/Utils/SingleCollectionTransaction.cpp | 2 +- arangod/Utils/Transaction.cpp | 6 ++++++ arangod/Utils/Transaction.h | 3 +++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/arangod/Utils/SingleCollectionTransaction.cpp b/arangod/Utils/SingleCollectionTransaction.cpp index feeca82687..c782bf89e0 100644 --- a/arangod/Utils/SingleCollectionTransaction.cpp +++ b/arangod/Utils/SingleCollectionTransaction.cpp @@ -65,7 +65,7 @@ SingleCollectionTransaction::SingleCollectionTransaction( // add the (sole) collection if (setupState() == TRI_ERROR_NO_ERROR) { _cid = resolver()->getCollectionId(name); - addCollection(_cid, _accessType); + addCollection(_cid, name.c_str(), _accessType); } } diff --git a/arangod/Utils/Transaction.cpp b/arangod/Utils/Transaction.cpp index 216b33ee2a..7e434acd87 100644 --- a/arangod/Utils/Transaction.cpp +++ b/arangod/Utils/Transaction.cpp @@ -3292,6 +3292,9 @@ int Transaction::addCollectionEmbedded(TRI_voc_cid_t cid, TRI_transaction_type_e false, _allowImplicitCollections); if (res != TRI_ERROR_NO_ERROR) { + if (res == TRI_ERROR_TRANSACTION_UNREGISTERED_COLLECTION) { + THROW_ARANGO_EXCEPTION_MESSAGE(res, std::string(TRI_errno_string(res)) + ": " + resolver()->getCollectionNameCluster(cid)); + } return registerError(res); } @@ -3316,6 +3319,9 @@ int Transaction::addCollectionToplevel(TRI_voc_cid_t cid, TRI_transaction_type_e } if (res != TRI_ERROR_NO_ERROR) { + if (res == TRI_ERROR_TRANSACTION_UNREGISTERED_COLLECTION) { + THROW_ARANGO_EXCEPTION_MESSAGE(res, std::string(TRI_errno_string(res)) + ": " + resolver()->getCollectionNameCluster(cid)); + } registerError(res); } diff --git a/arangod/Utils/Transaction.h b/arangod/Utils/Transaction.h index 54552ec9ef..e562f40c89 100644 --- a/arangod/Utils/Transaction.h +++ b/arangod/Utils/Transaction.h @@ -385,6 +385,9 @@ class Transaction { type, _nestingLevel, true, true); if (res != TRI_ERROR_NO_ERROR) { + if (res == TRI_ERROR_TRANSACTION_UNREGISTERED_COLLECTION) { + THROW_ARANGO_EXCEPTION_MESSAGE(res, std::string(TRI_errno_string(res)) + ": " + collectionName); + } THROW_ARANGO_EXCEPTION(res); } TRI_EnsureCollectionsTransaction(_trx, _nestingLevel); From 11c33882c84e03b5e90ea24a905f0bb22c687714 Mon Sep 17 00:00:00 2001 From: hkernbach Date: Fri, 15 Jul 2016 19:16:16 +0200 Subject: [PATCH 04/10] gv settings [ci skip] --- .../aardvark/APP/frontend/html/body.html.part | 3 ++ .../js/templates/graphSettingsView.ejs | 17 +++---- .../frontend/js/templates/graphViewer2.ejs | 8 ++++ .../frontend/js/views/graphSettingsView.js | 46 +++++++++++++++++-- .../APP/frontend/js/views/graphViewer2.js | 46 +++++++++++++++---- .../APP/frontend/scss/_graphViewer2.scss | 32 +++++++++++++ 6 files changed, 129 insertions(+), 23 deletions(-) diff --git a/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part b/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part index 9dd59baae3..95b0099494 100644 --- a/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part +++ b/js/apps/system/_admin/aardvark/APP/frontend/html/body.html.part @@ -51,6 +51,9 @@ + + -
\ No newline at end of file +
\ No newline at end of file diff --git a/js/apps/system/_admin/aardvark/APP/frontend/build/index-min.html.gz b/js/apps/system/_admin/aardvark/APP/frontend/build/index-min.html.gz index 9643dd863c3a8af3949c42949e24b83668de755a..d1a82db6737fd0e49e95fb44b3b995143e887cba 100644 GIT binary patch delta 30238 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 delta 30106 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�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%0D_of!PczK;GGxK z`&sucE;5JbnaxU*zx<^QFiC>2s_iJgFDmNi=uTpYR7HzMdl`5d&0b7!(Rn_WGm3w> zcUoZmm4WJyCYfWOE!uw-`UP*OV2c$(6~?m`i|af(I-Ek;bQn(|h|R22oh(H{EMM=C z#?&M`B7f9|#Gc}QS}H#i@HeV`H+20J6jq`L}8A$jB-#mlH z@2ku%-lv$^aa%UKam|3)<41Sw4MIZMU&Cl4+_cO-UptVM1Wb0wOTrKz&I&`{af|1h ze{|FMCkt1N`V;__zR+w~tqJMcffPr>dh(g2;$dMl&c79)Ym+&(9_;wC_0WIRHlU5f zk{vrl?q~{A>^gsA7r?mW9ts?i=_=Jnq&e&p0}lO^;KRO%-gr2MBgj#B4A}>lGC`QS zxpOhkPKdLlRg91u4_6pc*1uI9zuGL~geNG~ZYu+I>2q3@Nevp6OyD96)gj9X*@g}& z4seE(E@r6PinbN6J5_a6tyX_PTs9Y#qVZ_JGJkWk=0Nx*U{G@86$O|^+)H3yRu5YP z${Z&E)L7%*u#qik7Oh(47Tp@R(z%6vM1+aH;{6(o5s0xY(3=`%q!ASfV!RMfxHOXT z!j?Ke@!H(Za7Hovkphk7y&GLLI8Wog5%(r?9?tT95AuJIABh22^~QgR!dKhGJYZTG zm#hqs(3z)YLfqLaYYdq_X?(^$LKQA8mMYSMuH%(+dn#%TFeJxqO|@*5Te3g~E(2*^ z|B6NuUo`WPo-i#Xrg@N`Xu}$k)>g>7YbC8|sBExs;@S2rpN=Kpsjm>;$d2POgjk&3 z21qHbj>SGX+!#FmySIOS+-XhQ?Sdz;M+79NGI?Ngke?T0(X&Sg#U7kvhbptt+FEtl zVBpfh_WWpo3EN;iE)<{nngGKU&Sv==jeRz{uR_XsZ?(ev02yan_i!UyJO>D1bV27U z5}IKf;_?ht5Y|7KETl)dgZ!+{-)QveeaHk!UJkeI~Wp%Yi9XH|HXUU|A0IM&v8S;lL-VR@;#t` zBgAlyAu4mF(n){yq(f6|j`B*M;b6A7=%;&dK2;{uO_G_x7f4ufB+g0C&y3t6Bv-gz z%7f*)l=;cb{t7JTC6$DIX|r<52d5{WJbZTi{e6h3aMZ>ZC#mL{D=!b7edaP~EX*X7 zR+hhg_hbQMfasbdbLhbi^zIDbaL58`$iPJm*Ng}RzdwIMWJue%F*%}!sUkz7TW?b9 zx2D>Hh+$tcW@f|uw8tyLR$ye7pCT9znO%qsUBejVSQmAa@EA@UBD#_^s(RM(^Bwg9 zNQc&o%Q%X;3+HVjf+HUw6%B&HWSZL#!?^tG8;IbjhOt>I2!Mz!gQ@#oF9T%9KS-Z> zu|S~H70i=k)VYEo9xh?R6o0l!&h`pD5W5ab&IM4;pe~Ff12l#3aXqh25-L2aBhnyaI-PaFa6*D`M)3R zqDWHbcg1Lu6^mJh$X5pX!oD14J*>u{_}+2};)ll#Wh9eAY88Lzf5bYL*(86PogzaK z@1Ob-hUE-Yfq$ZIoqZR-X&k%ym=?%M6Q{3})OKHI0}w)Gzb?z*AsOT{Vu;>ZDI5S zK3X1@Zy128X?cHjdNGr|NvY1NhAC>m2Qc~}nSNo>rRe#$2J}cDJD(Uk!UGIVz0Ai~ zAovOPflHAwS+9=}q3og0v%My!YB`r1(v&w4%spVl>_)NJ#3-&%kS28gSSY$!6B~pswSIP zT$(+vjHc_a1#)m)4JvU;cCikv>C2`TRUbyZJQ30tEy+2kI&0WCrp9 z5uX*Okz9WlF+V79H{?9;U1aBw+Wp07Jj@o;o$SB~Z!Q~=EPf!;`<6t-XNZawrE*Kp zDIf$A2dGAWRSv;8dXua9IlIO1TAff@$WXy8E=#3MMI30Tn z4nUlyKue-eU~uT|wA?B}sAVJXQ7^LxFTF2t^Wl?JY!iPaa^vppSGufbk zO$QG1Il7Uk_R|9QS^^28jc`&Cmz&8H@P1nycfb^!VsgAnnv=p~#aEH}DM41As3gT3 zq861WO1JXX1CifALo?(c*cjwf$n&HpZ@wfpRZEMpof5CgK9XtEAZEn0VaWVNZvyI3 ze41Fkl_7uf^H%n>c=t|Fk1|&oay}wF8Rq^eEMZt8CFl=suqscbSP?v}Hbw55VWOr; zMI^=;(k-yq_F)&e1qOqNsKCz-zuJG%Dgtr?mmMY*PzBdSfb1)>(A`~RMhvF6OtSy) ze!X*hR{_`sm(ngeLKDa<7~eLs?><2b$hWFR?qPrYU>J^&yA(%-##nMB07UOUUgx|D z4B_=6-ICtbQF^y2}fxAP^SG+o$d=)Vpk09WPjcFyM)$g=SrZVW9P zdFs?padTetaNQEhgYsE835+l21+TJaIH|t?unChmm^_U5@e#QS!0bMSGRCGSl+w6N zrZIp1(2URznoRahqGhx*91U(hg^b;+kJKr~rNJE4(dyfe)a#RXV90TvqWE=5!-B)T z!qF<;tTKVTPn{A*3LhXmiRwDjkP<~${=_*(wB%EsN8@hFXXF;Ag9uN8&Oe;@U^|wg z&S3&y`}D>AKAb=NPWIFszo-d;m2q|^uRnis_o@DMF#KVLV}>xM|C0vuQwdsnJ{ruB zVn=Rf{m39aLzeRaPvhne9DR{J#+~Re_*GHkHn?GnR`?(x7Eeu`!(?*alf^upCmJDs zh}4(ah7D~oH##@N>j(OJJpU$syRUE0_!cdO;vN0)mqn3Q*wXi3ef?Y1_~wfrzY#!j zkp9sXe6PiL!LYmpU_=2ZxD4XJg9QuhXLs-YTEF1EuE z#1(OULq{}Dt0$2rRSf#Mx3wECOYu09T`R-R5N6ad&+e8d`NedO{6;Sdj|mtQvWq2S z)PG@+-<7J#^#u^;BAM`3mS1oWq}dD^!6Xf^0(Mj?Q!joIIr8{=%fcWE^ zKLL(Q1w+S#f5Dn8BfuK0%pK+v~a_-E_>7Mx;}Erth5 z7)J5-1fP>p15U)~V44Jg8nrBAS0@PSiI$KQ#%3Bnu>d|r$|qrN2~RYUG?$Sgp(1Es zb~6(hx$Qm!IvmWO<;!Tkk)2z`0*0(THXx#jqZ(V^Ojx);3(bgT(!i63@&=irTYq5l z6NjC~dJ=B0;}W5n3(2Fg`o1PTlJhQ3eE1{EOGOC4@?58R=9S^T#2+P7C08mEk*AGn z-0cFdP~?!K4mA=3kZw!AhCOy)AxNZ$rc9Hl);)wtiVd*M{c;<+5yf4&5gXHyxJ5t!!5MJ_XBU}?EgmB3!M6o{jBRgA{Al_w#9|EH zb-cCIDdc6hZ{z)n3~vd+F$g<9>*L0W-$K{l{u=jA-23__NH}Pd-*H}lP{p|3SV#bl zZYiuH#WvJkY{7#saSeLp!eHzbLbgaovZfx`OD-SXh zrZ41as*`z1SDjM&D4XWh*G00xGo%OD#f0>Yv7(F9Rm7Y55RFk__Vg*PP~T?#5@$vo zROgDpa@Z<1I+pvru+=bsDWRD!ERCS5aVk31rk?Z~iEBHiI6~;C?&hY{)&Q?Uk0g0&Q&>R^10eNcBd{zwdNtX@z%vc zWqP$SNfZY8nhm+cCV~~pWfwUX3Fz3ca+nnn6!5E>#Zg^c z_I(Ouj~Msk3tgtvv2EHkBrH|v?LFY9N+xNxSN0<}33sT8X;d6WX_*6NA@sePKGM(@ z$8H=HdIYIC|K>S@mBXe$`0OL6tmK3pz}!to?{)EMFA_aUrZUBdQa~UV z0~b~fRSFn?n;LK0Uwn+E7~}(U*&mE9)ihFB@z|dbMdAW%(TpSol(yTyNo_IL<_hu? z$}Z?nV$0FX$UMR5lI4Ot(2|PI*wwr!q`Ke$QJPXO1;0>ez?Z?Fdffwmb#C5@0MIJ9 z>~+>lO3It2qOMK(E_YDZTccIHhoBp@xr5*J0vb7+^rx?yI_zCy**!zytq|b^A8KU` z^n-nWnW48jHnPk$!ShxqvFjGGCxRCQM~O$)aL2!Pl&jK5(vSrgAXaOp?K8Y)SAXu- znvClL2J zhsNsb^(w5P>=sutwYGFBNGDBm;pnH6b*k-u+5ox!j7-^&D@B}(tR_Mt05ticlt?&~ zlMw?-^up+>$`!GB*D%~9Q`KuSs7z7g+6rs)6DG9k3L|GSy-a>4EbcA8@WxEP$YvI( zO}6a0xoklBquvlJ)z}EaXvL0%OyU$P$6|^rl@VPBm68vo0R&xR*;$pfgh8uUXj<`q ziw=wfm$to_w6+cpokZuiw$FwuX0aE*QKbjx_e^C3G5kU-yS53U$R>V-(7)u}^O;M~ zkgS)LKW^;b#9-+_J--)lose0;$xX@7WlBQdw=OAP<};@8#a`BmB_-jdTia*O+RHi; z)W$gLyV0GPX1}K`2kAnaohAir4o5eCF?VR3oN9L2hlqYUOWwVaYkka5(UdWv)~vM0 z3|0}n#)U9dVR)E%Jz~YckUs8ONwA%=bhVJkLwZqhNF}n zuBx_CD5`aFS&`F@n02wbkP{VopeIb`c3*Fs5C8yM7@m$K|I_flKqV&=?qI7YgA$DE zd8|BoaZDxE&F=D)26zNcfyy#}Zoqif8a}c(J^5t7szIBsN>T8r$63iaIP~m_ac+$d zM3(giv)sXYS7&iqoH^(LrHQe=z&_oM5qA8*9g z>{)IlOl(sF%f|$}r-xG#vSroxgLsq$Qx>a>a&`q49cw;q0ixPI1V(FrnvbZ`3f2cb zyu4Q>X8i@!;ea9JZ3`U-n+!F|eZqs!OFo%r7$>%~7LQ#zAuDJl*j(#ZP&Rl${B6LV zPfwZGF-~`h6#I=WSt51Sa%ESvtMIvMRHk4o2n>;bCqxA63#u*qf}3}jS06rK5EClTs;y#27!2|zx8R^k z+l`0*sNm)k#**N%d3r8$qd{Y4Jgk0*OTK9ByicXf1TXbFgg>Wfq}d6hDr=rb51dN`m6-^~8<_j~Vf9tVC3RyEUQ z?qJ;8tYP&1sC-FSX%(W_<0476zwqH`jqbzS1w;)~p2^Krp;t5^lMzkw@;1K*VdJO$ zF11u@O0lrZm~x(fLo9;_mxRF+K*sina)}IBp%Idb2?=1t5nSlg!4@`p@b|etxWe00 zLO96E2zW>Y70!wHJDt7p?&qwA=N`~CcWu=`zyuAo#s2UcTkm!J8|wZKCWb_;+pX(u1M5lkd9uWa!ARAZMlJsj~p&IbukvZ%CQWtable>tbody>tr:first-of-type{visibility:hidden}body{background:rgba(64,74,83,.04);color:#333;display:block;font-size:14px;line-height:20px;margin:0;overflow:hidden}.fa,.fa-stack{display:inline-block}.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}body .bodyWrapper{left:150px;min-height:100%;position:absolute;right:0}body .centralRow{position:relative}body .loadingScreen{background-color:#fff;bottom:0;left:0;padding-top:100px;position:absolute;right:0;top:102px;z-index:100}body .loadingScreen span{display:inline-block;margin-top:10px;text-align:center;width:100%}body .loadingScreen i{width:100%}body #offlinePlaceholder{background:rgba(64,74,83,.8);height:100%;left:0;position:fixed;top:0;width:100%;z-index:9999}body #offlinePlaceholder .offline-div{overflow:auto;position:fixed;top:20%;width:100%;z-index:1050}body #offlinePlaceholder .offline-div h3,body #offlinePlaceholder .offline-div p{font-weight:300}body #offlinePlaceholder .offline-div .pure-u{width:100%}body #offlinePlaceholder .offline-div .offline-window{background:#fff;border-radius:3px}body #offlinePlaceholder .offline-div .offline-window .offline-header{padding-top:10px;text-align:center}body #offlinePlaceholder .offline-div .offline-window .offline-body{padding-bottom:20px;padding-top:0}body #offlinePlaceholder .offline-div .offline-window .offline-body .animation_state{padding-top:20px}body #offlinePlaceholder .offline-div .offline-window .offline-body>p{margin-bottom:0;text-align:center}body #offlinePlaceholder .offline-div .offline-window .offline-body,body #offlinePlaceholder .offline-div .offline-window .offline-header{padding-left:20px;padding-right:20px}.page-title span,.pingback a.url,body,input,textarea{font-weight:400}@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local("Open Sans Light"),local("OpenSans-Light"),url(../fonts/opensans/OpenSansLight.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local("Open Sans"),local("OpenSans"),url(../fonts/opensans/OpenSans.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local("Open Sans Bold"),local("OpenSans-Bold"),url(../fonts/opensans/OpenSansBold.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:300;src:local("Open Sans Light Italic"),local("OpenSansLight-Italic"),url(../fonts/opensans/OpenSansLightItalic.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:400;src:local("Open Sans Italic"),local("OpenSans-Italic"),url(../fonts/opensans/OpenSansItalic.woff) format("woff")}@font-face{font-family:'Open Sans';font-style:italic;font-weight:700;src:local("Open Sans Bold Italic"),local("OpenSans-BoldItalic"),url(../fonts/opensans/OpenSansBoldItalic.woff) format("woff")}/*! * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome/fontawesome-webfont.eot?v=4.4.0);src:url(../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.4.0) format("embedded-opentype"),url(../fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0) format("woff2"),url(../fonts/fontawesome/fontawesome-webfont.woff?v=4.4.0) format("woff"),url(../fonts/fontawesome/fontawesome-webfont.ttf?v=4.4.0) format("truetype"),url(../fonts/fontawesome/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right,.pull-right{float:right}.contentDiv li,.dashboard-bar-chart-container,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage,.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-half-height-legend,.dashboard-large-chart,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-interior-chart,.dashboard-small-chart,.dashboard-small-chart .dashboard-small-chart-inner,.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart,.dashboard-sub-bar,.dashboard-sub-bar .dashboard-sub-bar-title,.dashboard-tendency-container,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-subtitle-bar,.dashboard-title-bar .dashboard-half-title-bar,.dashboardModal,.dropdown-toolbar,.fixedDropdown .notificationItemContent,.gv-dropdown-menu,.innerDropdownInnerUL,.link-dropdown-menu,.modal-chart-detail,.modal-chart-detail .modal-body,.modal-chart-detail .modal-dashboard-legend,.modal-chart-detail .modal-inner-detail,.navlist li,.navlogo,.pagination-line li a,.pull-left,.script-dropdown-menu,.user-dropdown-menu,a.button-gui,a.headerButton,div .bigtile,div .bigtile a span.add-Icon,div .tile,div .tile a span.add-Icon,div.centralContent,div.dropdownInner ul,div.footer-center,div.footer-left{float:left}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}@font-face{font-family:Roboto;font-weight:300;font-style:normal;src:url(../fonts/roboto/Roboto-300/Roboto-300.eot);src:url(../fonts/roboto/Roboto-300/Roboto-300.eot?#iefix) format("embedded-opentype"),local("Roboto Light"),local("Roboto-300"),url(../fonts/roboto/Roboto-300/Roboto-300.woff2) format("woff2"),url(../fonts/roboto/Roboto-300/Roboto-300.woff) format("woff"),url(../fonts/roboto/Roboto-300/Roboto-300.ttf) format("truetype"),url(../fonts/roboto/Roboto-300/Roboto-300.svg#Roboto) format("svg")}@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:url(../fonts/roboto/Roboto-regular/Roboto-regular.eot);src:url(../fonts/roboto/Roboto-regular/Roboto-regular.eot?#iefix) format("embedded-opentype"),local("Roboto"),local("Roboto-regular"),url(../fonts/roboto/Roboto-regular/Roboto-regular.woff2) format("woff2"),url(../fonts/roboto/Roboto-regular/Roboto-regular.woff) format("woff"),url(../fonts/roboto/Roboto-regular/Roboto-regular.ttf) format("truetype"),url(../fonts/roboto/Roboto-regular/Roboto-regular.svg#Roboto) format("svg")}@font-face{font-family:Roboto;font-weight:500;font-style:normal;src:url(../fonts/roboto/Roboto-500/Roboto-500.eot);src:url(../fonts/roboto/Roboto-500/Roboto-500.eot?#iefix) format("embedded-opentype"),local("Roboto Medium"),local("Roboto-500"),url(../fonts/roboto/Roboto-500/Roboto-500.woff2) format("woff2"),url(../fonts/roboto/Roboto-500/Roboto-500.woff) format("woff"),url(../fonts/roboto/Roboto-500/Roboto-500.ttf) format("truetype"),url(../fonts/roboto/Roboto-500/Roboto-500.svg#Roboto) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:normal;src:url(../fonts/roboto/Roboto-700/Roboto-700.eot);src:url(../fonts/roboto/Roboto-700/Roboto-700.eot?#iefix) format("embedded-opentype"),local("Roboto Bold"),local("Roboto-700"),url(../fonts/roboto/Roboto-700/Roboto-700.woff2) format("woff2"),url(../fonts/roboto/Roboto-700/Roboto-700.woff) format("woff"),url(../fonts/roboto/Roboto-700/Roboto-700.ttf) format("truetype"),url(../fonts/roboto/Roboto-700/Roboto-700.svg#Roboto) format("svg")}.arango-tab li,.dashboard-legend,.dashboard-sub-bar-menu,.docsThirdCol,.fixedDropdown .notificationItem i,.fixedDropdown button,.headerBar>div.headerButtonBar,.query-button,.search-field,div .bigtile .iconSet span,div .tile .iconSet span,div.footer-right,div.footer-right p,div.gv_colour_list,ul.headerButtonList li{float:right}.collectionInfoTh2,.collectionTh,.dashboard-sub-bar,.dashboard-sub-bar .dashboard-sub-bar-title,.dataNotReadyYet,.dygraph-label.dygraph-title,.figuresHeader th,.graphLabel,.inputEditorWrapper .aqlEditorWrapper .previewWrapper .previewBar,.inputEditorWrapper .aqlEditorWrapper table,.inputEditorWrapper .aqlEditorWrapper table td input,.inputEditorWrapper .aqlEditorWrapper table th,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper .previewBar,.inputEditorWrapper .bindParamEditorWrapper table,.inputEditorWrapper .bindParamEditorWrapper table td input,.inputEditorWrapper .bindParamEditorWrapper table th,.modal-body,.page-title span,.pingback a.url,.snippet-no-num,.ui-tooltip,body,button,input,textarea{font-family:Roboto,sans-serif!important}.document-info .document-bold-font,.document-info .document-thin-font{font-family:droid sans mono,monospace,courier new,courier,sans-serif;font-size:11pt}#distributionChartDiv:after,.arango-tab:after,.dashboard-bar-chart-container .dashboard-bar-chart:after,.dashboard-medium-chart .dashboard-medium-chart-inner:after,.dashboard-medium-chart .dashboard-medium-chart-menu:after,.dashboard-row:after,.dashboard-sub-bar:after,.dashboard-tendency-container .dashboard-tendency-chart:after,.detail-chart:after,.document-info .document-info-container .document-inner-info-container .document-attribute:after,.headerBar>div.headerButtonBar:after,.lineChartDiv:after,.pagination-line li:after,.resizecontainer:after,.tileList:after{clear:both;content:'.';display:block;font-size:0;height:0;visibility:hidden}.caret,.contentDiv:after,.contentDiv:before,.form-actions:after,.form-actions:before,.pong-spinner:after,.pong-spinner:before{content:''}.addButton,.arango-tab a,.arango-tab li,.arangoicon,.clusterDownBtn button,.contentDiv .icon,.contentTables tr.contentRowInactive a,.deleteButton i,.dropdownImport.headerDropdown input[type=checkbox].css-checkbox label.css-label,.edit-index-table .icon_arangodb_roundminus,.fixedDropdown .notificationItem i,.fullNotification:hover,.gv-search-submit-icon,.icon-info-sign,.link>line,.node,.pagination-line li a,.script-dropdown-menu .dropdown-item,.search-submit-icon,a.button-gui,a.headerButton,div .bigtile,div .bigtile .iconSet span,div .bigtile a span.icon,div .bigtile a svg,div .tile .iconSet span,div .tile a span.icon,div .tile a svg,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox label.css-label,div.toolbox div.gv_action_button{cursor:pointer}#swagger #jsonLink,.arangoToolbar span.clickable:hover,.login-window button,.shardFollowers span,.shardLeader span,.subnavmenu .infoEntry a.default-icon i{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.login-window select{-webkit-appearance:none;background:url("data:image/svg+xml;utf8,") right 10px top 12px no-repeat #f2f2f2;background-size:16px 16px;border:0;-webkit-border-radius:2px;border-radius:2px;color:#000;font-size:14px;font-weight:400;height:40px;line-height:initial;padding:12px;text-align:center;-moz-transition:.3s ease all;-ms-transition:.3s ease all;-o-transition:.3s ease all;-webkit-transition:.3s ease all;transition:.3s ease all;width:100%}.breadcrumb a,.navlist .dropdown-item:hover a,.navlist>li:hover a{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in}.login-window select:disabled{opacity:.5}.login-window select:active,.login-window select:focus{border:0;outline:0}.navbar{color:#fff;left:0;right:0;z-index:1000}.ajax-file-upload-red,.button-danger{background-color:#e74c3c}.ajax-file-upload-red:focus,.ajax-file-upload-red:hover,.button-danger:focus,.button-danger:hover{background-color:#ec7063}.contentTables td span,.deleteButton i,.edit-index-table .icon_arangodb_roundminus{color:#e74c3c}.contentTables td span:focus,.contentTables td span:hover,.deleteButton i:focus,.deleteButton i:hover,.edit-index-table .icon_arangodb_roundminus:focus,.edit-index-table .icon_arangodb_roundminus:hover{color:#ec7063}.ajax-file-upload,.button-success{background-color:#2ecc71}.ajax-file-upload:focus,.ajax-file-upload:hover,.button-success:focus,.button-success:hover{background-color:#58d68d}.button-info{background-color:#3498db}.button-info:focus,.button-info:hover{background-color:#5dade2}.addButton,.contentTables td.dbThSecond span{color:#2ecc71}.addButton:focus,.addButton:hover,.contentTables td.dbThSecond span:focus,.contentTables td.dbThSecond span:hover{color:#58d68d}.button-warning{background-color:#f1c40f}.button-warning:focus,.button-warning:hover{background-color:#f4d313}.button-close,.button-neutral{background-color:#8f8d8c}.button-close:focus,.button-close:hover,.button-neutral:focus,.button-neutral:hover{background-color:#736b68}.dashboard-sub-bar-menu{color:#8f8d8c}.dashboard-sub-bar-menu:focus,.dashboard-sub-bar-menu:hover{color:#736b68}.button-primary{background-color:#34495e}.button-primary:focus,.button-primary:hover{background-color:#415b76}.button-header,a.button-gui,a.headerButton{background-color:#fff;border:1px solid #fff;color:#555}.button-header:focus,.button-header:hover,a.button-gui:focus,a.button-gui:hover,a.headerButton:focus,a.headerButton:hover{background-color:#2ecc71;border:1px solid #2ecc71;color:#fff}.button-notification{background-color:#faa020}.button-notification:focus,.button-notification:hover{background-color:#f87c0f}.button-inactive,.button-inactive:focus,.button-inactive:hover,[class*=' button-']:disabled,[class*=' button-']:focus:disabled,[class*=' button-']:hover:disabled,[class^=button-]:disabled,[class^=button-]:focus:disabled,[class^=button-]:hover:disabled,button.disabled,button.disabled:focus,button.disabled:hover{background-color:#d3d3d3}a.headerButton.disabled,a.headerButton.disabled:focus,a.headerButton.disabled:hover{color:#d3d3d3}div.queryline .fa.fa-search{color:#c2c2c2;font-size:12pt;opacity:.5;position:relative;right:21px;top:-1px}div.queryline .fa.fa-search:hover{cursor:pointer;opacity:1}.inputEditorWrapper .aqlEditorWrapper table td input,.inputEditorWrapper .bindParamEditorWrapper table td input,.jsoneditor .search .frame input,.login-window .login-input,.modal-body .select2-choices input,.modal-body input,.modal-body select,.modal-body textarea,.navbar .arango-collection-select,.newIndexClass table input,.newIndexClass table select,.sectionHeader .scaleGroup input,div.queryline input,div.queryline select,input.search-input{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background-color:#fff!important;border:2px solid rgba(140,138,137,.25);box-shadow:none;outline:transparent 0}.inputEditorWrapper .aqlEditorWrapper table td input:focus,.inputEditorWrapper .bindParamEditorWrapper table td input:focus,.jsoneditor .search .frame input:focus,.login-window .login-input:focus,.modal-body input:focus,.modal-body select:focus,.modal-body textarea:focus,.navbar .arango-collection-select:focus,.newIndexClass table input:focus,.newIndexClass table select:focus,.sectionHeader .scaleGroup input:focus,div.queryline input:focus,div.queryline select:focus,input.search-input:focus{border-color:#2ecc71;box-shadow:none;outline:transparent 0}.dropdown-toolbar,.gv-dropdown-menu,.link-dropdown-menu,.script-dropdown-menu,.user-dropdown-menu{background-color:#f5f8f0;border-color:#666;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;display:none;left:initial;list-style:none;margin:5px 0 0;padding:5px 0;position:absolute;right:0;top:80%;z-index:1000}.dropdown-toolbar li,.gv-dropdown-menu li,.link-dropdown-menu li,.script-dropdown-menu li,.user-dropdown-menu li{line-height:23px;white-space:nowrap;width:100%}.dropdown-toolbar .dropdown-header,.gv-dropdown-menu .dropdown-header,.link-dropdown-menu .dropdown-header,.script-dropdown-menu .dropdown-header,.user-dropdown-menu .dropdown-header{color:#999;font-size:15px;font-weight:600;font-variant:small-caps;padding:0}.dropdown-toolbar .dropdown-header:hover,.gv-dropdown-menu .dropdown-header:hover,.link-dropdown-menu .dropdown-header:hover,.script-dropdown-menu .dropdown-header:hover,.user-dropdown-menu .dropdown-header:hover{cursor:default}.dropdown-toolbar .divider,.gv-dropdown-menu .divider,.link-dropdown-menu .divider,.script-dropdown-menu .divider,.user-dropdown-menu .divider{background-color:#666;height:1px;margin:10px 0 5px}.dropdown-toolbar a,.gv-dropdown-menu a,.link-dropdown-menu a,.script-dropdown-menu a,.user-dropdown-menu a{color:#fff;padding:0 20px}.navbar2{color:#fff}.navbar2>.secondary{background-color:rgba(255,255,255,.85)}.navbar{bottom:0;float:left;-webkit-font-smoothing:subpixel-antialiased;margin-bottom:0;position:absolute;top:0;width:150px}.navbar>.primary{background-color:#404a53;float:left;height:100%;width:150px}.navbar>.resizecontainer{background-color:#fff}.navbar .no-left-margin{border:0;margin-left:0}.navbar .no-left-margin.hover{background-color:transparent}.navbar .arangodbLogo{height:auto;margin-left:6px;margin-top:15px;width:138px}.navbar .arango-collection-select{position:relative;right:-22px;top:4px}.navbar .nav .dropdown .active>.dropdown-toggle,.navbar .nav .dropdown .open.active>.dropdown-toggle,.navbar .nav .dropdown .open>.dropdown-toggle{background:#58d68d}.navbar .nav>.active>a{-webkit-box-shadow:0 0 0 transparent inset;-moz-box-shadow:0 0 0 transparent inset;box-shadow:0 0 0 transparent inset;background-color:#fff;color:#000}.navbar .nav>li>a:focus{background-color:#fff}.navbar .nav>li>a:hover{background-color:#000;color:#686766}.navbar .shortcut{bottom:31px;left:13px;position:absolute}.navbar .shortcut i{background-color:transparent;border-radius:20px;color:#fff;width:20px;padding:5px 0 6px 4px}.navbar .shortcut i:hover{background-color:#2ecc71;color:#fff;cursor:pointer}.navbar .social-icons{bottom:0;float:left;margin-left:9px;position:absolute;width:100%}.navbar .social-icons a{display:block;float:left;height:25px;width:25px}.navbar .social-icons p{background:0 0;border-radius:20px;float:left;height:25px;margin-right:10px;padding:0;width:25px}.navbar .social-icons p:hover{background:#2ecc71;cursor:pointer}.navlist li.divider,.navlist li.navbar-spacer{background-color:rgba(0,0,0,.2)}.navbar .social-icons p:hover i{color:#fff}.navbar .social-icons i{color:#fff;margin-top:6px;position:absolute}.navbar .social-icons i.fa-google,.navbar .social-icons i.fa-slack,.navbar .social-icons i.fa-stack-overflow,.navbar .social-icons i.fa-twitter{margin-left:7px}.navlogo{height:60px;width:100%}.navlogo .small{display:none}.script-dropdown-menu .dropdown-item a,.tab{display:block}.navlogo .version{bottom:33px;color:rgba(255,255,255,.7);font-size:11px;font-weight:100;left:0;padding-bottom:10px;position:absolute;text-align:center;text-transform:uppercase;width:100%}.navlist,.navlist li{width:150px}.navlogo .version .out-of-date{color:#f1c40f;font-weight:400}.navlogo .version .out-of-date:hover{cursor:pointer}.navlogo .version .up-to-date{color:#2ecc71}.navmenu{clear:both}.navlist{list-style:none;margin:0;position:relative;top:0}.navlist>li{line-height:30px}.navlist li .fa{opacity:.3;padding-left:5px;padding-right:15px;text-align:center;width:10px}.navlist li .fa.fa-heart{color:#ff7a7a;opacity:1}.navlist li.disabled:hover{cursor:default}.navlist li.disabled:hover a:hover{cursor:default;opacity:.8}div .bigtile:hover,div .tile:hover,div.footer-center p:hover{cursor:pointer}.navlist .active .tab .fa,.navlist>.active a{opacity:1}.navlist li.dropdown:hover{border-bottom-left-radius:0;border-bottom-right-radius:0}.navlist li.divider,.navlist li.navbar-spacer{border:0}.navlist li.navbar-spacer{height:2px;margin-bottom:0;margin-top:0}.navlist .active{border-left:2px solid #77cb99}.navlist .active .tab{color:#fff;margin-left:-2px}.navlist .dropdown-item,.script-dropdown-menu .dropdown-item{margin-left:0}.navlist>.active{background-color:rgba(255,255,255,.2)}.navlist .dropdown-item:hover a,.navlist>li:hover a{color:#fff;opacity:1;transition:all .2s ease-in}.navlist .dropdown-item a{border-bottom:0;display:block;font-size:11pt}.navlist .dropdown-item a:hover{background-color:#dee9cf;color:#686766}.tab{color:rgba(255,255,255,.8);font-size:9pt;font-weight:100;text-transform:uppercase;padding:5px}.tab.userImg{padding-bottom:5px}.dropdown-item a{border-bottom:0!important;font-weight:300}.dropdown-toolbar li a,footer.footer p{font-weight:100}.dropdown-toolbar{background-color:#fff!important}.dropdown-toolbar li a:hover{background:0 0;background-color:#dee9cf!important;color:#000!important}.link-dropdown-menu,.user-dropdown-menu{background-color:rgba(0,0,0,.7);border-top-right-radius:0;margin-right:-1px;margin-top:7px;z-index:50}.link-dropdown-menu .dropdown-item,.user-dropdown-menu .dropdown-item{border-left:0;border-right:0}.script-dropdown-menu .dropdown-item a:hover{color:#fff}.script-dropdown-menu .dropdown-item:hover{background-color:#2ecc71}.gv-dropdown-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;background-color:rgba(0,0,0,.7);border:1px solid #c2c2c2;margin-right:-20px;margin-top:6px}.gv-dropdown-menu:after{border-bottom-color:#fff}.gv-dropdown-menu li:hover{background-color:#fff;background-image:none}.gv-dropdown-menu li a{padding:0}.gv-dropdown-menu li a label{color:#fff;padding-left:5px}.gv-dropdown-menu li a:focus{background-color:#2ecc71!important;background-image:none}#arangoCollectionSelect{display:none;float:right;margin-bottom:0;margin-right:15px;padding-bottom:0}.caret{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #686766;display:inline-block;height:0;vertical-align:top;width:0}.applications-menu{display:block}.arango-logo{height:34px;padding:0!important}.arango-logo img{margin-left:22px}.footer{background-color:rgba(239,240,241,.8);display:none;font-size:14px;left:160px;right:10px;text-align:center;z-index:1000}div.footer-center,div.footer-left,div.footer-right{background:none;color:#686766}footer.footer{bottom:0;height:43px;position:fixed}footer.footer p{font-size:10pt;margin-bottom:0;padding-bottom:10px;padding-top:10px}div.footer-left{width:45%}div.footer-center{width:10%}div.footer-center p{padding-top:5px}[class*=' button-']:disabled,[class^=button-]:disabled,a.headerButton.disabled,button.disabled{cursor:not-allowed}div.footer-right{width:45%}div.footer-right p{color:#fff}div.footer-right i{color:#e74c3c;font-size:18px}div.footer-right a{color:#686766;margin-left:5px;position:relative;top:-1px}div.footer-right .isOnline{color:#2ecc71!important}.ajax-file-upload,.ajax-file-upload-red,.button-close,.button-danger,.button-header,.button-inactive,.button-info,.button-neutral,.button-notification,.button-primary,.button-success,.button-warning{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0;font-size:13px;font-weight:300!important}.addButton,.deleteButton i{font-size:16pt;position:relative}.ajax-file-upload,.ajax-file-upload-red,.button-close,.button-danger,.button-inactive,.button-info,.button-neutral,.button-notification,.button-primary,.button-success,.button-warning{border:0;color:#fff;margin-left:10px;padding:4px 12px}.ajax-file-upload i,.ajax-file-upload-red i,.button-close i,.button-danger i,.button-inactive i,.button-info i,.button-neutral i,.button-notification i,.button-primary i,.button-success i,.button-warning i{margin-left:-5px}.ajax-file-upload .fa,.ajax-file-upload-red .fa,.button-close .fa,.button-danger .fa,.button-inactive .fa,.button-info .fa,.button-neutral .fa,.button-notification .fa,.button-primary .fa,.button-success .fa,.button-warning .fa{position:relative;top:1px}.button-header{margin-top:5px}.addButton{margin-right:7px;margin-top:2px}.deleteButton i{float:right;padding-right:7px;top:12px}#closeBtnInfoView{margin-left:0!important}button.btn-server{width:120px}button.btn-small{padding:0 8px}button.gv-zoom-btn{background-size:14px 14px;height:14px;vertical-align:baseline;width:14px}button.gv-zoom-btn.btn-zoom-right{border:0;box-shadow:none;right:0;top:13px}button.gv-zoom-btn.pan-right{background-image:url(../img/gv_arrow_right.png)}button.gv-zoom-btn.pan-right:hover{background:inherit;background-image:url(../img/gv_arrow_right.png)}button.gv-zoom-btn.pan-left{background-image:url(../img/gv_arrow_left.png)}button.gv-zoom-btn.pan-left:hover{background:inherit;background-image:url(../img/gv_arrow_left.png)}button.gv-zoom-btn.pan-top{background-image:url(../img/gv_arrow_top.png)}button.gv-zoom-btn.pan-top:hover{background:inherit;background-image:url(../img/gv_arrow_top.png)}button.gv-zoom-btn.pan-bottom{background-image:url(../img/gv_arrow_bottom.png)}button.gv-zoom-btn.pan-bottom:hover{background:inherit;background-image:url(../img/gv_arrow_bottom.png)}button.gv-zoom-btn.btn-zoom{height:14px;margin:0;padding:0;position:absolute;width:16px}button.gv-zoom-btn.btn-zoom-top{border:0;box-shadow:none;left:13px;top:1}button.gv-zoom-btn.btn-zoom-left{border:0;box-shadow:none;left:0;top:13px}button.gv-zoom-btn.btn-zoom-bottom{border:0;box-shadow:none;left:13px;top:25px}button.gv-icon-btn{-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important;background-size:36px 36px;height:36px;width:36px}button.gv-icon-btn.active{background-color:#2ecc71}button.gv_dropdown_entry{height:30px;margin:4px 4px 4px 12px;width:160px}button.gv_context_button{width:65px}button.large-distance{margin-left:12px}button.short-distance{margin-left:6px}button.shutdown{margin-top:6px;padding:3px 14px}button.graphViewer-icon-button{background-color:transparent;border:0;height:20px;margin-left:5px;margin-top:-2px;padding:0;width:20px}button.graphViewer-icon-button img{height:20px;padding-bottom:10px;width:20px}ul.headerButtonList{display:inline-block;margin-bottom:0;margin-left:0;padding-left:0!important}ul.headerButtonList li{display:inline}a.button-gui,a.headerButton{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;margin-left:5px;margin-right:5px}a.headerButton{margin-top:2px;position:relative}a.headerButton .fa,a.headerButton [class*=" icon_"],a.headerButton [class^=icon_]{display:block;height:23px;line-height:23px;position:static;right:0;text-align:center;top:0;width:27px}a.headerButton .icon_arangodb_arrowleft,a.headerButton .icon_arangodb_arrowright{font-weight:700}a.headerButton.activated{background-color:#58d68d;border:1px solid #58d68d;color:#fff}a.headerButton.activated:hover{background-color:#fff;color:#58d68d}div.toolbox{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#fff;border:1px solid rgba(140,138,137,.25);margin-right:5px;padding-bottom:5px;padding-top:5px;position:absolute;top:-10px}div.toolbox div.gv_action_button{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#fff;color:#555;height:30px;margin:5px;position:relative;text-align:center;width:30px}div.toolbox div.gv_action_button.active{background-color:#2ecc71;color:#fff}div.toolbox div.gv_action_button:first-child{margin-top:0}div.toolbox div.gv_action_button:last-child{margin-bottom:0}h6.gv_button_title,h6.gv_icon_icon{left:0;margin:0;position:absolute;right:0}h6.gv_icon_icon{font-size:22px;left:1px;top:4px}h6.gv_button_title{bottom:1px;display:none}.btn-icon{background-color:#383434;padding:4px}.gv-icon-small{background-size:16px 16px;height:16px!important;width:16px!important}.gv-icon-small.delete{background-image:url(../img/icon_delete.png)}.gv-icon-small.add{background-image:url(../img/plus_icon.png)}a.pagination-button,ul.arango-pagination a{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.badge,.btn,.label{text-shadow:none!important}.navbar-inner,.thumbnail{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0}.modal-body th.actionCell>button{margin-top:-12px}.btn-old-padding{padding-bottom:4px!important;padding-top:4px!important}button.btn-overview,button.btn-server{margin:5px}a.button-gui{height:auto;margin-bottom:0;margin-top:0;padding-bottom:1px;padding-top:1px;position:absolute;right:2px;text-decoration:none!important;top:2px;width:auto}a.button-gui.button-gui-disabled{display:none}.clusterDownBtn{padding-bottom:10px;padding-top:10px;text-align:center}.clusterDownBtn button{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#f1f1f1;border:1px solid rgba(0,0,0,.1875);color:#333;font-size:20px;font-weight:300;margin:0;padding:12px 18px;text-align:center;text-decoration:none!important;width:250px}.clusterDownBtn button:hover{background-color:#e8e8e8;color:#4a6c30;-webkit-transition-delay:0;-webkit-transition-duration:.2s;-webkit-transition-property:all;-webkit-transition-timing-function:ease-in}.clusterDownBtn button.green{background-color:#617e2b;color:#fff}.clusterDownBtn button.green:hover{background-color:#8ba142}.bottomButtonBar{background-color:#fff;border-top:1px solid rgba(104,103,102,.1);height:30px;padding:10px}.tileList{left:10px;padding-top:5px;position:absolute;right:10px}.tileList legend{padding-left:5px}.tileList .tile:first-child a{opacity:.8}.tileList .tile:first-child a:hover{opacity:1}div .bigtile,div .tile{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:2px;font-size:14px;list-style:none;margin-bottom:13px;position:relative;text-align:center;z-index:1}div .bigtile progress[value],div .tile progress[value]{color:#5bc0de}div .bigtile progress::-webkit-progress-bar-value,div .tile progress::-webkit-progress-bar-value{background:#5bc0de}div .bigtile progress::-webkit-progress-value,div .tile progress::-webkit-progress-value{background:#5bc0de}div .bigtile progress::-moz-progress-bar,div .tile progress::-moz-progress-bar{background:#5bc0de}div .bigtile progress,div .tile progress{-webkit-appearance:none;border-radius:0;height:2px;margin-top:16px;position:relative;width:100%;z-index:10}div .locked.bigtile,div .locked.tile{cursor:not-allowed}div .locked.bigtile .borderBox,div .locked.bigtile .collection-type-icon,div .locked.bigtile .collectionName,div .locked.bigtile .iconSet,div .locked.tile .borderBox,div .locked.tile .collection-type-icon,div .locked.tile .collectionName,div .locked.tile .iconSet{opacity:.5}div .locked.bigtile .iconSet span:hover,div .locked.tile .iconSet span:hover{background-color:#fff!important;color:#000;cursor:not-allowed!important}div .locked.bigtile .iconSet:hover,div .locked.tile .iconSet:hover{cursor:not-allowed!important}div .bigtile .collection-type-icon:hover,div .bigtile img:hover,div .tile .collection-type-icon:hover,div .tile img:hover{cursor:pointer}div .bigtile .warning-icons,div .tile .warning-icons{background-color:#e74c3c;border-radius:2px;color:#fff;font-size:11px;height:17px;left:0;line-height:13px;margin-left:5px;margin-top:5px;padding-left:9px;padding-right:9px;position:absolute;top:0}div .bigtile .warning-icons .fa,div .tile .warning-icons .fa{font-size:11pt;margin-left:1px}div .bigtile .collection-type-icon,div .tile .collection-type-icon{color:#666;font-size:30pt;margin-left:-18px;position:absolute;top:15px}div .bigtile img,div .tile img{position:relative}div .bigtile img.icon,div .tile img.icon{height:50px;margin-top:-110px;width:50px}div .bigtile a span.add-Icon,div .tile a span.add-Icon{font-size:20px;margin-left:22px;margin-right:10px;position:relative;top:0}div .bigtile a span.icon,div .tile a span.icon{font-size:50px}div .bigtile a svg.icon,div .tile a svg.icon{height:50px;width:50px}div .bigtile .tile-icon-svg,div .tile .tile-icon-svg{cursor:pointer;fill:#686766;height:50px;margin-left:auto;margin-right:auto;margin-top:-63px;position:relative;width:50px}div .bigtile .tile-icon,div .tile .tile-icon{color:#686766;font-size:50px;line-height:1.2;margin-left:-50px}div .bigtile .icon_arangodb_edge5-2,div .bigtile .tile-icon,div .tile .icon_arangodb_edge5-2,div .tile .tile-icon{position:absolute;top:15px}div .bigtile .icon_arangodb_edge5-2,div .tile .icon_arangodb_edge5-2{display:inline-block;margin-left:5px;position:absolute;top:0;-moz-transform:rotate(80deg);-o-transform:rotate(80deg);-webkit-transform:rotate(80deg)}div .bigtile h5,div .tile h5{background:rgba(64,74,83,.8);color:#fff;font-size:12px;margin:0 5px;overflow:hidden!important;padding:4px 8px;text-overflow:ellipsis!important;white-space:nowrap!important}div .bigtile h5.inProgress,div .tile h5.inProgress{color:#5bc0de}div .bigtile .tileSelects,div .tile .tileSelects{margin-left:40px;position:relative;z-index:9999}div .bigtile .tileSelects select,div .tile .tileSelects select{float:right;height:20px;margin-right:5px;margin-top:16px;width:70px}div .bigtile .fullBorderBox,div .tile .fullBorderBox{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:2px;box-sizing:border-box;height:100%;margin-left:5px;margin-right:5px;position:relative;width:auto}div .bigtile .fullBorderBox .add,div .tile .fullBorderBox .add{color:#404a53}div .bigtile .fullBorderBox .add span,div .tile .fullBorderBox .add span{color:#2ecc71}div .bigtile .paddingBox,div .tile .paddingBox{box-sizing:border-box;padding-left:5px;padding-right:5px}div .bigtile .borderBox,div .tile .borderBox{background-color:#fff;border:1px solid rgba(64,74,83,.2);border-bottom:0;border-radius:2px;box-sizing:border-box;height:75px;position:relative;width:100%}div .bigtile .iconSet,div .tile .iconSet{position:absolute;right:5px;top:5px}div .bigtile .iconSet span,div .tile .iconSet span{border-radius:2px;color:#666;font-size:18px;z-index:2;padding:2px 3px}div .bigtile .iconSet span:hover,div .tile .iconSet span:hover{background-color:#2ecc71;color:#fff}div .bigtile .iconSet span.disabled,div .tile .iconSet span.disabled{cursor:default;opacity:.2}div .bigtile .iconSet span.disabled:hover,div .tile .iconSet span.disabled:hover{background-color:#fff;color:#000;cursor:default;opacity:.2}div .bigtile .badge-success,div .tile .badge-success{font-weight:300}div .bigtile .unloaded div,div .tile .unloaded div{border-bottom:16px solid #ff8f35}div .bigtile .deleted div,div .tile .deleted div{border-bottom:16px solid #700}div .bigtile .tileBadge,div .tile .tileBadge{bottom:29px;font-size:11px;font-weight:300;position:absolute;right:0}div .bigtile .tileBadge button,div .tile .tileBadge button{margin-left:0;margin-right:5px}div .bigtile .tileBadge span,div .tile .tileBadge span{display:inline-block;line-height:15px}div .bigtile .tileBadge span .corneredBadge,div .tile .tileBadge span .corneredBadge{border-bottom-style:solid;border-bottom-width:17px;border-left:5px solid transparent;border-radius:2px;color:#fff;height:0;margin-bottom:4px;margin-right:10px;padding-left:1px;padding-right:6px}div .bigtile .tileBadge span .corneredBadge.loading,div .tile .tileBadge span .corneredBadge.loading{border-bottom-color:#ff8f35}div .bigtile .tileBadge span .corneredBadge.loaded,div .tile .tileBadge span .corneredBadge.loaded{border-bottom-color:#2ecc71}div .bigtile .tileBadge span .corneredBadge.inProgress,div .tile .tileBadge span .corneredBadge.inProgress{border-bottom-color:#5bc0de}div .bigtile .tileBadge span .corneredBadge.development,div .bigtile .tileBadge span .corneredBadge.unloaded,div .tile .tileBadge span .corneredBadge.development,div .tile .tileBadge span .corneredBadge.unloaded{border-bottom-color:#ff8f35}div .tile{height:100px}div .tile-graph h5{margin-left:5px;margin-right:5px}div .tile-graph .tile-icon:hover{cursor:pointer}div .bigtile{height:309px;width:452px}div .bigtile .shardContainer{font-size:30px}div .bigtile .shardContainer span{padding:2px}.collectionName{border-bottom-left-radius:2px;border-bottom-right-radius:2px;bottom:0;font-weight:300;left:0;position:absolute;right:0;text-align:left}#userManagementThumbnailsIn .tile .paddingBox img{border-radius:58px;margin-top:-99px;padding:0}.resizecontainer{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:10px;padding-right:10px}.dashboard-large-chart,.dashboard-medium-chart-outer,.dashboard-sub-bar,.tendency-box-sizing .dashboard-tendency-container,div.centralContent{box-sizing:border-box}@media (max-width:738px){#collectionsDropdown ul{width:auto!important}.footer-center p{display:none}#queryContent #querySize,#queryContent #querySizeDiv,#queryContent .styled-select{margin-right:6px;width:90px!important}}@media (max-width:970px){#documentsDiv #totalDocuments{display:none}}@media (min-width:250px) and (max-width:489px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:185px}.dashboard-sub-bar-menu{font-size:12px}.dashboard-medium-chart .dashboard-interior-chart{height:185px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:12px;left:10px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:185px;width:27px}.dashboard-medium-chart #clusterGraphs svg text{font-size:10px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:197px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:10px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:83.25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:-15px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:25.08px;line-height:25.08px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:40.17px;line-height:19.08px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:79.75px}.dashboard-bar-chart-container .dashboard-bar-chart{height:74.75px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:25.25px;line-height:25.25px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:-4.2px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:-3px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-45px;width:110px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{display:none;font-size:12px;min-height:190px;width:10px}.absolut,.percentage{font-size:14px}.modal-chart-detail .modal-inner-detail{width:70px}.modal-body .dashboard-large-chart{width:51px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:22px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:5px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:-4.2px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:-3px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:-6px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:10px;font-weight:400}.dashboard-subtitle-bar{font-size:14px;font-weight:300}.dashboard-figure{font-size:16px;font-weight:400}.dashboard-figurePer{font-size:14px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:10px}.dashboard-legend{display:none;height:30px;width:100%}.dashboard-half-height-legend{display:none;font-size:10px;height:100px;width:0}.application-detail-view section.info{width:90px}.application-detail-view aside.meta{display:none}}@media (min-width:490px) and (max-width:729px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:185px}.dashboard-sub-bar-menu{font-size:12px}.dashboard-medium-chart .dashboard-interior-chart{height:185px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:12px;left:130px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:185px;width:147px}.dashboard-medium-chart #clusterGraphs svg text{font-size:10px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:197px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:10px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:83.25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:25.08px;line-height:25.08px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:40.17px;line-height:19.08px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:79.75px}.dashboard-bar-chart-container .dashboard-bar-chart{height:74.75px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:25.25px;line-height:25.25px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:51.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:21px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-165px;width:350px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{display:none;font-size:12px;min-height:190px;width:10px}.absolut,.percentage{font-size:14px}.modal-chart-detail .modal-inner-detail{width:310px}.modal-body .dashboard-large-chart{width:211px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:142px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:125px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:51.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:21px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:74px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:10px;font-weight:400}.dashboard-subtitle-bar{font-size:14px;font-weight:300}.dashboard-figure{font-size:16px;font-weight:400}.dashboard-figurePer{font-size:14px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:10px}.dashboard-legend{display:none;height:30px;width:100%}.dashboard-half-height-legend{display:none;font-size:10px;height:100px;width:0}.application-detail-view section.info{width:330px}.application-detail-view aside.meta{display:none}}@media (min-width:730px) and (max-width:969px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:185px}.dashboard-sub-bar-menu{font-size:12px}.dashboard-medium-chart .dashboard-interior-chart{height:185px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:12px;left:250px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:185px;width:267px}.dashboard-medium-chart #clusterGraphs svg text{font-size:10px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:197px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:10px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:83.25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:65px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:25.08px;line-height:25.08px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:40.17px;line-height:19.08px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:79.75px}.dashboard-bar-chart-container .dashboard-bar-chart{height:74.75px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:25.25px;line-height:25.25px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:107.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:45px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-285px;width:590px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{display:none;font-size:12px;min-height:190px;width:10px}.absolut,.percentage{font-size:14px}.modal-chart-detail .modal-inner-detail{width:550px}.modal-body .dashboard-large-chart{width:371px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:262px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:245px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:107.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:45px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:154px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:10px;font-weight:400}.dashboard-subtitle-bar{font-size:14px;font-weight:300}.dashboard-figure{font-size:16px;font-weight:400}.dashboard-figurePer{font-size:14px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:10px}.dashboard-legend{display:none;height:30px;width:100%}.dashboard-half-height-legend{display:none;font-size:10px;height:100px;width:0}.application-detail-view section.info{width:370px}}@media (min-width:970px) and (max-width:1209px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:220px}.dashboard-sub-bar-menu{font-size:13px}.dashboard-medium-chart .dashboard-interior-chart{height:220px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:13px;left:369px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:220px;width:387px}.dashboard-medium-chart #clusterGraphs svg text{font-size:11px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:229px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:11px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:101.5px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:105px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:31.17px;line-height:31.17px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:52.33px;line-height:25.17px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:98px}.dashboard-bar-chart-container .dashboard-bar-chart{height:93px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:31.33px;line-height:31.33px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:163.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:69px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-405px;width:830px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:13px;min-height:225px;width:130px}.absolut,.percentage{font-size:15px}.modal-chart-detail .modal-inner-detail{width:670px}.modal-body .dashboard-large-chart{width:531px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:382px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:364px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:163.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:69px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:234px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:11px;font-weight:400}.dashboard-subtitle-bar{font-size:15px;font-weight:300}.dashboard-figure{font-size:18px;font-weight:400}.dashboard-figurePer{font-size:16px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:11px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:11px;height:117.5px;width:60px}.application-detail-view section.info{width:610px}}@media (min-width:1210px) and (max-width:1449px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:255px}.dashboard-sub-bar-menu{font-size:15px}.dashboard-medium-chart .dashboard-interior-chart{height:255px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:16px;left:486px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:255px;width:507px}.dashboard-medium-chart #clusterGraphs svg text{font-size:12px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:264px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:13px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:119px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:145px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:37px;line-height:37px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:64px;line-height:31px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:115.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:110.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:37.17px;line-height:37.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:219.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:93px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-525px;width:1070px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:14px;min-height:260px;width:140px}.absolut,.percentage{font-size:18px}.modal-chart-detail .modal-inner-detail{width:900px}.modal-body .dashboard-large-chart{width:691px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:502px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:481px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:219.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:93px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:314px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:13px;font-weight:400}.dashboard-subtitle-bar{font-size:18px;font-weight:300}.dashboard-figure{font-size:22px;font-weight:400}.dashboard-figurePer{font-size:20px;font-weight:300}.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-size:13px;font-weight:400}.dashboard-legend{font-size:12px;font-weight:400;height:30px;width:100%}.dashboard-half-height-legend{font-size:12px;height:135px;width:65px}.application-detail-view section.info{width:850px}}@media (min-width:1450px) and (max-width:1689px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:15px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:18px;left:604px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:627px}.dashboard-medium-chart #clusterGraphs svg text{font-size:13px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:13px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:185px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:275.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:117px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-645px;width:1310px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:15px;min-height:290px;width:150px}.absolut,.percentage{font-size:20px}.modal-chart-detail .modal-inner-detail{width:1130px}.modal-body .dashboard-large-chart{width:851px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:622px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:599px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:275.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:117px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:394px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:13px;font-weight:400}.dashboard-subtitle-bar{font-size:20px;font-weight:300}.dashboard-figure{font-size:26px;font-weight:400}.dashboard-figurePer{font-size:24px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:13px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:13px;height:150px;width:70px}.application-detail-view section.info{width:1090px}}@media (min-width:1690px) and (max-width:1929px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:325px}.dashboard-sub-bar-menu{font-size:16px}.dashboard-medium-chart .dashboard-interior-chart{height:325px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:22px;left:720px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:325px;width:747px}.dashboard-medium-chart #clusterGraphs svg text{font-size:14px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:334px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:14px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:154px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:225px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:48.67px;line-height:48.67px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:87.33px;line-height:42.67px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:150.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:145.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:48.83px;line-height:48.83px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:331.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:141px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-765px;width:1550px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:16px;min-height:330px;width:170px}.absolut,.percentage{font-size:24px}.modal-chart-detail .modal-inner-detail{width:1350px}.modal-body .dashboard-large-chart{width:1011px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:742px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:715px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:331.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:141px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:474px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:14px;font-weight:400}.dashboard-subtitle-bar{font-size:24px;font-weight:300}.dashboard-figure{font-size:30px;font-weight:400}.dashboard-figurePer{font-size:28px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:14px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:14px;height:170px;width:80px}.application-detail-view section.info{width:1330px}}@media (min-width:1930px) and (max-width:2169px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:385px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:385px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:26px;left:836px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:385px;width:867px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:394px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:14px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:184px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:265px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:58.67px;line-height:58.67px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:107.33px;line-height:52.67px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:180.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:175.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:58.83px;line-height:58.83px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:387.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:165px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-885px;width:1790px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:390px;width:180px}.absolut,.percentage{font-size:28px}.modal-chart-detail .modal-inner-detail{width:1580px}.modal-body .dashboard-large-chart{width:1171px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:862px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:831px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:387.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:165px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:554px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:28px;font-weight:300}.dashboard-figure{font-size:34px;font-weight:400}.dashboard-figurePer{font-size:32px;font-weight:300}.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-size:14px;font-weight:400}.dashboard-legend{font-size:15px;font-weight:400;height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:200px;width:85px}.application-detail-view section.info{width:1570px}}@media (min-width:2170px) and (max-width:2409px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:20px;left:962px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:987px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:15px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:305px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:443.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:189px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-1005px;width:2030px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:290px;width:150px}.absolut,.percentage{font-size:22px}.modal-chart-detail .modal-inner-detail{width:1850px}.modal-body .dashboard-large-chart{width:1331px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:982px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:957px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:443.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:189px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:634px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:22px;font-weight:300}.dashboard-figure{font-size:36px;font-weight:400}.dashboard-figurePer{font-size:34px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:15px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:150px;width:70px}.application-detail-view section.info{width:1810px}}@media (min-width:2410px) and (max-width:2649px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:20px;left:1082px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:1107px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:15px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:345px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:499.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:213px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-1125px;width:2270px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:290px;width:150px}.absolut,.percentage{font-size:22px}.modal-chart-detail .modal-inner-detail{width:2090px}.modal-body .dashboard-large-chart{width:1491px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:1102px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:1077px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:499.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:213px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:714px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:22px;font-weight:300}.dashboard-figure{font-size:36px;font-weight:400}.dashboard-figurePer{font-size:34px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:15px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:150px;width:70px}.application-detail-view section.info{width:2050px}}@media (min-width:2650px) and (max-width:2889px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:20px;left:1202px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:1227px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:15px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:385px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:555.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:237px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-1245px;width:2510px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:290px;width:150px}.absolut,.percentage{font-size:22px}.modal-chart-detail .modal-inner-detail{width:2330px}.modal-body .dashboard-large-chart{width:1651px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:1222px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:1197px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:555.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:237px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:794px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:22px;font-weight:300}.dashboard-figure{font-size:36px;font-weight:400}.dashboard-figurePer{font-size:34px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:15px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:150px;width:70px}.application-detail-view section.info{width:2290px}}div.headerBar{position:absolute}div.centralRow{background:rgba(64,74,83,.04);height:100%;min-height:100%;overflow-y:auto;position:relative;right:0}div.centralContent{background-color:transparent;margin-top:10px;width:100%;padding:5px 5px 20px}.contentDiv{list-style:none;padding:0}.contentDiv li{background-color:rgba(0,0,0,.05)}.contentDiv a.add{display:block;font-weight:400;padding:40px 0;text-align:left}.modal-body th .valueCell,.modal-body th th.actionCell,.modal-body th th.keyCell,.waitModal{text-align:center}.contentDiv .icon{padding-left:5px;padding-right:5px;padding-top:10px}.contentDiv:after{clear:both}.contentDiv:after,.contentDiv:before{display:table;line-height:0}.clusterInfoIcon{float:left;padding-left:5px;padding-top:2px}.waitModal.icon{font-size:100px;height:120px}.waitModal.message{font-size:20px}.icon_arangodb_info{color:#333;font-size:23px}li a [class*=" icon_arangodb"],li a [class^=icon_arangodb]{font-size:18px;position:absolute;right:4px;top:2px}.fa-minus-circle{color:#e74c3c;font-size:14pt}.fa-plus-circle{color:#2ecc71;font-size:16pt}.fa-minus-circle:hover,.fa-plus-circle:hover{cursor:pointer}.dropdownImport,div.headerDropdown{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:2px;clear:both;display:none;margin-bottom:15px;padding:10px;position:relative;width:auto}.dropdownImport.smallDropdown .dropdownInner,div.headerDropdown.smallDropdown .dropdownInner{min-height:20px}.dropdownImport.headerDropdown input[type=checkbox].css-checkbox,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox{display:none}.dropdownImport.headerDropdown input[type=checkbox].css-checkbox label.css-label,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox label.css-label{background-position:0 0;background-repeat:no-repeat;display:inline-block;font-size:15px;height:15px;margin-top:0;padding-left:20px;vertical-align:middle}.dropdownImport.headerDropdown input[type=checkbox].css-checkbox:checked+label.css-label,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox:checked+label.css-label{background-position:0 -15px}div.dropdown-title{margin-bottom:10px}div.dropdownInner{-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0;min-height:125px;position:relative;width:auto}div.dropdownInner .nav-header{font-size:10pt}div.dropdownInner>.nav-header{color:#000;font-size:10pt;font-weight:400}div.dropdownInner>label{color:#000;font-weight:300}div.dropdownInner ul{border-left:1px solid rgba(140,138,137,.25);display:inline;list-style-type:none;margin-left:10px;margin-top:10px;min-height:105px;width:175px}div.dropdownInner ul:first-of-type,div.queryline input[type=file]{border:0}div.dropdownInner ul label{color:#000;padding-left:20px}div.dropdownInner ul li .fa{color:#999;margin-right:5px}div.dropdownInner ul li .fa.fa-square-o{margin-left:1px;margin-right:6px}div.dropdownInner ul li .fa.fa-check-circle-o,div.dropdownInner ul li .fa.fa-check-square-o,div.dropdownInner ul li .fa.fa-dot-circle-o{color:#2ecc71}div.queryline{color:#000;height:35px}div.queryline .textDiv{margin-right:10px;margin-top:4px}div.queryline input,div.queryline select{margin-bottom:5px}div.queryline input{width:16%}div.queryline.querylineAdd span{color:#fff;padding-left:10px;position:relative;top:-21px}div.queryline .removeFilterItem i{margin-left:5px!important;margin-top:0!important}div.queryline div.searchByAttribute{margin-left:6px;margin-right:6px;position:relative}div.queryline div.searchByAttribute input{width:140px}div.queryline div.searchByAttribute>ul.gv-dropdown-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;background-color:#fff;color:#fff;display:none;left:0;position:absolute;top:20px;width:247px}div.dropdownImport{background-color:#fff;border-radius:3px;display:none;position:relative;padding:10px 10px 5px}div.dropdownImport input{line-height:0;margin-bottom:-15px;margin-top:5px}select.filterSelect{color:#00f;margin-left:10px;margin-right:10px;width:80px}#filterHeader button{float:right;margin-left:10px!important;margin-top:1px}div.input-append button.gv_example_toggle{-moz-border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;background-color:#8f8d8c;height:30px;margin-left:-1px;padding-left:10px;padding-right:10px;padding-top:12px;vertical-align:top}div.input-append button.gv_example_toggle:hover{background-color:#2ecc71}.searchEqualsLabel{margin-left:6px;margin-right:6px}img.gv-throbber{background-image:url(../img/swagger/throbber.gif)}span.gv_caret{border-top:5px solid #fff;margin-top:2px!important}input.search-input{border:1px solid #fff;height:20px;line-height:20px;margin-right:-4px;margin-top:3px;width:120px}.search-field{margin-left:10px;margin-right:3px}.search-field .fa-search{color:#c2c2c2;font-size:12pt;margin-left:-20px;opacity:.5;position:absolute;right:9px;top:9px}div.headerBar,div.headerBar .infoField{color:#000;float:right;padding-left:5px;padding-right:5px}.search-field .fa-search:hover{cursor:pointer;opacity:1}.gv-search-submit-icon,.search-submit-icon{background-image:url(../img/enter_icon.png);background-size:14px;height:14px;margin-left:-18px;opacity:.2;position:absolute;width:14px}.gv-search-submit-icon:hover,.search-submit-icon:hover{opacity:.8}.search-submit-icon{margin-top:11px}.gv-search-submit-icon{margin-top:6px}div.headerBar{background-color:none;border-radius:2px;font-size:16px;height:36px;margin-top:-55px;right:0}div.headerBar.marginTop5{margin-top:-60px}div.headerBar .infoField{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:3px!important;font-size:12px;margin-right:7px;margin-top:7px}div.headerBar .infoField .fa{cursor:pointer;margin-left:5px}div.headerBar input[type=checkbox].css-checkbox{display:none}div.headerBar input[type=checkbox].css-checkbox label.css-label{background-position:0 0;background-repeat:no-repeat;cursor:pointer;display:inline-block;font-size:15px;height:15px;margin-top:0;padding-left:20px;vertical-align:middle}div.headerBar input[type=checkbox].css-checkbox:checked+label.css-label{background-position:0 -15px}div.headerBar input[type=radio]{display:none}div.headerBar input[type=radio] label span{background:url(../img/check_radio_sheet.png) -38px top no-repeat;cursor:pointer;display:inline-block;height:19px;margin:-1px 4px 0 0;vertical-align:middle;width:19px}#transparentHeader input[type=checkbox].css-checkbox,.contentTables tr.contentRowActive span,.dashboard-legend .dashboard-legend-inner br,.dashboard-row .fa-arrows-alt,.modal-delete-confirmation,.nvtooltip{display:none}div.headerBar input[type=radio]:checked+label span{background:url(../img/check_radio_sheet.png) -57px top no-repeat}.headerButtonList a span .fa-top{color:#fff;font-size:7pt;position:absolute}.headerButtonList a span .fa-top:hover{color:#2ecc71}.headerButtonList a.error{color:#e74c3c}.headerButtonList a.error:hover{background-color:#e74c3c;border-color:#e74c3c;color:#fff}.headerBar a.arangoHeader{color:#000;font-size:11.5pt;font-weight:100;left:0;position:relative;top:7px}.headerBar>div.headerButtonBar{margin:4px 0;margin-bottom:0!important}.breadcrumb{background:0 0;border:0;border-radius:0;color:#fff;font-size:12pt;font-weight:100;line-height:45px;margin:0 0 0 -4px;padding:0 0 0 10px}.breadcrumb .fa{margin-left:10px;margin-right:8px}.breadcrumb .fa-ellipsis-v{font-size:10pt;opacity:0}.breadcrumb .disabledBread{color:#fff;float:left;font-size:12pt;font-weight:100;padding-right:5px;position:relative}.breadcrumb .disabledBread i{font-size:10pt;margin-left:10px}.breadcrumb .disabledBread:hover{cursor:default}.breadcrumb .activeBread{color:#fff;float:left;font-size:11pt;font-weight:100;-webkit-tap-highlight-color:transparent;-webkit-transition:opacity .2s cubic-bezier(.645,.045,.355,1);transition:opacity .2s cubic-bezier(.645,.045,.355,1)}.breadcrumb .activeBread:hover{opacity:.65}.breadcrumb a{color:#fff!important;opacity:.8;transition:all .2s ease-in}.breadcrumb a:hover,.subViewNavbar li:hover a{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in}.breadcrumb a:hover{opacity:1;transition:all .2s ease-in}.breadcrumb #app-development-path{background-color:#fff;border-bottom:1px solid rgba(140,138,137,.25);border-left:1px solid rgba(140,138,137,.25);border-radius:3px;border-right:1px solid rgba(140,138,137,.25);height:24px;margin-left:-6px;margin-top:-10px;padding-left:5px;width:100%}.arangoHeader{font-weight:400}.sectionHeader{background-color:#404a53;margin-bottom:10px;padding-bottom:2px;padding-top:10px;width:100%}.sectionHeader .title{color:#fff;font-size:12pt;font-weight:100;line-height:20pt;margin-left:10px}.sectionHeader .information{float:right;font-size:12.5pt;font-weight:100}.sectionHeader .information .fa{font-size:17pt}.sectionHeader .information span:first-child{margin-left:10px}.sectionHeader .information span span{position:relative;top:-2px}.sectionHeader .information span.positive{color:#2ecc71}.sectionHeader .information span.warning{color:#f1c40f}.sectionHeader .information span.negative{color:#e74c3c}.sectionHeader .information i{margin-left:5px;margin-right:10px}.sectionHeader .scaleGroup{float:right;margin-right:10px;position:inherit;width:80px}.sectionHeader .scaleGroup span{border-radius:30px;color:#fff;padding:3px 5px;position:relative;top:-4px}.sectionHeader .scaleGroup span.left{background:#e74c3c;margin-right:-19px}.sectionHeader .scaleGroup span.right{background:#2ecc71;margin-left:-16px}.sectionHeader .scaleGroup span.left:hover,.sectionHeader .scaleGroup span.right:hover{cursor:pointer}.sectionHeader .scaleGroup input{background:#404a53!important;border-color:rgba(255,255,255,.3);color:#fff;font-weight:100;height:10px;text-align:center;width:40px}.checkboxLabel{margin-top:4px;padding-left:0}.css-label{background-image:url(../img/dark-check-green.png)}.css-label-round{background-image:url(../img/dark-check-green-round.png)}.modal-dashboard-header,.modal-header{background-color:#fff;border-bottom:0!important;border-radius:3px;margin-top:5px;padding-left:5px;padding-right:10px;padding-top:4px}.modal-dashboard-header .arangoHeader,.modal-header .arangoHeader{color:#000;font-size:13pt;font-weight:100;left:5px;position:relative;top:2px}.modal-dashboard-header a,.modal-header a{top:2px!important}.modal-dashboard-header .close,.modal-header .close{color:#fff;font-weight:300;margin-top:2px;opacity:.5}.modal-dashboard-header .close:hover,.modal-header .close:hover{opacity:1}.select2-drop-active{border:2px solid #3498db;border-top:0;margin-top:-2px;width:452px!important;z-index:9999999}.select2-no-results,.select2-results{font-weight:100}.modal-tabbar{border-bottom:1px solid #666}.modal-body{color:#736b68;font-size:14px;font-weight:300;max-height:410px}.modal-body input{height:20px;width:436px}.modal-body select{height:33px;width:452px}.modal-body .select2-container-multi.select2-container-active .select2-choices{border:2px solid #3498db}.modal-body .select2-choices{background-image:none!important;border:2px solid rgba(140,138,137,.25);border-radius:3px;-webkit-box-shadow:none;box-shadow:none;width:448px}.modal-body .select2-choices input:active{-webkit-box-shadow:none;box-shadow:none;outline:0!important}.modal-body .select2-choices .select2-search-choice{margin:5px 0 3px 5px!important}.modal-body .select2-choices li{background-color:#fff!important;background-image:none!important;color:#000}.modal-body tr.first,.modal-body tr.last,.modal-body tr.middle{background-color:#f5f8f0}.modal-body .select2-choices li a{margin-left:1px;margin-top:-1px}.modal-body .select2-choices:active{border:1px solid #999;-webkit-box-shadow:none!important;box-shadow:none!important;outline:transparent!important}.modal-body .nav-tabs{margin-top:15px}.modal-body .nav-tabs>li>a:hover{border-color:#8c8a89}.modal-body input,.modal-body select,.modal-body textarea{margin-top:10px}.modal-body input[type=checkbox]{margin-bottom:10px}.modal-body input[type=text].invalid-input{border-color:rgba(234,23,23,.6)}.modal-body input[type=text].invalid-input:focus{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(234,23,23,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(234,23,23,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(234,23,23,.6)}.modal-body input[type=file]{line-height:17px}.modal-body tr.spacer{height:20px}.modal-body tr.first th:first-child{border-top-left-radius:3px}.modal-body tr.first th:last-child{border-top-right-radius:3px}.modal-body tr.middle{padding-left:10px;padding-right:10px}.modal-body tr.last th:first-child{border-bottom-left-radius:3px}.modal-body tr.last th:last-child{border-bottom-right-radius:3px}.modal-body tr.first th:first-child,.modal-body tr.last th:first-child,.modal-body tr.middle th:first-child{padding-left:10px}.modal-body tr.first th:last-child,.modal-body tr.last th:last-child,.modal-body tr.middle th:last-child{padding-right:10px}.modal-body th.actionCell{width:30px}.modal-body th.keyCell{width:170px}.modal-body th.keyCell input{width:150px}.modal-body th .valueCell{width:300px}.modal-body th .valueCell input{width:290px}.modal-body th .select2-container{margin-bottom:10px;margin-top:10px}.modal-body .icon-info-sign{margin-bottom:10px;margin-left:10px;opacity:.7;padding-bottom:5px}.modal-body .icon-info-sign:hover{opacity:1}.modal-body .icon_arangodb_info{color:#736b68;font-size:18px;margin-top:-10px;position:absolute;right:12px}.modal-body .icon_arangodb_info:hover{color:#000}.modal-body .collapse{margin-right:-14px;position:relative}.modal-body .accordion-inner{border-top:0;margin-left:0;padding-left:0;padding-right:0}.modal-body .accordion-toggle span .caret{border-top-color:#000;float:right;margin-top:5px}.modal-body .accordion-toggle.collapsed span .caret{-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg);transform:rotate(90deg)}.modal-body .collectionTh{height:55px}.modal-body .tab-content{min-height:200px}.modal-body .tab-content .tab-pane{border-top:1px solid #666!important;margin-left:0!important;padding-top:10px}.modal-body .tab-content .tab-pane-modal{border-top:none!important}.modal-body .tab-content #appstore{max-height:290px}.modal-body .errorMessage{background:#e74c3c;border-radius:4px;color:#fff;font-size:9pt;font-weight:100;margin-top:-9px;padding-left:5px;padding-right:5px;position:absolute}.modal-body .nav .tab-icon{margin-right:5px;margin-top:-3px;width:20px}.modal-text{font-weight:300;padding-bottom:3px;padding-top:3px}.modal-backdrop,.modal-backdrop.fade.in{opacity:.4}.fade{opacity:0;-moz-transition:opacity .03s linear;-ms-transition:opacity .03s linear;-o-transition:opacity .03s linear;-webkit-transition:opacity .03s linear;transition:opacity .03s linear}.modal{border:0!important;border-radius:3px!important;box-shadow:0;margin-left:-325px!important;width:650px;z-index:9999999}.modal .fade.in{top:12.1%!important}.modal table tr:last-child{border-bottom:0!important}.waitModal{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:0 0;border:0;color:#fff}.waitModalBackdrop{opacity:.7!important}.modalTooltips span{color:#736b68;font-size:20px}.modalTooltips span:hover{color:#000}.gv-object-view{text-align:left;white-space:pre}.capitalize{text-transform:capitalize}.modal-footer{border-top:0!important;padding-right:17px}.modal-footer .button-close{margin-left:20px;margin-right:10px}.modal-header{margin-left:5px;margin-right:5px}.modal-dashboard-header{margin-left:0;margin-right:0;padding-bottom:9px}.modal-delete-confirmation button{margin-right:10px;margin-top:-4px}.modal-delete-confirmation button .modal-confirm-delete{margin-right:-18px}.modal-delete-confirmation fieldset input{float:left}.modal-delete-confirmation fieldset label{float:left;margin-left:10px}.createModalDialog table{width:100%}.createModalDialog .collection-info-figures table{float:left;margin-left:0;margin-right:0;margin-top:0;min-width:200px;padding:3px;text-align:left}.createModalDialog .figures1,.createModalDialog .figures2{margin-bottom:20px;width:300px}.createModalDialog .figures2{margin-left:20px!important}.createModalDialog .figures3{margin-bottom:0;width:100%}.foxx-store-row{border-bottom:10px solid #fff;border-top:10px solid #fff}.foxx-store-row .foxx-name{background:#404a53;border-radius:4px;color:#fff;font-weight:300;margin-bottom:8px;padding-bottom:1px;padding-left:5px;width:100%}.fixedDropdown .dropdown-header a,.fixedDropdown .notificationItem{color:#000}.foxx-store-row .foxx-store-install{padding-right:5px;padding-top:25px}.foxx-store-row .foxx-author{font-size:10pt;font-weight:300;margin-top:-4px}.foxx-store-row .foxx-version{font-weight:400;margin-top:25px}#new-app-mount{margin-right:24px;width:360px}#control_event_edge_delete_modal,#control_event_edge_edit_modal,#control_event_new_node_modal,#control_event_node_delete_modal,#control_event_node_edit_modal{margin-left:-320px;width:640px}.navlogo .stat_cpu,.navlogo .stat_ram{width:26px;height:26px}.navlogo .stat_cpu{margin-top:1px}.navlogo .stat_cpu path{fill:#aa0}.navlogo .stat_ram path{fill:#070}.navlogo .stat_req{height:22px;width:22px}.navlogo .stat_req path{fill:#aa0}#notification_menu .innerDropdownInnerUL{margin-left:0}#noty_bottom_layout_container li{border:0!important}.noty_type_error .arango_message{top:2px}.noty_bar .noty_buttons{background-color:transparent!important;border:0!important;bottom:0;height:1px;margin-bottom:30px!important;margin-top:-35px!important;position:relative;right:-23px}.noty_bar .noty_buttons button{margin-bottom:2px;margin-right:-1px}.noty_bar .arango_message{font-weight:400!important}.noty_bar .arango_message div{float:right;width:20px}.fixedDropdown{background:#fff!important;border-color:rgba(140,138,137,.25)!important;border-radius:3px!important;margin:10px -3px 0!important;right:-1px!important;width:210px}.fixedDropdown .dropdown-header,.fixedDropdown .dropdown-item,.innerDropdownInnerUL{border-bottom:1px solid rgba(0,0,0,.2)}.fixedDropdown .dropdown-header{margin-left:-1px;padding:0!important}.fixedDropdown a{padding-left:5px!important}.fixedDropdown .notificationItemContent{font-size:.9em;font-weight:300;margin-left:15px;max-width:180px;min-height:15px;white-space:normal;width:180px;word-wrap:break-word}.fixedDropdown button{margin-right:5px;margin-top:5px}.fixedDropdown .notificationItem .notificationItemTitle{color:#000;font-weight:400;max-width:165px;overflow-wrap:break-word;white-space:normal;word-wrap:break-word}.fixedDropdown .notificationItem .notificationItemTitle:hover{background-color:transparent;cursor:default}.fixedDropdown .notificationItem i{color:rgba(0,0,0,.2);font-size:20px;padding-left:5px;position:relative;right:2px}.fixedDropdown .notificationItem i:hover{color:#000}.innerDropdownInnerUL{height:220px!important;min-height:220px;overflow-x:hidden;overflow-y:auto;width:100%}.innerDropdownInnerUL .dropdown-item:hover{background-color:#e1e1e1!important}.innerDropdownInnerUL li{width:auto!important}#stat_hd{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid rgba(140,138,137,.25);height:25px;margin-left:-10px;margin-top:8px;position:relative;right:3px;text-align:center;width:25px}.contentButtons,.contentTables{margin-bottom:10px;width:100%}#stat_hd #stat_hd_counter{color:#c2c2c2;line-height:25px;text-align:center}.fullNotification{background-color:#e74c3c!important;border:1px solid #e74c3c!important}.fullNotification p{color:#fff!important}.contentTables tr.contentRowActive a,.contentTables tr.contentRowInactive a{color:#000!important}.contentButtons{clear:both}.contentButtons #createDatabase,.contentButtons #createUser{margin-left:0}.contentTables thead{text-align:left}.contentTables thead tr{background-color:#fff;border-bottom:1px solid #c2c2c2}.contentTables tbody tr:nth-child(odd){background-color:#d9d9d9}.contentTables tbody tr:nth-child(even){background-color:#fff}.contentTables tr.contentRowActive{background-color:#bdcc92!important;font-weight:400}.contentTables .dbThFirst{width:90%}.contentTables .dbThSecond{width:10%}.contentTables td{padding:12px 18px}.contentTables td span{float:right;font-size:22px}.contentTables .collectionThSec{margin-right:0;width:80%}.contentTables .collectionTh{margin-right:0;width:5%}.usermenu{width:40px}.userImg{margin-top:-11px}.userImg .caret{margin-top:13px}.user-menu-img{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#fff;height:25px}.ui-tooltip{background-color:#2ecc71!important;border:0!important;border-radius:3px!important;box-shadow:none!important;color:#fff!important;font-size:10pt!important;font-weight:100!important;z-index:99999999}.tooltip-inner{max-width:300px!important;white-space:normal!important;word-wrap:break-word!important}.arangoDataTable .key,.dashboard-sub-bar .dashboard-sub-bar-title,.dbselection,.subnavmenu .icon,.subnavmenu .info,.subnavmenu .state,div.gv-colour-list li{text-overflow:ellipsis;white-space:nowrap}.index-tooltip{color:#736b68}.index-tooltip:hover{color:#000}.index-tooltip .arangoicon{font-size:18px!important}.tooltipInfoTh{width:10%}.arangoToolbar span.action:hover{background-color:#2ecc71;border-radius:3px;color:#fff;cursor:pointer}.arangoToolbar{background-color:#fff;border:1px solid rgba(140,138,137,.25);height:45px;width:100%}.arangoToolbar .pull-left,.arangoToolbar .pull-right{height:30px;margin-top:8px}.arangoToolbar .pull-left i.positive,.arangoToolbar .pull-right i.positive{color:#2ecc71}.arangoToolbar .pull-left i.warning,.arangoToolbar .pull-right i.warning{color:#f1c40f}.arangoToolbar .pull-left button{margin-left:8px}.arangoToolbar .pull-right button:first-child,.arangoToolbar .pull-right select:first-child{margin-right:6px}.arangoToolbar span{padding:5px 8px;position:relative;top:5px;font-weight:100;margin-left:10px}.arangoToolbar span.clickable{cursor:pointer;margin-left:0;opacity:.5;top:1px}.arangoToolbar span.clickable:hover{opacity:1}.arangoToolbar i{font-size:11pt;font-style:normal}.arangoToolbar i.fa{font-size:12pt;margin-right:5px}.arangoToolbar .toolbarType{background:#5bc0de;border-radius:3px;color:#fff;margin-left:8px}.arangoToolbar .styled-select{width:auto}.arangoToolbarBottom{clear:both}.arangoToolbarBottom #executeQuery{margin-right:8px}.arangoToolbarBottom .button-close:last-child{margin-right:10px}.dbselection{float:left;margin-right:3px;max-width:160px;overflow:hidden}.dbselection .fa{color:#fff;opacity:.3}.dbselection .fa-caret-square-o-down{margin-left:5px}.dashboard-bar-chart-container,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-medium-chart,.dashboard-small-chart .dashboard-small-chart-inner,.dashboard-tendency-container{background-color:#fff;border-left:0 solid #000;box-sizing:border-box}.dashboard-bar-chart-container:first-child,.dashboard-full-width-chart .dashboard-full-width-chart-inner:first-child,.dashboard-large-chart .dashboard-large-chart-inner:first-child,.dashboard-medium-chart:first-child,.dashboard-small-chart .dashboard-small-chart-inner:first-child,.dashboard-tendency-container:first-child{margin-left:0}.dashboard-bar-chart-container,.dashboard-full-width-chart,.dashboard-large-chart,.dashboard-medium-chart,.dashboard-small-chart,.dashboard-tendency-container{border:1px solid rgba(64,74,83,.2);margin-left:-1px;margin-top:-2px;position:relative}.dashboard-interior-chart{width:100%!important}.dashboard-interior-chart>div{margin-left:-15px;margin-top:10px}.dashboard-sub-bar-menu{cursor:pointer;position:absolute;right:9px;top:6px}.dataNotReadyYet{color:#f1c40f;font-size:14px;font-weight:100;text-align:center}.dashboard-sub-bar,.dashboard-sub-bar .dashboard-sub-bar-title{font-size:11pt;font-weight:600;text-align:center;text-transform:uppercase}.dashboard-sub-bar{background-color:#fff;color:rgba(0,0,0,.5);height:50px;line-height:24px;margin:0;padding:10px 6px 20px}.dashboard-sub-bar .dashboard-sub-bar-title{color:#000;opacity:.5;overflow:hidden;width:100%}.dashboard-full-width-chart{border:1px solid rgba(104,103,102,.1);border-radius:0;margin-right:12px;width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-small-chart .dashboard-small-chart-inner{border-left:5px solid #fff;border-right:5px solid #fff;border-top:5px solid #fff;padding-bottom:10px}.dashboard-full-width-chart .dashboard-full-width-chart-inner{background-color:#fff;padding-top:12px;width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-subtitle-bar.top{border-bottom:1px solid #e1e1e1;height:48px;line-height:48px;text-align:right}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner{margin-left:10px;margin-right:10px}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table{margin-bottom:10px;margin-top:10px;table-layout:fixed;width:100%}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.dashboard-medium-chart .dashboard-interior-chart{margin-bottom:0}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table .no-data{font-style:italic;font-weight:100}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table tr{border-bottom:1px solid rgba(0,0,0,.025)}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table td:first-child{width:100px}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table td:last-child{text-align:right}.dashboard-full-width-chart .state{background-color:#8c8a89;border-radius:5px;color:#fff;font-weight:300;margin-left:5px;padding-left:6px;padding-right:6px}.dashboard-large-chart .dashboard-large-chart-inner{background-color:#fff}.dashboard-small-chart{background:#fff;border-radius:0}.dashboard-small-chart .dashboard-small-chart-inner{background-color:#fff;padding-top:5px}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-bar rect{fill-opacity:.15;stroke-opacity:.8;stroke-width:.5px}.dashboard-medium-chart-outer{border-radius:0}.dashboard-medium-chart{background-color:#fff;margin-bottom:0;padding-top:10px}.dashboard-medium-chart .dashboard-medium-chart-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border:0 solid rgba(0,0,0,.3);color:rgba(0,0,0,.3);cursor:pointer;padding:0 4px;position:absolute;z-index:1000}.dashboard-medium-chart .dashboard-medium-chart-menu:hover{color:rgba(0,0,0,.7)}.dashboard-medium-chart .dashboard-medium-chart-inner{padding-bottom:10px}.dashboard-medium-chart .clusterChart .slice path{fill-opacity:.15;stroke-opacity:1;stroke-width:1.5px}.tendency-box-sizing .dashboard-row:last-child .dashboard-medium-chart-outer:last-child{margin-left:-2px}.dashboard-tendency-container{box-sizing:content-box}.dashboard-tendency-container .dashboard-sub-bar{height:46px}.dashboard-tendency-container .dashboard-tendency-chart{background-color:#fff;border-left:5px solid #fff;border-right:5px solid #fff;border-top:5px solid #fff;padding-bottom:5px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{background-color:#fff;box-sizing:border-box;margin-top:5px;padding:0;width:50%}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency:first-child{border-right:1px solid #e1e1e1}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-subtitle-bar{border-bottom:1px solid #e1e1e1;box-sizing:inherit;padding-right:11px;text-align:right;width:100%}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-figure{box-sizing:border-box;text-align:center;width:100%}.dashboard-bar-chart-container{background:0 0;border-radius:0;box-sizing:border-box}.dashboard-bar-chart-container .dashboard-sub-bar{padding-bottom:17px;padding-top:13px}.dashboard-bar-chart-container .dashboard-bar-chart{background-color:#fff;border-left:5px solid #fff;border-right:5px solid #fff;border-top:5px solid #fff;padding-bottom:8px;width:auto}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{margin-top:5px;padding:0 8px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{font-weight:400;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{color:#000;font-weight:500;text-align:center;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{padding-top:10px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart .nv-bar rect{fill-opacity:.6;stroke-opacity:.6;stroke-width:.5px}.dashboard-legend .dashboard-legend-inner{margin-right:25px;padding:10px 5px 5px 0;text-align:right}#dashboardDetailedChart .dygraph-axis-label-y,.dashboardDetailChart .dygraph-axis-label-y,.innerDashboardChart .dygraph-axis-label-y{text-align:left}.dashboard-legend .dashboard-legend-inner span{padding-left:10px}.dashboard-spacer{margin:0 12px}.dashboard-headerbar{margin-bottom:15px;margin-top:10px}.modal-chart-detail .modal-dashboard-legend .dashboard-legend-inner{padding-left:20px}.dashboard-half-height-legend .dashboard-legend-inner{padding-top:20px}.dashboard-title-bar{background-color:#686766;color:#fff;font-size:14.5px;font-weight:400;height:30px;line-height:30px;padding:0 5px 0 10px}.dashboard-title-bar .dashboard-half-title-bar{border-left:1px solid #000;margin-left:-1px;width:50%}.dashboard-title-bar .dashboard-half-title-bar:first-child{border-left:0;margin-left:0}.dashboard-row{margin-bottom:0;margin-left:2px;margin-right:0}.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{color:#666}#repl-numbers,#repl-progress,#repl-ticks{width:33.3%!important}#repl-numbers .inner,#repl-progress .inner,#repl-ticks .inner{margin-top:0}#replication,#requests,#system{margin-bottom:10px}.dashboardModal{-moz-border-radius:8px!important;-webkit-border-radius:8px!important;border-radius:8px!important;height:80%;margin-left:-45%;min-width:780px;overflow:auto;padding:10px;top:10%;width:90%!important}#dashboardHttpGroup{border:6px solid #000;height:100%;width:100%}#dashboardDetailedChart{border:1px solid #000;height:300px;width:100%}.innerDashboardChart{bottom:5px;left:5px;position:absolute;right:5px;top:5px}.dashboardChart{background-color:#fff;border:1px solid rgba(0,0,0,.2);float:left;height:210px;margin:1.05%;position:relative;width:31%}.dygraph-label.dygraph-title{color:#000;font-size:15px;font-weight:400;text-align:left}#dashboardDetailedLineChart{padding-top:10px}.dashboardDistribution{float:left;width:270px}.dashboardDistribution svg{height:220px;width:250px}.showHotkeyHelp{cursor:pointer}.shortcuts{font-size:14px;font-weight:200}.shortcuts b{border-left:1px solid rgba(0,0,0,.34);margin-left:5px;padding-left:5px}.shortcuts .clearShortcut,.shortcuts b:first-child{border-left:0;margin-left:0;padding-left:0}.loginFixedWindow{background:#649068;height:100%;left:0;position:fixed;top:0;width:100%;z-index:9999}.loginFixedWindow #databases{height:140px}.loginFixedWindow #databases .no-database{background:#fff;border-radius:2px;padding:40px;text-align:center}.loginFixedWindow #databases #logout{margin-top:20px}.loginFixedWindow .resizecontainer{position:relative;top:0}.loginFixedWindow .resizecontainer img{height:33px;margin-left:-6px;margin-top:9px}.login-window{background-color:rgba(255,255,255,.75);border:1px solid rgba(140,138,137,.25);border-radius:3px;height:auto;margin:0 auto;position:relative;top:100px;width:350px;padding:20px 20px 50px}.login-window select{margin-bottom:30px;padding-left:35px;-moz-appearance:none}.login-window .login-logo-round{margin-bottom:25px;margin-top:10px}.login-window .login-logo-round img{display:block;margin:0 auto;width:150px}.login-window .checking-password{box-sizing:border-box;color:rgba(0,0,0,.5);margin-left:-21px;margin-top:-25px;position:absolute;text-align:center;width:100%}.login-window form .fa{color:rgba(0,0,0,.2);float:left;font-size:14pt;left:30px;margin-top:11px;position:absolute}.login-window .wrong-credentials{color:#e74c3c;margin-top:-30px;text-align:center}.login-window .login-space{height:50px}.login-window .login-input{background:#f2f2f2!important;border:2px #f2f2f2!important;box-sizing:border-box;font-size:14px;height:40px;margin:0 0 15px;outline:0;padding:10px 10px 10px 35px;width:100%;border-radius:3px}.login-window .form-error{border:2px solid #e74c3c!important}.login-window button{height:40px;width:100%}.query-toolbar{background-color:#f0f0f0;border-bottom:0;border-style:solid;border-width:1px;font-size:20px;height:27px;margin-left:0;margin-right:0}.queryManagementBottomActions button,.querySizeDiv{margin-right:10px}.query-toolbar span:hover{background-color:#e74c3c;color:#fff}.queryBottomActions{border-top:1px solid rgba(140,138,137,.25);padding:10px}.queryExecutionTime{margin-left:10px;margin-top:15px}.queryManagementBottomActions{background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-top:1px solid #c2c2c2;height:40px;margin-top:-2px;padding-top:10px}.styled-select{float:right;height:30px;overflow:hidden;width:220px}.styled-select select{background:#fff;border:1px solid #c2c2c2!important;border-radius:0!important;font-size:14px;font-weight:300;height:30px;line-height:1;outline:0;padding:5px;padding-left:5px!important;padding-top:3px!important}.querySizeDiv,.querySizeDiv select{height:30px!important}.styled-select select:focus{outline:0}.querySizeDiv{width:130px!important}.inputEditorWrapper{border-bottom:3px solid rgba(140,138,137,.25)!important;border-left:1px solid rgba(140,138,137,.25);border-right:1px solid rgba(140,138,137,.25);clear:both;height:300px;min-height:300px;width:100%}.inputEditorWrapper .aqlEditorWrapper{border:0!important;border-right:3px solid rgba(140,138,137,.25)!important;float:left;height:100%!important;max-width:85%;min-width:20%;width:70%}.inputEditorWrapper #arangoMyQueriesTable tbody tr{cursor:copy}.inputEditorWrapper .aqlEditorWrapper,.inputEditorWrapper .bindParamEditorWrapper{background-color:#fff;overflow:hidden}.inputEditorWrapper .aqlEditorWrapper .stringtype,.inputEditorWrapper .bindParamEditorWrapper .stringtype{color:#ce2f30}.inputEditorWrapper .aqlEditorWrapper .arraytype,.inputEditorWrapper .aqlEditorWrapper .objecttype,.inputEditorWrapper .bindParamEditorWrapper .arraytype,.inputEditorWrapper .bindParamEditorWrapper .objecttype{color:#00f}.inputEditorWrapper .aqlEditorWrapper .numbertype,.inputEditorWrapper .bindParamEditorWrapper .numbertype{color:#044}.inputEditorWrapper .aqlEditorWrapper .booleantype,.inputEditorWrapper .bindParamEditorWrapper .booleantype{color:#c12dad}.inputEditorWrapper .aqlEditorWrapper table,.inputEditorWrapper .bindParamEditorWrapper table{border-top:0}.inputEditorWrapper .aqlEditorWrapper table tbody,.inputEditorWrapper .bindParamEditorWrapper table tbody{display:block;overflow-y:auto}.inputEditorWrapper .aqlEditorWrapper table .truncate,.inputEditorWrapper .bindParamEditorWrapper table .truncate{opacity:.8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:30%}.inputEditorWrapper .aqlEditorWrapper table tr.noBgColor,.inputEditorWrapper .bindParamEditorWrapper table tr.noBgColor{background-color:transparent!important}.inputEditorWrapper .aqlEditorWrapper table tr.selected,.inputEditorWrapper .bindParamEditorWrapper table tr.selected{background-color:rgba(125,188,66,.64);color:#fff}.inputEditorWrapper .aqlEditorWrapper table tr.selected .spanWrapper,.inputEditorWrapper .bindParamEditorWrapper table tr.selected .spanWrapper{background-color:rgba(255,255,255,.65)}.inputEditorWrapper .aqlEditorWrapper table tr.selected .fa-comments,.inputEditorWrapper .aqlEditorWrapper table tr.selected .fa-copy,.inputEditorWrapper .bindParamEditorWrapper table tr.selected .fa-comments,.inputEditorWrapper .bindParamEditorWrapper table tr.selected .fa-copy{color:#000}.inputEditorWrapper .aqlEditorWrapper table thead,.inputEditorWrapper .bindParamEditorWrapper table thead{display:block}#clearQuery,.arangoFrame,.display-none{display:none}.inputEditorWrapper .aqlEditorWrapper table td,.inputEditorWrapper .bindParamEditorWrapper table td{height:33px;padding:0 5px;width:50%}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper{border-radius:3px;cursor:auto;float:right}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper:hover,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper:hover{cursor:auto}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper .fa,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper .fa{cursor:pointer;font-size:16pt;margin-left:5px;margin-right:5px}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper .fa-minus-circle,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper .fa-minus-circle{margin-left:20px}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper .fa-play-circle-o,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper .fa-play-circle-o{color:#2ecc71}.inputEditorWrapper .aqlEditorWrapper table td input,.inputEditorWrapper .bindParamEditorWrapper table td input{clear:both;float:right;height:17px;margin-bottom:3px;margin-top:3px;width:auto!important}.inputEditorWrapper .aqlEditorWrapper table th,.inputEditorWrapper .bindParamEditorWrapper table th{font-weight:400;height:34px;padding:0;width:50%}.inputEditorWrapper .aqlEditorWrapper,.inputEditorWrapper .bindParamEditorWrapper{height:100%}.inputEditorWrapper .aqlEditorWrapper table thead tr th,.inputEditorWrapper .bindParamEditorWrapper table thead tr th{text-align:left}.inputEditorWrapper .aqlEditorWrapper table thead tr th:first-child,.inputEditorWrapper .bindParamEditorWrapper table thead tr th:first-child{padding-left:10px}.inputEditorWrapper .aqlEditorWrapper table tbody input,.inputEditorWrapper .bindParamEditorWrapper table tbody input{width:100%!important}.inputEditorWrapper .aqlEditorWrapper .selectError,.inputEditorWrapper .bindParamEditorWrapper .selectError{background:#e74c3c}.inputEditorWrapper .aqlEditorWrapper .aceAction,.inputEditorWrapper .bindParamEditorWrapper .aceAction{background-color:#858585;border-radius:3px;color:#fff;cursor:pointer;font-size:13pt;height:23px;line-height:23px;opacity:.8;position:absolute;right:5px;text-align:center;top:5px;width:33px;z-index:10}.inputEditorWrapper .aqlEditorWrapper .aceAction.type,.inputEditorWrapper .bindParamEditorWrapper .aceAction.type{font-size:8pt}.inputEditorWrapper .aqlEditorWrapper .aceAction i,.inputEditorWrapper .bindParamEditorWrapper .aceAction i{margin-bottom:3px}.inputEditorWrapper .aqlEditorWrapper .aceAction:hover,.inputEditorWrapper .bindParamEditorWrapper .aceAction:hover{cursor:pointer;opacity:1}.inputEditorWrapper .aqlEditorWrapper .previewWrapper,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper{background-color:#fff}.inputEditorWrapper .aqlEditorWrapper .previewWrapper .previewBar,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper .previewBar{background-color:#fff;border-bottom:1px solid rgba(140,138,137,.25);height:34px}.inputEditorWrapper .aqlEditorWrapper .previewWrapper .previewBar span,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper .previewBar span{margin-left:5px;padding-top:8px;position:absolute}.inputEditorWrapper .aqlEditorWrapper .previewWrapper #queryPreview,.inputEditorWrapper .aqlEditorWrapper>div,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper #queryPreview,.inputEditorWrapper .bindParamEditorWrapper>div{height:100%}.inputEditorWrapper .ui-resizable-s{cursor:ns-resize}.inputEditorWrapper .ui-resizable-e{cursor:ew-resize}.queryContent{clear:both;margin-top:0;width:100%}.queryContent .arangoToolbar .fa.fa-star,.queryContent .arangoToolbar .fa.fa-star-o{color:#ff0}.outputEditors{margin-bottom:60px}.outputEditorWrapper{clear:both;height:100px;padding-top:20px;width:100%}.outputEditorWrapper .switchAce{background-color:rgba(0,0,0,.6);border-radius:3px;color:#fff;cursor:pointer;position:relative;right:-24px;top:45px;z-index:10}.outputEditorWrapper .ace_editor{border-left:1px solid rgba(140,138,137,.25);border-right:1px solid rgba(140,138,137,.25);height:280px;width:100%}.outputEditorWrapper .ace_editor .ace_active-line{background:#fff!important}.outputEditorWrapper .sentWrapper .pull-left,.outputEditorWrapper .sentWrapper .pull-right{width:50%}#queryManagementContent{border:1px solid rgba(140,138,137,.25);padding-top:0}#queryManagementContent .arango-table{border:0}#queryManagementContent .arango-table tr th:nth-child(1){width:10%}#queryManagementContent .arango-table tr th:nth-child(1) td{text-align:center}#queryManagementContent .arango-table tr th:nth-child(2){width:50%}#queryManagementContent .arango-table tr th:nth-child(3),#queryManagementContent .arango-table tr th:nth-child(4){width:20%}.contentBar{font-size:12pt;line-height:30px}.noContent{background-color:#fff;padding:50px}.noContent p{font-size:12pt;font-weight:100;text-align:center}.row{margin:0 0 20px}.innerContent{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:2px;min-height:200px;padding-top:13px}.arangoFrame{background-color:rgba(0,0,0,.5);bottom:0;left:0;position:fixed;right:0;top:0;z-index:77777}.arangoFrame .outerDiv{min-height:100%;padding:20px 40px 40px;z-index:88888}.arangoFrame .innerDiv{margin-top:25px;z-index:99999}.arangoFrame .fa-times{color:#fff;float:right;font-size:12pt}.arangoFrame .fa-times:hover{color:#c2c2c2;cursor:pointer}.arangoFrame .document-content-div,.arangoFrame .document-info-div{left:40px;position:absolute;right:40px}.arangoFrame .document-content-div{bottom:80px;top:130px}.arangoFrame .document-editor{height:100%}.arangoFrame .bottomButtonBar{left:-1px;position:absolute;right:-1px}.container{margin-left:20px;margin-right:20px;width:auto!important}.arango-tab{border-bottom:1px solid #ddd;list-style:none;margin-left:0;padding-bottom:0;padding-right:10px}.arango-tab a{-moz-border-radius:0;-webkit-border-radius:0;border-radius:3px 3px 0 0;background-color:#8c8a89;border:1px solid transparent;border-bottom-color:#888;color:#fff;display:block;font-size:13px;line-height:20px;margin-right:2px;min-width:50px;padding:2px 15px;text-align:center}.arango-tab li{background-color:transparent;border:0;margin-bottom:-1px;margin-left:2px;position:relative;z-index:900}.arango-tab li.active a{background:#fff;border-bottom-color:#fff!important;border-left-color:#c2c2c2;border-right-color:#c2c2c2;border-top-color:#c2c2c2;color:#000;height:21px;margin-top:-1px}.jsoneditor,.jsoneditor .menu{background-color:#fff!important}.jsoneditor{border:0 solid rgba(0,0,0,.2)!important}.jsoneditor .menu{border-bottom:1px solid #c2c2c2!important;border-left:0!important;border-right:0!important;border-top:0!important}.jsoneditor .menu button{border:0!important}.jsoneditor .menu button:hover{background-color:#2ecc71;color:#fff}.jsoneditor .search .frame{border:0!important;margin:3px!important}.jsoneditor .search .frame .refresh{background-position:-96px -73px;height:22px;width:25px}.jsoneditor .search .frame input{margin-left:15px;margin-right:15px;margin-top:0}.jsoneditor .search .results{color:#fff!important;margin-top:3px!important}.document-editor-extra{margin-top:10px}.document-editor{margin-top:-10px;width:100%}.disabledPag,.disabledPag a{cursor:default!important;opacity:.5!important}.pagination-line{background-color:#fff;border-bottom-left-radius:2px;border-bottom-right-radius:2px;border-top:1px solid rgba(104,103,102,.1);margin:0;padding-top:12px;text-align:center}.pagination-line li a:hover,.pagination-line li.active a,.pagination-line li.active span{background-color:#404a53;color:#fff}.pagination-line li a{background-color:#fff;border:1px solid #fff;font-size:11.9px;line-height:20px;padding:2px 10px;text-decoration:none;border-width:0;min-width:12pt}.pagination-line ul{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;display:inline-block;margin-bottom:0;margin-left:0}.pagination-line li{display:inline-block;margin-left:11px}.pagination-line li span{color:#000;font-size:14px;position:relative;top:2px}.pagination-line li:first-child a,.pagination-line li:first-child span,.pagination-line li:last-child a,.pagination-line li:last-child span{-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0;background:#404a53;border:0;color:#fff;height:21px;position:relative;width:14px}.pagination-line li.disabled:first-child a,.pagination-line li.disabled:first-child span,.pagination-line li.disabled:last-child a,.pagination-line li.disabled:last-child span{background-color:#777;color:#666;cursor:default;pointer-events:none}.collection-pagination{margin-left:23px!important}.arango-pagination i.fa,.las-pagi i.fa,.pre-pagi i.fa{font-size:19px;position:relative;top:-2px}.arango-pagination li:first-child{margin-right:20px}.arango-pagination li:last-child{margin-left:30px}.pre-pagi{margin-right:-5px!important}.accordion-group{border:0}.accordion-body{height:auto!important}.accordion-heading{padding-bottom:20px;padding-top:25px}.accordion-heading a{border:1px solid #ccc;color:#000;font-weight:400;width:397px!important}.accordion-heading .accordion-toggle{border-radius:3px;box-sizing:border-box;display:block;padding:8px 15px;width:100%!important}.shell_workspace{margin-top:13px}.shell_workspace ::-webkit-scrollbar{display:none}.replShell{background-color:#fff;float:left;height:100%;min-width:100px;overflow-y:hidden;position:relative;width:100%}.replShell>div{border-radius:3px}.replShell pre{border-bottom:0;border-left:0;border-right:1px solid #a0a0a0;border-top:1px solid #a0a0a0}.jqconsole{background-color:#000;border-radius:0;padding:10px}.jqconsole-header{color:#fff}.jserror{color:#f06;margin-left:-10px}.jssuccess{color:#6f0}.jqconsole-cursor{background-color:grey}.jqconsole-blurred .jqconsole-header .jqconsole-cursor{color:#c4cccc}.jqconsole-prompt{color:#b91}.jqconsole-old-prompt{color:#f60;font-weight:400}.jqconsole-input{color:#dd0}.jqconsole-old-input{color:#bb0;font-weight:400}.jqconsole-output{color:#fff}.query-output .ace_gutter-cell{background-color:#f0f0f0}.centralContent .api-actions{margin:0!important;padding:0}.centralContent .api-actions .container{padding-bottom:10px!important;padding-top:13px!important;margin:0 5px!important}.centralContent .api-actions .resource{border-bottom:0!important;padding-left:5px!important}.centralContent .api-actions .resource .heading>.options{margin:11px 10px 0 0!important}.centralContent .api-actions .resource .heading h2 a{color:#000!important;font-weight:300!important}.centralContent .api-actions .active .heading h2 a{color:#000!important}.centralContent .api-actions .endpoint .operations .content{margin:0!important}.centralContent .api-actions .endpoint .operations .content h4{font-weight:700!important}.centralContent .api-actions .endpoints{margin-right:5px!important}.centralContent .api-actions .endpoints .endpoint:last-child{padding-bottom:5px!important}.centralContent .api-actions input[type=button]{background:#8f8d8c!important;border:none!important;box-shadow:none!important;color:#fff!important;float:right!important;font-size:14px!important;font-weight:300!important;margin-top:10px!important;padding:8px 16px!important}.centralContent .api-actions .endpoint .operations .content,.centralContent .api-actions .endpoint .operations .heading{border-radius:0!important;font-weight:300!important}.centralContent .api-actions .http_method,.centralContent .api-actions .toggleOperation{border-radius:0!important}.centralContent .api-actions .required,.centralContent .api-actions em,.centralContent .api-actions strong{font-weight:400!important}.form-actions{background:0 0;border:0}.form-actions:after,.form-actions:before{display:table;line-height:0}.form-actions:after{clear:both}.swagger-section #swagger-ui-container{margin:.3em 1em!important}.alert{padding:15px 35px 15px 14px}.alert,textarea{border-radius:0!important}.log-content{word-wrap:break-word}.tab-content{min-height:390px}.crit-table-id,.debug-table-id,.info-table-id,.log-table-id,.warn-table-id{border-spacing:0 0;font-size:15px!important;margin-top:-5px!important}.crit-table-id thead,.debug-table-id thead,.info-table-id thead,.log-table-id thead,.warn-table-id thead{background-color:#f9f9f9;border-top:6px solid #888!important;text-align:center}.crit-table-id thead tr th,.debug-table-id thead tr th,.info-table-id thead tr th,.log-table-id thead tr th,.warn-table-id thead tr th{background-color:#fff!important;border-bottom:1px solid #c2c2c2;border-top:2px solid #888}.crit-table-id .firstcol,.debug-table-id .firstcol,.info-table-id .firstcol,.log-table-id .firstcol,.warn-table-id .firstcol{cursor:default!important;max-width:80px!important;width:80px!important}.crit-table-id tbody .firstcol,.debug-table-id tbody .firstcol,.info-table-id tbody .firstcol,.log-table-id tbody .firstcol,.warn-table-id tbody .firstcol{background-color:transparent!important}.crit-table-id tbody tr td,.debug-table-id tbody tr td,.info-table-id tbody tr td,.log-table-id tbody tr td,.warn-table-id tbody tr td{padding-bottom:8px!important;padding-top:8px!important}.thirdcol{cursor:default!important;max-width:500px!important}.dataTables_empty,.seccol{cursor:default!important;margin-bottom:5px;width:100px!important}.dataTables_info{display:none}#arangoLogTable{border-top:0}#arangoLogTable tbody tr{height:40px}#arangoLogTable tbody td:nth-child(1){text-align:center;width:70px}#arangoLogTable tbody td:nth-child(2){text-align:center;width:150px}#arangoLogTable tbody td:nth-child(3){width:auto}.log-content-id{padding-bottom:0!important;padding-top:0!important}.log-content-id .dataTable{border-collapse:separate;border-spacing:0 5px;table-layout:fixed!important}.log-content-id .arango-tab{border-bottom:0!important}.log-content-id .tab-content{margin-top:1px!important}.log-content-id .arango-tabbar{left:0;margin-top:-51px;position:absolute}.log-content-id .arango-tabbar button{background-color:#fff;border:0;color:#000;float:left;font-size:10.5pt;min-width:60px;opacity:.64;outline:0;padding-left:0;padding-right:0;text-align:center;width:auto}.log-content-id .arango-tabbar button.arango-active-tab{border-bottom:2px solid #77cb99;font-weight:400;height:35px;opacity:1;padding-bottom:9px}.collectionInfoTh2,.collectionTh,.figuresHeader th{font-weight:400!important}div.gv_zoom_widget{height:300px;left:62px;opacity:.7;position:absolute;top:0;width:40px;z-index:1}div.gv_zoom_widget div.gv_zoom_buttons_bg{background-image:url(../img/gv_button_bg_reverse.png);background-size:contain;height:40px;margin-bottom:20px}div.gv_zoom_widget div.gv_zoom_slider{background:#f5f8f0;border-radius:3px;height:200px;margin:0 17px;width:4px}div.gv_zoom_widget a.ui-slider-handle{background-color:#555;border:1px solid rgba(140,138,137,.25);height:.5em;left:-.55em;outline:0}div.gv_zoom_widget a.ui-slider-handle.ui-state-hover{outline-color:#fff}.documents-size,.spotlightWrapper .typeahead:focus{outline:transparent 0}div.gv_zoom_widget a.ui-slider-handle:hover{cursor:pointer}div.gv_zoom_widget .ui-state-default{background:#f6f6f6}#menubar{margin:0 0 10px}div.gv_colour_list{max-height:680px;overflow:auto;position:absolute;right:26px;text-align:right;top:20px;z-index:1}div.gv_colour_list li{background-color:transparent;float:none;padding:2px 6px}svg.graph-viewer{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:3px;left:54px;position:absolute;top:-10px;z-index:0}div.gv-colour-list ul ul,div.gv-colour-list ul ul:first-child,div.gv-colour-list ul ul:last-child{border-left:1px solid rgba(104,103,102,.1);border-right:1px solid rgba(104,103,102,.1)}svg.graph-viewer text{max-width:90px;pointer-events:none}div.gv-background{position:relative}.link>line{stroke-width:1}div.gv-colour-list:hover{opacity:1}div.gv-colour-list{border-radius:3px;max-height:350px;max-width:300px;min-width:190px;opacity:.1;overflow-x:hidden!important;overflow-y:auto;position:absolute;right:8px;text-align:right;top:0;z-index:1}div.gv-colour-list li{float:none;overflow:hidden;padding:2px 6px}div.gv-colour-list ul ul:first-child{border-top:1px solid rgba(104,103,102,.1);border-top-left-radius:3px;border-top-right-radius:3px}div.gv-colour-list ul ul:last-child{border-bottom:1px solid rgba(104,103,102,.1);border-bottom-left-radius:3px;border-bottom-right-radius:3px}#tab-content-create-graph .addAfter,#tab-content-create-graph .addDelete,#tab-content-create-graph .delete{margin-top:-9px;position:absolute;right:13px}#tab-content-create-graph .tableRow.first{border-top:10px solid #fff}.graphContent #graph-container{background-color:#fff;z-index:5}.graphContent #graph-container:-webkit-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:-moz-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:-ms-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:-o-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:full-screen{height:100%!important;width:100%!important}.graphContent .fa.fa-desktop{margin-top:6px;position:absolute;right:20px;z-index:10}.nodeContextMenu{position:fixed}.nodeContextMenu svg #wheelnav-nodeContextMenu-title-0{transform:translate(24px,14px) scale(.7)!important}.nodeContextMenu svg #wheelnav-nodeContextMenu-title-0,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-1,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-2,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-3{fill:#fff}.nodeContextMenu svg #wheelnav-nodeContextMenu-title-0:hover,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-1:hover,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-2:hover,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-3:hover{fill:#2ecc71}div.gv-manage-button-container{margin-top:10px}legend.gv-inner{font-size:16px}input.gv-radio-button{display:block;margin-top:3px;width:auto}.addCollection .accordion,.collectionTh textarea{margin-top:10px}.collectionTh{font-size:14px;text-align:left;width:20%!important}.collectionInfoTh{min-width:60px;text-align:left;width:320px}.addCollection table tr{border-bottom:0!important;height:53px}.addCollection .icon_arangodb_info{margin-left:20px!important;position:relative;top:2px!important}.addCollection .collectionThSec{width:320px!important}.addCollection .collectionTh{width:96px}.addCollection .modalInput{width:320px}.addCollection .modalSelect{width:334px}.addCollection .accordion-toggle{width:457px!important}.change-collection .tab-content{min-height:230px}.change-collection input{width:384px!important}.change-collection select{width:398px!important}.show-collection .tab-content{min-height:200px}.collectionInfoTh2{text-align:left;width:150px}.collection-info-figures table{float:left;margin-left:0;margin-right:0;margin-top:0;min-width:200px;padding:3px;text-align:left}.figuresHeader{border-bottom:1px solid #c2c2c2}#collectionIndexTable{margin-left:0;width:100%}#collectionTab,#graphTab,#infoTab{border-bottom:0;margin-bottom:1px;padding-bottom:0;padding-right:10px}#collectionTab li,#graphTab li,#infoTab li{float:right}#collectionTab li.disabled a,#graphTab li.disabled a,#infoTab li.disabled a{cursor:not-allowed}#collectionTab a,#graphTab a,#infoTab a{background-color:#404a53;border-bottom:1px solid #666;border-top-left-radius:3px!important;border-top-right-radius:3px!important;color:#fff;font-size:13px!important;height:21px;margin-bottom:-1px;margin-right:4px;padding:2px 15px!important}#collectionTab .active>a,#graphTab .active>a,#infoTab .active>a{background-color:#fff;border-color:#888 #888 transparent!important;color:#000}#confirmCreateEdge{margin-left:20px}.collection-info-figures .icon_arangodb_info{position:relative!important;right:-4px!important}.snippet-wrap .snippet-num li{list-style:decimal-leading-zero}.snippet-no-num{list-style-type:none;margin-left:0;padding-left:0}.snippet-no-num .prettify{font-size:1.2em}.snippet-no-num .sh_number{color:#044;font-weight:100;margin-left:5px}.snippet-no-num .sh_symbol{color:#00f;font-weight:100;margin-left:5px}.snippet-no-num .sh_cbracket{color:#c7a317;font-weight:100;margin-left:5px}.snippet-no-num .sh_keyword{color:#c12dad;font-weight:100;margin-left:5px}.snippet-no-num .sh_string{color:#ce2f30;font-weight:100;margin-left:5px}.snippet-no-num .sh_array,.snippet-no-num .sh_object{color:#00f;font-weight:100;margin-left:5px}@media (max-height:490px){.social-icons{display:none}}@media (max-height:525px){.navlogo .version,.shortcut-icons{display:none}}@media (max-width:568px){#arangoLogTable .table-cell0,.breadcrumb,.document-info-div .search,.navlogo .big,.pagination-line .las-pagi,.pagination-line .pre-pagi,.social-icons{display:none}.pagination-line .arango-pagination li:first-child,.pagination-line .arango-pagination li:last-child{margin-left:0;margin-right:0}.pagination-line li a{padding:2px 4px}.login-window{padding:10px 10px 40px;width:300px}#repl-numbers,#repl-progress,#repl-ticks{width:100%!important}.dashboard-large-chart,.dashboard-medium-chart-outer:first-child{padding-right:0!important}div.dropdownInner ul label{font-size:13px}.subnavmenu a{font-size:8pt}.subViewNavbar li{font-size:8pt!important;padding:0 6px!important}.subViewNavbar li.active{height:35px}.small-label-padding{max-width:calc(100% - 2px)}.navlogo .small{display:block;height:auto;width:28px}.headerButtonBar,.navlogo .version,.primary .version,.shortcut-icons{display:none}.navbar,.navlist,.navlist li,.navmenu,.primary,.primary li{width:40px!important}.arango-collection-ul .tab{font-size:12pt;height:30px;overflow:hidden}.arango-collection-ul .tab .fa{padding-left:6px;padding-right:20px}.social-icons p{float:left;margin-left:-3px}.social-icons p .fa{font-size:16px}.footer,div.bodyWrapper{left:40px}.dashboard-bar-chart-container .dashboard-bar-chart{padding-bottom:11px}}@media (max-width:768px){.breadcrumb,.outputEditors .additional,.pagination-line .las-pagi,.pagination-line .pre-pagi{display:none}.hide-small{visibility:hidden}.pagination-line .arango-pagination li:first-child,.pagination-line .arango-pagination li:last-child{margin-left:0;margin-right:0}.pagination-line li a{padding:2px 4px}.dashboard-large-chart,.dashboard-tendency-container{box-sizing:content-box}.tendency-box-sizing .dashboard-bar-chart-container,.tendency-box-sizing .dashboard-row:last-child .dashboard-medium-chart-outer:last-child,.tendency-box-sizing .dashboard-tendency-container{margin-left:0}.tendency-box-sizing .dashboard-bar-chart-container{height:140px}.tendency-box-sizing .dashboard-bar-chart-container .dashboard-sub-bar{margin-top:-3px}}@media (min-width:569px) and (max-width:738px){.dashboard-large-chart,.dashboard-medium-chart-outer:first-child{padding-right:0!important}.document-info-div .search,.headerButtonBar span{display:none}.dashboard-bar-chart-container{padding-left:0!important;padding-right:0!important}#repl-numbers,#repl-progress,#repl-ticks{width:100%!important}.subnavmenu a{font-size:9pt}.collection-dropdown ul{width:auto!important}.arango-collection-select{display:inline-block}.dashboard-bar-chart-container .dashboard-bar-chart{padding-bottom:11px}}@media (min-width:770px) and (max-width:972px){.dashboard-tendency-container .dashboard-sub-bar{font-size:11px;height:32px;margin-bottom:10px;margin-top:-10px}.dashboard-small-chart .dashboard-sub-bar{font-size:11px;height:33px}.dashboard-small-chart .dashboard-sub-bar-title{font-size:11px;line-height:12px;margin-top:-12px}.dashboard-bar-chart-chart{margin-top:10px}.dashboard-bar-chart-container .dashboard-sub-bar{font-size:11px;margin-bottom:10px;margin-top:-16px;padding-top:18px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{padding-top:3px}}@media (min-width:973px){.dashboard-large-chart .dashboard-sub-bar{padding-top:14px}#dataTransferDistribution .nvd3-svg,#totalTimeDistribution .nvd3-svg{padding-top:20px}#requests .small-label-padding .dashboard-small-chart .dashboard-sub-bar{font-size:12px;padding-top:30px}#requests .small-label-padding:last-child .dashboard-small-chart .dashboard-sub-bar{margin-bottom:1px}}.document-info-div{min-height:0}.document-content-div{margin-top:10px}.document-info{background-color:#fff;border-radius:3px;margin-bottom:8px;margin-top:-13px;min-height:65px;padding:5px}.document-info .document-info-container{clear:both;width:100%}.document-info .document-info-container .document-inner-info-container{float:left;margin-left:10px;margin-top:5px}.document-info .document-info-container .document-inner-info-container .document-attribute{margin-right:20px}.document-info .document-info-container .document-inner-info-container .document-attribute div{float:left}.document-info .document-bold-font{min-width:55px}.document-info .document-thin-font{color:#2ecc71}.document-info .document-type-container div{float:left}.document-info .document-type-container #document-id{margin-left:10px}.document-link:hover{cursor:pointer;text-decoration:underline}.jsoneditor .tree div{font-size:11pt}#progressPlaceholder{background-color:rgba(0,0,0,.4);bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999}.progress-view{background-color:#363c39;border-radius:2px;color:#fff;height:188px;left:50%;margin:-150px 0 0 -125px;position:absolute;top:38%;width:250px}.progress-view .progress-content{border:5px solid #fff;border-radius:3px}.progress-view .progress-content .fa-spinner{font-size:100pt}.progress-view .progress-message{background-color:#fff;border-radius:0 0 2px 2px;color:#fff;font-weight:200;height:44px;margin-top:-25px;padding-top:3px;text-align:center}.progress-view .progress-text{background:#fff;color:#000;float:left;font-weight:100;height:25px;left:-5px;margin-left:5px;margin-top:10px;position:relative;top:-10px;width:100%}.progress-view .progress-action{float:right;margin-right:5px;margin-top:5px}#progressPlaceholderIcon{color:#2ecc71;float:left;font-size:22px;margin-left:10px;margin-top:7px}.pong-spinner{height:100px;margin:50px auto;position:relative;width:200px}.pong-spinner i{animation:ball 2s infinite linear;background:#8cdb8b;border-radius:10px;height:10px;position:absolute;width:10px}.pong-spinner:after,.pong-spinner:before{animation:left-player 2s infinite linear;background:#8cdb8b;height:30px;position:absolute;width:5px}.pong-spinner:after{animation:right-player 2s infinite linear;right:0}@keyframes left-player{0%,100%{top:0}50%{top:70px}}@keyframes right-player{0%,100%{top:70px}50%{top:0}}@keyframes ball{0%,100%{left:5px;top:20px}25%,75%{left:190px;top:50px}50%{left:5px;top:80px}}#spotlightPlaceholder{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0;z-index:2000}.spotlightWrapper{height:50px;left:25%;position:absolute;top:115px;width:50%}.spotlightWrapper .twitter-typeahead{width:100%}.spotlightWrapper .tt-highlight{color:#5bc0de;font-weight:400}.spotlightWrapper input{box-sizing:border-box;height:40px!important}.spotlightWrapper .tt-dataset{clear:both}.spotlightWrapper .tt-menu{background:#3d4246;border-radius:3px;color:#fff;height:300px;overflow:auto;width:100%}.spotlightWrapper .tt-menu .tt-suggestion:hover{background-color:#404a53;cursor:pointer}.spotlightWrapper .tt-menu .header-type{background:#32373b;clear:both;color:#fff;height:30px;padding-left:5px}.spotlightWrapper .tt-menu .header-type h4{float:left;margin:4px 0 0;padding:0}.spotlightWrapper .tt-menu .header-type .fa{font-size:12pt;margin-left:6px;margin-top:6px}.spotlightWrapper .tt-menu .header-type .type{background-color:#5bc0de;border-radius:3px;float:right;margin:4px;padding:0 5px}.spotlightWrapper .tt-menu .tt-cursor{background-color:#fff;color:#000}.spotlightWrapper .tt-menu .tt-selectable{padding-left:10px}.spotlightWrapper .typeahead{background:#3d4246;border:0 solid #3d4246;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;font-size:22px;height:30px;line-height:30px;outline:transparent 0;padding:8px 12px;width:100%}.graphLabel{font-size:11pt;font-weight:600;margin-top:-25px;opacity:.5;padding-bottom:20px;text-align:center;text-transform:uppercase}.cluster-graphs>div .graphWrapper{border:1px solid rgba(140,138,137,.25);margin-left:-1px;margin-top:-1px;padding:20px 20px 10px}.cluster-graphs>div .graphWrapper .nv-controlsWrap{display:none}.cluster-graphs>div .graphWrapper .nv-legendWrap{margin-bottom:10px}.cluster-graphs>div .graphWrapper svg{height:250px;margin-left:-17px}.cluster-values{margin-top:-13px}.cluster-values>div .valueWrapper{border:1px solid rgba(140,138,137,.25);margin-left:-1px;margin-top:-1px}.cluster-values>div .valueWrapper .value{color:#000;font-size:24pt;line-height:150px;text-align:center}.cluster-values>div .valueWrapper .value.positive{color:#2ecc71}.cluster-values>div .valueWrapper .value.warning{color:#f1c40f}.cluster-values>div .valueWrapper .value.negative{color:#e74c3c}.cluster-values>div .valueWrapper div:first-child{height:150px}.application-detail-view .headerBar .subMenuEntries{margin-left:5px;margin-top:-2px}.application-detail-view .headerBar .headerButtonBar{position:absolute;right:5px}.application-detail-view section.info{float:left;padding:13px 0 0}.application-detail-view section.info .header{height:200px;margin-bottom:0;position:absolute;width:calc(100% - 20px)}.application-detail-view section.info .header div.header-icon-container{border:2px solid #d9dbdc;border-radius:150px;height:182px;left:0;margin:0 auto;overflow:hidden;width:182px}.application-detail-view section.info .header div.header-icon-container img.icon{background-color:#fff;border-radius:3px;box-sizing:border-box;height:100%;padding:10px;width:100%}.application-detail-view section.info .header .information{background-color:#fff;border:1px solid #d9dbdc;border-radius:3px;margin-bottom:20px;padding:10px 10px 0;position:relative;top:35px;width:calc(100% - 30px)}.application-detail-view section.info .header .information span{display:block;float:left;font-weight:500;width:90px}.application-detail-view section.info .header .information a{margin-right:10px}.application-detail-view section.info .header .header_right{left:190px;margin:40px auto 0;width:137px}.application-detail-view section.info .header .header_right input.delete,.application-detail-view section.info .header .header_right input.switch-docu,.application-detail-view section.info .header .header_right input.switch-mode,.application-detail-view section.info .header .header_right input.upgrade{margin-top:7.83px;padding-left:10px;padding-right:10px}.application-detail-view section.info .header .header_right input{width:130px}.application-detail-view section.info .header .header_left{margin:0 auto;padding-left:10px;padding-top:1px;text-align:center;width:33.3%}.application-detail-view section.info .header .header_left input{margin-left:0;margin-top:-4px}.application-detail-view section.info .header .header_left .header_line{margin-top:10px}.application-detail-view section.info .header .header_left .header_line p{font-size:14pt;font-weight:200}.application-detail-view section.info .header .header_left .header_line h3{float:left;margin-bottom:0;margin-top:0;padding-right:5px;width:100%}.application-detail-view section.info .header .header_left .header_line .license,.application-detail-view section.info .header .header_left .header_line .mode,.application-detail-view section.info .header .header_left .header_line .version{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#404a53;border:1px solid rgba(140,138,137,.25);color:#fff;font-size:13px;font-weight:300;padding:2px 8px;position:relative;top:-3px}.application-detail-view section.info .header .header_left .header_line .production{color:#2ecc71}.application-detail-view section.info .header .header_left .header_line .development{color:#f1c40f}.application-detail-view section.info .header .header_left .header_line:after{clear:both;content:'';display:table}.application-detail-view section.info .header .header_left .header_line_bottom>div{display:table;left:-3px;margin:-10px auto 0;position:absolute;width:100%}.application-detail-view section.info .header .header_left .header_line_bottom h3{width:auto}.application-detail-view section.info .header .header_left .header_line_bottom .inner{display:table;margin:0 auto;padding-left:15px;width:auto}.application-detail-view section.info .header .app-warning{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#e74c3c;color:#fff;padding:6px 8px}.application-detail-view section.info .header .app-warning h4,.application-detail-view section.info .header .app-warning p{font-size:1em;margin:0}.application-detail-view aside.meta{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:3px;clear:right;float:right;height:182px;margin-top:12px;max-height:182px;max-width:182px;overflow-x:hidden;position:relative;width:182px}.application-detail-view aside.meta dl{margin-bottom:0;margin-top:0;padding-left:7px;padding-top:5px}main{background-color:#fff;border-radius:3px}main .app-info{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#5bc0de;color:#fff;margin:10px;padding:6px 8px}main .app-info h4,main .app-info p{font-size:1em;margin:0}main .swagger iframe{border:0;border-radius:3px;height:100%;width:100%}main .readme{background:#fff;padding:1em 2em}main .readme .buttons{background:#fff;height:30px;position:relative;right:-15px;width:100%}.centralContent .contentIn table tr,.centralContent .modal-body .arango-table tr,.centralContent .modal-body table tr{height:40px}main .readme .buttons button{float:right}main .readme .modal-body{border-bottom:1px solid rgba(140,138,137,.25);border-left:0;border-right:0;border-top:0;padding-bottom:15px}main .readme .modal-footer{border-bottom:0;border-left:0;border-right:0;border-top:1px solid rgba(140,138,137,.25);padding-right:0}main .readme h1{float:left;text-align:left;width:100%}.tests-result .stack{border-color:#e74c3c;color:#e74c3c;font-size:12px;line-height:1.5;margin:5px 0}.tests-result-stats .fail,.tests-result-stats .pass,.tests-result-stats .pending{padding:0 2px}.tests-result-spec{margin-bottom:0}.tests-result-spec-suites .tests-result-spec-suites{margin-left:20px}.tests-result-spec-suites dd{margin-bottom:20px;margin-left:0}.tests-result-spec-tests{margin-left:20px}.tests-result-spec-test-title{padding-left:20px}.tests-result-spec-test-title .fa{line-height:18px;margin-left:-20px;margin-top:2px;position:absolute}.tests-result-spec-test-title .fa-circle{font-size:50%;margin-left:-16px}.tests-result .pass{color:#2ecc71}.tests-result .fail{color:#e74c3c}.tests-result .pending{color:#666}#swagger #jsonLink{color:rgba(64,74,83,.8);font-weight:500;opacity:.5;position:absolute;right:33px;z-index:99}#swagger #jsonLink:hover{cursor:pointer;opacity:1}#indexHeaderContent{padding:0}#indexHeaderContent #collectionEditIndexTable th,#indexHeaderContent .figuresHeader th{padding-left:10px}.new-index-view{padding:20px}.centralContent .createModalDialog{background-color:#fff;outline:0}.centralContent .contentIn{background:#fff;border:1px solid rgba(64,74,83,.2);border-radius:2px;padding:20px}.centralContent .contentIn table{border:0}.centralContent .contentIn table select{margin-top:-10px}.centralContent .modal-body{border:1px solid rgba(64,74,83,.2);color:#000;max-height:none;padding:0}.centralContent .modal-body .arango-table tr th,.centralContent .modal-body table tr th{padding-left:10px}.centralContent .modal-body .figuresHeader{background-color:#404a53;color:#fff}.centralContent .modal-body .icon_arangodb_info{margin-left:10px;right:inherit}.centralContent .modal-body .modalSelect{margin-top:0}.centralContent .modal-body .tab-pane{padding-top:0!important}.centralContent .modal-footer{background-color:transparent;border-bottom:1px solid rgba(64,74,83,.2);border-left:1px solid rgba(64,74,83,.2);border-radius:0;border-right:1px solid rgba(64,74,83,.2);border-top:0;box-shadow:none;padding:8px}.centralContent .figures1,.centralContent .figures2,.centralContent .figures3{margin-left:0!important;margin-top:40px;width:100%}.centralContent .figures1 .icon_arangodb_info,.centralContent .figures2 .icon_arangodb_info,.centralContent .figures3 .icon_arangodb_info{position:relative;text-align:center}.pure-table-body{overflow-x:none;overflow-y:auto}.pure-table-body .selected-row{background-color:rgba(46,204,113,.2)}.pure-table-body .dataTables_empty{padding-left:10px}.pure-table-body .heading{font-weight:600;height:40px;padding-bottom:10px;padding-top:10px}.pure-table{padding-left:20px;padding-right:20px}.pure-table.no-padding{padding-left:0;padding-right:0}.pure-table.no-padding .pure-table-row div div{padding-left:2.5px}.pure-table.no-padding.pure-table-header .pure-table-row>div:first-child .title{padding-left:10px}.pure-table.pure-title .pure-table-row{color:#717d90;font-weight:600}.pure-table.pure-title .pure-table-row:hover{background-color:#fff;cursor:default}.pure-table.pure-title .pure-table-row:last-child{border-bottom:1px solid rgba(140,138,137,.25);margin-bottom:0}.pure-table .pure-table-row{border-bottom:1px solid rgba(140,138,137,.25);color:#8a969f;font-weight:100;line-height:40px;width:100%}.pure-table .pure-table-row .padding-left{padding-left:30px}.pure-table .pure-table-row .padding-right{padding-right:30px}.pure-table .pure-table-row .actions i{margin-left:5px;margin-right:5px}.pure-table .pure-table-row:hover{background-color:#eff0eb;cursor:pointer}.pure-table .pure-table-row.disabled:hover{background-color:#fff;cursor:not-allowed}.pure-table .pure-table-row.noHover:hover{background-color:#fff;cursor:default}.pure-table .pure-table-row .left{text-align:left}.pure-table .pure-table-row .right{text-align:right}.pure-table .pure-table-row .mid{text-align:center}.pure-table .pure-table-row .positive{color:#2ecc71}.pure-table .pure-table-row .negative{color:#e74c3c}.pure-table .pure-table-row .warning{color:#f1c40f}.pure-table .pure-table-row .fa.fa-check-circle{color:#2ecc71}.pure-table .pure-table-row .fa.fa-exclamation-circle{color:#e74c3c}.pure-table .pure-table-row:last-child{border-bottom:0;margin-bottom:10px}.hotkeysList .hotkeysLabel{clear:both;color:#000;font-size:16px;font-weight:400}.hotkeysList .hotkeysContent{padding-left:10px}.hotkeysList li{line-height:25px}.hotkeysList li .hotkeysDiv{float:left}.hotkeysList .hotkeysicons{background-color:#686766;border:1px solid #000;border-radius:2px;color:#fff;display:inline;height:19px;margin-left:10px;text-align:center;width:19px}.arango-table tbody tr:nth-child(even),.arango-table thead{background-color:#fff}.hotkeysContentLabel{float:left;width:30%}.coords-dbs .pure-table-row.noHover,.coords-dbs .pure-table-row.noHover:hover{cursor:not-allowed!important}#nodesContent{padding-top:0}#nodesContent .pure-table-body .fa-check-circle,#nodesContent .pure-table-body .fa-exclamation-circle{font-size:15pt}.shardFollowers span:hover,.shardLeader span:hover{color:#000;cursor:pointer}.arango-table{width:100%}.arango-table thead th{border-bottom:1px solid #c2c2c2;font-weight:400;height:43px}.arango-table tbody tr:nth-child(odd){background:rgba(104,103,102,.05)}.arango-table tbody td{padding:10px 18px}.arango-tabbar{height:27px;width:100%}.arango-tabbar button{background-color:#404a53;border:0;border-top-left-radius:2px;border-top-right-radius:2px;color:#fff;float:right;font-weight:100;height:27px;margin-right:5px;width:82px}.arango-tabbar button:first-child{margin-right:10px}.arango-tabbar .arango-active-tab{background-color:#fff;border-bottom:1px solid #fff;border-left:1px solid #c2c2c2;border-right:1px solid #c2c2c2;border-top:1px solid #c2c2c2;color:#000;height:28px;margin-bottom:-1px}.subViewNavbar{border-bottom:2px solid #d9dbdc;height:40px;list-style:none;width:100%;z-index:1000;margin:-57px 0 15px -15px}.subViewNavbar li{cursor:pointer;float:left;font-size:10pt;line-height:30px;margin-bottom:5px;margin-top:5px;padding:0 12px}.subViewNavbar li.active{border-bottom:2px solid #77cb99;cursor:default;padding-bottom:5px}.subViewNavbar li.active a{color:#000}.subViewNavbar li.disabled{cursor:not-allowed}.subViewNavbar li.disabled:hover a{color:rgba(51,51,51,.6)}.subViewNavbar li:hover a{color:#333;transition:all .2s ease-in}.subViewNavbar li a,.subnavmenu ul li:hover a{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in}.subViewNavbar li a{color:rgba(51,51,51,.6);transition:all .2s ease-in}.subnavmenu{background-color:#fff;height:auto}.subnavmenu .bar-img{background:0 0;border-radius:25px;margin-right:5px;width:25px}.subnavmenu .bar-img:hover{cursor:pointer}.subnavmenu ul{list-style:none;margin:0}.subnavmenu ul.top{background-color:#404a53;height:60px;width:100%}.subnavmenu ul.top li{padding:0 10px 0 0}.subnavmenu ul.bottom{border-bottom:2px solid #d9dbdc;height:40px;width:100%;z-index:1000}.subnavmenu ul.bottom li{float:left;padding:0 12px}.subnavmenu ul li{cursor:pointer;font-size:10pt;line-height:30px;margin-bottom:5px;margin-top:5px}.subnavmenu ul li.active{border-bottom:2px solid #77cb99;cursor:default;padding-bottom:5px}.subnavmenu ul li.active a{color:#000}.subnavmenu ul li.disabled{cursor:not-allowed}.subnavmenu ul li.disabled:hover a{color:rgba(51,51,51,.6)}.subnavmenu ul li:hover a{color:#333;transition:all .2s ease-in}.subnavmenu ul li a{color:rgba(51,51,51,.6);-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.subnavmenu .infoEntry{line-height:45px}.subnavmenu .infoEntry a{margin-right:5px}.subnavmenu .infoEntry a.default-icon i{color:#fff}.subnavmenu .infoEntry a.default-icon i:hover{color:#2ecc71;cursor:pointer}.subnavmenu .infoEntry:hover{cursor:default}.subnavmenu .infoEntry:hover .info{-webkit-touch-callout:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;color:#fff}.subnavmenu .infoEntry.positive .health-icon,.subnavmenu .infoEntry.positive .health-state,.subnavmenu .infoEntry.positive .state{color:#2ecc71}.subnavmenu .infoEntry.negative .health-icon,.subnavmenu .infoEntry.negative .health-state{color:#e74c3c}.subnavmenu .icon,.subnavmenu .info,.subnavmenu .state{color:rgba(255,255,255,.95);display:block;float:left;font-weight:300;max-width:150px;overflow:hidden;text-transform:uppercase}.subnavmenu .icon span,.subnavmenu .info span,.subnavmenu .state span{color:#2ecc71}.subnavmenu .icon span:hover,.subnavmenu .info span:hover,.subnavmenu .state span:hover{cursor:pointer}.subnavmenu #dbStatus{padding-right:20px}.subBarDropdown{background:#fff;border:1px solid rgba(64,74,83,.2);display:none;margin-top:55px!important;min-width:200px;position:absolute;z-index:9999}.subBarDropdown li{padding:0}.subBarDropdown .dropdown-header{background-color:#77cb99;cursor:default;margin:0 -1px;padding:0!important}.subBarDropdown .dropdown-header img{border:3px solid #6dba8c;border-radius:75px;display:block;margin:10px auto 0;width:75px}.subBarDropdown .dropdown-header p,.subBarDropdown .dropdown-header small{color:#fff;text-align:center}.subBarDropdown .dropdown-header small{display:block;margin-top:-10px}.subBarDropdown .dropdown-footer{padding:0 5px 0 0!important}.subBarDropdown .dropdown-footer button{margin-bottom:5px;margin-top:-4px}.helpUs iframe{left:0;position:absolute;right:0;top:101px}#community,#documentation{padding:20px 40px 40px}#community h4,#documentation h4{font-weight:400}#community a,#documentation a{color:#3498db}#community .pure-u-1-1,#documentation .pure-u-1-1{font-weight:100}#community .center,#documentation .center{margin-top:10px;text-align:center}#community ul,#documentation ul{list-style-type:none;margin:0 0 10px 10px}#community .menu li:first-child,#community .menu li:last-child,#documentation .menu li:first-child,#documentation .menu li:last-child{padding-top:20px}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){div .bigtile .collection-type-icon,div .tile .collection-type-icon{margin-left:0!important;position:relative!important;top:-58px!important}.tile .icon_arangodb_edge5{margin-left:0!important;position:relative!important;top:-67px!important}}.arangoDataTable{display:block;position:relative;width:100%}.arangoDataTable tbody{display:inline-block;max-height:200px;overflow-y:auto;position:absolute;width:100%}.arangoDataTable thead{background-color:#fff!important;display:inline-block;font-weight:400!important;text-align:left;width:100%}.arangoDataTable thead td{overflow:hidden}.arangoDataTable thead th{border-bottom:0;cursor:default!important;font-weight:400!important;padding:10px 14px!important}.arangoDataTable thead tr{border-bottom:1px solid #c2c2c2}.arangoDataTable tr{cursor:pointer}.arangoDataTable td{padding:8px 18px!important}.arangoDataTable .key{font-weight:100;margin-top:4px;overflow:hidden}.arangoDataTable .dataTable .noPointer tr{cursor:default}.arangoDataTable .selected-row{background-color:#2ecc71!important}.arangoDataTable .selected-row div,.arangoDataTable .selected-row li,.arangoDataTable .selected-row span{color:#fff!important}.api-container #resources>li.resource:nth-child(even),table.arangoDataTable tr.even{background-color:#fff}.api-container #resources>li.resource:nth-child(odd),table.arangoDataTable tr.odd{background-color:rgba(104,103,102,.05)}#tableDiv table.dataTable td{padding:12px 18px!important}#documentsTableID_filter,#documentsTableID_length{display:none}#documentsTableID_wrapper{padding-bottom:0!important}.snippet-no-num{font-size:1em;font-weight:400;margin-bottom:0}.cuttedContent,.prettify ul li,.writeable a{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.totalDocuments{color:#666;float:left;font-weight:100;margin-top:-37px!important;padding-left:10px}.prettify{border:none!important;font-size:1em!important;margin:0!important;padding:0!important}.edit-index-table tfoot,.newIndexClass table{border-top:1px solid #f7f3f2}table .sorting{background:0 0!important}.new-index-view input[type=checkbox]{float:left}.new-index-view table tr{width:600px!important}.new-index-view table tr th:last-child{width:50px!important}.new-index-view table th{font-weight:300!important;width:200px!important}#documentsDiv{padding-top:0}#documentsDiv .pure-table .snippet-container{margin-top:10px}.edit-index-table{margin-top:5px;min-width:auto!important}.edit-index-table th{padding-bottom:5px;padding-left:5px;padding-top:5px}.edit-index-table .icon_arangodb_locked{color:rgba(0,0,0,.5);cursor:default;font-size:20px;margin-left:10px}.index-button-bar i:hover,.queryline .fa-info-circle:hover{cursor:pointer}.edit-index-table .icon_arangodb_roundminus{font-size:20px;margin-left:10px}.edit-index-table tfoot i{color:#2ecc71;font-size:19px;margin-left:22px;margin-top:5px}.edit-index-table tfoot i:hover{color:#58d68d;cursor:pointer}.contentIn .arangoicon{font-size:25px;position:relative;top:-3px!important}#collectionEditIndexTable thead{border-bottom:1px solid #e5e5e5}.newIndexClass table{margin-bottom:60px}.newIndexClass table select{margin-right:7px}.newIndexClass table .arangoicon{float:right;margin-right:-12px;margin-top:5px}.index-button-bar{float:right}.index-button-bar i{color:#2ecc71;font-size:16pt;margin-right:43px}.index-button-bar #cancelIndex{margin-right:13px}.docsFirstCol,.docsSecCol,.docsThirdCol{border:0!important}.docsFirstCol{height:26px;width:80%}.docsSecCol{height:26px;min-width:400px!important;width:10%}.docsThirdCol{height:26px}.add-filter-item{margin-left:5px}.add-filter-item i{margin-top:0!important}.upload-indicator{display:none;margin-top:-3px;padding-right:10px}.documentsDropdown .dropdownImport,.documentsDropdown .headerDropdown{clear:both;margin-bottom:10px}.documents-size{background-color:#fff!important;border:1px solid #e5e5e5;border-radius:0;box-shadow:none;color:#000;float:right;font-size:11pt;font-weight:300;height:28px;line-height:18px;margin-left:10px;margin-top:0;width:115px}.ace_error{background:0 0!important}#exportHeader .fa-exclamation-circle{color:#fff;font-size:13pt;margin-right:10px}.totalDocuments:hover{color:#000}.ajax-file-upload-statusbar{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;border:1px solid rgba(0,0,0,.7);margin:10px 10px 5px 5px;padding:5px;width:420px}.ajax-file-upload-filename{color:grey;height:auto;margin:0 5px 5px 10px;width:100%}.ajax-file-upload-progress{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;border:1px solid #d9d9d9;display:inline-block;margin:0 10px 5px;padding:1px;position:relative;width:250px}.ajax-file-upload-bar{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:rgba(0,0,0,.7);color:#fff;height:20px;width:0}.ajax-file-upload-percent{display:inline-block;left:48%;position:absolute;top:3px}.ajax-file-upload-red{font-size:13px;font-weight:400;margin-right:5px;padding:4px 15px;vertical-align:top}.ajax-file-upload{display:inline-block;font-size:16px;font-weight:700;height:25px;margin:0 10px 10px 0;padding:6px 10px 4px}.ajax-upload-dragdrop{border:1px dotted #8f8d8c;color:#736b68;padding:10px 10px 0;text-align:left;vertical-align:middle;width:506px}.ajax-upload-dragdrop span{position:relative;top:-22px}/*! + */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome/fontawesome-webfont.eot?v=4.4.0);src:url(../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.4.0) format("embedded-opentype"),url(../fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0) format("woff2"),url(../fonts/fontawesome/fontawesome-webfont.woff?v=4.4.0) format("woff"),url(../fonts/fontawesome/fontawesome-webfont.ttf?v=4.4.0) format("truetype"),url(../fonts/fontawesome/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right,.pull-right{float:right}.contentDiv li,.dashboard-bar-chart-container,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut,.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage,.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-half-height-legend,.dashboard-large-chart,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-interior-chart,.dashboard-small-chart,.dashboard-small-chart .dashboard-small-chart-inner,.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart,.dashboard-sub-bar,.dashboard-sub-bar .dashboard-sub-bar-title,.dashboard-tendency-container,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-subtitle-bar,.dashboard-title-bar .dashboard-half-title-bar,.dashboardModal,.dropdown-toolbar,.fixedDropdown .notificationItemContent,.gv-dropdown-menu,.innerDropdownInnerUL,.link-dropdown-menu,.modal-chart-detail,.modal-chart-detail .modal-body,.modal-chart-detail .modal-dashboard-legend,.modal-chart-detail .modal-inner-detail,.navlist li,.navlogo,.pagination-line li a,.pull-left,.script-dropdown-menu,.user-dropdown-menu,a.button-gui,a.headerButton,div .bigtile,div .bigtile a span.add-Icon,div .tile,div .tile a span.add-Icon,div.centralContent,div.dropdownInner ul,div.footer-center,div.footer-left{float:left}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}@font-face{font-family:Roboto;font-weight:300;font-style:normal;src:url(../fonts/roboto/Roboto-300/Roboto-300.eot);src:url(../fonts/roboto/Roboto-300/Roboto-300.eot?#iefix) format("embedded-opentype"),local("Roboto Light"),local("Roboto-300"),url(../fonts/roboto/Roboto-300/Roboto-300.woff2) format("woff2"),url(../fonts/roboto/Roboto-300/Roboto-300.woff) format("woff"),url(../fonts/roboto/Roboto-300/Roboto-300.ttf) format("truetype"),url(../fonts/roboto/Roboto-300/Roboto-300.svg#Roboto) format("svg")}@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:url(../fonts/roboto/Roboto-regular/Roboto-regular.eot);src:url(../fonts/roboto/Roboto-regular/Roboto-regular.eot?#iefix) format("embedded-opentype"),local("Roboto"),local("Roboto-regular"),url(../fonts/roboto/Roboto-regular/Roboto-regular.woff2) format("woff2"),url(../fonts/roboto/Roboto-regular/Roboto-regular.woff) format("woff"),url(../fonts/roboto/Roboto-regular/Roboto-regular.ttf) format("truetype"),url(../fonts/roboto/Roboto-regular/Roboto-regular.svg#Roboto) format("svg")}@font-face{font-family:Roboto;font-weight:500;font-style:normal;src:url(../fonts/roboto/Roboto-500/Roboto-500.eot);src:url(../fonts/roboto/Roboto-500/Roboto-500.eot?#iefix) format("embedded-opentype"),local("Roboto Medium"),local("Roboto-500"),url(../fonts/roboto/Roboto-500/Roboto-500.woff2) format("woff2"),url(../fonts/roboto/Roboto-500/Roboto-500.woff) format("woff"),url(../fonts/roboto/Roboto-500/Roboto-500.ttf) format("truetype"),url(../fonts/roboto/Roboto-500/Roboto-500.svg#Roboto) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:normal;src:url(../fonts/roboto/Roboto-700/Roboto-700.eot);src:url(../fonts/roboto/Roboto-700/Roboto-700.eot?#iefix) format("embedded-opentype"),local("Roboto Bold"),local("Roboto-700"),url(../fonts/roboto/Roboto-700/Roboto-700.woff2) format("woff2"),url(../fonts/roboto/Roboto-700/Roboto-700.woff) format("woff"),url(../fonts/roboto/Roboto-700/Roboto-700.ttf) format("truetype"),url(../fonts/roboto/Roboto-700/Roboto-700.svg#Roboto) format("svg")}.arango-tab li,.dashboard-legend,.dashboard-sub-bar-menu,.docsThirdCol,.fixedDropdown .notificationItem i,.fixedDropdown button,.headerBar>div.headerButtonBar,.query-button,.search-field,div .bigtile .iconSet span,div .tile .iconSet span,div.footer-right,div.footer-right p,div.gv_colour_list,ul.headerButtonList li{float:right}.collectionInfoTh2,.collectionTh,.dashboard-sub-bar,.dashboard-sub-bar .dashboard-sub-bar-title,.dataNotReadyYet,.dygraph-label.dygraph-title,.figuresHeader th,.graphLabel,.inputEditorWrapper .aqlEditorWrapper .previewWrapper .previewBar,.inputEditorWrapper .aqlEditorWrapper table,.inputEditorWrapper .aqlEditorWrapper table td input,.inputEditorWrapper .aqlEditorWrapper table th,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper .previewBar,.inputEditorWrapper .bindParamEditorWrapper table,.inputEditorWrapper .bindParamEditorWrapper table td input,.inputEditorWrapper .bindParamEditorWrapper table th,.modal-body,.page-title span,.pingback a.url,.snippet-no-num,.ui-tooltip,body,button,input,textarea{font-family:Roboto,sans-serif!important}.document-info .document-bold-font,.document-info .document-thin-font{font-family:droid sans mono,monospace,courier new,courier,sans-serif;font-size:11pt}#distributionChartDiv:after,.arango-tab:after,.dashboard-bar-chart-container .dashboard-bar-chart:after,.dashboard-medium-chart .dashboard-medium-chart-inner:after,.dashboard-medium-chart .dashboard-medium-chart-menu:after,.dashboard-row:after,.dashboard-sub-bar:after,.dashboard-tendency-container .dashboard-tendency-chart:after,.detail-chart:after,.document-info .document-info-container .document-inner-info-container .document-attribute:after,.headerBar>div.headerButtonBar:after,.lineChartDiv:after,.pagination-line li:after,.resizecontainer:after,.tileList:after{clear:both;content:'.';display:block;font-size:0;height:0;visibility:hidden}.caret,.contentDiv:after,.contentDiv:before,.form-actions:after,.form-actions:before,.pong-spinner:after,.pong-spinner:before{content:''}.addButton,.arango-tab a,.arango-tab li,.arangoicon,.clusterDownBtn button,.contentDiv .icon,.contentTables tr.contentRowInactive a,.deleteButton i,.dropdownImport.headerDropdown input[type=checkbox].css-checkbox label.css-label,.edit-index-table .icon_arangodb_roundminus,.fixedDropdown .notificationItem i,.fullNotification:hover,.gv-search-submit-icon,.icon-info-sign,.link>line,.node,.pagination-line li a,.script-dropdown-menu .dropdown-item,.search-submit-icon,a.button-gui,a.headerButton,div .bigtile,div .bigtile .iconSet span,div .bigtile a span.icon,div .bigtile a svg,div .tile .iconSet span,div .tile a span.icon,div .tile a svg,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox label.css-label,div.toolbox div.gv_action_button{cursor:pointer}#swagger #jsonLink,.arangoToolbar span.clickable:hover,.login-window button,.shardFollowers span,.shardLeader span,.subnavmenu .infoEntry a.default-icon i{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.login-window select{-webkit-appearance:none;background:url("data:image/svg+xml;utf8,") right 10px top 12px no-repeat #f2f2f2;background-size:16px 16px;border:0;-webkit-border-radius:2px;border-radius:2px;color:#000;font-size:14px;font-weight:400;height:40px;line-height:initial;padding:12px;text-align:center;-moz-transition:.3s ease all;-ms-transition:.3s ease all;-o-transition:.3s ease all;-webkit-transition:.3s ease all;transition:.3s ease all;width:100%}.breadcrumb a,.navlist .dropdown-item:hover a,.navlist>li:hover a{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in}.login-window select:disabled{opacity:.5}.login-window select:active,.login-window select:focus{border:0;outline:0}.navbar{color:#fff;left:0;right:0;z-index:1000}.ajax-file-upload-red,.button-danger{background-color:#e74c3c}.ajax-file-upload-red:focus,.ajax-file-upload-red:hover,.button-danger:focus,.button-danger:hover{background-color:#ec7063}.contentTables td span,.deleteButton i,.edit-index-table .icon_arangodb_roundminus{color:#e74c3c}.contentTables td span:focus,.contentTables td span:hover,.deleteButton i:focus,.deleteButton i:hover,.edit-index-table .icon_arangodb_roundminus:focus,.edit-index-table .icon_arangodb_roundminus:hover{color:#ec7063}.ajax-file-upload,.button-success{background-color:#2ecc71}.ajax-file-upload:focus,.ajax-file-upload:hover,.button-success:focus,.button-success:hover{background-color:#58d68d}.button-info{background-color:#3498db}.button-info:focus,.button-info:hover{background-color:#5dade2}.addButton,.contentTables td.dbThSecond span{color:#2ecc71}.addButton:focus,.addButton:hover,.contentTables td.dbThSecond span:focus,.contentTables td.dbThSecond span:hover{color:#58d68d}.button-warning{background-color:#f1c40f}.button-warning:focus,.button-warning:hover{background-color:#f4d313}.button-close,.button-neutral{background-color:#8f8d8c}.button-close:focus,.button-close:hover,.button-neutral:focus,.button-neutral:hover{background-color:#736b68}.dashboard-sub-bar-menu{color:#8f8d8c}.dashboard-sub-bar-menu:focus,.dashboard-sub-bar-menu:hover{color:#736b68}.button-primary{background-color:#34495e}.button-primary:focus,.button-primary:hover{background-color:#415b76}.button-header,a.button-gui,a.headerButton{background-color:#fff;border:1px solid #fff;color:#555}.button-header:focus,.button-header:hover,a.button-gui:focus,a.button-gui:hover,a.headerButton:focus,a.headerButton:hover{background-color:#2ecc71;border:1px solid #2ecc71;color:#fff}.button-notification{background-color:#faa020}.button-notification:focus,.button-notification:hover{background-color:#f87c0f}.button-inactive,.button-inactive:focus,.button-inactive:hover,[class*=' button-']:disabled,[class*=' button-']:focus:disabled,[class*=' button-']:hover:disabled,[class^=button-]:disabled,[class^=button-]:focus:disabled,[class^=button-]:hover:disabled,button.disabled,button.disabled:focus,button.disabled:hover{background-color:#d3d3d3}a.headerButton.disabled,a.headerButton.disabled:focus,a.headerButton.disabled:hover{color:#d3d3d3}div.queryline .fa.fa-search{color:#c2c2c2;font-size:12pt;opacity:.5;position:relative;right:21px;top:-1px}div.queryline .fa.fa-search:hover{cursor:pointer;opacity:1}.inputEditorWrapper .aqlEditorWrapper table td input,.inputEditorWrapper .bindParamEditorWrapper table td input,.jsoneditor .search .frame input,.login-window .login-input,.modal-body .select2-choices input,.modal-body input,.modal-body select,.modal-body textarea,.navbar .arango-collection-select,.newIndexClass table input,.newIndexClass table select,.sectionHeader .scaleGroup input,div.queryline input,div.queryline select,input.search-input{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;background-color:#fff!important;border:2px solid rgba(140,138,137,.25);box-shadow:none;outline:transparent 0}.inputEditorWrapper .aqlEditorWrapper table td input:focus,.inputEditorWrapper .bindParamEditorWrapper table td input:focus,.jsoneditor .search .frame input:focus,.login-window .login-input:focus,.modal-body input:focus,.modal-body select:focus,.modal-body textarea:focus,.navbar .arango-collection-select:focus,.newIndexClass table input:focus,.newIndexClass table select:focus,.sectionHeader .scaleGroup input:focus,div.queryline input:focus,div.queryline select:focus,input.search-input:focus{border-color:#2ecc71;box-shadow:none;outline:transparent 0}.dropdown-toolbar,.gv-dropdown-menu,.link-dropdown-menu,.script-dropdown-menu,.user-dropdown-menu{background-color:#f5f8f0;border-color:#666;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;display:none;left:initial;list-style:none;margin:5px 0 0;padding:5px 0;position:absolute;right:0;top:80%;z-index:1000}.dropdown-toolbar li,.gv-dropdown-menu li,.link-dropdown-menu li,.script-dropdown-menu li,.user-dropdown-menu li{line-height:23px;white-space:nowrap;width:100%}.dropdown-toolbar .dropdown-header,.gv-dropdown-menu .dropdown-header,.link-dropdown-menu .dropdown-header,.script-dropdown-menu .dropdown-header,.user-dropdown-menu .dropdown-header{color:#999;font-size:15px;font-weight:600;font-variant:small-caps;padding:0}.dropdown-toolbar .dropdown-header:hover,.gv-dropdown-menu .dropdown-header:hover,.link-dropdown-menu .dropdown-header:hover,.script-dropdown-menu .dropdown-header:hover,.user-dropdown-menu .dropdown-header:hover{cursor:default}.dropdown-toolbar .divider,.gv-dropdown-menu .divider,.link-dropdown-menu .divider,.script-dropdown-menu .divider,.user-dropdown-menu .divider{background-color:#666;height:1px;margin:10px 0 5px}.dropdown-toolbar a,.gv-dropdown-menu a,.link-dropdown-menu a,.script-dropdown-menu a,.user-dropdown-menu a{color:#fff;padding:0 20px}.navbar2{color:#fff}.navbar2>.secondary{background-color:rgba(255,255,255,.85)}.navbar{bottom:0;float:left;-webkit-font-smoothing:subpixel-antialiased;margin-bottom:0;position:absolute;top:0;width:150px}.navbar>.primary{background-color:#404a53;float:left;height:100%;width:150px}.navbar>.resizecontainer{background-color:#fff}.navbar .no-left-margin{border:0;margin-left:0}.navbar .no-left-margin.hover{background-color:transparent}.navbar .arangodbLogo{height:auto;margin-left:6px;margin-top:15px;width:138px}.navbar .arango-collection-select{position:relative;right:-22px;top:4px}.navbar .nav .dropdown .active>.dropdown-toggle,.navbar .nav .dropdown .open.active>.dropdown-toggle,.navbar .nav .dropdown .open>.dropdown-toggle{background:#58d68d}.navbar .nav>.active>a{-webkit-box-shadow:0 0 0 transparent inset;-moz-box-shadow:0 0 0 transparent inset;box-shadow:0 0 0 transparent inset;background-color:#fff;color:#000}.navbar .nav>li>a:focus{background-color:#fff}.navbar .nav>li>a:hover{background-color:#000;color:#686766}.navbar .shortcut{bottom:31px;left:13px;position:absolute}.navbar .shortcut i{background-color:transparent;border-radius:20px;color:#fff;width:20px;padding:5px 0 6px 4px}.navbar .shortcut i:hover{background-color:#2ecc71;color:#fff;cursor:pointer}.navbar .social-icons{bottom:0;float:left;margin-left:9px;position:absolute;width:100%}.navbar .social-icons a{display:block;float:left;height:25px;width:25px}.navbar .social-icons p{background:0 0;border-radius:20px;float:left;height:25px;margin-right:10px;padding:0;width:25px}.navbar .social-icons p:hover{background:#2ecc71;cursor:pointer}.navlist li.divider,.navlist li.navbar-spacer{background-color:rgba(0,0,0,.2)}.navbar .social-icons p:hover i{color:#fff}.navbar .social-icons i{color:#fff;margin-top:6px;position:absolute}.navbar .social-icons i.fa-google,.navbar .social-icons i.fa-slack,.navbar .social-icons i.fa-stack-overflow,.navbar .social-icons i.fa-twitter{margin-left:7px}.navlogo{height:60px;width:100%}.navlogo .small{display:none}.script-dropdown-menu .dropdown-item a,.tab{display:block}.navlogo .version{bottom:33px;color:rgba(255,255,255,.7);font-size:11px;font-weight:100;left:0;padding-bottom:10px;position:absolute;text-align:center;text-transform:uppercase;width:100%}.navlist,.navlist li{width:150px}.navlogo .version .out-of-date{color:#f1c40f;font-weight:400}.navlogo .version .out-of-date:hover{cursor:pointer}.navlogo .version .up-to-date{color:#2ecc71}.navmenu{clear:both}.navlist{list-style:none;margin:0;position:relative;top:0}.navlist>li{line-height:30px}.navlist li .fa{opacity:.3;padding-left:5px;padding-right:15px;text-align:center;width:10px}.navlist li .fa.fa-heart{color:#ff7a7a;opacity:1}.navlist li.disabled:hover{cursor:default}.navlist li.disabled:hover a:hover{cursor:default;opacity:.8}div .bigtile:hover,div .tile:hover,div.footer-center p:hover{cursor:pointer}.navlist .active .tab .fa,.navlist>.active a{opacity:1}.navlist li.dropdown:hover{border-bottom-left-radius:0;border-bottom-right-radius:0}.navlist li.divider,.navlist li.navbar-spacer{border:0}.navlist li.navbar-spacer{height:2px;margin-bottom:0;margin-top:0}.navlist .active{border-left:2px solid #77cb99}.navlist .active .tab{color:#fff;margin-left:-2px}.navlist .dropdown-item,.script-dropdown-menu .dropdown-item{margin-left:0}.navlist>.active{background-color:rgba(255,255,255,.2)}.navlist .dropdown-item:hover a,.navlist>li:hover a{color:#fff;opacity:1;transition:all .2s ease-in}.navlist .dropdown-item a{border-bottom:0;display:block;font-size:11pt}.navlist .dropdown-item a:hover{background-color:#dee9cf;color:#686766}.tab{color:rgba(255,255,255,.8);font-size:9pt;font-weight:100;text-transform:uppercase;padding:5px}.tab.userImg{padding-bottom:5px}.dropdown-item a{border-bottom:0!important;font-weight:300}.dropdown-toolbar li a,footer.footer p{font-weight:100}.dropdown-toolbar{background-color:#fff!important}.dropdown-toolbar li a:hover{background:0 0;background-color:#dee9cf!important;color:#000!important}.link-dropdown-menu,.user-dropdown-menu{background-color:rgba(0,0,0,.7);border-top-right-radius:0;margin-right:-1px;margin-top:7px;z-index:50}.link-dropdown-menu .dropdown-item,.user-dropdown-menu .dropdown-item{border-left:0;border-right:0}.script-dropdown-menu .dropdown-item a:hover{color:#fff}.script-dropdown-menu .dropdown-item:hover{background-color:#2ecc71}.gv-dropdown-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;background-color:rgba(0,0,0,.7);border:1px solid #c2c2c2;margin-right:-20px;margin-top:6px}.gv-dropdown-menu:after{border-bottom-color:#fff}.gv-dropdown-menu li:hover{background-color:#fff;background-image:none}.gv-dropdown-menu li a{padding:0}.gv-dropdown-menu li a label{color:#fff;padding-left:5px}.gv-dropdown-menu li a:focus{background-color:#2ecc71!important;background-image:none}#arangoCollectionSelect{display:none;float:right;margin-bottom:0;margin-right:15px;padding-bottom:0}.caret{border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #686766;display:inline-block;height:0;vertical-align:top;width:0}.applications-menu{display:block}.arango-logo{height:34px;padding:0!important}.arango-logo img{margin-left:22px}.footer{background-color:rgba(239,240,241,.8);display:none;font-size:14px;left:160px;right:10px;text-align:center;z-index:1000}div.footer-center,div.footer-left,div.footer-right{background:none;color:#686766}footer.footer{bottom:0;height:43px;position:fixed}footer.footer p{font-size:10pt;margin-bottom:0;padding-bottom:10px;padding-top:10px}div.footer-left{width:45%}div.footer-center{width:10%}div.footer-center p{padding-top:5px}[class*=' button-']:disabled,[class^=button-]:disabled,a.headerButton.disabled,button.disabled{cursor:not-allowed}div.footer-right{width:45%}div.footer-right p{color:#fff}div.footer-right i{color:#e74c3c;font-size:18px}div.footer-right a{color:#686766;margin-left:5px;position:relative;top:-1px}div.footer-right .isOnline{color:#2ecc71!important}.ajax-file-upload,.ajax-file-upload-red,.button-close,.button-danger,.button-header,.button-inactive,.button-info,.button-neutral,.button-notification,.button-primary,.button-success,.button-warning{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0;font-size:13px;font-weight:300!important}.addButton,.deleteButton i{font-size:16pt;position:relative}.ajax-file-upload,.ajax-file-upload-red,.button-close,.button-danger,.button-inactive,.button-info,.button-neutral,.button-notification,.button-primary,.button-success,.button-warning{border:0;color:#fff;margin-left:10px;padding:4px 12px}.ajax-file-upload i,.ajax-file-upload-red i,.button-close i,.button-danger i,.button-inactive i,.button-info i,.button-neutral i,.button-notification i,.button-primary i,.button-success i,.button-warning i{margin-left:-5px}.ajax-file-upload .fa,.ajax-file-upload-red .fa,.button-close .fa,.button-danger .fa,.button-inactive .fa,.button-info .fa,.button-neutral .fa,.button-notification .fa,.button-primary .fa,.button-success .fa,.button-warning .fa{position:relative;top:1px}.button-header{margin-top:5px}.addButton{margin-right:7px;margin-top:2px}.deleteButton i{float:right;padding-right:7px;top:12px}#closeBtnInfoView{margin-left:0!important}button.btn-server{width:120px}button.btn-small{padding:0 8px}button.gv-zoom-btn{background-size:14px 14px;height:14px;vertical-align:baseline;width:14px}button.gv-zoom-btn.btn-zoom-right{border:0;box-shadow:none;right:0;top:13px}button.gv-zoom-btn.pan-right{background-image:url(../img/gv_arrow_right.png)}button.gv-zoom-btn.pan-right:hover{background:inherit;background-image:url(../img/gv_arrow_right.png)}button.gv-zoom-btn.pan-left{background-image:url(../img/gv_arrow_left.png)}button.gv-zoom-btn.pan-left:hover{background:inherit;background-image:url(../img/gv_arrow_left.png)}button.gv-zoom-btn.pan-top{background-image:url(../img/gv_arrow_top.png)}button.gv-zoom-btn.pan-top:hover{background:inherit;background-image:url(../img/gv_arrow_top.png)}button.gv-zoom-btn.pan-bottom{background-image:url(../img/gv_arrow_bottom.png)}button.gv-zoom-btn.pan-bottom:hover{background:inherit;background-image:url(../img/gv_arrow_bottom.png)}button.gv-zoom-btn.btn-zoom{height:14px;margin:0;padding:0;position:absolute;width:16px}button.gv-zoom-btn.btn-zoom-top{border:0;box-shadow:none;left:13px;top:1}button.gv-zoom-btn.btn-zoom-left{border:0;box-shadow:none;left:0;top:13px}button.gv-zoom-btn.btn-zoom-bottom{border:0;box-shadow:none;left:13px;top:25px}button.gv-icon-btn{-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important;background-size:36px 36px;height:36px;width:36px}button.gv-icon-btn.active{background-color:#2ecc71}button.gv_dropdown_entry{height:30px;margin:4px 4px 4px 12px;width:160px}button.gv_context_button{width:65px}button.large-distance{margin-left:12px}button.short-distance{margin-left:6px}button.shutdown{margin-top:6px;padding:3px 14px}button.graphViewer-icon-button{background-color:transparent;border:0;height:20px;margin-left:5px;margin-top:-2px;padding:0;width:20px}button.graphViewer-icon-button img{height:20px;padding-bottom:10px;width:20px}ul.headerButtonList{display:inline-block;margin-bottom:0;margin-left:0;padding-left:0!important}ul.headerButtonList li{display:inline}a.button-gui,a.headerButton{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;margin-left:5px;margin-right:5px}a.headerButton{margin-top:2px;position:relative}a.headerButton .fa,a.headerButton [class*=" icon_"],a.headerButton [class^=icon_]{display:block;height:23px;line-height:23px;position:static;right:0;text-align:center;top:0;width:27px}a.headerButton .icon_arangodb_arrowleft,a.headerButton .icon_arangodb_arrowright{font-weight:700}a.headerButton.activated{background-color:#58d68d;border:1px solid #58d68d;color:#fff}a.headerButton.activated:hover{background-color:#fff;color:#58d68d}div.toolbox{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#fff;border:1px solid rgba(140,138,137,.25);margin-right:5px;padding-bottom:5px;padding-top:5px;position:absolute;top:-10px}div.toolbox div.gv_action_button{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#fff;color:#555;height:30px;margin:5px;position:relative;text-align:center;width:30px}div.toolbox div.gv_action_button.active{background-color:#2ecc71;color:#fff}div.toolbox div.gv_action_button:first-child{margin-top:0}div.toolbox div.gv_action_button:last-child{margin-bottom:0}h6.gv_button_title,h6.gv_icon_icon{left:0;margin:0;position:absolute;right:0}h6.gv_icon_icon{font-size:22px;left:1px;top:4px}h6.gv_button_title{bottom:1px;display:none}.btn-icon{background-color:#383434;padding:4px}.gv-icon-small{background-size:16px 16px;height:16px!important;width:16px!important}.gv-icon-small.delete{background-image:url(../img/icon_delete.png)}.gv-icon-small.add{background-image:url(../img/plus_icon.png)}a.pagination-button,ul.arango-pagination a{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.badge,.btn,.label{text-shadow:none!important}.navbar-inner,.thumbnail{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0}.modal-body th.actionCell>button{margin-top:-12px}.btn-old-padding{padding-bottom:4px!important;padding-top:4px!important}button.btn-overview,button.btn-server{margin:5px}a.button-gui{height:auto;margin-bottom:0;margin-top:0;padding-bottom:1px;padding-top:1px;position:absolute;right:2px;text-decoration:none!important;top:2px;width:auto}a.button-gui.button-gui-disabled{display:none}.clusterDownBtn{padding-bottom:10px;padding-top:10px;text-align:center}.clusterDownBtn button{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#f1f1f1;border:1px solid rgba(0,0,0,.1875);color:#333;font-size:20px;font-weight:300;margin:0;padding:12px 18px;text-align:center;text-decoration:none!important;width:250px}.clusterDownBtn button:hover{background-color:#e8e8e8;color:#4a6c30;-webkit-transition-delay:0;-webkit-transition-duration:.2s;-webkit-transition-property:all;-webkit-transition-timing-function:ease-in}.clusterDownBtn button.green{background-color:#617e2b;color:#fff}.clusterDownBtn button.green:hover{background-color:#8ba142}.bottomButtonBar{background-color:#fff;border-top:1px solid rgba(104,103,102,.1);height:30px;padding:10px}.tileList{left:10px;padding-top:5px;position:absolute;right:10px}.tileList legend{padding-left:5px}.tileList .tile:first-child a{opacity:.8}.tileList .tile:first-child a:hover{opacity:1}div .bigtile,div .tile{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:2px;font-size:14px;list-style:none;margin-bottom:13px;position:relative;text-align:center;z-index:1}div .bigtile progress[value],div .tile progress[value]{color:#5bc0de}div .bigtile progress::-webkit-progress-bar-value,div .tile progress::-webkit-progress-bar-value{background:#5bc0de}div .bigtile progress::-webkit-progress-value,div .tile progress::-webkit-progress-value{background:#5bc0de}div .bigtile progress::-moz-progress-bar,div .tile progress::-moz-progress-bar{background:#5bc0de}div .bigtile progress,div .tile progress{-webkit-appearance:none;border-radius:0;height:2px;margin-top:16px;position:relative;width:100%;z-index:10}div .locked.bigtile,div .locked.tile{cursor:not-allowed}div .locked.bigtile .borderBox,div .locked.bigtile .collection-type-icon,div .locked.bigtile .collectionName,div .locked.bigtile .iconSet,div .locked.tile .borderBox,div .locked.tile .collection-type-icon,div .locked.tile .collectionName,div .locked.tile .iconSet{opacity:.5}div .locked.bigtile .iconSet span:hover,div .locked.tile .iconSet span:hover{background-color:#fff!important;color:#000;cursor:not-allowed!important}div .locked.bigtile .iconSet:hover,div .locked.tile .iconSet:hover{cursor:not-allowed!important}div .bigtile .collection-type-icon:hover,div .bigtile img:hover,div .tile .collection-type-icon:hover,div .tile img:hover{cursor:pointer}div .bigtile .warning-icons,div .tile .warning-icons{background-color:#e74c3c;border-radius:2px;color:#fff;font-size:11px;height:17px;left:0;line-height:13px;margin-left:5px;margin-top:5px;padding-left:9px;padding-right:9px;position:absolute;top:0}div .bigtile .warning-icons .fa,div .tile .warning-icons .fa{font-size:11pt;margin-left:1px}div .bigtile .collection-type-icon,div .tile .collection-type-icon{color:#666;font-size:30pt;margin-left:-18px;position:absolute;top:15px}div .bigtile img,div .tile img{position:relative}div .bigtile img.icon,div .tile img.icon{height:50px;margin-top:-110px;width:50px}div .bigtile a span.add-Icon,div .tile a span.add-Icon{font-size:20px;margin-left:22px;margin-right:10px;position:relative;top:0}div .bigtile a span.icon,div .tile a span.icon{font-size:50px}div .bigtile a svg.icon,div .tile a svg.icon{height:50px;width:50px}div .bigtile .tile-icon-svg,div .tile .tile-icon-svg{cursor:pointer;fill:#686766;height:50px;margin-left:auto;margin-right:auto;margin-top:-63px;position:relative;width:50px}div .bigtile .tile-icon,div .tile .tile-icon{color:#686766;font-size:50px;line-height:1.2;margin-left:-50px}div .bigtile .icon_arangodb_edge5-2,div .bigtile .tile-icon,div .tile .icon_arangodb_edge5-2,div .tile .tile-icon{position:absolute;top:15px}div .bigtile .icon_arangodb_edge5-2,div .tile .icon_arangodb_edge5-2{display:inline-block;margin-left:5px;position:absolute;top:0;-moz-transform:rotate(80deg);-o-transform:rotate(80deg);-webkit-transform:rotate(80deg)}div .bigtile h5,div .tile h5{background:rgba(64,74,83,.8);color:#fff;font-size:12px;margin:0 5px;overflow:hidden!important;padding:4px 8px;text-overflow:ellipsis!important;white-space:nowrap!important}div .bigtile h5.inProgress,div .tile h5.inProgress{color:#5bc0de}div .bigtile .tileSelects,div .tile .tileSelects{margin-left:40px;position:relative;z-index:9999}div .bigtile .tileSelects select,div .tile .tileSelects select{float:right;height:20px;margin-right:5px;margin-top:16px;width:70px}div .bigtile .fullBorderBox,div .tile .fullBorderBox{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:2px;box-sizing:border-box;height:100%;margin-left:5px;margin-right:5px;position:relative;width:auto}div .bigtile .fullBorderBox .add,div .tile .fullBorderBox .add{color:#404a53}div .bigtile .fullBorderBox .add span,div .tile .fullBorderBox .add span{color:#2ecc71}div .bigtile .paddingBox,div .tile .paddingBox{box-sizing:border-box;padding-left:5px;padding-right:5px}div .bigtile .borderBox,div .tile .borderBox{background-color:#fff;border:1px solid rgba(64,74,83,.2);border-bottom:0;border-radius:2px;box-sizing:border-box;height:75px;position:relative;width:100%}div .bigtile .iconSet,div .tile .iconSet{position:absolute;right:5px;top:5px}div .bigtile .iconSet span,div .tile .iconSet span{border-radius:2px;color:#666;font-size:18px;z-index:2;padding:2px 3px}div .bigtile .iconSet span:hover,div .tile .iconSet span:hover{background-color:#2ecc71;color:#fff}div .bigtile .iconSet span.disabled,div .tile .iconSet span.disabled{cursor:default;opacity:.2}div .bigtile .iconSet span.disabled:hover,div .tile .iconSet span.disabled:hover{background-color:#fff;color:#000;cursor:default;opacity:.2}div .bigtile .badge-success,div .tile .badge-success{font-weight:300}div .bigtile .unloaded div,div .tile .unloaded div{border-bottom:16px solid #ff8f35}div .bigtile .deleted div,div .tile .deleted div{border-bottom:16px solid #700}div .bigtile .tileBadge,div .tile .tileBadge{bottom:29px;font-size:11px;font-weight:300;position:absolute;right:0}div .bigtile .tileBadge button,div .tile .tileBadge button{margin-left:0;margin-right:5px}div .bigtile .tileBadge span,div .tile .tileBadge span{display:inline-block;line-height:15px}div .bigtile .tileBadge span .corneredBadge,div .tile .tileBadge span .corneredBadge{border-bottom-style:solid;border-bottom-width:17px;border-left:5px solid transparent;border-radius:2px;color:#fff;height:0;margin-bottom:4px;margin-right:10px;padding-left:1px;padding-right:6px}div .bigtile .tileBadge span .corneredBadge.loading,div .tile .tileBadge span .corneredBadge.loading{border-bottom-color:#ff8f35}div .bigtile .tileBadge span .corneredBadge.loaded,div .tile .tileBadge span .corneredBadge.loaded{border-bottom-color:#2ecc71}div .bigtile .tileBadge span .corneredBadge.inProgress,div .tile .tileBadge span .corneredBadge.inProgress{border-bottom-color:#5bc0de}div .bigtile .tileBadge span .corneredBadge.development,div .bigtile .tileBadge span .corneredBadge.unloaded,div .tile .tileBadge span .corneredBadge.development,div .tile .tileBadge span .corneredBadge.unloaded{border-bottom-color:#ff8f35}div .tile{height:100px}div .tile-graph h5{margin-left:5px;margin-right:5px}div .tile-graph .tile-icon:hover{cursor:pointer}div .bigtile{height:309px;width:452px}div .bigtile .shardContainer{font-size:30px}div .bigtile .shardContainer span{padding:2px}.collectionName{border-bottom-left-radius:2px;border-bottom-right-radius:2px;bottom:0;font-weight:300;left:0;position:absolute;right:0;text-align:left}#userManagementThumbnailsIn .tile .paddingBox img{border-radius:58px;margin-top:-99px;padding:0}.resizecontainer{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:10px;padding-right:10px}.dashboard-large-chart,.dashboard-medium-chart-outer,.dashboard-sub-bar,.tendency-box-sizing .dashboard-tendency-container,div.centralContent{box-sizing:border-box}@media (max-width:738px){#collectionsDropdown ul{width:auto!important}.footer-center p{display:none}#queryContent #querySize,#queryContent #querySizeDiv,#queryContent .styled-select{margin-right:6px;width:90px!important}}@media (max-width:970px){#documentsDiv #totalDocuments{display:none}}@media (min-width:250px) and (max-width:489px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:185px}.dashboard-sub-bar-menu{font-size:12px}.dashboard-medium-chart .dashboard-interior-chart{height:185px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:12px;left:10px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:185px;width:27px}.dashboard-medium-chart #clusterGraphs svg text{font-size:10px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:197px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:10px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:83.25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:-15px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:25.08px;line-height:25.08px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:40.17px;line-height:19.08px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:79.75px}.dashboard-bar-chart-container .dashboard-bar-chart{height:74.75px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:25.25px;line-height:25.25px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:-4.2px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:-3px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-45px;width:110px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{display:none;font-size:12px;min-height:190px;width:10px}.absolut,.percentage{font-size:14px}.modal-chart-detail .modal-inner-detail{width:70px}.modal-body .dashboard-large-chart{width:51px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:22px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:5px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:-4.2px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:-3px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:-6px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:10px;font-weight:400}.dashboard-subtitle-bar{font-size:14px;font-weight:300}.dashboard-figure{font-size:16px;font-weight:400}.dashboard-figurePer{font-size:14px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:10px}.dashboard-legend{display:none;height:30px;width:100%}.dashboard-half-height-legend{display:none;font-size:10px;height:100px;width:0}.application-detail-view section.info{width:90px}.application-detail-view aside.meta{display:none}}@media (min-width:490px) and (max-width:729px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:185px}.dashboard-sub-bar-menu{font-size:12px}.dashboard-medium-chart .dashboard-interior-chart{height:185px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:12px;left:130px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:185px;width:147px}.dashboard-medium-chart #clusterGraphs svg text{font-size:10px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:197px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:10px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:83.25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:25.08px;line-height:25.08px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:40.17px;line-height:19.08px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:79.75px}.dashboard-bar-chart-container .dashboard-bar-chart{height:74.75px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:25.25px;line-height:25.25px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:51.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:21px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-165px;width:350px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{display:none;font-size:12px;min-height:190px;width:10px}.absolut,.percentage{font-size:14px}.modal-chart-detail .modal-inner-detail{width:310px}.modal-body .dashboard-large-chart{width:211px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:142px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:125px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:51.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:21px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:74px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:10px;font-weight:400}.dashboard-subtitle-bar{font-size:14px;font-weight:300}.dashboard-figure{font-size:16px;font-weight:400}.dashboard-figurePer{font-size:14px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:10px}.dashboard-legend{display:none;height:30px;width:100%}.dashboard-half-height-legend{display:none;font-size:10px;height:100px;width:0}.application-detail-view section.info{width:330px}.application-detail-view aside.meta{display:none}}@media (min-width:730px) and (max-width:969px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:185px}.dashboard-sub-bar-menu{font-size:12px}.dashboard-medium-chart .dashboard-interior-chart{height:185px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:12px;left:250px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:185px;width:267px}.dashboard-medium-chart #clusterGraphs svg text{font-size:10px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:197px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:10px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:83.25px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:65px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:25.08px;line-height:25.08px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:40.17px;line-height:19.08px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:79.75px}.dashboard-bar-chart-container .dashboard-bar-chart{height:74.75px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:25.25px;line-height:25.25px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:107.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:45px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-285px;width:590px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{display:none;font-size:12px;min-height:190px;width:10px}.absolut,.percentage{font-size:14px}.modal-chart-detail .modal-inner-detail{width:550px}.modal-body .dashboard-large-chart{width:371px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:262px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:245px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:107.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:45px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:154px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:10px;font-weight:400}.dashboard-subtitle-bar{font-size:14px;font-weight:300}.dashboard-figure{font-size:16px;font-weight:400}.dashboard-figurePer{font-size:14px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:10px}.dashboard-legend{display:none;height:30px;width:100%}.dashboard-half-height-legend{display:none;font-size:10px;height:100px;width:0}.application-detail-view section.info{width:370px}}@media (min-width:970px) and (max-width:1209px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:220px}.dashboard-sub-bar-menu{font-size:13px}.dashboard-medium-chart .dashboard-interior-chart{height:220px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:13px;left:369px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:220px;width:387px}.dashboard-medium-chart #clusterGraphs svg text{font-size:11px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:229px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:11px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:101.5px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:105px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:31.17px;line-height:31.17px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:52.33px;line-height:25.17px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:98px}.dashboard-bar-chart-container .dashboard-bar-chart{height:93px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:31.33px;line-height:31.33px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:163.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:69px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-405px;width:830px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:13px;min-height:225px;width:130px}.absolut,.percentage{font-size:15px}.modal-chart-detail .modal-inner-detail{width:670px}.modal-body .dashboard-large-chart{width:531px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:382px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:364px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:163.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:69px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:234px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:11px;font-weight:400}.dashboard-subtitle-bar{font-size:15px;font-weight:300}.dashboard-figure{font-size:18px;font-weight:400}.dashboard-figurePer{font-size:16px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:11px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:11px;height:117.5px;width:60px}.application-detail-view section.info{width:610px}}@media (min-width:1210px) and (max-width:1449px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:255px}.dashboard-sub-bar-menu{font-size:15px}.dashboard-medium-chart .dashboard-interior-chart{height:255px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:16px;left:486px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:255px;width:507px}.dashboard-medium-chart #clusterGraphs svg text{font-size:12px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:264px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:13px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:119px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:145px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:37px;line-height:37px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:64px;line-height:31px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:115.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:110.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:37.17px;line-height:37.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:219.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:93px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-525px;width:1070px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:14px;min-height:260px;width:140px}.absolut,.percentage{font-size:18px}.modal-chart-detail .modal-inner-detail{width:900px}.modal-body .dashboard-large-chart{width:691px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:502px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:481px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:219.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:93px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:314px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:13px;font-weight:400}.dashboard-subtitle-bar{font-size:18px;font-weight:300}.dashboard-figure{font-size:22px;font-weight:400}.dashboard-figurePer{font-size:20px;font-weight:300}.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-size:13px;font-weight:400}.dashboard-legend{font-size:12px;font-weight:400;height:30px;width:100%}.dashboard-half-height-legend{font-size:12px;height:135px;width:65px}.application-detail-view section.info{width:850px}}@media (min-width:1450px) and (max-width:1689px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:15px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:18px;left:604px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:627px}.dashboard-medium-chart #clusterGraphs svg text{font-size:13px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:13px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:185px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:275.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:117px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-645px;width:1310px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:15px;min-height:290px;width:150px}.absolut,.percentage{font-size:20px}.modal-chart-detail .modal-inner-detail{width:1130px}.modal-body .dashboard-large-chart{width:851px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:622px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:599px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:275.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:117px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:394px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:13px;font-weight:400}.dashboard-subtitle-bar{font-size:20px;font-weight:300}.dashboard-figure{font-size:26px;font-weight:400}.dashboard-figurePer{font-size:24px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:13px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:13px;height:150px;width:70px}.application-detail-view section.info{width:1090px}}@media (min-width:1690px) and (max-width:1929px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:325px}.dashboard-sub-bar-menu{font-size:16px}.dashboard-medium-chart .dashboard-interior-chart{height:325px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:22px;left:720px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:325px;width:747px}.dashboard-medium-chart #clusterGraphs svg text{font-size:14px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:334px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:14px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:154px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:225px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:48.67px;line-height:48.67px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:87.33px;line-height:42.67px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:150.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:145.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:48.83px;line-height:48.83px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:331.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:141px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-765px;width:1550px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:16px;min-height:330px;width:170px}.absolut,.percentage{font-size:24px}.modal-chart-detail .modal-inner-detail{width:1350px}.modal-body .dashboard-large-chart{width:1011px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:742px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:715px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:331.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:141px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:474px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:14px;font-weight:400}.dashboard-subtitle-bar{font-size:24px;font-weight:300}.dashboard-figure{font-size:30px;font-weight:400}.dashboard-figurePer{font-size:28px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:14px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:14px;height:170px;width:80px}.application-detail-view section.info{width:1330px}}@media (min-width:1930px) and (max-width:2169px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:385px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:385px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:26px;left:836px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:385px;width:867px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:394px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:14px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:184px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:265px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:58.67px;line-height:58.67px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:107.33px;line-height:52.67px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:180.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:175.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:58.83px;line-height:58.83px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:387.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:165px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-885px;width:1790px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:390px;width:180px}.absolut,.percentage{font-size:28px}.modal-chart-detail .modal-inner-detail{width:1580px}.modal-body .dashboard-large-chart{width:1171px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:862px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:831px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:387.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:165px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:554px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:28px;font-weight:300}.dashboard-figure{font-size:34px;font-weight:400}.dashboard-figurePer{font-size:32px;font-weight:300}.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-size:14px;font-weight:400}.dashboard-legend{font-size:15px;font-weight:400;height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:200px;width:85px}.application-detail-view section.info{width:1570px}}@media (min-width:2170px) and (max-width:2409px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:20px;left:962px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:987px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:15px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:305px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:443.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:189px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-1005px;width:2030px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:290px;width:150px}.absolut,.percentage{font-size:22px}.modal-chart-detail .modal-inner-detail{width:1850px}.modal-body .dashboard-large-chart{width:1331px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:982px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:957px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:443.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:189px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:634px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:22px;font-weight:300}.dashboard-figure{font-size:36px;font-weight:400}.dashboard-figurePer{font-size:34px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:15px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:150px;width:70px}.application-detail-view section.info{width:1810px}}@media (min-width:2410px) and (max-width:2649px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:20px;left:1082px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:1107px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:15px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:345px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:499.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:213px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-1125px;width:2270px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:290px;width:150px}.absolut,.percentage{font-size:22px}.modal-chart-detail .modal-inner-detail{width:2090px}.modal-body .dashboard-large-chart{width:1491px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:1102px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:1077px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:499.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:213px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:714px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:22px;font-weight:300}.dashboard-figure{font-size:36px;font-weight:400}.dashboard-figurePer{font-size:34px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:15px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:150px;width:70px}.application-detail-view section.info{width:2050px}}@media (min-width:2650px) and (max-width:2889px){.dashboard-full-width-chart,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-full-width-chart .dashboard-sub-bar,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-large-chart .dashboard-sub-bar,.dashboard-medium-chart,.dashboard-medium-chart .dashboard-sub-bar,.resizecontainer{width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart,.dashboard-medium-chart-outer{float:left}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart{height:285px}.dashboard-sub-bar-menu{font-size:17px}.dashboard-medium-chart .dashboard-interior-chart{height:285px;width:100%}.dashboard-medium-chart .dashboard-medium-chart-menu{font-size:20px;left:1202px;top:0}.dashboard-medium-chart #clusterGraphs svg{height:285px;width:1227px}.dashboard-medium-chart #clusterGraphs svg text{font-size:15px}.dashboard-small-chart .dashboard-sub-bar{clear:both;height:65px;margin-bottom:0;width:100%}.dashboard-small-chart .dashboard-small-chart-inner{width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{height:294px;width:100%}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-axis text{fill:#666;font-size:15px;font-weight:400}.dashboard-tendency-container .dashboard-tendency-chart{height:134px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{width:385px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar{height:42px;line-height:42px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure{height:74px;line-height:36px;padding-top:5px}.dashboard-tendency-container .dashboard-sub-bar{width:100%}.dashboard-bar-chart-container{height:130.5px}.dashboard-bar-chart-container .dashboard-bar-chart{height:125.5px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{height:42.17px;line-height:42.17px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:555.8px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{line-height:40px;padding-top:15px;width:237px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{box-sizing:border-box;height:50px;margin-top:5px;width:100%}.dashboard-bar-chart-container .dashboard-sub-bar{padding-top:13px;width:100%}.modal-chart-detail{bottom:12.1%!important;left:50%;margin-left:-1245px;width:2510px!important}.modal-chart-detail .modal-body{height:95%;max-height:none;padding:5px}.modal-chart-detail .modal-dashboard-legend{font-size:17px;min-height:290px;width:150px}.absolut,.percentage{font-size:22px}.modal-chart-detail .modal-inner-detail{width:2330px}.modal-body .dashboard-large-chart{width:1651px}.modal-body .dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.modal-body .dashboard-large-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-medium-chart-outer{float:left;width:1222px}.modal-body .dashboard-medium-chart,.modal-body .dashboard-medium-chart .dashboard-interior-chart,.modal-body .dashboard-medium-chart .dashboard-sub-bar{width:100%}.modal-body .dashboard-small-chart,.modal-body .dashboard-small-chart .dashboard-small-chart-inner,.modal-body .dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart{width:auto}.modal-body .dashboard-medium-chart .dashboard-medium-chart-menu{left:1197px}.modal-body .dashboard-small-chart .dashboard-sub-bar{clear:both;width:auto}.modal-body .dashboard-tendency-container,.modal-body .dashboard-tendency-container .dashboard-tendency-chart,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-figure,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-subtitle-bar,.modal-body .dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{box-sizing:border-box;width:100%}.modal-body .dashboard-tendency-container .dashboard-sub-bar{width:100%}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart{width:auto}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{width:555.8px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{width:237px}.modal-body .dashboard-bar-chart-container .dashboard-bar-chart-chart{width:794px}.modal-body .dashboard-bar-chart-container .dashboard-sub-bar{width:100%}.absolut{font-weight:300}.dashboard-sub-bar{font-size:15px;font-weight:400}.dashboard-subtitle-bar{font-size:22px;font-weight:300}.dashboard-figure{font-size:36px;font-weight:400}.dashboard-figurePer{font-size:34px;font-weight:300}.dashboard-legend,.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{font-weight:400;font-size:15px}.dashboard-legend{height:30px;width:100%}.dashboard-half-height-legend{font-size:15px;height:150px;width:70px}.application-detail-view section.info{width:2290px}}div.headerBar{position:absolute}div.centralRow{background:rgba(64,74,83,.04);height:100%;min-height:100%;overflow-y:auto;position:relative;right:0}div.centralContent{background-color:transparent;margin-top:10px;width:100%;padding:5px 5px 20px}.contentDiv{list-style:none;padding:0}.contentDiv li{background-color:rgba(0,0,0,.05)}.contentDiv a.add{display:block;font-weight:400;padding:40px 0;text-align:left}.modal-body th .valueCell,.modal-body th th.actionCell,.modal-body th th.keyCell,.waitModal{text-align:center}.contentDiv .icon{padding-left:5px;padding-right:5px;padding-top:10px}.contentDiv:after{clear:both}.contentDiv:after,.contentDiv:before{display:table;line-height:0}.clusterInfoIcon{float:left;padding-left:5px;padding-top:2px}.waitModal.icon{font-size:100px;height:120px}.waitModal.message{font-size:20px}.icon_arangodb_info{color:#333;font-size:23px}li a [class*=" icon_arangodb"],li a [class^=icon_arangodb]{font-size:18px;position:absolute;right:4px;top:2px}.fa-minus-circle{color:#e74c3c;font-size:14pt}.fa-plus-circle{color:#2ecc71;font-size:16pt}.fa-minus-circle:hover,.fa-plus-circle:hover{cursor:pointer}.dropdownImport,div.headerDropdown{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:2px;clear:both;display:none;margin-bottom:15px;padding:10px;position:relative;width:auto}.dropdownImport.smallDropdown .dropdownInner,div.headerDropdown.smallDropdown .dropdownInner{min-height:20px}.dropdownImport.headerDropdown input[type=checkbox].css-checkbox,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox{display:none}.dropdownImport.headerDropdown input[type=checkbox].css-checkbox label.css-label,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox label.css-label{background-position:0 0;background-repeat:no-repeat;display:inline-block;font-size:15px;height:15px;margin-top:0;padding-left:20px;vertical-align:middle}.dropdownImport.headerDropdown input[type=checkbox].css-checkbox:checked+label.css-label,div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox:checked+label.css-label{background-position:0 -15px}div.dropdown-title{margin-bottom:10px}div.dropdownInner{-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0;min-height:125px;position:relative;width:auto}div.dropdownInner .nav-header{font-size:10pt}div.dropdownInner>.nav-header{color:#000;font-size:10pt;font-weight:400}div.dropdownInner>label{color:#000;font-weight:300}div.dropdownInner ul{border-left:1px solid rgba(140,138,137,.25);display:inline;list-style-type:none;margin-left:10px;margin-top:10px;min-height:105px;width:175px}div.dropdownInner ul:first-of-type,div.queryline input[type=file]{border:0}div.dropdownInner ul label{color:#000;padding-left:20px}div.dropdownInner ul li .fa{color:#999;margin-right:5px}div.dropdownInner ul li .fa.fa-square-o{margin-left:1px;margin-right:6px}div.dropdownInner ul li .fa.fa-check-circle-o,div.dropdownInner ul li .fa.fa-check-square-o,div.dropdownInner ul li .fa.fa-dot-circle-o{color:#2ecc71}div.queryline{color:#000;height:35px}div.queryline .textDiv{margin-right:10px;margin-top:4px}div.queryline input,div.queryline select{margin-bottom:5px}div.queryline input{width:16%}div.queryline.querylineAdd span{color:#fff;padding-left:10px;position:relative;top:-21px}div.queryline .removeFilterItem i{margin-left:5px!important;margin-top:0!important}div.queryline div.searchByAttribute{margin-left:6px;margin-right:6px;position:relative}div.queryline div.searchByAttribute input{width:140px}div.queryline div.searchByAttribute>ul.gv-dropdown-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;background-color:#fff;color:#fff;display:none;left:0;position:absolute;top:20px;width:247px}div.dropdownImport{background-color:#fff;border-radius:3px;display:none;position:relative;padding:10px 10px 5px}div.dropdownImport input{line-height:0;margin-bottom:-15px;margin-top:5px}select.filterSelect{color:#00f;margin-left:10px;margin-right:10px;width:80px}#filterHeader button{float:right;margin-left:10px!important;margin-top:1px}div.input-append button.gv_example_toggle{-moz-border-radius:0 4px 4px 0;-webkit-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;background-color:#8f8d8c;height:30px;margin-left:-1px;padding-left:10px;padding-right:10px;padding-top:12px;vertical-align:top}div.input-append button.gv_example_toggle:hover{background-color:#2ecc71}.searchEqualsLabel{margin-left:6px;margin-right:6px}img.gv-throbber{background-image:url(../img/swagger/throbber.gif)}span.gv_caret{border-top:5px solid #fff;margin-top:2px!important}input.search-input{border:1px solid #fff;height:20px;line-height:20px;margin-right:-4px;margin-top:3px;width:120px}.search-field{margin-left:10px;margin-right:3px}.search-field .fa-search{color:#c2c2c2;font-size:12pt;margin-left:-20px;opacity:.5;position:absolute;right:9px;top:9px}div.headerBar,div.headerBar .infoField{color:#000;float:right;padding-left:5px;padding-right:5px}.search-field .fa-search:hover{cursor:pointer;opacity:1}.gv-search-submit-icon,.search-submit-icon{background-image:url(../img/enter_icon.png);background-size:14px;height:14px;margin-left:-18px;opacity:.2;position:absolute;width:14px}.gv-search-submit-icon:hover,.search-submit-icon:hover{opacity:.8}.search-submit-icon{margin-top:11px}.gv-search-submit-icon{margin-top:6px}div.headerBar{background-color:none;border-radius:2px;font-size:16px;height:36px;margin-top:-55px;right:0}div.headerBar.marginTop5{margin-top:-60px}div.headerBar .infoField{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:3px!important;font-size:12px;margin-right:7px;margin-top:7px}div.headerBar .infoField .fa{cursor:pointer;margin-left:5px}div.headerBar input[type=checkbox].css-checkbox{display:none}div.headerBar input[type=checkbox].css-checkbox label.css-label{background-position:0 0;background-repeat:no-repeat;cursor:pointer;display:inline-block;font-size:15px;height:15px;margin-top:0;padding-left:20px;vertical-align:middle}div.headerBar input[type=checkbox].css-checkbox:checked+label.css-label{background-position:0 -15px}div.headerBar input[type=radio]{display:none}div.headerBar input[type=radio] label span{background:url(../img/check_radio_sheet.png) -38px top no-repeat;cursor:pointer;display:inline-block;height:19px;margin:-1px 4px 0 0;vertical-align:middle;width:19px}#transparentHeader input[type=checkbox].css-checkbox,.contentTables tr.contentRowActive span,.dashboard-legend .dashboard-legend-inner br,.dashboard-row .fa-arrows-alt,.modal-delete-confirmation,.nvtooltip{display:none}div.headerBar input[type=radio]:checked+label span{background:url(../img/check_radio_sheet.png) -57px top no-repeat}.headerButtonList a span .fa-top{color:#fff;font-size:7pt;position:absolute}.headerButtonList a span .fa-top:hover{color:#2ecc71}.headerButtonList a.error{color:#e74c3c}.headerButtonList a.error:hover{background-color:#e74c3c;border-color:#e74c3c;color:#fff}.headerBar a.arangoHeader{color:#000;font-size:11.5pt;font-weight:100;left:0;position:relative;top:7px}.headerBar>div.headerButtonBar{margin:4px 0;margin-bottom:0!important}.breadcrumb{background:0 0;border:0;border-radius:0;color:#fff;font-size:12pt;font-weight:100;line-height:45px;margin:0 0 0 -4px;padding:0 0 0 10px}.breadcrumb .fa{margin-left:10px;margin-right:8px}.breadcrumb .fa-ellipsis-v{font-size:10pt;opacity:0}.breadcrumb .disabledBread{color:#fff;float:left;font-size:12pt;font-weight:100;padding-right:5px;position:relative}.breadcrumb .disabledBread i{font-size:10pt;margin-left:10px}.breadcrumb .disabledBread:hover{cursor:default}.breadcrumb .activeBread{color:#fff;float:left;font-size:11pt;font-weight:100;-webkit-tap-highlight-color:transparent;-webkit-transition:opacity .2s cubic-bezier(.645,.045,.355,1);transition:opacity .2s cubic-bezier(.645,.045,.355,1)}.breadcrumb .activeBread:hover{opacity:.65}.breadcrumb a{color:#fff!important;opacity:.8;transition:all .2s ease-in}.breadcrumb a:hover,.subViewNavbar li:hover a{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in}.breadcrumb a:hover{opacity:1;transition:all .2s ease-in}.breadcrumb #app-development-path{background-color:#fff;border-bottom:1px solid rgba(140,138,137,.25);border-left:1px solid rgba(140,138,137,.25);border-radius:3px;border-right:1px solid rgba(140,138,137,.25);height:24px;margin-left:-6px;margin-top:-10px;padding-left:5px;width:100%}.arangoHeader{font-weight:400}.sectionHeader{background-color:#404a53;margin-bottom:10px;padding-bottom:2px;padding-top:10px;width:100%}.sectionHeader .title{color:#fff;font-size:12pt;font-weight:100;line-height:20pt;margin-left:10px}.sectionHeader .information{float:right;font-size:12.5pt;font-weight:100}.sectionHeader .information .fa{font-size:17pt}.sectionHeader .information span:first-child{margin-left:10px}.sectionHeader .information span span{position:relative;top:-2px}.sectionHeader .information span.positive{color:#2ecc71}.sectionHeader .information span.warning{color:#f1c40f}.sectionHeader .information span.negative{color:#e74c3c}.sectionHeader .information i{margin-left:5px;margin-right:10px}.sectionHeader .scaleGroup{float:right;margin-right:10px;position:inherit;width:80px}.sectionHeader .scaleGroup span{border-radius:30px;color:#fff;padding:3px 5px;position:relative;top:-4px}.sectionHeader .scaleGroup span.left{background:#e74c3c;margin-right:-19px}.sectionHeader .scaleGroup span.right{background:#2ecc71;margin-left:-16px}.sectionHeader .scaleGroup span.left:hover,.sectionHeader .scaleGroup span.right:hover{cursor:pointer}.sectionHeader .scaleGroup input{background:#404a53!important;border-color:rgba(255,255,255,.3);color:#fff;font-weight:100;height:10px;text-align:center;width:40px}.checkboxLabel{margin-top:4px;padding-left:0}.css-label{background-image:url(../img/dark-check-green.png)}.css-label-round{background-image:url(../img/dark-check-green-round.png)}.modal-dashboard-header,.modal-header{background-color:#fff;border-bottom:0!important;border-radius:3px;margin-top:5px;padding-left:5px;padding-right:10px;padding-top:4px}.modal-dashboard-header .arangoHeader,.modal-header .arangoHeader{color:#000;font-size:13pt;font-weight:100;left:5px;position:relative;top:2px}.modal-dashboard-header a,.modal-header a{top:2px!important}.modal-dashboard-header .close,.modal-header .close{color:#fff;font-weight:300;margin-top:2px;opacity:.5}.modal-dashboard-header .close:hover,.modal-header .close:hover{opacity:1}.select2-drop-active{border:2px solid #3498db;border-top:0;margin-top:-2px;width:452px!important;z-index:9999999}.select2-no-results,.select2-results{font-weight:100}.modal-tabbar{border-bottom:1px solid #666}.modal-body{color:#736b68;font-size:14px;font-weight:300;max-height:410px}.modal-body input{height:20px;width:436px}.modal-body select{height:33px;width:452px}.modal-body .select2-container-multi.select2-container-active .select2-choices{border:2px solid #3498db}.modal-body .select2-choices{background-image:none!important;border:2px solid rgba(140,138,137,.25);border-radius:3px;-webkit-box-shadow:none;box-shadow:none;width:448px}.modal-body .select2-choices input:active{-webkit-box-shadow:none;box-shadow:none;outline:0!important}.modal-body .select2-choices .select2-search-choice{margin:5px 0 3px 5px!important}.modal-body .select2-choices li{background-color:#fff!important;background-image:none!important;color:#000}.modal-body tr.first,.modal-body tr.last,.modal-body tr.middle{background-color:#f5f8f0}.modal-body .select2-choices li a{margin-left:1px;margin-top:-1px}.modal-body .select2-choices:active{border:1px solid #999;-webkit-box-shadow:none!important;box-shadow:none!important;outline:transparent!important}.modal-body .nav-tabs{margin-top:15px}.modal-body .nav-tabs>li>a:hover{border-color:#8c8a89}.modal-body input,.modal-body select,.modal-body textarea{margin-top:10px}.modal-body input[type=checkbox]{margin-bottom:10px}.modal-body input[type=text].invalid-input{border-color:rgba(234,23,23,.6)}.modal-body input[type=text].invalid-input:focus{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(234,23,23,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(234,23,23,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(234,23,23,.6)}.modal-body input[type=file]{line-height:17px}.modal-body tr.spacer{height:20px}.modal-body tr.first th:first-child{border-top-left-radius:3px}.modal-body tr.first th:last-child{border-top-right-radius:3px}.modal-body tr.middle{padding-left:10px;padding-right:10px}.modal-body tr.last th:first-child{border-bottom-left-radius:3px}.modal-body tr.last th:last-child{border-bottom-right-radius:3px}.modal-body tr.first th:first-child,.modal-body tr.last th:first-child,.modal-body tr.middle th:first-child{padding-left:10px}.modal-body tr.first th:last-child,.modal-body tr.last th:last-child,.modal-body tr.middle th:last-child{padding-right:10px}.modal-body th.actionCell{width:30px}.modal-body th.keyCell{width:170px}.modal-body th.keyCell input{width:150px}.modal-body th .valueCell{width:300px}.modal-body th .valueCell input{width:290px}.modal-body th .select2-container{margin-bottom:10px;margin-top:10px}.modal-body .icon-info-sign{margin-bottom:10px;margin-left:10px;opacity:.7;padding-bottom:5px}.modal-body .icon-info-sign:hover{opacity:1}.modal-body .icon_arangodb_info{color:#736b68;font-size:18px;margin-top:-10px;position:absolute;right:12px}.modal-body .icon_arangodb_info:hover{color:#000}.modal-body .collapse{margin-right:-14px;position:relative}.modal-body .accordion-inner{border-top:0;margin-left:0;padding-left:0;padding-right:0}.modal-body .accordion-toggle span .caret{border-top-color:#000;float:right;margin-top:5px}.modal-body .accordion-toggle.collapsed span .caret{-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg);transform:rotate(90deg)}.modal-body .collectionTh{height:55px}.modal-body .tab-content{min-height:200px}.modal-body .tab-content .tab-pane{border-top:1px solid #666!important;margin-left:0!important;padding-top:10px}.modal-body .tab-content .tab-pane-modal{border-top:none!important}.modal-body .tab-content #appstore{max-height:290px}.modal-body .errorMessage{background:#e74c3c;border-radius:4px;color:#fff;font-size:9pt;font-weight:100;margin-top:-9px;padding-left:5px;padding-right:5px;position:absolute}.modal-body .nav .tab-icon{margin-right:5px;margin-top:-3px;width:20px}.modal-text{font-weight:300;padding-bottom:3px;padding-top:3px}.modal-backdrop,.modal-backdrop.fade.in{opacity:.4}.fade{opacity:0;-moz-transition:opacity .03s linear;-ms-transition:opacity .03s linear;-o-transition:opacity .03s linear;-webkit-transition:opacity .03s linear;transition:opacity .03s linear}.modal{border:0!important;border-radius:3px!important;box-shadow:0;margin-left:-325px!important;width:650px;z-index:9999999}.modal .fade.in{top:12.1%!important}.modal table tr:last-child{border-bottom:0!important}.waitModal{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:0 0;border:0;color:#fff}.waitModalBackdrop{opacity:.7!important}.modalTooltips span{color:#736b68;font-size:20px}.modalTooltips span:hover{color:#000}.gv-object-view{text-align:left;white-space:pre}.capitalize{text-transform:capitalize}.modal-footer{border-top:0!important;padding-right:17px}.modal-footer .button-close{margin-left:20px;margin-right:10px}.modal-header{margin-left:5px;margin-right:5px}.modal-dashboard-header{margin-left:0;margin-right:0;padding-bottom:9px}.modal-delete-confirmation button{margin-right:10px;margin-top:-4px}.modal-delete-confirmation button .modal-confirm-delete{margin-right:-18px}.modal-delete-confirmation fieldset input{float:left}.modal-delete-confirmation fieldset label{float:left;margin-left:10px}.createModalDialog table{width:100%}.createModalDialog .collection-info-figures table{float:left;margin-left:0;margin-right:0;margin-top:0;min-width:200px;padding:3px;text-align:left}.createModalDialog .figures1,.createModalDialog .figures2{margin-bottom:20px;width:300px}.createModalDialog .figures2{margin-left:20px!important}.createModalDialog .figures3{margin-bottom:0;width:100%}.foxx-store-row{border-bottom:10px solid #fff;border-top:10px solid #fff}.foxx-store-row .foxx-name{background:#404a53;border-radius:4px;color:#fff;font-weight:300;margin-bottom:8px;padding-bottom:1px;padding-left:5px;width:100%}.fixedDropdown .dropdown-header a,.fixedDropdown .notificationItem{color:#000}.foxx-store-row .foxx-store-install{padding-right:5px;padding-top:25px}.foxx-store-row .foxx-author{font-size:10pt;font-weight:300;margin-top:-4px}.foxx-store-row .foxx-version{font-weight:400;margin-top:25px}#new-app-mount{margin-right:24px;width:360px}#control_event_edge_delete_modal,#control_event_edge_edit_modal,#control_event_new_node_modal,#control_event_node_delete_modal,#control_event_node_edit_modal{margin-left:-320px;width:640px}.navlogo .stat_cpu,.navlogo .stat_ram{width:26px;height:26px}.navlogo .stat_cpu{margin-top:1px}.navlogo .stat_cpu path{fill:#aa0}.navlogo .stat_ram path{fill:#070}.navlogo .stat_req{height:22px;width:22px}.navlogo .stat_req path{fill:#aa0}#notification_menu .innerDropdownInnerUL{margin-left:0}#noty_bottom_layout_container li{border:0!important}.noty_type_error .arango_message{top:2px}.noty_bar .noty_buttons{background-color:transparent!important;border:0!important;bottom:0;height:1px;margin-bottom:30px!important;margin-top:-35px!important;position:relative;right:-23px}.noty_bar .noty_buttons button{margin-bottom:2px;margin-right:-1px}.noty_bar .arango_message{font-weight:400!important}.noty_bar .arango_message div{float:right;width:20px}.fixedDropdown{background:#fff!important;border-color:rgba(140,138,137,.25)!important;border-radius:3px!important;margin:10px -3px 0!important;right:-1px!important;width:210px}.fixedDropdown .dropdown-header,.fixedDropdown .dropdown-item,.innerDropdownInnerUL{border-bottom:1px solid rgba(0,0,0,.2)}.fixedDropdown .dropdown-header{margin-left:-1px;padding:0!important}.fixedDropdown a{padding-left:5px!important}.fixedDropdown .notificationItemContent{font-size:.9em;font-weight:300;margin-left:15px;max-width:180px;min-height:15px;white-space:normal;width:180px;word-wrap:break-word}.fixedDropdown button{margin-right:5px;margin-top:5px}.fixedDropdown .notificationItem .notificationItemTitle{color:#000;font-weight:400;max-width:165px;overflow-wrap:break-word;white-space:normal;word-wrap:break-word}.fixedDropdown .notificationItem .notificationItemTitle:hover{background-color:transparent;cursor:default}.fixedDropdown .notificationItem i{color:rgba(0,0,0,.2);font-size:20px;padding-left:5px;position:relative;right:2px}.fixedDropdown .notificationItem i:hover{color:#000}.innerDropdownInnerUL{height:220px!important;min-height:220px;overflow-x:hidden;overflow-y:auto;width:100%}.innerDropdownInnerUL .dropdown-item:hover{background-color:#e1e1e1!important}.innerDropdownInnerUL li{width:auto!important}#stat_hd{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid rgba(140,138,137,.25);height:25px;margin-left:-10px;margin-top:8px;position:relative;right:3px;text-align:center;width:25px}.contentButtons,.contentTables{margin-bottom:10px;width:100%}#stat_hd #stat_hd_counter{color:#c2c2c2;line-height:25px;text-align:center}.fullNotification{background-color:#e74c3c!important;border:1px solid #e74c3c!important}.fullNotification p{color:#fff!important}.contentTables tr.contentRowActive a,.contentTables tr.contentRowInactive a{color:#000!important}.contentButtons{clear:both}.contentButtons #createDatabase,.contentButtons #createUser{margin-left:0}.contentTables thead{text-align:left}.contentTables thead tr{background-color:#fff;border-bottom:1px solid #c2c2c2}.contentTables tbody tr:nth-child(odd){background-color:#d9d9d9}.contentTables tbody tr:nth-child(even){background-color:#fff}.contentTables tr.contentRowActive{background-color:#bdcc92!important;font-weight:400}.contentTables .dbThFirst{width:90%}.contentTables .dbThSecond{width:10%}.contentTables td{padding:12px 18px}.contentTables td span{float:right;font-size:22px}.contentTables .collectionThSec{margin-right:0;width:80%}.contentTables .collectionTh{margin-right:0;width:5%}.usermenu{width:40px}.userImg{margin-top:-11px}.userImg .caret{margin-top:13px}.user-menu-img{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:#fff;height:25px}.ui-tooltip{background-color:#2ecc71!important;border:0!important;border-radius:3px!important;box-shadow:none!important;color:#fff!important;font-size:10pt!important;font-weight:100!important;z-index:99999999}.tooltip-inner{max-width:300px!important;white-space:normal!important;word-wrap:break-word!important}.arangoDataTable .key,.dashboard-sub-bar .dashboard-sub-bar-title,.dbselection,.subnavmenu .icon,.subnavmenu .info,.subnavmenu .state,div.gv-colour-list li{text-overflow:ellipsis;white-space:nowrap}.index-tooltip{color:#736b68}.index-tooltip:hover{color:#000}.index-tooltip .arangoicon{font-size:18px!important}.tooltipInfoTh{width:10%}.arangoToolbar span.action:hover{background-color:#2ecc71;border-radius:3px;color:#fff;cursor:pointer}.arangoToolbar{background-color:#fff;border:1px solid rgba(140,138,137,.25);height:45px;width:100%}.arangoToolbar .pull-left,.arangoToolbar .pull-right{height:30px;margin-top:8px}.arangoToolbar .pull-left i.positive,.arangoToolbar .pull-right i.positive{color:#2ecc71}.arangoToolbar .pull-left i.warning,.arangoToolbar .pull-right i.warning{color:#f1c40f}.arangoToolbar .pull-left button{margin-left:8px}.arangoToolbar .pull-right button:first-child,.arangoToolbar .pull-right select:first-child{margin-right:6px}.arangoToolbar span{padding:5px 8px;position:relative;top:5px;font-weight:100;margin-left:10px}.arangoToolbar span.clickable{cursor:pointer;margin-left:0;opacity:.5;top:1px}.arangoToolbar span.clickable:hover{opacity:1}.arangoToolbar i{font-size:11pt;font-style:normal}.arangoToolbar i.fa{font-size:12pt;margin-right:5px}.arangoToolbar .toolbarType{background:#5bc0de;border-radius:3px;color:#fff;margin-left:8px}.arangoToolbar .styled-select{width:auto}.arangoToolbarBottom{clear:both}.arangoToolbarBottom #executeQuery{margin-right:8px}.arangoToolbarBottom .button-close:last-child{margin-right:10px}.dbselection{float:left;margin-right:3px;max-width:160px;overflow:hidden}.dbselection .fa{color:#fff;opacity:.3}.dbselection .fa-caret-square-o-down{margin-left:5px}.dashboard-bar-chart-container,.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-medium-chart,.dashboard-small-chart .dashboard-small-chart-inner,.dashboard-tendency-container{background-color:#fff;border-left:0 solid #000;box-sizing:border-box}.dashboard-bar-chart-container:first-child,.dashboard-full-width-chart .dashboard-full-width-chart-inner:first-child,.dashboard-large-chart .dashboard-large-chart-inner:first-child,.dashboard-medium-chart:first-child,.dashboard-small-chart .dashboard-small-chart-inner:first-child,.dashboard-tendency-container:first-child{margin-left:0}.dashboard-bar-chart-container,.dashboard-full-width-chart,.dashboard-large-chart,.dashboard-medium-chart,.dashboard-small-chart,.dashboard-tendency-container{border:1px solid rgba(64,74,83,.2);margin-left:-1px;margin-top:-2px;position:relative}.dashboard-interior-chart{width:100%!important}.dashboard-interior-chart>div{margin-left:-15px;margin-top:10px}.dashboard-sub-bar-menu{cursor:pointer;position:absolute;right:9px;top:6px}.dataNotReadyYet{color:#f1c40f;font-size:14px;font-weight:100;text-align:center}.dashboard-sub-bar,.dashboard-sub-bar .dashboard-sub-bar-title{font-size:11pt;font-weight:600;text-align:center;text-transform:uppercase}.dashboard-sub-bar{background-color:#fff;color:rgba(0,0,0,.5);height:50px;line-height:24px;margin:0;padding:10px 6px 20px}.dashboard-sub-bar .dashboard-sub-bar-title{color:#000;opacity:.5;overflow:hidden;width:100%}.dashboard-full-width-chart{border:1px solid rgba(104,103,102,.1);border-radius:0;margin-right:12px;width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner,.dashboard-large-chart .dashboard-large-chart-inner,.dashboard-small-chart .dashboard-small-chart-inner{border-left:5px solid #fff;border-right:5px solid #fff;border-top:5px solid #fff;padding-bottom:10px}.dashboard-full-width-chart .dashboard-full-width-chart-inner{background-color:#fff;padding-top:12px;width:100%}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-subtitle-bar.top{border-bottom:1px solid #e1e1e1;height:48px;line-height:48px;text-align:right}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner{margin-left:10px;margin-right:10px}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table{margin-bottom:10px;margin-top:10px;table-layout:fixed;width:100%}.dashboard-large-chart .dashboard-large-chart-inner .dashboard-interior-chart,.dashboard-medium-chart .dashboard-interior-chart{margin-bottom:0}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table .no-data{font-style:italic;font-weight:100}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table tr{border-bottom:1px solid rgba(0,0,0,.025)}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table td:first-child{width:100px}.dashboard-full-width-chart .dashboard-full-width-chart-inner .dashboard-interior-chart .inner table td:last-child{text-align:right}.dashboard-full-width-chart .state{background-color:#8c8a89;border-radius:5px;color:#fff;font-weight:300;margin-left:5px;padding-left:6px;padding-right:6px}.dashboard-large-chart .dashboard-large-chart-inner{background-color:#fff}.dashboard-small-chart{background:#fff;border-radius:0}.dashboard-small-chart .dashboard-small-chart-inner{background-color:#fff;padding-top:5px}.dashboard-small-chart .dashboard-small-chart-inner .dashboard-interior-chart .nv-bar rect{fill-opacity:.15;stroke-opacity:.8;stroke-width:.5px}.dashboard-medium-chart-outer{border-radius:0}.dashboard-medium-chart{background-color:#fff;margin-bottom:0;padding-top:10px}.dashboard-medium-chart .dashboard-medium-chart-menu{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border:0 solid rgba(0,0,0,.3);color:rgba(0,0,0,.3);cursor:pointer;padding:0 4px;position:absolute;z-index:1000}.dashboard-medium-chart .dashboard-medium-chart-menu:hover{color:rgba(0,0,0,.7)}.dashboard-medium-chart .dashboard-medium-chart-inner{padding-bottom:10px}.dashboard-medium-chart .clusterChart .slice path{fill-opacity:.15;stroke-opacity:1;stroke-width:1.5px}.tendency-box-sizing .dashboard-row:last-child .dashboard-medium-chart-outer:last-child{margin-left:-2px}.dashboard-tendency-container{box-sizing:content-box}.dashboard-tendency-container .dashboard-sub-bar{height:46px}.dashboard-tendency-container .dashboard-tendency-chart{background-color:#fff;border-left:5px solid #fff;border-right:5px solid #fff;border-top:5px solid #fff;padding-bottom:5px}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency{background-color:#fff;box-sizing:border-box;margin-top:5px;padding:0;width:50%}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency:first-child{border-right:1px solid #e1e1e1}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-subtitle-bar{border-bottom:1px solid #e1e1e1;box-sizing:inherit;padding-right:11px;text-align:right;width:100%}.dashboard-tendency-container .dashboard-tendency-chart .dashboard-tendency .dashboard-figure{box-sizing:border-box;text-align:center;width:100%}.dashboard-bar-chart-container{background:0 0;border-radius:0;box-sizing:border-box}.dashboard-bar-chart-container .dashboard-sub-bar{padding-bottom:17px;padding-top:13px}.dashboard-bar-chart-container .dashboard-bar-chart{background-color:#fff;border-left:5px solid #fff;border-right:5px solid #fff;border-top:5px solid #fff;padding-bottom:8px;width:auto}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title{margin-top:5px;padding:0 8px;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .percentage{font-weight:400;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{color:#000;font-weight:500;text-align:center;width:100%}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart{padding-top:10px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-chart .nv-bar rect{fill-opacity:.6;stroke-opacity:.6;stroke-width:.5px}.dashboard-legend .dashboard-legend-inner{margin-right:25px;padding:10px 5px 5px 0;text-align:right}#dashboardDetailedChart .dygraph-axis-label-y,.dashboardDetailChart .dygraph-axis-label-y,.innerDashboardChart .dygraph-axis-label-y{text-align:left}.dashboard-legend .dashboard-legend-inner span{padding-left:10px}.dashboard-spacer{margin:0 12px}.dashboard-headerbar{margin-bottom:15px;margin-top:10px}.modal-chart-detail .modal-dashboard-legend .dashboard-legend-inner{padding-left:20px}.dashboard-half-height-legend .dashboard-legend-inner{padding-top:20px}.dashboard-title-bar{background-color:#686766;color:#fff;font-size:14.5px;font-weight:400;height:30px;line-height:30px;padding:0 5px 0 10px}.dashboard-title-bar .dashboard-half-title-bar{border-left:1px solid #000;margin-left:-1px;width:50%}.dashboard-title-bar .dashboard-half-title-bar:first-child{border-left:0;margin-left:0}.dashboard-row{margin-bottom:0;margin-left:2px;margin-right:0}.dygraph-axis-label.dygraph-axis-label-x,.dygraph-axis-label.dygraph-axis-label-y{color:#666}#repl-numbers,#repl-progress,#repl-ticks{width:33.3%!important}#repl-numbers .inner,#repl-progress .inner,#repl-ticks .inner{margin-top:0}#replication,#requests,#system{margin-bottom:10px}.dashboardModal{-moz-border-radius:8px!important;-webkit-border-radius:8px!important;border-radius:8px!important;height:80%;margin-left:-45%;min-width:780px;overflow:auto;padding:10px;top:10%;width:90%!important}#dashboardHttpGroup{border:6px solid #000;height:100%;width:100%}#dashboardDetailedChart{border:1px solid #000;height:300px;width:100%}.innerDashboardChart{bottom:5px;left:5px;position:absolute;right:5px;top:5px}.dashboardChart{background-color:#fff;border:1px solid rgba(0,0,0,.2);float:left;height:210px;margin:1.05%;position:relative;width:31%}.dygraph-label.dygraph-title{color:#000;font-size:15px;font-weight:400;text-align:left}#dashboardDetailedLineChart{padding-top:10px}.dashboardDistribution{float:left;width:270px}.dashboardDistribution svg{height:220px;width:250px}.showHotkeyHelp{cursor:pointer}.shortcuts{font-size:14px;font-weight:200}.shortcuts b{border-left:1px solid rgba(0,0,0,.34);margin-left:5px;padding-left:5px}.shortcuts .clearShortcut,.shortcuts b:first-child{border-left:0;margin-left:0;padding-left:0}.loginFixedWindow{background:#649068;height:100%;left:0;position:fixed;top:0;width:100%;z-index:9999}.loginFixedWindow #databases{height:140px}.loginFixedWindow #databases .no-database{background:#fff;border-radius:2px;padding:40px;text-align:center}.loginFixedWindow #databases #logout{margin-top:20px}.loginFixedWindow .resizecontainer{position:relative;top:0}.loginFixedWindow .resizecontainer img{height:33px;margin-left:-6px;margin-top:9px}.login-window{background-color:rgba(255,255,255,.75);border:1px solid rgba(140,138,137,.25);border-radius:3px;height:auto;margin:0 auto;position:relative;top:100px;width:350px;padding:20px 20px 50px}.login-window select{margin-bottom:30px;padding-left:35px;-moz-appearance:none}.login-window .login-logo-round{margin-bottom:25px;margin-top:10px}.login-window .login-logo-round img{display:block;margin:0 auto;width:150px}.login-window .checking-password{box-sizing:border-box;color:rgba(0,0,0,.5);margin-left:-21px;margin-top:-25px;position:absolute;text-align:center;width:100%}.login-window form .fa{color:rgba(0,0,0,.2);float:left;font-size:14pt;left:30px;margin-top:11px;position:absolute}.login-window .wrong-credentials{color:#e74c3c;margin-top:-30px;text-align:center}.login-window .login-space{height:50px}.login-window .login-input{background:#f2f2f2!important;border:2px #f2f2f2!important;box-sizing:border-box;font-size:14px;height:40px;margin:0 0 15px;outline:0;padding:10px 10px 10px 35px;width:100%;border-radius:3px}.login-window .form-error{border:2px solid #e74c3c!important}.login-window button{height:40px;width:100%}.query-toolbar{background-color:#f0f0f0;border-bottom:0;border-style:solid;border-width:1px;font-size:20px;height:27px;margin-left:0;margin-right:0}.queryManagementBottomActions button,.querySizeDiv{margin-right:10px}.query-toolbar span:hover{background-color:#e74c3c;color:#fff}.queryBottomActions{border-top:1px solid rgba(140,138,137,.25);padding:10px}.queryExecutionTime{margin-left:10px;margin-top:15px}.queryManagementBottomActions{background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-top:1px solid #c2c2c2;height:40px;margin-top:-2px;padding-top:10px}.styled-select{float:right;height:30px;overflow:hidden;width:220px}.styled-select select{background:#fff;border:1px solid #c2c2c2!important;border-radius:0!important;font-size:14px;font-weight:300;height:30px;line-height:1;outline:0;padding:5px;padding-left:5px!important;padding-top:3px!important}.querySizeDiv,.querySizeDiv select{height:30px!important}.styled-select select:focus{outline:0}.querySizeDiv{width:130px!important}.inputEditorWrapper{border-bottom:3px solid rgba(140,138,137,.25)!important;border-left:1px solid rgba(140,138,137,.25);border-right:1px solid rgba(140,138,137,.25);clear:both;height:300px;min-height:300px;width:100%}.inputEditorWrapper .aqlEditorWrapper{border:0!important;border-right:3px solid rgba(140,138,137,.25)!important;float:left;height:100%!important;max-width:85%;min-width:20%;width:70%}.inputEditorWrapper #arangoMyQueriesTable tbody tr{cursor:copy}.inputEditorWrapper .aqlEditorWrapper,.inputEditorWrapper .bindParamEditorWrapper{background-color:#fff;overflow:hidden}.inputEditorWrapper .aqlEditorWrapper .stringtype,.inputEditorWrapper .bindParamEditorWrapper .stringtype{color:#ce2f30}.inputEditorWrapper .aqlEditorWrapper .arraytype,.inputEditorWrapper .aqlEditorWrapper .objecttype,.inputEditorWrapper .bindParamEditorWrapper .arraytype,.inputEditorWrapper .bindParamEditorWrapper .objecttype{color:#00f}.inputEditorWrapper .aqlEditorWrapper .numbertype,.inputEditorWrapper .bindParamEditorWrapper .numbertype{color:#044}.inputEditorWrapper .aqlEditorWrapper .booleantype,.inputEditorWrapper .bindParamEditorWrapper .booleantype{color:#c12dad}.inputEditorWrapper .aqlEditorWrapper table,.inputEditorWrapper .bindParamEditorWrapper table{border-top:0}.inputEditorWrapper .aqlEditorWrapper table tbody,.inputEditorWrapper .bindParamEditorWrapper table tbody{display:block;overflow-y:auto}.inputEditorWrapper .aqlEditorWrapper table .truncate,.inputEditorWrapper .bindParamEditorWrapper table .truncate{opacity:.8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:30%}.inputEditorWrapper .aqlEditorWrapper table tr.noBgColor,.inputEditorWrapper .bindParamEditorWrapper table tr.noBgColor{background-color:transparent!important}.inputEditorWrapper .aqlEditorWrapper table tr.selected,.inputEditorWrapper .bindParamEditorWrapper table tr.selected{background-color:rgba(125,188,66,.64);color:#fff}.inputEditorWrapper .aqlEditorWrapper table tr.selected .spanWrapper,.inputEditorWrapper .bindParamEditorWrapper table tr.selected .spanWrapper{background-color:rgba(255,255,255,.65)}.inputEditorWrapper .aqlEditorWrapper table tr.selected .fa-comments,.inputEditorWrapper .aqlEditorWrapper table tr.selected .fa-copy,.inputEditorWrapper .bindParamEditorWrapper table tr.selected .fa-comments,.inputEditorWrapper .bindParamEditorWrapper table tr.selected .fa-copy{color:#000}.inputEditorWrapper .aqlEditorWrapper table thead,.inputEditorWrapper .bindParamEditorWrapper table thead{display:block}#clearQuery,.arangoFrame,.display-none{display:none}.inputEditorWrapper .aqlEditorWrapper table td,.inputEditorWrapper .bindParamEditorWrapper table td{height:33px;padding:0 5px;width:50%}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper{border-radius:3px;cursor:auto;float:right}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper:hover,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper:hover{cursor:auto}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper .fa,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper .fa{cursor:pointer;font-size:16pt;margin-left:5px;margin-right:5px}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper .fa-minus-circle,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper .fa-minus-circle{margin-left:20px}.inputEditorWrapper .aqlEditorWrapper table td .spanWrapper .fa-play-circle-o,.inputEditorWrapper .bindParamEditorWrapper table td .spanWrapper .fa-play-circle-o{color:#2ecc71}.inputEditorWrapper .aqlEditorWrapper table td input,.inputEditorWrapper .bindParamEditorWrapper table td input{clear:both;float:right;height:17px;margin-bottom:3px;margin-top:3px;width:auto!important}.inputEditorWrapper .aqlEditorWrapper table th,.inputEditorWrapper .bindParamEditorWrapper table th{font-weight:400;height:34px;padding:0;width:50%}.inputEditorWrapper .aqlEditorWrapper,.inputEditorWrapper .bindParamEditorWrapper{height:100%}.inputEditorWrapper .aqlEditorWrapper table thead tr th,.inputEditorWrapper .bindParamEditorWrapper table thead tr th{text-align:left}.inputEditorWrapper .aqlEditorWrapper table thead tr th:first-child,.inputEditorWrapper .bindParamEditorWrapper table thead tr th:first-child{padding-left:10px}.inputEditorWrapper .aqlEditorWrapper table tbody input,.inputEditorWrapper .bindParamEditorWrapper table tbody input{width:100%!important}.inputEditorWrapper .aqlEditorWrapper .selectError,.inputEditorWrapper .bindParamEditorWrapper .selectError{background:#e74c3c}.inputEditorWrapper .aqlEditorWrapper .aceAction,.inputEditorWrapper .bindParamEditorWrapper .aceAction{background-color:#858585;border-radius:3px;color:#fff;cursor:pointer;font-size:13pt;height:23px;line-height:23px;opacity:.8;position:absolute;right:5px;text-align:center;top:5px;width:33px;z-index:10}.inputEditorWrapper .aqlEditorWrapper .aceAction.type,.inputEditorWrapper .bindParamEditorWrapper .aceAction.type{font-size:8pt}.inputEditorWrapper .aqlEditorWrapper .aceAction i,.inputEditorWrapper .bindParamEditorWrapper .aceAction i{margin-bottom:3px}.inputEditorWrapper .aqlEditorWrapper .aceAction:hover,.inputEditorWrapper .bindParamEditorWrapper .aceAction:hover{cursor:pointer;opacity:1}.inputEditorWrapper .aqlEditorWrapper .previewWrapper,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper{background-color:#fff}.inputEditorWrapper .aqlEditorWrapper .previewWrapper .previewBar,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper .previewBar{background-color:#fff;border-bottom:1px solid rgba(140,138,137,.25);height:34px}.inputEditorWrapper .aqlEditorWrapper .previewWrapper .previewBar span,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper .previewBar span{margin-left:5px;padding-top:8px;position:absolute}.inputEditorWrapper .aqlEditorWrapper .previewWrapper #queryPreview,.inputEditorWrapper .aqlEditorWrapper>div,.inputEditorWrapper .bindParamEditorWrapper .previewWrapper #queryPreview,.inputEditorWrapper .bindParamEditorWrapper>div{height:100%}.inputEditorWrapper .ui-resizable-s{cursor:ns-resize}.inputEditorWrapper .ui-resizable-e{cursor:ew-resize}.queryContent{clear:both;margin-top:0;width:100%}.queryContent .arangoToolbar .fa.fa-star,.queryContent .arangoToolbar .fa.fa-star-o{color:#ff0}.outputEditors{margin-bottom:60px}.outputEditorWrapper{clear:both;height:100px;padding-top:20px;width:100%}.outputEditorWrapper .switchAce{background-color:rgba(0,0,0,.6);border-radius:3px;color:#fff;cursor:pointer;position:relative;right:-24px;top:45px;z-index:10}.outputEditorWrapper .ace_editor{border-left:1px solid rgba(140,138,137,.25);border-right:1px solid rgba(140,138,137,.25);height:280px;width:100%}.outputEditorWrapper .ace_editor .ace_active-line{background:#fff!important}.outputEditorWrapper .sentWrapper .pull-left,.outputEditorWrapper .sentWrapper .pull-right{width:50%}#queryManagementContent{border:1px solid rgba(140,138,137,.25);padding-top:0}#queryManagementContent .arango-table{border:0}#queryManagementContent .arango-table tr th:nth-child(1){width:10%}#queryManagementContent .arango-table tr th:nth-child(1) td{text-align:center}#queryManagementContent .arango-table tr th:nth-child(2){width:50%}#queryManagementContent .arango-table tr th:nth-child(3),#queryManagementContent .arango-table tr th:nth-child(4){width:20%}.contentBar{font-size:12pt;line-height:30px}.noContent{background-color:#fff;padding:50px}.noContent p{font-size:12pt;font-weight:100;text-align:center}.row{margin:0 0 20px}.innerContent{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:2px;min-height:200px;padding-top:13px}.arangoFrame{background-color:rgba(0,0,0,.5);bottom:0;left:0;position:fixed;right:0;top:0;z-index:77777}.arangoFrame .outerDiv{min-height:100%;padding:20px 40px 40px;z-index:88888}.arangoFrame .innerDiv{margin-top:25px;z-index:99999}.arangoFrame .fa-times{color:#fff;float:right;font-size:12pt}.arangoFrame .fa-times:hover{color:#c2c2c2;cursor:pointer}.arangoFrame .document-content-div,.arangoFrame .document-info-div{left:40px;position:absolute;right:40px}.arangoFrame .document-content-div{bottom:80px;top:130px}.arangoFrame .document-editor{height:100%}.arangoFrame .bottomButtonBar{left:-1px;position:absolute;right:-1px}.container{margin-left:20px;margin-right:20px;width:auto!important}.arango-tab{border-bottom:1px solid #ddd;list-style:none;margin-left:0;padding-bottom:0;padding-right:10px}.arango-tab a{-moz-border-radius:0;-webkit-border-radius:0;border-radius:3px 3px 0 0;background-color:#8c8a89;border:1px solid transparent;border-bottom-color:#888;color:#fff;display:block;font-size:13px;line-height:20px;margin-right:2px;min-width:50px;padding:2px 15px;text-align:center}.arango-tab li{background-color:transparent;border:0;margin-bottom:-1px;margin-left:2px;position:relative;z-index:900}.arango-tab li.active a{background:#fff;border-bottom-color:#fff!important;border-left-color:#c2c2c2;border-right-color:#c2c2c2;border-top-color:#c2c2c2;color:#000;height:21px;margin-top:-1px}.jsoneditor,.jsoneditor .menu{background-color:#fff!important}.jsoneditor{border:0 solid rgba(0,0,0,.2)!important}.jsoneditor .menu{border-bottom:1px solid #c2c2c2!important;border-left:0!important;border-right:0!important;border-top:0!important}.jsoneditor .menu button{border:0!important}.jsoneditor .menu button:hover{background-color:#2ecc71;color:#fff}.jsoneditor .search .frame{border:0!important;margin:3px!important}.jsoneditor .search .frame .refresh{background-position:-96px -73px;height:22px;width:25px}.jsoneditor .search .frame input{margin-left:15px;margin-right:15px;margin-top:0}.jsoneditor .search .results{color:#fff!important;margin-top:3px!important}.document-editor-extra{margin-top:10px}.document-editor{margin-top:-10px;width:100%}.disabledPag,.disabledPag a{cursor:default!important;opacity:.5!important}.pagination-line{background-color:#fff;border-bottom-left-radius:2px;border-bottom-right-radius:2px;border-top:1px solid rgba(104,103,102,.1);margin:0;padding-top:12px;text-align:center}.pagination-line li a:hover,.pagination-line li.active a,.pagination-line li.active span{background-color:#404a53;color:#fff}.pagination-line li a{background-color:#fff;border:1px solid #fff;font-size:11.9px;line-height:20px;padding:2px 10px;text-decoration:none;border-width:0;min-width:12pt}.pagination-line ul{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;display:inline-block;margin-bottom:0;margin-left:0}.pagination-line li{display:inline-block;margin-left:11px}.pagination-line li span{color:#000;font-size:14px;position:relative;top:2px}.pagination-line li:first-child a,.pagination-line li:first-child span,.pagination-line li:last-child a,.pagination-line li:last-child span{-webkit-box-shadow:0;-moz-box-shadow:0;box-shadow:0;background:#404a53;border:0;color:#fff;height:21px;position:relative;width:14px}.pagination-line li.disabled:first-child a,.pagination-line li.disabled:first-child span,.pagination-line li.disabled:last-child a,.pagination-line li.disabled:last-child span{background-color:#777;color:#666;cursor:default;pointer-events:none}.collection-pagination{margin-left:23px!important}.arango-pagination i.fa,.las-pagi i.fa,.pre-pagi i.fa{font-size:19px;position:relative;top:-2px}.arango-pagination li:first-child{margin-right:20px}.arango-pagination li:last-child{margin-left:30px}.pre-pagi{margin-right:-5px!important}.accordion-group{border:0}.accordion-body{height:auto!important}.accordion-heading{padding-bottom:20px;padding-top:25px}.accordion-heading a{border:1px solid #ccc;color:#000;font-weight:400;width:397px!important}.accordion-heading .accordion-toggle{border-radius:3px;box-sizing:border-box;display:block;padding:8px 15px;width:100%!important}.shell_workspace{margin-top:13px}.shell_workspace ::-webkit-scrollbar{display:none}.replShell{background-color:#fff;float:left;height:100%;min-width:100px;overflow-y:hidden;position:relative;width:100%}.replShell>div{border-radius:3px}.replShell pre{border-bottom:0;border-left:0;border-right:1px solid #a0a0a0;border-top:1px solid #a0a0a0}.jqconsole{background-color:#000;border-radius:0;padding:10px}.jqconsole-header{color:#fff}.jserror{color:#f06;margin-left:-10px}.jssuccess{color:#6f0}.jqconsole-cursor{background-color:grey}.jqconsole-blurred .jqconsole-header .jqconsole-cursor{color:#c4cccc}.jqconsole-prompt{color:#b91}.jqconsole-old-prompt{color:#f60;font-weight:400}.jqconsole-input{color:#dd0}.jqconsole-old-input{color:#bb0;font-weight:400}.jqconsole-output{color:#fff}.query-output .ace_gutter-cell{background-color:#f0f0f0}.centralContent .api-actions{margin:0!important;padding:0}.centralContent .api-actions .container{padding-bottom:10px!important;padding-top:13px!important;margin:0 5px!important}.centralContent .api-actions .resource{border-bottom:0!important;padding-left:5px!important}.centralContent .api-actions .resource .heading>.options{margin:11px 10px 0 0!important}.centralContent .api-actions .resource .heading h2 a{color:#000!important;font-weight:300!important}.centralContent .api-actions .active .heading h2 a{color:#000!important}.centralContent .api-actions .endpoint .operations .content{margin:0!important}.centralContent .api-actions .endpoint .operations .content h4{font-weight:700!important}.centralContent .api-actions .endpoints{margin-right:5px!important}.centralContent .api-actions .endpoints .endpoint:last-child{padding-bottom:5px!important}.centralContent .api-actions input[type=button]{background:#8f8d8c!important;border:none!important;box-shadow:none!important;color:#fff!important;float:right!important;font-size:14px!important;font-weight:300!important;margin-top:10px!important;padding:8px 16px!important}.centralContent .api-actions .endpoint .operations .content,.centralContent .api-actions .endpoint .operations .heading{border-radius:0!important;font-weight:300!important}.centralContent .api-actions .http_method,.centralContent .api-actions .toggleOperation{border-radius:0!important}.centralContent .api-actions .required,.centralContent .api-actions em,.centralContent .api-actions strong{font-weight:400!important}.form-actions{background:0 0;border:0}.form-actions:after,.form-actions:before{display:table;line-height:0}.form-actions:after{clear:both}.swagger-section #swagger-ui-container{margin:.3em 1em!important}.alert{padding:15px 35px 15px 14px}.alert,textarea{border-radius:0!important}.log-content{word-wrap:break-word}.tab-content{min-height:390px}.crit-table-id,.debug-table-id,.info-table-id,.log-table-id,.warn-table-id{border-spacing:0 0;font-size:15px!important;margin-top:-5px!important}.crit-table-id thead,.debug-table-id thead,.info-table-id thead,.log-table-id thead,.warn-table-id thead{background-color:#f9f9f9;border-top:6px solid #888!important;text-align:center}.crit-table-id thead tr th,.debug-table-id thead tr th,.info-table-id thead tr th,.log-table-id thead tr th,.warn-table-id thead tr th{background-color:#fff!important;border-bottom:1px solid #c2c2c2;border-top:2px solid #888}.crit-table-id .firstcol,.debug-table-id .firstcol,.info-table-id .firstcol,.log-table-id .firstcol,.warn-table-id .firstcol{cursor:default!important;max-width:80px!important;width:80px!important}.crit-table-id tbody .firstcol,.debug-table-id tbody .firstcol,.info-table-id tbody .firstcol,.log-table-id tbody .firstcol,.warn-table-id tbody .firstcol{background-color:transparent!important}.crit-table-id tbody tr td,.debug-table-id tbody tr td,.info-table-id tbody tr td,.log-table-id tbody tr td,.warn-table-id tbody tr td{padding-bottom:8px!important;padding-top:8px!important}.thirdcol{cursor:default!important;max-width:500px!important}.dataTables_empty,.seccol{cursor:default!important;margin-bottom:5px;width:100px!important}.dataTables_info{display:none}#arangoLogTable{border-top:0}#arangoLogTable tbody tr{height:40px}#arangoLogTable tbody td:nth-child(1){text-align:center;width:70px}#arangoLogTable tbody td:nth-child(2){text-align:center;width:150px}#arangoLogTable tbody td:nth-child(3){width:auto}.log-content-id{padding-bottom:0!important;padding-top:0!important}.log-content-id .dataTable{border-collapse:separate;border-spacing:0 5px;table-layout:fixed!important}.log-content-id .arango-tab{border-bottom:0!important}.log-content-id .tab-content{margin-top:1px!important}.log-content-id .arango-tabbar{left:0;margin-top:-51px;position:absolute}.log-content-id .arango-tabbar button{background-color:#fff;border:0;color:#000;float:left;font-size:10.5pt;min-width:60px;opacity:.64;outline:0;padding-left:0;padding-right:0;text-align:center;width:auto}.log-content-id .arango-tabbar button.arango-active-tab{border-bottom:2px solid #77cb99;font-weight:400;height:35px;opacity:1;padding-bottom:9px}.collectionInfoTh2,.collectionTh,.figuresHeader th{font-weight:400!important}div.gv_zoom_widget{height:300px;left:62px;opacity:.7;position:absolute;top:0;width:40px;z-index:1}div.gv_zoom_widget div.gv_zoom_buttons_bg{background-image:url(../img/gv_button_bg_reverse.png);background-size:contain;height:40px;margin-bottom:20px}div.gv_zoom_widget div.gv_zoom_slider{background:#f5f8f0;border-radius:3px;height:200px;margin:0 17px;width:4px}div.gv_zoom_widget a.ui-slider-handle{background-color:#555;border:1px solid rgba(140,138,137,.25);height:.5em;left:-.55em;outline:0}div.gv_zoom_widget a.ui-slider-handle.ui-state-hover{outline-color:#fff}.documents-size,.spotlightWrapper .typeahead:focus{outline:transparent 0}div.gv_zoom_widget a.ui-slider-handle:hover{cursor:pointer}div.gv_zoom_widget .ui-state-default{background:#f6f6f6}#menubar{margin:0 0 10px}div.gv_colour_list{max-height:680px;overflow:auto;position:absolute;right:26px;text-align:right;top:20px;z-index:1}div.gv_colour_list li{background-color:transparent;float:none;padding:2px 6px}svg.graph-viewer{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:3px;left:54px;position:absolute;top:-10px;z-index:0}div.gv-colour-list ul ul,div.gv-colour-list ul ul:first-child,div.gv-colour-list ul ul:last-child{border-left:1px solid rgba(104,103,102,.1);border-right:1px solid rgba(104,103,102,.1)}svg.graph-viewer text{max-width:90px;pointer-events:none}div.gv-background{position:relative}.link>line{stroke-width:1}div.gv-colour-list:hover{opacity:1}div.gv-colour-list{border-radius:3px;max-height:350px;max-width:300px;min-width:190px;opacity:.1;overflow-x:hidden!important;overflow-y:auto;position:absolute;right:8px;text-align:right;top:0;z-index:1}div.gv-colour-list li{float:none;overflow:hidden;padding:2px 6px}div.gv-colour-list ul ul:first-child{border-top:1px solid rgba(104,103,102,.1);border-top-left-radius:3px;border-top-right-radius:3px}div.gv-colour-list ul ul:last-child{border-bottom:1px solid rgba(104,103,102,.1);border-bottom-left-radius:3px;border-bottom-right-radius:3px}#tab-content-create-graph .addAfter,#tab-content-create-graph .addDelete,#tab-content-create-graph .delete{margin-top:-9px;position:absolute;right:13px}#tab-content-create-graph .tableRow.first{border-top:10px solid #fff}.graphContent #graph-container{background-color:#fff;z-index:5}.graphContent #graph-container:-webkit-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:-moz-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:-ms-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:-o-full-screen{height:100%!important;width:100%!important}.graphContent #graph-container:full-screen{height:100%!important;width:100%!important}.graphContent .fa.fa-desktop{margin-top:6px;position:absolute;right:20px;z-index:10}.nodeContextMenu{position:fixed}.nodeContextMenu svg #wheelnav-nodeContextMenu-title-0{transform:translate(24px,14px) scale(.7)!important}.nodeContextMenu svg #wheelnav-nodeContextMenu-title-0,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-1,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-2,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-3{fill:#fff}.nodeContextMenu svg #wheelnav-nodeContextMenu-title-0:hover,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-1:hover,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-2:hover,.nodeContextMenu svg #wheelnav-nodeContextMenu-title-3:hover{fill:#2ecc71}#graphSettingsView{background-color:rgba(64,74,83,.9);border:0;border-radius:0;height:100%}#graphSettingsContent{height:100%;max-width:50%;min-width:400px;position:fixed;right:-1px;top:103px;width:400px}#graphSettingsContent .pure-g .left{color:#fff}#graphSettingsContent .pure-g .pure-u-2-3{text-align:right}#graphSettingsContent .pure-table{padding-left:10px;padding-right:10px}div.gv-manage-button-container{margin-top:10px}legend.gv-inner{font-size:16px}input.gv-radio-button{display:block;margin-top:3px;width:auto}.addCollection .accordion,.collectionTh textarea{margin-top:10px}.collectionTh{font-size:14px;text-align:left;width:20%!important}.collectionInfoTh{min-width:60px;text-align:left;width:320px}.addCollection table tr{border-bottom:0!important;height:53px}.addCollection .icon_arangodb_info{margin-left:20px!important;position:relative;top:2px!important}.addCollection .collectionThSec{width:320px!important}.addCollection .collectionTh{width:96px}.addCollection .modalInput{width:320px}.addCollection .modalSelect{width:334px}.addCollection .accordion-toggle{width:457px!important}.change-collection .tab-content{min-height:230px}.change-collection input{width:384px!important}.change-collection select{width:398px!important}.show-collection .tab-content{min-height:200px}.collectionInfoTh2{text-align:left;width:150px}.collection-info-figures table{float:left;margin-left:0;margin-right:0;margin-top:0;min-width:200px;padding:3px;text-align:left}.figuresHeader{border-bottom:1px solid #c2c2c2}#collectionIndexTable{margin-left:0;width:100%}#collectionTab,#graphTab,#infoTab{border-bottom:0;margin-bottom:1px;padding-bottom:0;padding-right:10px}#collectionTab li,#graphTab li,#infoTab li{float:right}#collectionTab li.disabled a,#graphTab li.disabled a,#infoTab li.disabled a{cursor:not-allowed}#collectionTab a,#graphTab a,#infoTab a{background-color:#404a53;border-bottom:1px solid #666;border-top-left-radius:3px!important;border-top-right-radius:3px!important;color:#fff;font-size:13px!important;height:21px;margin-bottom:-1px;margin-right:4px;padding:2px 15px!important}#collectionTab .active>a,#graphTab .active>a,#infoTab .active>a{background-color:#fff;border-color:#888 #888 transparent!important;color:#000}#confirmCreateEdge{margin-left:20px}.collection-info-figures .icon_arangodb_info{position:relative!important;right:-4px!important}.snippet-wrap .snippet-num li{list-style:decimal-leading-zero}.snippet-no-num{list-style-type:none;margin-left:0;padding-left:0}.snippet-no-num .prettify{font-size:1.2em}.snippet-no-num .sh_number{color:#044;font-weight:100;margin-left:5px}.snippet-no-num .sh_symbol{color:#00f;font-weight:100;margin-left:5px}.snippet-no-num .sh_cbracket{color:#c7a317;font-weight:100;margin-left:5px}.snippet-no-num .sh_keyword{color:#c12dad;font-weight:100;margin-left:5px}.snippet-no-num .sh_string{color:#ce2f30;font-weight:100;margin-left:5px}.snippet-no-num .sh_array,.snippet-no-num .sh_object{color:#00f;font-weight:100;margin-left:5px}@media (max-height:490px){.social-icons{display:none}}@media (max-height:525px){.navlogo .version,.shortcut-icons{display:none}}@media (max-width:568px){#arangoLogTable .table-cell0,.breadcrumb,.document-info-div .search,.navlogo .big,.pagination-line .las-pagi,.pagination-line .pre-pagi,.social-icons{display:none}.pagination-line .arango-pagination li:first-child,.pagination-line .arango-pagination li:last-child{margin-left:0;margin-right:0}.pagination-line li a{padding:2px 4px}.login-window{padding:10px 10px 40px;width:300px}#repl-numbers,#repl-progress,#repl-ticks{width:100%!important}.dashboard-large-chart,.dashboard-medium-chart-outer:first-child{padding-right:0!important}div.dropdownInner ul label{font-size:13px}.subnavmenu a{font-size:8pt}.subViewNavbar li{font-size:8pt!important;padding:0 6px!important}.subViewNavbar li.active{height:35px}.small-label-padding{max-width:calc(100% - 2px)}.navlogo .small{display:block;height:auto;width:28px}.headerButtonBar,.navlogo .version,.primary .version,.shortcut-icons{display:none}.navbar,.navlist,.navlist li,.navmenu,.primary,.primary li{width:40px!important}.arango-collection-ul .tab{font-size:12pt;height:30px;overflow:hidden}.arango-collection-ul .tab .fa{padding-left:6px;padding-right:20px}.social-icons p{float:left;margin-left:-3px}.social-icons p .fa{font-size:16px}.footer,div.bodyWrapper{left:40px}.dashboard-bar-chart-container .dashboard-bar-chart{padding-bottom:11px}}@media (max-width:768px){.breadcrumb,.outputEditors .additional,.pagination-line .las-pagi,.pagination-line .pre-pagi{display:none}.hide-small{visibility:hidden}.pagination-line .arango-pagination li:first-child,.pagination-line .arango-pagination li:last-child{margin-left:0;margin-right:0}.pagination-line li a{padding:2px 4px}.dashboard-large-chart,.dashboard-tendency-container{box-sizing:content-box}.tendency-box-sizing .dashboard-bar-chart-container,.tendency-box-sizing .dashboard-row:last-child .dashboard-medium-chart-outer:last-child,.tendency-box-sizing .dashboard-tendency-container{margin-left:0}.tendency-box-sizing .dashboard-bar-chart-container{height:140px}.tendency-box-sizing .dashboard-bar-chart-container .dashboard-sub-bar{margin-top:-3px}}@media (min-width:569px) and (max-width:738px){.dashboard-large-chart,.dashboard-medium-chart-outer:first-child{padding-right:0!important}.document-info-div .search,.headerButtonBar span{display:none}.dashboard-bar-chart-container{padding-left:0!important;padding-right:0!important}#repl-numbers,#repl-progress,#repl-ticks{width:100%!important}.subnavmenu a{font-size:9pt}.collection-dropdown ul{width:auto!important}.arango-collection-select{display:inline-block}.dashboard-bar-chart-container .dashboard-bar-chart{padding-bottom:11px}}@media (min-width:770px) and (max-width:972px){.dashboard-tendency-container .dashboard-sub-bar{font-size:11px;height:32px;margin-bottom:10px;margin-top:-10px}.dashboard-small-chart .dashboard-sub-bar{font-size:11px;height:33px}.dashboard-small-chart .dashboard-sub-bar-title{font-size:11px;line-height:12px;margin-top:-12px}.dashboard-bar-chart-chart{margin-top:10px}.dashboard-bar-chart-container .dashboard-sub-bar{font-size:11px;margin-bottom:10px;margin-top:-16px;padding-top:18px}.dashboard-bar-chart-container .dashboard-bar-chart .dashboard-bar-chart-title .absolut{padding-top:3px}}@media (min-width:973px){.dashboard-large-chart .dashboard-sub-bar{padding-top:14px}#dataTransferDistribution .nvd3-svg,#totalTimeDistribution .nvd3-svg{padding-top:20px}#requests .small-label-padding .dashboard-small-chart .dashboard-sub-bar{font-size:12px;padding-top:30px}#requests .small-label-padding:last-child .dashboard-small-chart .dashboard-sub-bar{margin-bottom:1px}}.document-info-div{min-height:0}.document-content-div{margin-top:10px}.document-info{background-color:#fff;border-radius:3px;margin-bottom:8px;margin-top:-13px;min-height:65px;padding:5px}.document-info .document-info-container{clear:both;width:100%}.document-info .document-info-container .document-inner-info-container{float:left;margin-left:10px;margin-top:5px}.document-info .document-info-container .document-inner-info-container .document-attribute{margin-right:20px}.document-info .document-info-container .document-inner-info-container .document-attribute div{float:left}.document-info .document-bold-font{min-width:55px}.document-info .document-thin-font{color:#2ecc71}.document-info .document-type-container div{float:left}.document-info .document-type-container #document-id{margin-left:10px}.document-link:hover{cursor:pointer;text-decoration:underline}.jsoneditor .tree div{font-size:11pt}#progressPlaceholder{background-color:rgba(0,0,0,.4);bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999}.progress-view{background-color:#363c39;border-radius:2px;color:#fff;height:188px;left:50%;margin:-150px 0 0 -125px;position:absolute;top:38%;width:250px}.progress-view .progress-content{border:5px solid #fff;border-radius:3px}.progress-view .progress-content .fa-spinner{font-size:100pt}.progress-view .progress-message{background-color:#fff;border-radius:0 0 2px 2px;color:#fff;font-weight:200;height:44px;margin-top:-25px;padding-top:3px;text-align:center}.progress-view .progress-text{background:#fff;color:#000;float:left;font-weight:100;height:25px;left:-5px;margin-left:5px;margin-top:10px;position:relative;top:-10px;width:100%}.progress-view .progress-action{float:right;margin-right:5px;margin-top:5px}#progressPlaceholderIcon{color:#2ecc71;float:left;font-size:22px;margin-left:10px;margin-top:7px}.pong-spinner{height:100px;margin:50px auto;position:relative;width:200px}.pong-spinner i{animation:ball 2s infinite linear;background:#8cdb8b;border-radius:10px;height:10px;position:absolute;width:10px}.pong-spinner:after,.pong-spinner:before{animation:left-player 2s infinite linear;background:#8cdb8b;height:30px;position:absolute;width:5px}.pong-spinner:after{animation:right-player 2s infinite linear;right:0}@keyframes left-player{0%,100%{top:0}50%{top:70px}}@keyframes right-player{0%,100%{top:70px}50%{top:0}}@keyframes ball{0%,100%{left:5px;top:20px}25%,75%{left:190px;top:50px}50%{left:5px;top:80px}}#spotlightPlaceholder{background-color:rgba(0,0,0,.25);bottom:0;left:0;position:fixed;right:0;top:0;z-index:2000}.spotlightWrapper{height:50px;left:25%;position:absolute;top:115px;width:50%}.spotlightWrapper .twitter-typeahead{width:100%}.spotlightWrapper .tt-highlight{color:#5bc0de;font-weight:400}.spotlightWrapper input{box-sizing:border-box;height:40px!important}.spotlightWrapper .tt-dataset{clear:both}.spotlightWrapper .tt-menu{background:#3d4246;border-radius:3px;color:#fff;height:300px;overflow:auto;width:100%}.spotlightWrapper .tt-menu .tt-suggestion:hover{background-color:#404a53;cursor:pointer}.spotlightWrapper .tt-menu .header-type{background:#32373b;clear:both;color:#fff;height:30px;padding-left:5px}.spotlightWrapper .tt-menu .header-type h4{float:left;margin:4px 0 0;padding:0}.spotlightWrapper .tt-menu .header-type .fa{font-size:12pt;margin-left:6px;margin-top:6px}.spotlightWrapper .tt-menu .header-type .type{background-color:#5bc0de;border-radius:3px;float:right;margin:4px;padding:0 5px}.spotlightWrapper .tt-menu .tt-cursor{background-color:#fff;color:#000}.spotlightWrapper .tt-menu .tt-selectable{padding-left:10px}.spotlightWrapper .typeahead{background:#3d4246;border:0 solid #3d4246;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;font-size:22px;height:30px;line-height:30px;outline:transparent 0;padding:8px 12px;width:100%}.graphLabel{font-size:11pt;font-weight:600;margin-top:-25px;opacity:.5;padding-bottom:20px;text-align:center;text-transform:uppercase}.cluster-graphs>div .graphWrapper{border:1px solid rgba(140,138,137,.25);margin-left:-1px;margin-top:-1px;padding:20px 20px 10px}.cluster-graphs>div .graphWrapper .nv-controlsWrap{display:none}.cluster-graphs>div .graphWrapper .nv-legendWrap{margin-bottom:10px}.cluster-graphs>div .graphWrapper svg{height:250px;margin-left:-17px}.cluster-values{margin-top:-13px}.cluster-values>div .valueWrapper{border:1px solid rgba(140,138,137,.25);margin-left:-1px;margin-top:-1px}.cluster-values>div .valueWrapper .value{color:#000;font-size:24pt;line-height:150px;text-align:center}.cluster-values>div .valueWrapper .value.positive{color:#2ecc71}.cluster-values>div .valueWrapper .value.warning{color:#f1c40f}.cluster-values>div .valueWrapper .value.negative{color:#e74c3c}.cluster-values>div .valueWrapper div:first-child{height:150px}.application-detail-view .headerBar .subMenuEntries{margin-left:5px;margin-top:-2px}.application-detail-view .headerBar .headerButtonBar{position:absolute;right:5px}.application-detail-view section.info{float:left;padding:13px 0 0}.application-detail-view section.info .header{height:200px;margin-bottom:0;position:absolute;width:calc(100% - 20px)}.application-detail-view section.info .header div.header-icon-container{border:2px solid #d9dbdc;border-radius:150px;height:182px;left:0;margin:0 auto;overflow:hidden;width:182px}.application-detail-view section.info .header div.header-icon-container img.icon{background-color:#fff;border-radius:3px;box-sizing:border-box;height:100%;padding:10px;width:100%}.application-detail-view section.info .header .information{background-color:#fff;border:1px solid #d9dbdc;border-radius:3px;margin-bottom:20px;padding:10px 10px 0;position:relative;top:35px;width:calc(100% - 30px)}.application-detail-view section.info .header .information span{display:block;float:left;font-weight:500;width:90px}.application-detail-view section.info .header .information a{margin-right:10px}.application-detail-view section.info .header .header_right{left:190px;margin:40px auto 0;width:137px}.application-detail-view section.info .header .header_right input.delete,.application-detail-view section.info .header .header_right input.switch-docu,.application-detail-view section.info .header .header_right input.switch-mode,.application-detail-view section.info .header .header_right input.upgrade{margin-top:7.83px;padding-left:10px;padding-right:10px}.application-detail-view section.info .header .header_right input{width:130px}.application-detail-view section.info .header .header_left{margin:0 auto;padding-left:10px;padding-top:1px;text-align:center;width:33.3%}.application-detail-view section.info .header .header_left input{margin-left:0;margin-top:-4px}.application-detail-view section.info .header .header_left .header_line{margin-top:10px}.application-detail-view section.info .header .header_left .header_line p{font-size:14pt;font-weight:200}.application-detail-view section.info .header .header_left .header_line h3{float:left;margin-bottom:0;margin-top:0;padding-right:5px;width:100%}.application-detail-view section.info .header .header_left .header_line .license,.application-detail-view section.info .header .header_left .header_line .mode,.application-detail-view section.info .header .header_left .header_line .version{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#404a53;border:1px solid rgba(140,138,137,.25);color:#fff;font-size:13px;font-weight:300;padding:2px 8px;position:relative;top:-3px}.application-detail-view section.info .header .header_left .header_line .production{color:#2ecc71}.application-detail-view section.info .header .header_left .header_line .development{color:#f1c40f}.application-detail-view section.info .header .header_left .header_line:after{clear:both;content:'';display:table}.application-detail-view section.info .header .header_left .header_line_bottom>div{display:table;left:-3px;margin:-10px auto 0;position:absolute;width:100%}.application-detail-view section.info .header .header_left .header_line_bottom h3{width:auto}.application-detail-view section.info .header .header_left .header_line_bottom .inner{display:table;margin:0 auto;padding-left:15px;width:auto}.application-detail-view section.info .header .app-warning{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#e74c3c;color:#fff;padding:6px 8px}.application-detail-view section.info .header .app-warning h4,.application-detail-view section.info .header .app-warning p{font-size:1em;margin:0}.application-detail-view aside.meta{background-color:#fff;border:1px solid rgba(140,138,137,.25);border-radius:3px;clear:right;float:right;height:182px;margin-top:12px;max-height:182px;max-width:182px;overflow-x:hidden;position:relative;width:182px}.application-detail-view aside.meta dl{margin-bottom:0;margin-top:0;padding-left:7px;padding-top:5px}main{background-color:#fff;border-radius:3px}main .app-info{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background:#5bc0de;color:#fff;margin:10px;padding:6px 8px}main .app-info h4,main .app-info p{font-size:1em;margin:0}main .swagger iframe{border:0;border-radius:3px;height:100%;width:100%}main .readme{background:#fff;padding:1em 2em}main .readme .buttons{background:#fff;height:30px;position:relative;right:-15px;width:100%}.centralContent .contentIn table tr,.centralContent .modal-body .arango-table tr,.centralContent .modal-body table tr{height:40px}main .readme .buttons button{float:right}main .readme .modal-body{border-bottom:1px solid rgba(140,138,137,.25);border-left:0;border-right:0;border-top:0;padding-bottom:15px}main .readme .modal-footer{border-bottom:0;border-left:0;border-right:0;border-top:1px solid rgba(140,138,137,.25);padding-right:0}main .readme h1{float:left;text-align:left;width:100%}.tests-result .stack{border-color:#e74c3c;color:#e74c3c;font-size:12px;line-height:1.5;margin:5px 0}.tests-result-stats .fail,.tests-result-stats .pass,.tests-result-stats .pending{padding:0 2px}.tests-result-spec{margin-bottom:0}.tests-result-spec-suites .tests-result-spec-suites{margin-left:20px}.tests-result-spec-suites dd{margin-bottom:20px;margin-left:0}.tests-result-spec-tests{margin-left:20px}.tests-result-spec-test-title{padding-left:20px}.tests-result-spec-test-title .fa{line-height:18px;margin-left:-20px;margin-top:2px;position:absolute}.tests-result-spec-test-title .fa-circle{font-size:50%;margin-left:-16px}.tests-result .pass{color:#2ecc71}.tests-result .fail{color:#e74c3c}.tests-result .pending{color:#666}#swagger #jsonLink{color:rgba(64,74,83,.8);font-weight:500;opacity:.5;position:absolute;right:33px;z-index:99}#swagger #jsonLink:hover{cursor:pointer;opacity:1}#indexHeaderContent{padding:0}#indexHeaderContent #collectionEditIndexTable th,#indexHeaderContent .figuresHeader th{padding-left:10px}.new-index-view{padding:20px}.centralContent .createModalDialog{background-color:#fff;outline:0}.centralContent .contentIn{background:#fff;border:1px solid rgba(64,74,83,.2);border-radius:2px;padding:20px}.centralContent .contentIn table{border:0}.centralContent .contentIn table select{margin-top:-10px}.centralContent .modal-body{border:1px solid rgba(64,74,83,.2);color:#000;max-height:none;padding:0}.centralContent .modal-body .arango-table tr th,.centralContent .modal-body table tr th{padding-left:10px}.centralContent .modal-body .figuresHeader{background-color:#404a53;color:#fff}.centralContent .modal-body .icon_arangodb_info{margin-left:10px;right:inherit}.centralContent .modal-body .modalSelect{margin-top:0}.centralContent .modal-body .tab-pane{padding-top:0!important}.centralContent .modal-footer{background-color:transparent;border-bottom:1px solid rgba(64,74,83,.2);border-left:1px solid rgba(64,74,83,.2);border-radius:0;border-right:1px solid rgba(64,74,83,.2);border-top:0;box-shadow:none;padding:8px}.centralContent .figures1,.centralContent .figures2,.centralContent .figures3{margin-left:0!important;margin-top:40px;width:100%}.centralContent .figures1 .icon_arangodb_info,.centralContent .figures2 .icon_arangodb_info,.centralContent .figures3 .icon_arangodb_info{position:relative;text-align:center}.pure-table-body{overflow-x:none;overflow-y:auto}.pure-table-body .selected-row{background-color:rgba(46,204,113,.2)}.pure-table-body .dataTables_empty{padding-left:10px}.pure-table-body .heading{font-weight:600;height:40px;padding-bottom:10px;padding-top:10px}.pure-table{padding-left:20px;padding-right:20px}.pure-table.no-padding{padding-left:0;padding-right:0}.pure-table.no-padding .pure-table-row div div{padding-left:2.5px}.pure-table.no-padding.pure-table-header .pure-table-row>div:first-child .title{padding-left:10px}.pure-table.pure-title .pure-table-row{color:#717d90;font-weight:600}.pure-table.pure-title .pure-table-row:hover{background-color:#fff;cursor:default}.pure-table.pure-title .pure-table-row:last-child{border-bottom:1px solid rgba(140,138,137,.25);margin-bottom:0}.pure-table .pure-table-row{border-bottom:1px solid rgba(140,138,137,.25);color:#8a969f;font-weight:100;line-height:40px;width:100%}.pure-table .pure-table-row .padding-left{padding-left:30px}.pure-table .pure-table-row .padding-right{padding-right:30px}.pure-table .pure-table-row .actions i{margin-left:5px;margin-right:5px}.pure-table .pure-table-row:hover{background-color:#eff0eb;cursor:pointer}.pure-table .pure-table-row.disabled:hover{background-color:#fff;cursor:not-allowed}.pure-table .pure-table-row.noHover:hover{background-color:#fff;cursor:default}.pure-table .pure-table-row .left{text-align:left}.pure-table .pure-table-row .right{text-align:right}.pure-table .pure-table-row .mid{text-align:center}.pure-table .pure-table-row .positive{color:#2ecc71}.pure-table .pure-table-row .negative{color:#e74c3c}.pure-table .pure-table-row .warning{color:#f1c40f}.pure-table .pure-table-row .fa.fa-check-circle{color:#2ecc71}.pure-table .pure-table-row .fa.fa-exclamation-circle{color:#e74c3c}.pure-table .pure-table-row:last-child{border-bottom:0;margin-bottom:10px}.hotkeysList .hotkeysLabel{clear:both;color:#000;font-size:16px;font-weight:400}.hotkeysList .hotkeysContent{padding-left:10px}.hotkeysList li{line-height:25px}.hotkeysList li .hotkeysDiv{float:left}.hotkeysList .hotkeysicons{background-color:#686766;border:1px solid #000;border-radius:2px;color:#fff;display:inline;height:19px;margin-left:10px;text-align:center;width:19px}.arango-table tbody tr:nth-child(even),.arango-table thead{background-color:#fff}.hotkeysContentLabel{float:left;width:30%}.coords-dbs .pure-table-row.noHover,.coords-dbs .pure-table-row.noHover:hover{cursor:not-allowed!important}#nodesContent{padding-top:0}#nodesContent .pure-table-body .fa-check-circle,#nodesContent .pure-table-body .fa-exclamation-circle{font-size:15pt}.shardFollowers span:hover,.shardLeader span:hover{color:#000;cursor:pointer}.arango-table{width:100%}.arango-table thead th{border-bottom:1px solid #c2c2c2;font-weight:400;height:43px}.arango-table tbody tr:nth-child(odd){background:rgba(104,103,102,.05)}.arango-table tbody td{padding:10px 18px}.arango-tabbar{height:27px;width:100%}.arango-tabbar button{background-color:#404a53;border:0;border-top-left-radius:2px;border-top-right-radius:2px;color:#fff;float:right;font-weight:100;height:27px;margin-right:5px;width:82px}.arango-tabbar button:first-child{margin-right:10px}.arango-tabbar .arango-active-tab{background-color:#fff;border-bottom:1px solid #fff;border-left:1px solid #c2c2c2;border-right:1px solid #c2c2c2;border-top:1px solid #c2c2c2;color:#000;height:28px;margin-bottom:-1px}.subViewNavbar{border-bottom:2px solid #d9dbdc;height:40px;list-style:none;width:100%;z-index:1000;margin:-57px 0 15px -15px}.subViewNavbar li{cursor:pointer;float:left;font-size:10pt;line-height:30px;margin-bottom:5px;margin-top:5px;padding:0 12px}.subViewNavbar li.active{border-bottom:2px solid #77cb99;cursor:default;padding-bottom:5px}.subViewNavbar li.active a{color:#000}.subViewNavbar li.disabled{cursor:not-allowed}.subViewNavbar li.disabled:hover a{color:rgba(51,51,51,.6)}.subViewNavbar li:hover a{color:#333;transition:all .2s ease-in}.subViewNavbar li a,.subnavmenu ul li:hover a{-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in}.subViewNavbar li a{color:rgba(51,51,51,.6);transition:all .2s ease-in}.subnavmenu{background-color:#fff;height:auto}.subnavmenu .bar-img{background:0 0;border-radius:25px;margin-right:5px;width:25px}.subnavmenu .bar-img:hover{cursor:pointer}.subnavmenu ul{list-style:none;margin:0}.subnavmenu ul.top{background-color:#404a53;height:60px;width:100%}.subnavmenu ul.top li{padding:0 10px 0 0}.subnavmenu ul.bottom{border-bottom:2px solid #d9dbdc;height:40px;width:100%;z-index:1000}.subnavmenu ul.bottom li{float:left;padding:0 12px}.subnavmenu ul li{cursor:pointer;font-size:10pt;line-height:30px;margin-bottom:5px;margin-top:5px}.subnavmenu ul li.active{border-bottom:2px solid #77cb99;cursor:default;padding-bottom:5px}.subnavmenu ul li.active a{color:#000}.subnavmenu ul li.disabled{cursor:not-allowed}.subnavmenu ul li.disabled:hover a{color:rgba(51,51,51,.6)}.subnavmenu ul li:hover a{color:#333;transition:all .2s ease-in}.subnavmenu ul li a{color:rgba(51,51,51,.6);-moz-transition:all .2s ease-in;-o-transition:all .2s ease-in;-webkit-transition:all .2s ease-in;transition:all .2s ease-in}.subnavmenu .infoEntry{line-height:45px}.subnavmenu .infoEntry a{margin-right:5px}.subnavmenu .infoEntry a.default-icon i{color:#fff}.subnavmenu .infoEntry a.default-icon i:hover{color:#2ecc71;cursor:pointer}.subnavmenu .infoEntry:hover{cursor:default}.subnavmenu .infoEntry:hover .info{-webkit-touch-callout:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;user-select:none;color:#fff}.subnavmenu .infoEntry.positive .health-icon,.subnavmenu .infoEntry.positive .health-state,.subnavmenu .infoEntry.positive .state{color:#2ecc71}.subnavmenu .infoEntry.negative .health-icon,.subnavmenu .infoEntry.negative .health-state{color:#e74c3c}.subnavmenu .icon,.subnavmenu .info,.subnavmenu .state{color:rgba(255,255,255,.95);display:block;float:left;font-weight:300;max-width:150px;overflow:hidden;text-transform:uppercase}.subnavmenu .icon span,.subnavmenu .info span,.subnavmenu .state span{color:#2ecc71}.subnavmenu .icon span:hover,.subnavmenu .info span:hover,.subnavmenu .state span:hover{cursor:pointer}.subnavmenu #dbStatus{padding-right:20px}.subBarDropdown{background:#fff;border:1px solid rgba(64,74,83,.2);display:none;margin-top:55px!important;min-width:200px;position:absolute;z-index:9999}.subBarDropdown li{padding:0}.subBarDropdown .dropdown-header{background-color:#77cb99;cursor:default;margin:0 -1px;padding:0!important}.subBarDropdown .dropdown-header img{border:3px solid #6dba8c;border-radius:75px;display:block;margin:10px auto 0;width:75px}.subBarDropdown .dropdown-header p,.subBarDropdown .dropdown-header small{color:#fff;text-align:center}.subBarDropdown .dropdown-header small{display:block;margin-top:-10px}.subBarDropdown .dropdown-footer{padding:0 5px 0 0!important}.subBarDropdown .dropdown-footer button{margin-bottom:5px;margin-top:-4px}.helpUs iframe{left:0;position:absolute;right:0;top:101px}#community,#documentation{padding:20px 40px 40px}#community h4,#documentation h4{font-weight:400}#community a,#documentation a{color:#3498db}#community .pure-u-1-1,#documentation .pure-u-1-1{font-weight:100}#community .center,#documentation .center{margin-top:10px;text-align:center}#community ul,#documentation ul{list-style-type:none;margin:0 0 10px 10px}#community .menu li:first-child,#community .menu li:last-child,#documentation .menu li:first-child,#documentation .menu li:last-child{padding-top:20px}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){div .bigtile .collection-type-icon,div .tile .collection-type-icon{margin-left:0!important;position:relative!important;top:-58px!important}.tile .icon_arangodb_edge5{margin-left:0!important;position:relative!important;top:-67px!important}}.arangoDataTable{display:block;position:relative;width:100%}.arangoDataTable tbody{display:inline-block;max-height:200px;overflow-y:auto;position:absolute;width:100%}.arangoDataTable thead{background-color:#fff!important;display:inline-block;font-weight:400!important;text-align:left;width:100%}.arangoDataTable thead td{overflow:hidden}.arangoDataTable thead th{border-bottom:0;cursor:default!important;font-weight:400!important;padding:10px 14px!important}.arangoDataTable thead tr{border-bottom:1px solid #c2c2c2}.arangoDataTable tr{cursor:pointer}.arangoDataTable td{padding:8px 18px!important}.arangoDataTable .key{font-weight:100;margin-top:4px;overflow:hidden}.arangoDataTable .dataTable .noPointer tr{cursor:default}.arangoDataTable .selected-row{background-color:#2ecc71!important}.arangoDataTable .selected-row div,.arangoDataTable .selected-row li,.arangoDataTable .selected-row span{color:#fff!important}.api-container #resources>li.resource:nth-child(even),table.arangoDataTable tr.even{background-color:#fff}.api-container #resources>li.resource:nth-child(odd),table.arangoDataTable tr.odd{background-color:rgba(104,103,102,.05)}#tableDiv table.dataTable td{padding:12px 18px!important}#documentsTableID_filter,#documentsTableID_length{display:none}#documentsTableID_wrapper{padding-bottom:0!important}.snippet-no-num{font-size:1em;font-weight:400;margin-bottom:0}.cuttedContent,.prettify ul li,.writeable a{overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}.totalDocuments{color:#666;float:left;font-weight:100;margin-top:-37px!important;padding-left:10px}.prettify{border:none!important;font-size:1em!important;margin:0!important;padding:0!important}.edit-index-table tfoot,.newIndexClass table{border-top:1px solid #f7f3f2}table .sorting{background:0 0!important}.new-index-view input[type=checkbox]{float:left}.new-index-view table tr{width:600px!important}.new-index-view table tr th:last-child{width:50px!important}.new-index-view table th{font-weight:300!important;width:200px!important}#documentsDiv{padding-top:0}#documentsDiv .pure-table .snippet-container{margin-top:10px}.edit-index-table{margin-top:5px;min-width:auto!important}.edit-index-table th{padding-bottom:5px;padding-left:5px;padding-top:5px}.edit-index-table .icon_arangodb_locked{color:rgba(0,0,0,.5);cursor:default;font-size:20px;margin-left:10px}.index-button-bar i:hover,.queryline .fa-info-circle:hover{cursor:pointer}.edit-index-table .icon_arangodb_roundminus{font-size:20px;margin-left:10px}.edit-index-table tfoot i{color:#2ecc71;font-size:19px;margin-left:22px;margin-top:5px}.edit-index-table tfoot i:hover{color:#58d68d;cursor:pointer}.contentIn .arangoicon{font-size:25px;position:relative;top:-3px!important}#collectionEditIndexTable thead{border-bottom:1px solid #e5e5e5}.newIndexClass table{margin-bottom:60px}.newIndexClass table select{margin-right:7px}.newIndexClass table .arangoicon{float:right;margin-right:-12px;margin-top:5px}.index-button-bar{float:right}.index-button-bar i{color:#2ecc71;font-size:16pt;margin-right:43px}.index-button-bar #cancelIndex{margin-right:13px}.docsFirstCol,.docsSecCol,.docsThirdCol{border:0!important}.docsFirstCol{height:26px;width:80%}.docsSecCol{height:26px;min-width:400px!important;width:10%}.docsThirdCol{height:26px}.add-filter-item{margin-left:5px}.add-filter-item i{margin-top:0!important}.upload-indicator{display:none;margin-top:-3px;padding-right:10px}.documentsDropdown .dropdownImport,.documentsDropdown .headerDropdown{clear:both;margin-bottom:10px}.documents-size{background-color:#fff!important;border:1px solid #e5e5e5;border-radius:0;box-shadow:none;color:#000;float:right;font-size:11pt;font-weight:300;height:28px;line-height:18px;margin-left:10px;margin-top:0;width:115px}.ace_error{background:0 0!important}#exportHeader .fa-exclamation-circle{color:#fff;font-size:13pt;margin-right:10px}.totalDocuments:hover{color:#000}.ajax-file-upload-statusbar{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;border:1px solid rgba(0,0,0,.7);margin:10px 10px 5px 5px;padding:5px;width:420px}.ajax-file-upload-filename{color:grey;height:auto;margin:0 5px 5px 10px;width:100%}.ajax-file-upload-progress{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;border:1px solid #d9d9d9;display:inline-block;margin:0 10px 5px;padding:1px;position:relative;width:250px}.ajax-file-upload-bar{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;background-color:rgba(0,0,0,.7);color:#fff;height:20px;width:0}.ajax-file-upload-percent{display:inline-block;left:48%;position:absolute;top:3px}.ajax-file-upload-red{font-size:13px;font-weight:400;margin-right:5px;padding:4px 15px;vertical-align:top}.ajax-file-upload{display:inline-block;font-size:16px;font-weight:700;height:25px;margin:0 10px 10px 0;padding:6px 10px 4px}.ajax-upload-dragdrop{border:1px dotted #8f8d8c;color:#736b68;padding:10px 10px 0;text-align:left;vertical-align:middle;width:506px}.ajax-upload-dragdrop span{position:relative;top:-22px}/*! Animate.css - http://daneden.me/animate Licensed under the MIT license - http://opensource.org/licenses/MIT diff --git a/js/apps/system/_admin/aardvark/APP/frontend/build/style-minified.css.gz b/js/apps/system/_admin/aardvark/APP/frontend/build/style-minified.css.gz index ecc46a59c19eb4c7955796b2bca11dc1faf1059a..5d2c4334743a97f194f6a4d03507b47476de32b5 100644 GIT binary patch delta 16092 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 delta 15975 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 Vy14;GvopJ40SJlViTLI70|0Ud8J_?E diff --git a/js/apps/system/_admin/aardvark/APP/frontend/build/style.css.gz b/js/apps/system/_admin/aardvark/APP/frontend/build/style.css.gz index 62536a3dcb4cda9c3241d9784ae852c48c1ca373..dc331df452de3b00bc7c9b1e265761dfce66e071 100644 GIT binary patch delta 16873 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 delta 16804 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 Xl0fNncuD*gSm^%)FK>XCq!I-HhZHx= From eaeafcaedd6f207788b14f6e747301f558c0e7bd Mon Sep 17 00:00:00 2001 From: jsteemann Date: Mon, 18 Jul 2016 09:44:38 +0200 Subject: [PATCH 06/10] fixed segfault in V8, by backporting https://bugs.chromium.org/p/v8/issues/detail?id=5033 --- 3rdParty/V8/V8-5.0.71.39/src/crankshaft/hydrogen.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/3rdParty/V8/V8-5.0.71.39/src/crankshaft/hydrogen.cc b/3rdParty/V8/V8-5.0.71.39/src/crankshaft/hydrogen.cc index b6fdd3a315..b817399b6c 100644 --- a/3rdParty/V8/V8-5.0.71.39/src/crankshaft/hydrogen.cc +++ b/3rdParty/V8/V8-5.0.71.39/src/crankshaft/hydrogen.cc @@ -8444,6 +8444,10 @@ bool HOptimizedGraphBuilder::TryInline(Handle target, TraceInline(target, caller, "parse failure"); return false; } + if (target_shared->dont_crankshaft()) { + TraceInline(target, caller, "ParseAndAnalyze found incompatibility"); + return false; + } if (target_info.scope()->num_heap_slots() > 0) { TraceInline(target, caller, "target has context-allocated variables"); From 83a9763cc9a7824db45cd0b8718bb2770bf82301 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Mon, 18 Jul 2016 10:15:25 +0200 Subject: [PATCH 07/10] added test for V8 segfault --- CHANGELOG | 12 +++- js/common/tests/shell/shell-v8.js | 114 ++++++++++++++++++++++++++++++ 2 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 js/common/tests/shell/shell-v8.js diff --git a/CHANGELOG b/CHANGELOG index e16e82337d..b574c64db2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -27,9 +27,19 @@ devel `@arangodb/foxx/graphql` module and the bundled `graphql-sync` dependency -v3.0.3 (XXXX-XX-XX) +v3.0.4 (XXXX-XX-XX) ------------------- +* fixed segfault in V8, by backporting https://bugs.chromium.org/p/v8/issues/detail?id=5033 + + +v3.0.3 (2016-07-17) +------------------- + +* fixed issue #1942 + +* fixed issue #1941 + * fixed array index batch insertion issues for hash indexes that caused problems when no elements remained for insertion diff --git a/js/common/tests/shell/shell-v8.js b/js/common/tests/shell/shell-v8.js new file mode 100644 index 0000000000..313084539b --- /dev/null +++ b/js/common/tests/shell/shell-v8.js @@ -0,0 +1,114 @@ +/*jshint globalstrict:false, strict:false */ +/*jshint -W034, -W098, -W016 */ +/*global assertTrue */ + +//////////////////////////////////////////////////////////////////////////////// +/// @brief test v8 +/// +/// @file +/// +/// DISCLAIMER +/// +/// Copyright 2010-2012 triagens GmbH, Cologne, Germany +/// +/// 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. +/// +/// Copyright holder is triAGENS GmbH, Cologne, Germany +/// +/// @author Jan Steemann +/// @author Copyright 2012, triAGENS GmbH, Cologne, Germany +//////////////////////////////////////////////////////////////////////////////// + +var jsunity = require("jsunity"); +var console = require("console"); + +//////////////////////////////////////////////////////////////////////////////// +/// @brief test crash resilience +//////////////////////////////////////////////////////////////////////////////// + +function V8CrashSuite () { + 'use strict'; + + return { + +//////////////////////////////////////////////////////////////////////////////// +/// @brief set up +//////////////////////////////////////////////////////////////////////////////// + + setUp : function () { + }, + +//////////////////////////////////////////////////////////////////////////////// +/// @brief tear down +//////////////////////////////////////////////////////////////////////////////// + + tearDown : function () { + }, + +//////////////////////////////////////////////////////////////////////////////// +/// @brief https://bugs.chromium.org/p/v8/issues/detail?id=5033 +//////////////////////////////////////////////////////////////////////////////// + + testTypeFeedbackOracle : function () { + "use strict"; + + var test = function () { + var t = Date.now(); + var o = { + ['p'] : 1, + t + }; + }; + + for (var n = 0; n < 100000; n++) { + test(); + } + + assertTrue(true); + }, + +//////////////////////////////////////////////////////////////////////////////// +/// @brief https://bugs.chromium.org/p/v8/issues/detail?id=5033 +//////////////////////////////////////////////////////////////////////////////// + + testTypeFeedbackOracle2 : function () { + "use strict"; + + var test = function () { + var random = 0 | Math.random() * 1000; + var today = Date.now(); + var o = { + ['prop_' + random] : today, + random, + today + }; + }; + + console.time('test'); + for (var n = 0; n < 100000; n++) { + test(); + } + console.timeEnd('test'); + + assertTrue(true); + } + }; +} + +//////////////////////////////////////////////////////////////////////////////// +/// @brief executes the test suite +//////////////////////////////////////////////////////////////////////////////// + +jsunity.run(V8CrashSuite); + +return jsunity.done(); From 85f02ddc278a9ce7cff65a8da59434247e8d29b0 Mon Sep 17 00:00:00 2001 From: jsteemann Date: Mon, 18 Jul 2016 10:24:16 +0200 Subject: [PATCH 08/10] eshint --- js/common/tests/shell/shell-v8.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/js/common/tests/shell/shell-v8.js b/js/common/tests/shell/shell-v8.js index 313084539b..11c029612b 100644 --- a/js/common/tests/shell/shell-v8.js +++ b/js/common/tests/shell/shell-v8.js @@ -1,5 +1,6 @@ /*jshint globalstrict:false, strict:false */ /*jshint -W034, -W098, -W016 */ +/*eslint no-useless-computed-key: "off"*/ /*global assertTrue */ //////////////////////////////////////////////////////////////////////////////// @@ -62,6 +63,7 @@ function V8CrashSuite () { testTypeFeedbackOracle : function () { "use strict"; + // code below is useless, but it triggered a segfault in V8 code optimization var test = function () { var t = Date.now(); var o = { @@ -74,6 +76,7 @@ function V8CrashSuite () { test(); } + // simply need to survive the above code assertTrue(true); }, @@ -84,6 +87,7 @@ function V8CrashSuite () { testTypeFeedbackOracle2 : function () { "use strict"; + // code below is useless, but it triggered a segfault in V8 code optimization var test = function () { var random = 0 | Math.random() * 1000; var today = Date.now(); @@ -99,7 +103,8 @@ function V8CrashSuite () { test(); } console.timeEnd('test'); - + + // simply need to survive the above code assertTrue(true); } }; From 306ea79e1814a5cebe7f4e5935958b834837320b Mon Sep 17 00:00:00 2001 From: jsteemann Date: Mon, 18 Jul 2016 10:38:24 +0200 Subject: [PATCH 09/10] remove unused script --- Installation/travisCI/pack-precompiled.sh | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 Installation/travisCI/pack-precompiled.sh diff --git a/Installation/travisCI/pack-precompiled.sh b/Installation/travisCI/pack-precompiled.sh deleted file mode 100755 index 68a50f9320..0000000000 --- a/Installation/travisCI/pack-precompiled.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -V8_VERSION=4.3.61 - -tar cvzf precompiled-libraries-${V8_VERSION}.tar.gz \ - .v8-build-64 \ - 3rdParty/V8-${V8_VERSION}/include \ - 3rdParty/V8-${V8_VERSION}/out/x64.release/obj.target/tools/gyp \ - 3rdParty/V8-${V8_VERSION}/third_party/icu/source/common \ - 3rdParty/V8-${V8_VERSION}/third_party/icu/source/i18n \ - 3rdParty/V8-${V8_VERSION}/third_party/icu/source/io \ - 3rdParty/V8-${V8_VERSION}/out/x64.release/obj.target/third_party/icu From dc51d9dea5017155efa3896d145f8878912a7058 Mon Sep 17 00:00:00 2001 From: Jan Steemann Date: Mon, 18 Jul 2016 10:55:52 +0200 Subject: [PATCH 10/10] issue #1944: nicer error logging in console.log() --- js/common/bootstrap/modules/console.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/common/bootstrap/modules/console.js b/js/common/bootstrap/modules/console.js index 5ea45bc0d0..01e21fc866 100644 --- a/js/common/bootstrap/modules/console.js +++ b/js/common/bootstrap/modules/console.js @@ -98,6 +98,8 @@ global.DEFINE_MODULE('console', (function () { if (typeof arg === 'object') { if (arg === null) { arg = 'null'; + } else if (arg instanceof Error) { + arg = String(arg); } else if (arg instanceof Date || arg instanceof RegExp) { arg = String(arg); } else if (Object.prototype.isPrototypeOf(arg) || Array.isArray(arg)) {