Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id EA3C0200C33 for ; Sat, 25 Feb 2017 00:18:33 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E8E43160B69; Fri, 24 Feb 2017 23:18:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 806EA160B9E for ; Sat, 25 Feb 2017 00:18:28 +0100 (CET) Received: (qmail 9902 invoked by uid 500); 24 Feb 2017 23:18:27 -0000 Mailing-List: contact commits-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@drill.apache.org Delivered-To: mailing list commits@drill.apache.org Received: (qmail 8474 invoked by uid 99); 24 Feb 2017 23:18:27 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Feb 2017 23:18:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D482ADFC1C; Fri, 24 Feb 2017 23:18:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: adi@apache.org To: commits@drill.apache.org Date: Fri, 24 Feb 2017 23:19:01 -0000 Message-Id: <8de9208742a74145a1ca695864038d66@git.apache.org> In-Reply-To: <857d5097b369466591aa3f82b1bbca66@git.apache.org> References: <857d5097b369466591aa3f82b1bbca66@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [36/51] [abbrv] [partial] drill-site git commit: Revert "Website update" archived-at: Fri, 24 Feb 2017 23:18:34 -0000 http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html ---------------------------------------------------------------------- diff --git a/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html b/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html deleted file mode 100644 index 8ae589b..0000000 --- a/_site/blog/2015/07/23/drill-tutorial-at-nosql-now-2015/index.html +++ /dev/null @@ -1,188 +0,0 @@ - - - - - - - - - -Drill Tutorial at NoSQL Now! 2015 - Apache Drill - - - - - - - - - - - - - - - - - - -
-
- - - - - -
-
-
-

Drill Tutorial at NoSQL Now! 2015

-
- -
-
- -
- - -

- Add to Calendar - 08-20-2015 13:00:00 - 08-20-2014 16:15:00 - 6 - Drill Tutorial at NoSQL Now! 2015 - NoSQL Now! 2015 is hosting a 3-hour tutorial on Apache Drill. Drill committers Tomer Shiran and Jacques Nadeau will demonstrate how to analyze NoSQL data with SQL queries and standard BI tools. - San Jose Convention Center, 150 West San Carlos St, San Jose, CA 95113 USA - Tomer Shiran - tshiran\@apache.org - false - MM-DD-YYYY -

- -

NoSQL Now! 2015 will be hosting a 3-hour tutorial on Apache Drill. Jacques Nadeau and I will provide a deep dive on Drill and demonstrate how to analyze NoSQL data with SQL queries and standard BI tools. We would love to see you there!

- -

When you register, use the coupon code "SPEAKER" for a 20% discount on the registration fees.

- -
-
- - - -
- - -
-

- - - - - - http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/10/16/drill-1.2-released/index.html ---------------------------------------------------------------------- diff --git a/_site/blog/2015/10/16/drill-1.2-released/index.html b/_site/blog/2015/10/16/drill-1.2-released/index.html deleted file mode 100644 index 24fca88..0000000 --- a/_site/blog/2015/10/16/drill-1.2-released/index.html +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - -Drill 1.2 Released - Apache Drill - - - - - - - - - - - - - - - - - - -
-
- - - - - -
-
-
-

Drill 1.2 Released

-
- -
-
- -
-

Today I'm happy to announce the availability of the Drill 1.2 release. This release addresses 217 JIRAs on top of the 1.1 release. Highlights include:

- -

Relational Database Support

- -

Drill now includes a JDBC storage plugin for querying relational databases (RDBMSs). Users can run SQL queries that join data between non-relational datastores (eg, MongoDB, HBase, HDFS, S3) and relational databases (eg, MySQL, Oracle). For example, a single query can join log files in HDFS with a users table in MySQL. Drill automatically pushes execution (projections, filters, partial joins, etc.) down into the RDBMS whenever possible.

- -

New Window Functions

- -

The 1.2 release adds additional window functions: NTILE, FIRST_VALUE, LAST_VALUE, LEAD and LAG. Drill now supports 15 different window functions:

- -
    -
  • Value Functions: FIRST_VALUE, LAST_VALUE, LEAD, LAG
  • -
  • Aggregate Functions: AVG, COUNT, MAX, MIN, SUM
  • -
  • Ranking Functions: CUME_DIST, DENSE_RANK, NTILE, PERCENT_RANK, RANK, ROW_NUMBER
  • -
- -

In addition to supporting new window functions, Drill 1.2 adds support for multiple window functions in a single query. A query can contain multiple window functions that slice up the data in different ways by means of different OVER clauses, but they all act on the same collection of rows.

- -

Parquet Metadata Caching

- -

When running a query against a directory tree with Parquet files, Drill scans the directory and reads the footers of the files during the planning phase. This allows Drill to prune partitions and optimize query execution for data locality. However, this process can be time consuming for directory trees with thousands of files. Drill 1.2 includes a new feature that caches the metadata information so that subsequent queries don't need to scan all the files. The cache is automatically maintained based on the directory timestamps.

- -

Performance Improvements on HBase and Hive Tables

- -

Drill 1.2 introduces a faster read path for HBase and Hive tables. When querying Hive tables backed by Parquet files, Drill now uses a high-performance Parquet reader rather than the Hive SerDe.

- -

DROP TABLE for Files and Directories

- -

Drill 1.2 allows users to drop file- and directory-based tables with a SQL command (DROP TABLE).

- -

Enhanced MongoDB Integration

- -

Drill 1.2 supports extended JSON types, addressing previous issues with queries on MongoDB collections.

- -

Many More Fixes

- -

Drill 1.2 includes hundreds of other fixes and enhancements.

- -

Download the Drill 1.2 release now and let us know your thoughts.

- -

Drill On! -Jacques Nadeau

- -
-
- - - -
- - -
-

- - - - - - http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/2015/11/23/drill-1.3-released/index.html ---------------------------------------------------------------------- diff --git a/_site/blog/2015/11/23/drill-1.3-released/index.html b/_site/blog/2015/11/23/drill-1.3-released/index.html deleted file mode 100644 index bb8265b..0000000 --- a/_site/blog/2015/11/23/drill-1.3-released/index.html +++ /dev/null @@ -1,226 +0,0 @@ - - - - - - - - - -Drill 1.3 Released - Apache Drill - - - - - - - - - - - - - - - - - - -
-
- - - - - -
-
-
-

Drill 1.3 Released

-
- -
-
- -
-

Today I'm happy to announce the availability of the Drill 1.3 release. This release addresses 58 JIRAs on top of the 1.2 release. Highlights include:

- -

Enhanced Amazon S3 Support

- -

Drill 1.3 utilizes a new library, called s3a, for reading data from S3. The s3a library includes improvements over the previous s3n library, such as higher performance and the ability to read large files (over 5GB).

- -

In addition to the new s3a library, Drill 1.3 makes it easier to set up your AWS credentials. Simply edit the file conf/core-site.xml in the Drill install directory. For more information, check out the step-by-step instructions in the documentation.

- -

Heterogeneous Types

- -

Drill 1.3 includes support for mixed-type columns, often found in systems like MongoDB and file formats like JSON. For example, Drill can now columns that evolve from one data type to another over time.

- -

Drill 1.3 provides a collection of functions that enable you to test the data type of a value. For example, if you have a column that has both lists (arrays) and numbers, you can use the following query to extract the first element from the array values:

- -

SELECT 1 + CASE WHEN is_list(a) THEN a[0] ELSE a END FROM table;

- -

Text File Headers

- -

Drill is now able to parse the header row in a text file (CSV, TSV, etc.). Prior to Drill 1.3, data had to be accessed through the columns array:

-
SELECT columns[0], columns[1] FROM dfs.`/path/to/users.csv`
-
-

With Drill 1.3, you can use the actual column names in the CSV file:

-
SELECT name, address FROM dfs.`/path/to/users.csv`
-
-

Enabling header parsing is as simple as setting the extractHeader parameter in the storage plugin configuration for the desired file extensions. For more information, check out the documentation.

- -

Sequence Files

- -

Drill now supports sequence files, a format commonly used in the Hadoop ecosystem. A sequence file contains a series of keys and values, and querying it with Drill is as easy as querying any other self-describing format:

-
SELECT *
-FROM dfs.tmp.`simple.seq`
-LIMIT 1;
-+--------------+---------------+
-|  binary_key  | binary_value  |
-+--------------+---------------+
-| [B@70828f46  | [B@b8c765f    |
-+--------------+---------------+
-
-

Drill's CONVERT_FROM function makes it easy to decode the binary values:

-
SELECT CONVERT_FROM(binary_key, 'UTF8'), CONVERT_FROM(binary_value, 'UTF8')
-FROM dfs.tmp.`simple.seq`
-LIMIT 1
-;
-+-----------+-------------+
-|  EXPR$0   |   EXPR$1    |
-+-----------+-------------+
-| key0      |   value0    |
-+-----------+-------------+
-
-

Many More Fixes

- -

Drill 1.3 includes many other improvements, including enhancements related to querying Hive tables, MongoDB collections and Avro files. Check out the complete list of fixes and enhancements for more information.

- -

Download the Drill 1.3 release now and let us know your thoughts.

- -

Drill On! -Jacques Nadeau

- -
-
- - - -
- - -
-

- - - - - - http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/blog/index.html ---------------------------------------------------------------------- diff --git a/_site/blog/index.html b/_site/blog/index.html deleted file mode 100644 index 20aa1dc..0000000 --- a/_site/blog/index.html +++ /dev/null @@ -1,230 +0,0 @@ - - - - - - - - - -Blog - Apache Drill - - - - - - - - - - - - - - - - - - -
-
- - - -
-

Blog

- -
- -
-

Drill 1.3 Released
- -
Drill 1.3 has been released. Users can now query Hadoop sequence files and text delimited files with headers. In addition, this release provides significant performance and usability improvements for working with Amazon S3. Drill 1.3 also adds support for heterogeneous types, enabling queries on datasets with columns that have more than one data type (commonly seen in JSON files, MongoDB collections, etc.).

- -

Drill 1.2 Released
- -
Drill 1.2 has been released. This release includes a new JDBC storage plugin for querying relational databases, as well as new window functions such as `NTILE`, `FIRST_VALUE`, `LAST_VALUE`, `LEAD` and `LAG`. This release addresses 210 JIRAs, including performance, stability and documentation enhancements.

- -

Drill Tutorial at NoSQL Now! 2015
- -
Attend the 3-hour Drill tutorial at the NoSQL Now! 2015 conference to learn more about Apache Drill.

- -

Drill 1.1 Released
- -
Drill 1.1 has been released, providing window functions, automatic partitioning, improved MongoDB support and more. This release addresses 162 JIRAs.

- -

The Apache Software Foundation Announces Apache Drill 1.0
- -
The Apache Software Foundation announced today the availability of Apache Drill 1.0, the schema-free SQL query engine for Apache Hadoop, NoSQL and cloud storage.

- -

Drill 1.0 Released
- -
Drill 1.0 has been released, representing a major milestone for the Drill community. Drill in now production-ready, making it easier than ever to explore and analyze data in non-relational datastores.

- -

Drill 0.9 Released
- -
The community has just released Drill 0.9, which includes 199 resolved JIRAs and numerous enhancements.

- -

Apache Parquet Graduates to a Top-Level Project
- -
The Apache Parquet project has graduated to a top-level project (TLP) at the Apache Software Foundation.

- -

Drill 0.8 Released
- -
The community has just released Drill 0.8, which includes 243 resolved JIRAs and numerous enhancements.

- -

MicroStrategy Announces Drill Support
- -
MicroStrategy announced that it is now certified with Apache Drill, providing a first-class BI experience for Hadoop and NoSQL databases.

- -

Schema-free JSON Data Infrastructure
- -
JSON has emerged as the de-facto standard data exchange format. Data infrastructure technologies such as Apache Drill, MongoDB and Elasticsearch are embracing JSON as their native data models, bringing game-changing ease-of-use and agility to developers and analysts.

- -

Drill 0.7 Released
- -
The community has just released Drill 0.7, which includes 228 resolved JIRAs and numerous enhancements.

- -

What's Coming in 2015?
- -
Drill is now a top-level project, and the community is expanding rapidly. Find out more about some of the new features planned for 2015.

- -

Apache Drill Q&A Panelist Spotlight
- -
Join us on Twitter for a live Q&A on Wednesday, December 17.

- -

Running SQL Queries on Amazon S3
- -
Drill enables you to run SQL queries directly on data in S3. There's no need to ingest the data into a managed cluster or transform the data. This is a step-by-step tutorial on how to use Drill with S3.

- -

Apache Drill Graduates to a Top-Level Project
- -
Drill has graduated to a Top-Level Project at Apache. This marks a significant accomplishment for the Drill community, which now includes dozens of developers working at a variety of companies.

- -

SQL on MongoDB
- -
The MongoDB storage plugin for Drill enables analytical queries on MongoDB databases. Drill's schema-free JSON data model is a natural fit for MongoDB's data model.

- -

Want to contribute a blog post? Check out the source for some of the existing posts to see how it's done. When you're ready, email your Markdown file to dev@drill.apache.org.

-

Third-Party Articles

- -

How to Turn Raw Data from Yelp into Insights in Minutes with Apache Drill (Nov 13, 2014)

- -

How to Use SQL, Hadoop, Drill, REST, JSON, NoSQL, and HBase in a Simple REST Client (Jan 6, 2015)

-
- -
-

- - - - - - http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/community-resources/index.html ---------------------------------------------------------------------- diff --git a/_site/community-resources/index.html b/_site/community-resources/index.html deleted file mode 100644 index bf212b3..0000000 --- a/_site/community-resources/index.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - -Community Resources - Apache Drill - - - - - - - - - - - - - - - - - - -
-
- - - -
-

Community Resources

- -
- -

User Resources

- - - -

Developer Resources

- - -
- -
-

- - - - - - http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/css/content.css ---------------------------------------------------------------------- diff --git a/_site/css/content.css b/_site/css/content.css deleted file mode 100644 index bdff64c..0000000 --- a/_site/css/content.css +++ /dev/null @@ -1 +0,0 @@ -#menu ul li.toc-categories a{height:50px;padding:0;text-decoration:none;width:60px;text-align:center;color:#bababa}#menu ul li.toc-categories{float:left;line-height:45px;font-size:18px;display:none;overflow:auto}body.blog #menu ul li.toc-categories{display:none}body.blog #menu ul li.logo{padding-left:30px}div.doc-nav{overflow:auto;width:100%;margin-top:30px}div.doc-nav a{text-decoration:none}div.doc-nav a:hover{text-decoration:underline}div.doc-nav span.previous-toc{float:left;width:auto}div.doc-nav span.back-to-toc{float:left;width:auto;margin-left:15%}div.doc-nav span.next-toc{float:right}.main-content .int_text{margin-left:0px;margin-top:0px}.main-content .int_text img{margin:30px 0px}.main-content .int_title{text-align:left;margin-left:0px;margin-top:30px}.int_title.left::after{left:0px}.main-content .edit-link{position:relative;float:right;margin-top:13px;margin-right:20px;text-decoration:none;font-size:24px;color:#333333}div.int_title h1,div.main-content h1,div.main-content h2 ,div.main-content h3,div.main-content h4,div.main-content h5,div.main-content h6{font-weight:normal;line-height:24px;color:#313030;padding:0}div.main-content h1,div.main-content h2{margin-top:24px;margin-bottom:24px}div.main-content h3{margin-top:24px;font-weight:bold}div.section>h2,div.section>h3,div.section>h4{margin:24px 0}div.main-content h1,div.int_title h1{border-top:none;font-size:36px;line-height:48px;padding:0}.sidebar{position:fixed;-webkit-transform:translateZ(0);background-color:#f5f6f7;width:293px;height:auto;top:51px;bottom:0;left:0;overflow-y:auto;overflow-x:hidden;font-size:0.85em;z-index:100;transition:left 0.4s cubic-bezier(0.02, 0.01, 0.47, 1);-moz-transition:left 0.4s cubic-bezier(0.02, 0.01, 0.47, 1);-webkit-transition:left 0.4s cubic-bezier(0.02, 0.01, 0.47, 1)}.sidebar.force-expand{left:0px}aside{display:block}div.docsidebar{font-size:14px;height:100%}div.docsidebarwrapper{padding:0;padding-top:24px;padding-bottom:130px;position:relative}div.docsidebar h3{padd ing:0 12px;font-size:14px;line-height:24px;font-weight:bold;margin:-3px 0 15px 0}div.docsidebarwrapper ul{margin:12px 0 0 0;padding:0}div.docsidebar ul{list-style:none;margin:10px 0 10px 0;padding:0;color:#000}div.docsidebar ul li{font-weight:normal;line-height:24px}.docsidebarwrapper>ul>.toctree-l1.current_section{background-color:#fff;border-right:1px solid #f5f6f7}.docsidebarwrapper a{color:#333333;text-decoration:none;font-family:'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif}.docsidebarwrapper>ul>ul.current_section{background-color:#fff;border-right:1px solid #f5f6f7;margin-right:0px}.docsidebarwrapper>ul>.toctree-l1{padding:11px 0 0 12px;line-height:24px;border-top:1px solid #ebebed}.docsidebarwrapper>ul>.toctree-l1>a{font-size:18px;line-height:24px;width:100%;display:inline-block;font-family:'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif}div.docsidebar ul ul,div.docsidebar ul.want-points{list-style:none outside none;margin-left:0}div.docsidebar ul ul{mar gin-top:0px;margin-bottom:0}div.docsidebar ul ul ul{margin-top:-3px}.docsidebarwrapper li.toctree-l1 ul>li>a{line-height:24px;display:inline-block;width:100%;font-family:'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif}.docsidebarwrapper li.toctree-l1 ul>li{font-size:14px}div.docsidebar li.toctree-l2{text-indent:-12px;padding-left:47px}div.docsidebar li.toctree-l1 a:hover,div.docsidebar li.toctree-l2 a:hover,div.docsidebar li.toctree-l3 a:hover{text-decoration:underline}div.docsidebar li.toctree-l3{padding-left:57px;text-indent:-12px}span.expand,span.contract{width:0px;cursor:pointer;font-size:80%;display:none;position:relative;right:5px}span.expand.show,span.contract.show{display:inline-block}.docsidebarwrapper li.toctree-l2.current,.docsidebarwrapper li.toctree-l3.current{background-color:#1A6BC7;color:white}.docsidebarwrapper li.toctree-l2.current.current>a,.docsidebarwrapper li.toctree-l3.current.current>a{color:white}.docsidebarwrapper a:hover{color:black}.docsidebarwr apper a{display:inline-block;width:100%}.docsidebarwrapper ul{font-size:14px}.permalink{text-decoration:none;font-size:70%;color:#1A6BC7}.permalink.hide{visibility:hidden}@media (max-width: 320px){.int_text{width:auto}.int_title{width:auto}}@media (max-width: 768px){.int_text{width:auto}.int_title{width:auto}}@media (max-width: 1024px){div#footer{margin-left:0px;width:100%}div#footer .wrapper{padding:0 20px}.main-content .edit-link{margin-right:0px}#menu ul li.toc-categories{display:inline-block;width:60px;text-align:center}#menu ul li.logo{padding-left:0px}#menu.force-expand ul li.toc-categories{display:inline-block}.page-wrap div.int_title.margin_110{margin-top:110px}li.toc-categories .expand-toc-icon{font-size:24px}li.toc-categories a.expand-toc-icon{color:black}.expand-toc-icon:hover,.expand-toc-icon:active{color:white;text-decoration:none}.sidebar{left:-293px;box-shadow:0 0 13px rgba(0,0,0,0.3)}.sidebar.reveal{left:0}.main-content.force-expand{margin-left:313px}#footer.force-ex pand .wrapper{margin-left:313px}.main-content{margin:0px 20px 0px 20px}.int_title{margin-top:60px}.int_title h1{font-size:28px}.page-wrap #footer{width:auto}.breadcrumbs.force-expand li:first-of-type{margin-left:301px}}@media (min-width: 1025px){.main-content-wrapper{width:1092px}.main-content{margin-left:313px}#menu ul li.logo{padding-left:30px}#footer .wrapper{margin-left:313px}#footer{width:100%}.breadcrumbs{margin-left:0px}.breadcrumbs li:first-of-type{margin-left:301px}}#footer{width:1092px}.breadcrumbs{display:block;padding:0.5625rem 0 0.5625rem 0;overflow:hidden;margin-top:56px;margin-left:0px;list-style:none;border-bottom:solid 1px #E4E4E4;width:100%}.breadcrumbs>*{margin:0;float:left;font-size:0.6875rem;line-height:0.6875rem;text-transform:uppercase;color:#334D5C}.breadcrumbs>*:before{content:"/";color:#aaa;margin:0 0.75rem;position:relative;top:1px}.breadcrumbs>.current{font-weight:bold}.breadcrumbs>*.current{cursor:default;color:#333}.breadcrumbs>* a{color:#1a6bc7;text-de coration:none}div.highlight pre,code{background:#f5f6f7 url(../images/code-block-bg.png) 0 0 repeat;border-radius:0;border:none;border-left:5px solid #494747;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;line-height:24px;overflow:auto;word-wrap:normal;white-space:pre}pre{padding:24px 12px;color:#222;margin:24px 0}code{background:#f5f6f7 url(../images/code-block-bg.png) 0 0 repeat;border-radius:0;border:none;border-left:5px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:14px;line-height:24px;overflow:auto;word-wrap:normal;white-space:pre}div.admonition{margin:24px 0;width:auto;max-width:100%;padding:2px 12px 22px 12px;border-left:5px solid transparent}.admonition .admonition-title{margin-bottom:0;font-size:12px;font-weight:bold;text-transform:uppercase;line-height:24px}.admonition>p{margin:0 0 12.5px 0}.admonition p.first{margin-top:0 !important}.admonition>p.last{margin-bottom:0}.admonition .admonition-title:after{content:":";font-weig ht:900}.admonition.important{background-color:#fff2d5;border-color:#ffb618}.admonition.important .admonition-title{color:#ffb618}.admonition.note{background-color:#edf4e8;border-color:#6ba442}.highlight{background:#ffffff}.highlight .c{color:#999988;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#999988;font-style:italic}.highlight .cp{color:#999999;font-weight:bold}.highlight .c1{color:#999988;font-style:italic}.highlight .cs{color:#999999;font-weight:bold;font-style:italic}.highlight .gd{color:#000000;background-color:#fdd}.highlight .gd .x{color:#000000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000000;background-color:#dfd}.highlight .gi .x{color:#000000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaa}.hi ghlight .gt{color:#a00}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#445588;font-weight:bold}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086B3}.highlight .nc{color:#445588;font-weight:bold}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne{color:#990000;font-weight:bold}.highlight .nf{color:#990000;font-weight:bold}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:bold}.highlight .w{color:#bbb}.highlight .mf{color:#099}.highlight .mh{color:#099}.highlight .mi{color:#099}.highlight .mo{color:#099}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}. highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc{color:teal}.highlight .vg{color:teal}.highlight .vi{color:teal}.highlight .il{color:#099} http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/css/download.css ---------------------------------------------------------------------- diff --git a/_site/css/download.css b/_site/css/download.css deleted file mode 100644 index 9f3eb05..0000000 --- a/_site/css/download.css +++ /dev/null @@ -1 +0,0 @@ -.table{display:table;margin:0 auto}ul#download_buttons{list-style:none;padding-left:0px;margin-bottom:100px}ul#download_buttons li{float:left;text-align:center;background-color:#4aaf4c;margin:0 10px 10px 10px;width:235px;line-height:60px}ul#download_buttons li a{text-decoration:none;color:#fff;display:block}ul#download_buttons li a:hover{background-color:#348436}div#download_bar:after{clear:both} http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/css/home.css ---------------------------------------------------------------------- diff --git a/_site/css/home.css b/_site/css/home.css deleted file mode 100644 index a6ea679..0000000 --- a/_site/css/home.css +++ /dev/null @@ -1 +0,0 @@ -div#video-slider{width:260px;float:right}div.slide{position:relative;padding:0px 0px}img.thumbnail{width:100%;margin:0 auto}img.play{position:absolute;width:40px;left:110px;top:60px}div.title{layout:block;bottom:0px;left:0px;width:100%;line-height:20px;color:#000;opacity:.4;text-align:center;font-size:12px;background-color:#fff}pre{padding:24px 12px;color:#222;margin:24px 0} http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/css/main.css ---------------------------------------------------------------------- diff --git a/_site/css/main.css b/_site/css/main.css deleted file mode 100644 index cf7b65c..0000000 --- a/_site/css/main.css +++ /dev/null @@ -1 +0,0 @@ -body,h1,h2,h3,h4,h5,h6,p,blockquote,pre,hr,dl,dd,ol,ul,figure{margin:0;padding:0}body{font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:1.5;font-weight:300;color:#111;background-color:#fdfdfd;-webkit-text-size-adjust:100%}h1,h2,h3,h4,h5,h6,p,blockquote,pre,ul,ol,dl,figure,.highlight{margin-bottom:15px}img{max-width:100%;vertical-align:middle}figure>img{display:block}figcaption{font-size:14px}ul,ol{margin-left:30px}li>ul,li>ol{margin-bottom:0}h1,h2,h3,h4,h5,h6{font-weight:300}a{color:#2a7ae2;text-decoration:none}a:visited{color:#1756a9}a:hover{color:#111;text-decoration:underline}blockquote{color:#828282;border-left:4px solid #e8e8e8;padding-left:15px;font-size:18px;letter-spacing:-1px;font-style:italic}blockquote>:last-child{margin-bottom:0}pre,code{font-size:15px;border:1px solid #e8e8e8;border-radius:3px;background-color:#eef}code{padding:1px 5px}pre{padding:8px 12px;overflow-x:scroll}pre>code{border:0;padding-right:0;padding-left:0}.wrapper{max-width:-webkit-calc( 800px - (30px * 2));max-width:calc(800px - (30px * 2));margin-right:auto;margin-left:auto;padding-right:30px;padding-left:30px}@media screen and (max-width: 800px){.wrapper{max-width:-webkit-calc(800px - (30px));max-width:calc(800px - (30px));padding-right:15px;padding-left:15px}}.wrapper:after,.footer-col-wrapper:after{content:"";display:table;clear:both}.icon>svg{display:inline-block;width:16px;height:16px;vertical-align:middle}.icon>svg path{fill:#828282}.site-header{border-top:5px solid #424242;border-bottom:1px solid #e8e8e8;min-height:56px;position:relative}.site-title{font-size:26px;line-height:56px;letter-spacing:-1px;margin-bottom:0;float:left}.site-title,.site-title:visited{color:#424242}.site-nav{float:right;line-height:56px}.site-nav .menu-icon{display:none}.site-nav .page-link{color:#111;line-height:1.5}.site-nav .page-link:not(:first-child){margin-left:20px}@media screen and (max-width: 600px){.site-nav{position:absolute;top:9px;right:30px;background-color:#fdfdfd;bord er:1px solid #e8e8e8;border-radius:5px;text-align:right}.site-nav .menu-icon{display:block;float:right;width:36px;height:26px;line-height:0;padding-top:10px;text-align:center}.site-nav .menu-icon>svg{width:18px;height:15px}.site-nav .menu-icon>svg path{fill:#424242}.site-nav .trigger{clear:both;display:none}.site-nav:hover .trigger{display:block;padding-bottom:5px}.site-nav .page-link{display:block;padding:5px 10px}}.site-footer{border-top:1px solid #e8e8e8;padding:30px 0}.footer-heading{font-size:18px;margin-bottom:15px}.contact-list,.social-media-list{list-style:none;margin-left:0}.footer-col-wrapper{font-size:15px;color:#828282;margin-left:-15px}.footer-col{float:left;margin-bottom:15px;padding-left:15px}.footer-col-1{width:-webkit-calc(35% - (30px / 2));width:calc(35% - (30px / 2))}.footer-col-2{width:-webkit-calc(20% - (30px / 2));width:calc(20% - (30px / 2))}.footer-col-3{width:-webkit-calc(45% - (30px / 2));width:calc(45% - (30px / 2))}@media screen and (max-width: 800px){.fo oter-col-1,.footer-col-2{width:-webkit-calc(50% - (30px / 2));width:calc(50% - (30px / 2))}.footer-col-3{width:-webkit-calc(100% - (30px / 2));width:calc(100% - (30px / 2))}}@media screen and (max-width: 600px){.footer-col{float:none;width:-webkit-calc(100% - (30px / 2));width:calc(100% - (30px / 2))}}.page-content{padding:30px 0}.page-heading{font-size:20px}.post-list{margin-left:0;list-style:none}.post-list>li{margin-bottom:30px}.post-meta{font-size:14px;color:#828282}.post-link{display:block;font-size:24px}.post-header{margin-bottom:30px}.post-title{font-size:42px;letter-spacing:-1px;line-height:1}@media screen and (max-width: 800px){.post-title{font-size:36px}}.post-content{margin-bottom:30px}.post-content h2{font-size:32px}@media screen and (max-width: 800px){.post-content h2{font-size:28px}}.post-content h3{font-size:26px}@media screen and (max-width: 800px){.post-content h3{font-size:22px}}.post-content h4{font-size:20px}@media screen and (max-width: 800px){.post-content h4{f ont-size:18px}}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:bold}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:bold;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#458;font-weight:bold}.highlight .m {color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086B3}.highlight .nc{color:#458;font-weight:bold}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne{color:#900;font-weight:bold}.highlight .nf{color:#900;font-weight:bold}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:bold}.highlight .w{color:#bbb}.highlight .mf{color:#099}.highlight .mh{color:#099}.highlight .mi{color:#099}.highlight .mo{color:#099}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc{color:teal}.highlight .vg{color:teal}.highlight .vi{color:teal}.highlight .il{color:#099} http://git-wip-us.apache.org/repos/asf/drill-site/blob/bdf0f883/_site/css/site.css ---------------------------------------------------------------------- diff --git a/_site/css/site.css b/_site/css/site.css deleted file mode 100644 index 0e0e76e..0000000 --- a/_site/css/site.css +++ /dev/null @@ -1 +0,0 @@ -*{outline:none}html{height:100%}body{font-family:'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;padding:0;margin:0;height:100%}.page-wrap{min-height:100%;margin-bottom:-60px}.mw{min-width:999px;width:100%}.nw{white-space:nowrap}a.anchor{display:none;font-size:0px;position:absolute;margin-top:-50px}.home_txt a.anchor{margin-top:-90px}#menu{position:fixed;top:0;width:100%;z-index:5}#menu ul{background:#051221;display:block;font-size:0px;list-style:none;overflow:hidden;padding:0;text-align:right}#menu ul li{display:inline-block;font-size:14px;margin:0;padding:0}#menu ul li.logo{float:left;padding-left:30px}#menu ul li.logo:hover{background:none}#menu ul li.logo a{background:url(../images/apachedrill.png) no-repeat center;background-size:auto 27px;display:block;height:50px;padding:0;width:80px}#menu ul li a{color:#FFF;text-decoration:none;line-height:50px;padding:14px 20px}#menu ul li.d,#menu ul li.d:hover{background-color:#4aaf4c;font-size:12px;text-transform:uppercase}#menu ul li.d a .fam{position:relative;right:8px;font-size:14px}#menu ul li.d:hover{background-color:#348436}#menu ul li.d *{cursor:pointer}#menu ul li.d a{padding:0px 30px 0 40px;display:block}#menu ul li.l{cursor:pointer}#menu ul li.l span{background:url(../images/len.png) no-repeat center;background-size:auto 16px;display:block;line-height:50px;padding:0 20px;width:16px}#menu ul li.l.open{background-color:#145aa8}#menu ul li#twitter-menu-item{width:30px;padding-left:2px;padding-right:10px}#menu ul li#twitter-menu-item a{padding:10px}#menu ul li#twitter-menu-item img{width:22px}#menu ul li ul{background:#1a6bc7;display:none;margin:0;padding:0;position:absolute;text-align:left}#menu ul li ul li{display:block}#menu ul li ul li a{display:block;line-height:30px;padding:3px 20px}#menu ul li ul li a:hover{background:#145aa8}#menu ul li:hover{background:#1a6bc7}#menu ul li:hover ul{display:block}#menu ul li.clear-float{display:none}#subhead{background:#145aa8;color:#FFF;font-size:12px;font-we ight:bold;height:40px;line-height:40px;left:0px;letter-spacing:1px;right:0px;position:fixed;text-align:center;text-transform:uppercase;top:10px;z-index:4;-webkit-transition:all 0.3s;transition:all 0.3s}#subhead.show{top:50px}#subhead ul{list-style:none;margin:0;padding:0}#subhead ul li{display:inline-block;list-style:none;margin:0;padding:0 35px 0 35px}#subhead ul li a{background-size:16px auto;background-position:left center;background-repeat:no-repeat;color:#FFF;display:block;padding:0 0 0 25px;text-decoration:none}#subhead ul li.ag a{background-image:url(../images/agility-w.png)}#subhead ul li.fl a{background-image:url(../images/flexibility-w.png)}#subhead ul li.fam a{background-image:url(../images/familiarity-w.png)}#header{background:url(../images/reel-bg.png) no-repeat;background-size:cover;height:300px;overflow:hidden;position:relative}#header .scroller{margin-left:0px;overflow:hidden}#header .scroller .item{float:left;height:300px;position:relative;width:100%;z-index:1}#head er .scroller .item p a{color:#FFF;font-weight:bold;overflow:hidden;text-decoration:none;position:relative;display:inline-block;outline:none;vertical-align:bottom;text-decoration:none;white-space:nowrap}#header .scroller .item p a::before{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;background:rgba(149,165,166,0.4);content:'';-webkit-transition:-webkit-transform 0.3s;transition:transform 0.3s;-webkit-transform:scaleY(0.618) translateX(-100%);transform:scaleY(0.618) translateX(-100%)}#header .scroller .item p a:hover::before,#header .scroller .item p a:focus::before{-webkit-transform:scaleY(0.618) translateX(0);transform:scaleY(0.618) translateX(0)}#header .scroller .item .tc{color:#FFF;margin-left:80px;position:relative;width:900px;margin:0 auto}#header .scroller .item .tc h1,#header .scroller .item .tc h2{font-size:36px;font-weight:lighter;margin:0 0 8px 0;padding:0}#header .scroller .item .tc h2{font-size:16px}#header .scroller .item .tc p{font-size:14px;font-we ight:lighter;line-height:24px;margin:0;padding:0}#header .scroller .item .btn{background:none;border:2px solid #fff;cursor:pointer;color:#FFF;display:inline-block;font-size:12px;font-weight:bold;outline:none;margin-top:18px;position:relative;padding:5px 30px;text-decoration:none;text-transform:uppercase;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;transition:all 0.3s}#header .scroller .item .btn:after{content:'';position:absolute;z-index:-1;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;transition:all 0.3s}#header .scroller .item .btn-1c:after{width:0%;height:100%;top:0;left:0;background:#fff}#header .scroller .item .btn-1c:hover,#header .scroller .item .btn-1c:active{color:#0e83cd}#header .scroller .item .btn-1c:hover:after,#header .scroller .item .btn-1c:active:after{width:100%}#header .aLeft{cursor:pointer;height:30px;left:20px;margin-top:-15px;position:absolute;top:50%;width:30px;z-index:2}#header .aRight{cursor:pointer;height:30px;right:20px;margin-top:-15px;posit ion:absolute;top:50%;width:30px;z-index:2}.dots{bottom:30px;right:80px;position:absolute;z-index:2}.dots .dot{border-radius:50%;background-color:transparent;box-shadow:inset 0 0 0 2px white;-webkit-transition:box-shadow 0.3s ease;transition:box-shadow 0.3s ease;cursor:pointer;display:inline-block;height:10px;margin-left:10px;width:10px}.dots .dot:hover,.dots .dot:focus{box-shadow:inset 0 0 0 2px rgba(255,255,255,0.6)}.dots .dot.sel{box-shadow:inset 0 0 0 8px white}div.alertbar{background-color:#ffc;text-align:center;display:block;padding:10px;border-bottom:solid 1px #cc9}div.alertbar .hor-bar:after{content:"|"}span.strong{font-weight:bold}.introWrapper{border-bottom:1px solid #CCC}table.intro{background:url(../images/intro-bg.gif) no-repeat center;table-layout:fixed;text-align:center;width:940px}table.intro td{background-position:center 25px;background-repeat:no-repeat;background-size:25px auto;padding:65px 0 0 0;position:relative;vertical-align:top}table.intro td.ag{background-imag e:url(../images/agility.png)}table.intro td.fl{background-image:url(../images/flexibility.png)}table.intro td.fam{background-image:url(../images/familiarity.png)}table.intro h1{font-size:36px;font-weight:normal;margin:0;padding:0}table.intro p{font-size:16px;font-weight:lighter;line-height:22px;margin:0;padding:2px 35px 30px 35px}table.intro span{bottom:30px;display:block;position:absolute;width:100%}table.intro a{color:#1a6bc7;font-size:12px;font-weight:bold}#blu{display:table;font-size:12px;font-weight:lighter;line-height:28px;table-layout:fixed}#blu a{color:#FFF;text-decoration:none}#blu .cell{color:#FFF;display:table-cell;padding:40px 0;overflow:hidden;vertical-align:middle}#blu .cell.left{background:#1b2b3e;padding-right:54px}#blu .cell.left .wrapper{float:right}#blu .cell.right{background:#184f8d;padding-left:54px}#blu .cell.right .wrapper{float:left}#blu .cell .wrapper{width:425px}#blu h2{font-size:24px;font-weight:lighter;margin:0 0 10px 0;padding:0}.page-wrap:after{display: block;content:""}#footer{color:black;background-color:white;font-size:9px;font-weight:lighter;line-height:20px;padding:30px 0;text-align:center}#footer,.page-wrap:after{height:60px}#footer .wrapper{padding:0 80px}.bui{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.8);z-index:4}.disclaimer{background:#f6f5f5;font-size:12px;font-weight:lighter;line-height:24px;text-align:center}.disclaimer .wrapper{margin:auto;padding:50px 0 50px 0;width:780px}.disclaimer h2{font-size:24px;font-weight:lighter;margin:0 0 10px 0;padding:0}.int_text{margin:40px auto 30px auto;width:780px}div.post.int_text{margin:40px auto 60px auto}.int_text a,.int_title a{color:#1a6bc7}.int_text p,.int_text ul,.int_text ol{font-size:16px;line-height:28px}.int_text p.l1{padding-left:30px}.int_text h2{font-size:24px;font-weight:normal;margin:30px 0 0 0}.int_text img{display:block;margin:30px auto}ul.num{list-style:decimal}.int_title{font-size:16px;font-weight:lighter;margin:auto;margin-t op:80px;padding:0 0 15px 0;position:relative;text-align:center;width:600px}.int_title.int_title_img{background-position:center top;background-repeat:no-repeat;background-size:25px auto;padding-top:40px}.int_title.int_title_img.architecture{background-image:url(../images/architecture.png)}.int_title.int_title_img.community{background-image:url(../images/community.png)}.int_title.int_title_img.download{background-image:url(../images/download.png)}.int_title p{line-height:30px;margin:10px 0 25px 0}.int_title h1{font-size:36px;margin:20px 0px 20px 0px}.int_title:after{background:#1a6bc7;bottom:24px;content:" ";height:5px;left:275px;position:absolute;width:50px}table.intro a:before,table.intro a:after{backface-visibility:hidden;pointer-events:none}table.intro a,.int_title a{display:inline-block;overflow:hidden;outline:medium none;position:relative;text-decoration:none;vertical-align:bottom;white-space:nowrap}#header .dots,.aLeft,.aRight{display:none}p.info{background-color:#ffc;border:so lid 1px #cc9;padding:5px}li p{margin-top:0px}.hidden{display:none}#menu .search-bar{line-height:30px;margin:0 20px 0 20px}#menu .search-bar form{border-radius:6px;border:solid 1px black;background-color:#1A6BC7}#menu .search-bar input[type='text']{border:none;color:white;background-color:transparent !important;font-size:14px;font-weight:inherit;padding:0 0 0 8px;line-height:20px;width:50px}#menu .search-bar input[placeholder]{opacity:.7}#menu .search-bar:hover{background-color:black}#menu .search-bar button[type='submit']{display:inline;border:none;background:none;position:relative;color:white;font-size:14px;cursor:pointer;width:33px}#menu .search-bar ::-webkit-input-placeholder{color:white}#menu .search-bar :-moz-placeholder{color:white}#menu .search-bar ::-moz-placeholder{color:white}#menu .search-bar :-ms-input-placeholder{color:white}.int_text table{border-collapse:collapse;border-spacing:0;empty-cells:show;border:1px solid #cbcbcb}.int_text table caption{color:#000;font-style:i talic;padding:1em 0;text-align:center}.int_text table td,.int_text table th{border-left:1px solid #cbcbcb;border-width:0 0 0 1px;font-size:inherit;margin:0;overflow:visible;padding:.5em 1em}.int_text table td:first-child,.int_text table th:first-child{border-left-width:0}.int_text table thead{background-color:#e0e0e0;color:#000;text-align:left;vertical-align:bottom}.int_text table td{background-color:transparent}.int_text table-odd td{background-color:#f2f2f2}.int_text table-striped tr:nth-child(2n-1) td{background-color:#f2f2f2}.int_text table-bordered td{border-bottom:1px solid #cbcbcb}.int_text table-bordered tbody>tr:last-child>td{border-bottom-width:0}.int_text table-horizontal td,.int_text table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #cbcbcb}.int_text table-horizontal tbody>tr:last-child>td{border-bottom-width:0}div.alertbar{line-height:1;text-align:center}div.alertbar div{display:inline-block;vertical-align:middle;padding:0 10px}div.alertbar div:nth-child( 2){border-right:solid 1px #cc9}div.alertbar div.news{font-weight:bold}div.alertbar div span{font-size:65%;color:#aa7}div.home-row{border-bottom:solid 1px #ccc;margin:0 auto;text-align:center}div.home-row div{display:inline-block;vertical-align:middle;text-align:left}div.home-row:nth-child(odd) div.big{width:300px}div.home-row:nth-child(odd) div.description{margin-left:40px;width:580px}div.home-row:nth-child(even) div.description{width:580px}div.home-row:nth-child(even) div.big{margin-left:40px;width:300px}.home-row h1{font-size:24px;margin:24px 0;font-weight:bold}.home-row h2{font-size:20px;margin:20px 0;font-weight:bold}.home-row p{font-size:16px;line-height:22px}.home-row div.small{display:none}.home-row div.big{display:inline-block}div.home-row div pre{background:#f3f5f7;color:#2a333c;border:solid 1px #aaa;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;line-height:1.5}div.home-row div pre span.code-underline{font-weight:bold;color:#000;text-decoration:un derline}.int_text p a.post-link{font-size:22px}.int_text p span.post-date{font-style:italic}#menu ul li.toc-categories{display:none}#menu ul li.menu-break{display:none}.mobile-break{display:none}@media (min-width: 1025px){#menu ul li.expand-menu{display:none}}@media (max-width: 1024px){table.intro{width:940px}.mw{min-width:0px}.breadcrumbs li:first-of-type{margin-left:8px}#menu ul li.logo{padding-left:30px}#menu ul li.expand-menu{display:none}#menu ul li,#menu ul li.d{display:none}.home_txt p{width:auto}.int_title{text-align:left;width:auto;margin:80px 20px 0px 20px}.int_title:after{left:0px}.int_text{width:auto;margin:20px 10px 100px 20px}#menu.force-expand ul li,#menu.force-expand ul li.d{display:inline-block}#menu.force-expand ul li.toc-categories{display:none}#menu.force-expand ul li ul li{display:block}#menu.force-expand ul li.nav,#menu.force-expand ul li#twitter-menu-item{clear:both;margin:0 auto}#menu ul li.logo{display:block}#menu ul li.expand-menu{display:inline-block;float :right}#menu ul br.menu-break{display:block}#menu ul li.expand-menu,#menu ul li.expand-menu a{height:50px;width:110px}#menu ul li.expand-menu span.expand-icon{font-size:24px}#menu ul li.expand-menu span.menu-text{margin-right:7px;position:relative;bottom:3px}#menu ul li.pull-right{float:right;margin-right:10px}div.post.int_text{margin:40px 20px 20px 20px}div.post .post-header .int_title{margin-left:0px}div.home-row{padding:0px 20px 0px 0px}div.home-row:nth-child(odd) div.small{width:300px}div.home-row:nth-child(odd) div.description{margin-left:20px;width:auto}div.home-row:nth-child(even) div.description{margin-left:20px;width:auto}div.home-row:nth-child(even) div.small{margin:0 0 15px 0;width:300px}div.home-row div.big{display:none}div.home-row div.small{display:inline-block}table.intro{width:100%;background:none}}@media (max-width: 768px){#menu.force-expand ul li.nav{clear:both;margin:0 auto}#menu.force-expand ul li.search-bar{clear:both}div.headlines.tc{margin-left:35px}img{max-wi dth:100%}div.int_search{width:100%}.headlines.tc{padding:0px 30px}#header .scroller .item{height:auto !important}#header{height:auto !important}#header .scroller,#header .scroller .item,#header .scroller .item div.headlines.tc{max-width:100% !important;width:auto}div#video-slider{float:none !important;margin:60px auto 40px auto}}@media (max-width: 570px){br.mobile-break{display:block}#menu.force-expand ul li.nav,#menu.force-expand ul li#twitter-menu-item{clear:both;width:100%;margin:auto}#menu.force-expand ul li{display:block}#menu ul li.clear-float{clear:both;width:0px;display:block}#menu ul li.search-bar{margin:0 11px 0 20px;float:right}#menu ul li.d{margin:10px;clear:both;float:right}#menu.force-expand{position:fixed}#header .scroller .item .tc h1{font-size:40px}#header .scroller .item .tc h2{font-size:24px;line-height:32px}div.headlines a.download-headline{font-size:.7em}#header .scroller .item div.headlines .btn{font-size:16px}div.alertbar{text-align:left;padding:0 25px}div.ale rtbar div{display:block;padding:10px 0}div.alertbar div:nth-child(1){border-right:none;border-bottom:solid 1px #cc9}div.alertbar div:nth-child(2){border-right:none;border-bottom:solid 1px #cc9}table.intro{width:100%;background:none}table.intro td{display:block;padding:25px 0 5px 0}table.intro td h1{font-size:24px;text-align:left;padding-left:60px}table.intro td.ag,table.intro td.fl,table.intro td.fam{background-position:20px 23%}table.intro p{font-size:16px;line-height:24px;padding:2px 25px 15px 20px;text-align:left}table.intro span{position:relative;bottom:10px;padding-left:20px;text-align:left}}.int_search{margin:50px auto 0 auto;width:780px;font-family:'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif}.int_search .gsc-control-cse,.int_search .gsc-control-cse .gsc-table-result{font-family:'PT Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif}.nav-circlepop a{width:50px;height:50px}.nav-circlepop a::before{position:absolute;top:0;left:0;width:100%;height:100%;border-rad ius:50%;background:#fff;content:'';opacity:0;-webkit-transition:-webkit-transform 0.3s, opacity 0.3s;transition:transform 0.3s, opacity 0.3s;-webkit-transform:scale(0.9);transform:scale(0.9)}.nav-circlepop .icon-wrap{position:relative;display:block;margin:10% 0 0 10%;width:80%;height:80%}.nav-circlepop a.next .icon-wrap{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.nav-circlepop .icon-wrap::before,.nav-circlepop .icon-wrap::after{position:absolute;left:25%;width:3px;height:50%;background:#fff;content:'';-webkit-transition:-webkit-transform 0.3s, background-color 0.3s;transition:transform 0.3s, background-color 0.3s;-webkit-backface-visibility:hidden;backface-visibility:hidden}.nav-circlepop .icon-wrap::before{-webkit-transform:translateX(-50%) rotate(30deg);transform:translateX(-50%) rotate(30deg);-webkit-transform-origin:0 100%;transform-origin:0 100%}.nav-circlepop .icon-wrap::after{top:50%;-webkit-transform:translateX(-50%) rotate(-30deg);transform:translateX(-50%) r otate(-30deg);-webkit-transform-origin:0 0;transform-origin:0 0}.nav-circlepop a:hover::before{opacity:1;-webkit-transform:scale(1);transform:scale(1)}.nav-circlepop a:hover .icon-wrap::before,.nav-circlepop a:hover .icon-wrap::after{background:#4aaf4c}.nav-circlepop a:hover .icon-wrap::before{-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg)}.nav-circlepop a:hover .icon-wrap::after{-webkit-transform:translateX(-50%) rotate(-45deg);transform:translateX(-50%) rotate(-45deg)}