Great Deal! Get Instant $10 FREE in Account on First Order + 10% Cashback on Every Order Order Now

CRICOS Provider No. 00103D Page 1 of 7 ITECH3224 WWW Technology 2 Assignment 1 - Knitting Talk Overview This is an individual assignment in which you are required to develop a dynamic web application...

1 answer below »
CRICOS Provider No. 00103D Page 1 of 7
ITECH3224 WWW Technology 2
Assignment 1 - Knitting Talk
Overview
This is an individual assignment in which you are required to develop a dynamic web application as
described below.
Important: This assignment specification is generated just for you. Do not distribute this specification.
Timelines and Expectations
Percentage value of task: 20%
Due: Week 7 - Refer to course description
Learning Outcomes Assessed
The following course learning outcomes are assessed by completing this assessment:
K2. Contrast the capabilities and limitations of client-side and server-side programming.
S1. Develop client/server programs using client-side and server-side programming languages.
S2. Construct a server-side web interface to a database system that is accessible by web clients.
A1. Design, develop, test, and debug client/server web applications to provided specifications.
Assessment Details
For this assignment, you will create a web-based link sharing/aggregating platform, vaguely similar to
"Reddit". Your platform is dedicated to sharing interesting links about a particular topic - for you
assignment the topic is Knitting Talk, a place for knitting enthusiasts to share links about their shared
interest.
Users can create accounts, share a knitting-related link, and comment on the submissions of others.
You must implement this platform using PHP and MySQL or MariaDB, with some JavaScript for validation.
Database Structure
The web application uses a relational database to create a review site. The database has the following
structure:
User ( id, name, email, password )
KnittingLink ( id, user_id, datetime, link_url, title )
Comment ( id, user_id, knittinglink_id, comment_text )
Block ( user_id, blocked_user_id )
CRICOS Provider No. 00103D Page 2 of 7
Use
idPK
name
email
password
Comment
idPK
user_idFK
knittinglink_idFK
comment_text
KnittingLink
idPK
user_idFK
datetime
link_url
title
Block
user_idPK,FK
locked_user_idPK,FK
Primary keys are indicated with underlines or bold formatting, and foreign keys are italicized.
Each entry in the Knitting table represents a single shared link made by a user.
Each record in the Comment table represents a comment on a post. A User may make multiple comments
on a single KnittingLink, and each KnittingLink may have multiple Comments.
The Block table stores whether a User has blocked all communications from another User. If a record
exists (1, 2) in Block, this means the user with id 1 should not see comments or posts from the user with id
2.
The following constraints should be applied when implementing the application:
The user_id and blocked_user_id in the Block table form a compound primary key, and both refe
to the id field in the User table.
The datetime field should be stored as either a string or a MySQL datetime type, and must include both
time and date.
The password field should be a VARCHAR of 255 characters. The name and email fields should be
VARCHAR of a length that you determine to be reasonable and sufficient.
Initial Data
When the database is created, it should be populated with data of your own invention, appropriate to the
theme. You should have at least:
8 knitting links, with at least one link having 5 comments.
5 users (see note below)
One of the users must be you, using your student id XXXXXXXXXXfor the username, and your real name
and email address. Invent other users as necessary - perhaps use characters from your favourite movie o
and.
Also include a user with the username tutor and the password guest. This user must block at least one
CRICOS Provider No. 00103D Page 3 of 7
other user.
Include this data as part of your written report.
Database creation DDL
Create an SQL file that creates the MySQL database, creates the four tables above, and populates them
with your initial data.
Use your student id and course code as the database name as follows: ITECH3224_ XXXXXXXXXX.
Passwords should be hashed using, at minimum, the crypt() PHP function. Prefer to use the PHP
password_hash() function to generate password hashes.
For the password 'guest', the following hash may be used in your database:
PASSWORD = '$2y$10$123456223030000999999ur.ReHqpsa8ofMJgp4vlSuHWyaNqumGe'
It is acceptable for all initial users to share the same password for testing.
Use of MD5 or SHA for password hashes is not acceptable.
Write SQL queries that display all of the initial data using SELECT statements, and include these queries
in your report.
User accounts
Write an HTML form that allows new users to sign up. The form should request a username, email address
and password. The password must be hashed before storing it in the database.
Using PHP, validate that the username is unique, and the password is at least 5 characters (before hashing).
Write PHP code to allow users to log in and log out. This will require the use of sessions and/or cookies.
Global timeline
Write PHP and HTML code to display a list of the most recent 5 links from all users, sorted in descending
date order – that is, the most recent posts are at the top. This timeline of links should be visible to
anybody without logging in.
Sharing links
Logged-in users should be able to share new links. Write PHP code to support this. Use both PHP and
JavaScript to limit the length of the title to 60 characters.
Comments
Create a page which displays the comments for an individual link. This may mean adding a comments
utton or link to each post in the global timeline.
Write HTML and PHP code to allow logged-in users to comment on links shared by other users. This should
create a new entry in the Comment table.
CRICOS Provider No. 00103D Page 4 of 7
User view
Write HTML and PHP code to allow logged-in users to see all links shared by a particular user. This page
should be accessible through a link on the comments page, the global timeline, or both.
Blocking
From the User view, write PHP and HTML to allow a logged-in user to block the displayed user. This should
add an entry to the Block table. If the user is already blocked, allow them to be un-blocked.
Update your global timeline and comments pages to hide links and comments by blocked users when
logged in.
Aggregate data
Complete the following using SQL aggregation such as COUNT and SUM, subqueries or nested SELECT
statements, inner joins and (left or right) outer joins.
Create a page that contains a list of the top 5 most-commented posts from all time, ordered in
descending order by number of comments.
For each post in the timeline that has comments, display the number of comments with the post.
Bonus challenge task (optional!) – Comment threading
Extend the data model and write appropriate PHP code to implement a feature that allows comments to be
posted in reply to other comments:
Comments should have a reply link or text-box below them, which allows adding a reply;
Comments shown in response to other comments should be visually indented or distinguished from thei
parent comment;
Counts of comments on the global timeline should include all replies as well as top-level comments;
A user should not be able to reply to their own comment
There are no partial marks awarded for this bonus task – you must complete all features to attain the
onus marks.
It is possible to attain full marks for this assignment without completing this challenge task.
Further details
Documentation
Include a written report containing:
Initial data details
The SQL queries you used to test your database
A list of parts of the assignment you have completed or not completed.
Details of specific assistance you received from people other than your lecturer or tutor, and the names
of those assisting.
Assignment support
This assignment is supported by the first 5 lectures and the first 6 labs. Work on the assignment should be
spread over several weeks after the relevant lab has been mastered.
CRICOS Provider No. 00103D Page 5 of 7
Submission
All files should be submitted to Moodle by the due date and time. Check with your tutor as to whether a
hard copy is required in addition to the electronic submission.
Marking Criteria/Ru
ic
Refer to the attached marking guide.
Feedback
Feedback will be supplied through Moodle. Authoritative marks will be published through fdlMarks
Plagiarism
Plagiarism is the presentation of the expressed thought or work of another person as though it is one's own
without properly acknowledging that person. You must not allow other students to copy your work and must
take care to safeguard against this happening. More information about the plagiarism policy and procedure
for the university can be found at
http:
federation.edu.au/students/learning-and-study/online-help-with/plagiarism.
http:
federation.edu.au/students/learning-and-study/online-help-with/plagiarism
CRICOS Provider No. 00103D Page 6 of 7
Marking Guide: Assignment 1
Feature Criteria Maximum Obtained
Initial data Requirements satisfied 1
Creating the database Table structure, data types, field lengths, initialdata entry 1
User accounts
Account sign-up 1
Validation that password meets complexity
equirements (at least 5 characters) 1
Log in and Log out 1
Inappropriate password hashing (MD5, SHA1 o
plain-text passwords) (-2)
Timeline Most recent 5 links/posts listed in descending order 1
Sharing Links
Logged-in users can share links 1
Use of PHP and JavaScript to limit title length to 60
characters 1
Comments
Comments view 1
Logged-in users can comment on links 2
User view
Page of all links shared by a user 1
Author of post is a clickable link from
timeline/comments page 1
Blocking
Block/unblock button on user view 1
Links/comments from blocked users are not visible
in global timeline/comments view 2
Aggregate data
Top 5 most-commented posts from all time 1
Include comments count in global timeline 1
Bonus optional task -
Threading
Meets specification (reply, indent, counts, no self-
eplies) (no partial marks) 2
Documentation
Initial data and test queries 2
Completion of tasks, Assistance statement (lose 1
mark each if not included) (-2)
Quality of code
Layout, structure, indentation (-1)
Appropriate and consistent naming scheme (-1)
Valid HTML5 (-1)
CRICOS Provider No. 00103D Page 7 of 7
Feature Criteria Maximum Obtained
Total: 22
Answered Same Day Aug 27, 2020 ITECH3224

Solution

Gaurav answered on Aug 30 2020
161 Votes
comment.php
?php
@session_start();
include_once('connection.php');
if(isset($_POST['submit']))
    {    
$user = $_SESSION['id'];
$knittinglink_id = $_POST['b_id'];
$comment = $_POST['comment'];
$sql = "insert into comments (user_id,knittinglink_id,comment_text) values ($user, $knittinglink_id,'$comment')";
                
                $result = mysqli_query($con, $sql);
                
                if($result){
                    
                    echo '

Comment Added
p>';
                }else{
                    
                    echo 'Some e
or while commenting, try again';                
                }
    
    }
?
!DOCTYPE HTML
html
                Knitting Talk<br />title<br />    <meta name="viewport" content="width=device-width, initial-scale=1"<br />    <meta name="description" content="" <br />    <meta name="keywords" content="" <br />    <meta name="author" content="" <br />     <!-- Facebook and Twitter integration --<br />    <meta property="og:title" content=""<br />    <meta property="og:image" content=""<br />    <meta property="og:url" content=""<br />    <meta property="og:site_name" content=""<br />    <meta property="og:description" content=""<br />    <meta name="twitter:title" content="" <br />    <meta name="twitter:image" content="" <br />    <meta name="twitter:url" content="" <br />    <meta name="twitter:card" content="" <br />    <link href="https:<br />fonts.googleapis.com/css?family=Crimson+Text:400,400i|Roboto+Mono" rel="stylesheet"<br />    <br />    <!-- Animate.css --<br />    <link rel="stylesheet" href="css/animate.css"<br />    <!-- Icomoon Icon Fonts--<br />    <link rel="stylesheet" href="css/icomoon.css"<br />    <!-- Bootstrap --<br />    <link rel="stylesheet" href="css<br />ootstrap.css"<br />    <!-- Magnific Popup --<br />    <link rel="stylesheet" href="css/magnific-popup.css"<br />    <!-- Theme style --<br />    <link rel="stylesheet" href="css/style.css"<br />    <!-- Modernizr JS --<br />    <script src="js/modernizr-2.6.2.min.js"<br />script<br />    <!-- FOR IE9 below --<br />    <!--[if lt IE 9]<br />    <script src="js<br />espond.min.js"<br />script<br />    <![endif]--<br />    <br />head<br />    <br />ody<br />        <br />    <div class="gtco-loader"<br />div<br />    <br />    <div id="page"<br />    <nav class="gtco-nav" role="navigation"<br />        <div class="container"<br />            <div class="row"<br />                <div class="col-xs-3 text-left"<br />                    <div id="gtco-logo"<br />a href="index.php">Knitting Talk<br />a<br />div<br />                <br />div<br />                <div class="col-xs-9 text-right menu-1"<br />                    <ul<br />                        <li<br />a href="login.php">Login<br />a<br />li<br />                        <li<br />a href="reg.php">Registe<br />a<br />li<br />                    <br />ul<br />                <br />div<br />            <br />div<br />            <br />        <br />div<br />    <br />nav<br />    <div id="gtco-main"<br />        <div class="container"<br />            <div class="row row-pb-md"<br />                <div class="col-md-12"<br />                    <ul id="gtco-post-list"<br />                        <li class="full entry animate-box" data-animate-effect="fadeIn"> <br />                        <?php<br />                            $id = $_GET['post'];<br />                            $sql = "select comment_text, name from comments, user where knittinglink_id = $id AND comments.user_id = user.id";<br />                            <br />                            $result = mysqli_query($con, $sql);<br />                                if(mysqli_num_rows($result)){<br />                                        echo '<table>';<br />                                        while ($row=mysqli_fetch_a<br />ay($result)){<br />                                            <br />                                            echo '<t<br />';<br />                                            <br />echo '<td>'.$row['id'].'<br />td>';<br />                                            <br />echo '<td>'.$row['user_id'].'<br />td>';                                            <br />                                            <br />                                            echo '<td>'.$row['comment_text'].'<br />td>';<br />                                            <br />                                            echo '<td>from - '.$row['name'].'<br />td>';<br />                                            <br />                                            <br />                                            echo '<br />t<br />';<br />                                            <br />                                            <br />                                            <br />                                        }<br />                                        echo '<br />table>';<br />                                }<br />                        ?<br />                        <br />                    <br />                        <br />                        <?php if(isset($_SESSION['id'])){ ?<br />                        <br />                            <form action="<?php echo $_SERVER['PHP_SELF']."?post=".$_GET['post']; ?>" method="post">    <br />                                <div class="entry-desc"<br />                                    <h3>Comment<br />h3<br />                                     Comment:<br />                                     <input type="hidden" name = "b_id" value="<?php echo $_GET['post'] ?>" <br />                                     <textarea rows="4" cols="50" name="comment"<br />textarea<br />                                     <br />                                     <input type="submit" value="Submit" class="submit" name="submit"<br />                                <br />div<br />                            <br />form<br />                        <br />                        <?php } ?<br />                        <br />                        <br />li<br />                        <br />                        <br />                    <br />ul>    <br />                <br />div<br />            <br />div<br />        <br />div<br />    <br />div<br />    <br />    <footer id="gtco-footer" role="contentinfo"<br />        <div class="container"<br />            <div class="row copyright"<br />                <div class="col-md-12 text-center"<br />                    <p<br />                        <small class="block">© 2018 Knitting Talk.<br />small> <br />                    <br />p<br />                <br />div<br />            <br />div<br />        <br />div<br />    <br />foote<br />    <br />div<br />    <div class="gototop js-top"<br />        <a href="#" class="js-gotop"<br />i class="icon-a<br />ow-up"<br />i<br />a<br />    <br />div<br />    <br />    <!-- jQuery --<br />    <script src="js/jquery.min.js"<br />script<br />    <!-- jQuery Easing --<br />    <script src="js/jquery.easing.1.3.js"<br />script<br />    <!-- Bootstrap --<br />    <script src="js<br />ootstrap.min.js"<br />script<br />    <!-- Waypoints --<br />    <script src="js/jquery.waypoints.min.js"<br />script<br />    <!-- Stellar --<br />    <script src="js/jquery.stellar.min.js"<br />script<br />    <!-- Main --<br />    <script src="js/main.js"<br />script<br />    <br />ody<br />html<br />connection.php<br />?php<br />define('HOST','localhost');<br />define('USERNAME','root');<br />define('PASSWORD','');<br />define('DBNAME','itech3224_30322654');<br />$con=mysqli_connect(HOST,USERNAME,PASSWORD,DBNAME)or die('ERROR WHILE CONNECTING TO DATABASE SERVER');<br /> Check connection<br />if($con === false){<br /> die("ERROR: Could not connect. " . mysqli_connect_e<br />or());<br />}<br />?<br />css/animate.css<br />@charset "UTF-8";<br />*!<br />Animate.css - http:<br />daneden.me/animate<br />Licensed under the MIT license - http:<br />opensource.org/licenses/MIT<br />Copyright (c) 2015 Daniel Eden<br />*<br />.animated {<br /> -webkit-animation-duration: 1s;<br /> animation-duration: 1s;<br /> -webkit-animation-fill-mode: both;<br /> animation-fill-mode: both;<br />}<br />.animated-fast {<br /> -webkit-animation-duration: .5s;<br /> animation-duration: .5s;<br /> -webkit-animation-fill-mode: both;<br /> animation-fill-mode: both;<br />}<br />.animated.infinite {<br /> -webkit-animation-iteration-count: infinite;<br /> animation-iteration-count: infinite;<br />}<br />.animated.hinge {<br /> -webkit-animation-duration: 2s;<br /> animation-duration: 2s;<br />}<br />.animated.bounceIn,<br />.animated.bounceOut {<br /> -webkit-animation-duration: .75s;<br /> animation-duration: .75s;<br />}<br />.animated.flipOutX,<br />.animated.flipOutY {<br /> -webkit-animation-duration: .75s;<br /> animation-duration: .75s;<br />}<br />@-webkit-keyframes bounce {<br /> from, 20%, 53%, 80%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> -webkit-transform: translate3d(0,0,0);<br /> transform: translate3d(0,0,0);<br /> }<br /> 40%, 43% {<br /> -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> -webkit-transform: translate3d(0, -30px, 0);<br /> transform: translate3d(0, -30px, 0);<br /> }<br /> 70% {<br /> -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> -webkit-transform: translate3d(0, -15px, 0);<br /> transform: translate3d(0, -15px, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(0,-4px,0);<br /> transform: translate3d(0,-4px,0);<br /> }<br />}<br />@keyframes bounce {<br /> from, 20%, 53%, 80%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> -webkit-transform: translate3d(0,0,0);<br /> transform: translate3d(0,0,0);<br /> }<br /> 40%, 43% {<br /> -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> -webkit-transform: translate3d(0, -30px, 0);<br /> transform: translate3d(0, -30px, 0);<br /> }<br /> 70% {<br /> -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);<br /> -webkit-transform: translate3d(0, -15px, 0);<br /> transform: translate3d(0, -15px, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(0,-4px,0);<br /> transform: translate3d(0,-4px,0);<br /> }<br />}<br />.bounce {<br /> -webkit-animation-name: bounce;<br /> animation-name: bounce;<br /> -webkit-transform-origin: center bottom;<br /> transform-origin: center bottom;<br />}<br />@-webkit-keyframes flash {<br /> from, 50%, to {<br /> opacity: 1;<br /> }<br /> 25%, 75% {<br /> opacity: 0;<br /> }<br />}<br />@keyframes flash {<br /> from, 50%, to {<br /> opacity: 1;<br /> }<br /> 25%, 75% {<br /> opacity: 0;<br /> }<br />}<br />.flash {<br /> -webkit-animation-name: flash;<br /> animation-name: flash;<br />}<br />* originally authored by Nick Pettit - https:<br />github.com/nickpettit/glide *<br />@-webkit-keyframes pulse {<br /> from {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br /> 50% {<br /> -webkit-transform: scale3d(1.05, 1.05, 1.05);<br /> transform: scale3d(1.05, 1.05, 1.05);<br /> }<br /> to {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />@keyframes pulse {<br /> from {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br /> 50% {<br /> -webkit-transform: scale3d(1.05, 1.05, 1.05);<br /> transform: scale3d(1.05, 1.05, 1.05);<br /> }<br /> to {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />.pulse {<br /> -webkit-animation-name: pulse;<br /> animation-name: pulse;<br />}<br />@-webkit-keyframes ru<br />erBand {<br /> from {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br /> 30% {<br /> -webkit-transform: scale3d(1.25, 0.75, 1);<br /> transform: scale3d(1.25, 0.75, 1);<br /> }<br /> 40% {<br /> -webkit-transform: scale3d(0.75, 1.25, 1);<br /> transform: scale3d(0.75, 1.25, 1);<br /> }<br /> 50% {<br /> -webkit-transform: scale3d(1.15, 0.85, 1);<br /> transform: scale3d(1.15, 0.85, 1);<br /> }<br /> 65% {<br /> -webkit-transform: scale3d(.95, 1.05, 1);<br /> transform: scale3d(.95, 1.05, 1);<br /> }<br /> 75% {<br /> -webkit-transform: scale3d(1.05, .95, 1);<br /> transform: scale3d(1.05, .95, 1);<br /> }<br /> to {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />@keyframes ru<br />erBand {<br /> from {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br /> 30% {<br /> -webkit-transform: scale3d(1.25, 0.75, 1);<br /> transform: scale3d(1.25, 0.75, 1);<br /> }<br /> 40% {<br /> -webkit-transform: scale3d(0.75, 1.25, 1);<br /> transform: scale3d(0.75, 1.25, 1);<br /> }<br /> 50% {<br /> -webkit-transform: scale3d(1.15, 0.85, 1);<br /> transform: scale3d(1.15, 0.85, 1);<br /> }<br /> 65% {<br /> -webkit-transform: scale3d(.95, 1.05, 1);<br /> transform: scale3d(.95, 1.05, 1);<br /> }<br /> 75% {<br /> -webkit-transform: scale3d(1.05, .95, 1);<br /> transform: scale3d(1.05, .95, 1);<br /> }<br /> to {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />.ru<br />erBand {<br /> -webkit-animation-name: ru<br />erBand;<br /> animation-name: ru<br />erBand;<br />}<br />@-webkit-keyframes shake {<br /> from, to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> 10%, 30%, 50%, 70%, 90% {<br /> -webkit-transform: translate3d(-10px, 0, 0);<br /> transform: translate3d(-10px, 0, 0);<br /> }<br /> 20%, 40%, 60%, 80% {<br /> -webkit-transform: translate3d(10px, 0, 0);<br /> transform: translate3d(10px, 0, 0);<br /> }<br />}<br />@keyframes shake {<br /> from, to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> 10%, 30%, 50%, 70%, 90% {<br /> -webkit-transform: translate3d(-10px, 0, 0);<br /> transform: translate3d(-10px, 0, 0);<br /> }<br /> 20%, 40%, 60%, 80% {<br /> -webkit-transform: translate3d(10px, 0, 0);<br /> transform: translate3d(10px, 0, 0);<br /> }<br />}<br />.shake {<br /> -webkit-animation-name: shake;<br /> animation-name: shake;<br />}<br />@-webkit-keyframes swing {<br /> 20% {<br /> -webkit-transform: rotate3d(0, 0, 1, 15deg);<br /> transform: rotate3d(0, 0, 1, 15deg);<br /> }<br /> 40% {<br /> -webkit-transform: rotate3d(0, 0, 1, -10deg);<br /> transform: rotate3d(0, 0, 1, -10deg);<br /> }<br /> 60% {<br /> -webkit-transform: rotate3d(0, 0, 1, 5deg);<br /> transform: rotate3d(0, 0, 1, 5deg);<br /> }<br /> 80% {<br /> -webkit-transform: rotate3d(0, 0, 1, -5deg);<br /> transform: rotate3d(0, 0, 1, -5deg);<br /> }<br /> to {<br /> -webkit-transform: rotate3d(0, 0, 1, 0deg);<br /> transform: rotate3d(0, 0, 1, 0deg);<br /> }<br />}<br />@keyframes swing {<br /> 20% {<br /> -webkit-transform: rotate3d(0, 0, 1, 15deg);<br /> transform: rotate3d(0, 0, 1, 15deg);<br /> }<br /> 40% {<br /> -webkit-transform: rotate3d(0, 0, 1, -10deg);<br /> transform: rotate3d(0, 0, 1, -10deg);<br /> }<br /> 60% {<br /> -webkit-transform: rotate3d(0, 0, 1, 5deg);<br /> transform: rotate3d(0, 0, 1, 5deg);<br /> }<br /> 80% {<br /> -webkit-transform: rotate3d(0, 0, 1, -5deg);<br /> transform: rotate3d(0, 0, 1, -5deg);<br /> }<br /> to {<br /> -webkit-transform: rotate3d(0, 0, 1, 0deg);<br /> transform: rotate3d(0, 0, 1, 0deg);<br /> }<br />}<br />.swing {<br /> -webkit-transform-origin: top center;<br /> transform-origin: top center;<br /> -webkit-animation-name: swing;<br /> animation-name: swing;<br />}<br />@-webkit-keyframes tada {<br /> from {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br /> 10%, 20% {<br /> -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);<br /> transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);<br /> }<br /> 30%, 50%, 70%, 90% {<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);<br /> transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);<br /> }<br /> 40%, 60%, 80% {<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);<br /> transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);<br /> }<br /> to {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />@keyframes tada {<br /> from {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br /> 10%, 20% {<br /> -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);<br /> transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);<br /> }<br /> 30%, 50%, 70%, 90% {<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);<br /> transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);<br /> }<br /> 40%, 60%, 80% {<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);<br /> transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);<br /> }<br /> to {<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />.tada {<br /> -webkit-animation-name: tada;<br /> animation-name: tada;<br />}<br />* originally authored by Nick Pettit - https:<br />github.com/nickpettit/glide *<br />@-webkit-keyframes wo<br />le {<br /> from {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br /> 15% {<br /> -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);<br /> transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);<br /> }<br /> 30% {<br /> -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);<br /> transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);<br /> }<br /> 45% {<br /> -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);<br /> transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);<br /> }<br /> 60% {<br /> -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);<br /> transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);<br /> transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes wo<br />le {<br /> from {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br /> 15% {<br /> -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);<br /> transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);<br /> }<br /> 30% {<br /> -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);<br /> transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);<br /> }<br /> 45% {<br /> -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);<br /> transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);<br /> }<br /> 60% {<br /> -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);<br /> transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);<br /> transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.wo<br />le {<br /> -webkit-animation-name: wo<br />le;<br /> animation-name: wo<br />le;<br />}<br />@-webkit-keyframes jello {<br /> from, 11.1%, to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br /> 22.2% {<br /> -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);<br /> transform: skewX(-12.5deg) skewY(-12.5deg);<br /> }<br /> 33.3% {<br /> -webkit-transform: skewX(6.25deg) skewY(6.25deg);<br /> transform: skewX(6.25deg) skewY(6.25deg);<br /> }<br /> 44.4% {<br /> -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);<br /> transform: skewX(-3.125deg) skewY(-3.125deg);<br /> }<br /> 55.5% {<br /> -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);<br /> transform: skewX(1.5625deg) skewY(1.5625deg);<br /> }<br /> 66.6% {<br /> -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);<br /> transform: skewX(-0.78125deg) skewY(-0.78125deg);<br /> }<br /> 77.7% {<br /> -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);<br /> transform: skewX(0.390625deg) skewY(0.390625deg);<br /> }<br /> 88.8% {<br /> -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);<br /> transform: skewX(-0.1953125deg) skewY(-0.1953125deg);<br /> }<br />}<br />@keyframes jello {<br /> from, 11.1%, to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br /> 22.2% {<br /> -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);<br /> transform: skewX(-12.5deg) skewY(-12.5deg);<br /> }<br /> 33.3% {<br /> -webkit-transform: skewX(6.25deg) skewY(6.25deg);<br /> transform: skewX(6.25deg) skewY(6.25deg);<br /> }<br /> 44.4% {<br /> -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);<br /> transform: skewX(-3.125deg) skewY(-3.125deg);<br /> }<br /> 55.5% {<br /> -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);<br /> transform: skewX(1.5625deg) skewY(1.5625deg);<br /> }<br /> 66.6% {<br /> -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);<br /> transform: skewX(-0.78125deg) skewY(-0.78125deg);<br /> }<br /> 77.7% {<br /> -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);<br /> transform: skewX(0.390625deg) skewY(0.390625deg);<br /> }<br /> 88.8% {<br /> -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);<br /> transform: skewX(-0.1953125deg) skewY(-0.1953125deg);<br /> }<br />}<br />.jello {<br /> -webkit-animation-name: jello;<br /> animation-name: jello;<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br />}<br />@-webkit-keyframes bounceIn {<br /> from, 20%, 40%, 60%, 80%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> 0% {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br /> 20% {<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1);<br /> transform: scale3d(1.1, 1.1, 1.1);<br /> }<br /> 40% {<br /> -webkit-transform: scale3d(.9, .9, .9);<br /> transform: scale3d(.9, .9, .9);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(1.03, 1.03, 1.03);<br /> transform: scale3d(1.03, 1.03, 1.03);<br /> }<br /> 80% {<br /> -webkit-transform: scale3d(.97, .97, .97);<br /> transform: scale3d(.97, .97, .97);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />@keyframes bounceIn {<br /> from, 20%, 40%, 60%, 80%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> 0% {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br /> 20% {<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1);<br /> transform: scale3d(1.1, 1.1, 1.1);<br /> }<br /> 40% {<br /> -webkit-transform: scale3d(.9, .9, .9);<br /> transform: scale3d(.9, .9, .9);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(1.03, 1.03, 1.03);<br /> transform: scale3d(1.03, 1.03, 1.03);<br /> }<br /> 80% {<br /> -webkit-transform: scale3d(.97, .97, .97);<br /> transform: scale3d(.97, .97, .97);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: scale3d(1, 1, 1);<br /> transform: scale3d(1, 1, 1);<br /> }<br />}<br />.bounceIn {<br /> -webkit-animation-name: bounceIn;<br /> animation-name: bounceIn;<br />}<br />@-webkit-keyframes bounceInDown {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> 0% {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -3000px, 0);<br /> transform: translate3d(0, -3000px, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, 25px, 0);<br /> transform: translate3d(0, 25px, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(0, -10px, 0);<br /> transform: translate3d(0, -10px, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(0, 5px, 0);<br /> transform: translate3d(0, 5px, 0);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes bounceInDown {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> 0% {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -3000px, 0);<br /> transform: translate3d(0, -3000px, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, 25px, 0);<br /> transform: translate3d(0, 25px, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(0, -10px, 0);<br /> transform: translate3d(0, -10px, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(0, 5px, 0);<br /> transform: translate3d(0, 5px, 0);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.bounceInDown {<br /> -webkit-animation-name: bounceInDown;<br /> animation-name: bounceInDown;<br />}<br />@-webkit-keyframes bounceInLeft {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> 0% {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-3000px, 0, 0);<br /> transform: translate3d(-3000px, 0, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(25px, 0, 0);<br /> transform: translate3d(25px, 0, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(-10px, 0, 0);<br /> transform: translate3d(-10px, 0, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(5px, 0, 0);<br /> transform: translate3d(5px, 0, 0);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes bounceInLeft {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> 0% {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-3000px, 0, 0);<br /> transform: translate3d(-3000px, 0, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(25px, 0, 0);<br /> transform: translate3d(25px, 0, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(-10px, 0, 0);<br /> transform: translate3d(-10px, 0, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(5px, 0, 0);<br /> transform: translate3d(5px, 0, 0);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.bounceInLeft {<br /> -webkit-animation-name: bounceInLeft;<br /> animation-name: bounceInLeft;<br />}<br />@-webkit-keyframes bounceInRight {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(3000px, 0, 0);<br /> transform: translate3d(3000px, 0, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(-25px, 0, 0);<br /> transform: translate3d(-25px, 0, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(10px, 0, 0);<br /> transform: translate3d(10px, 0, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(-5px, 0, 0);<br /> transform: translate3d(-5px, 0, 0);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes bounceInRight {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(3000px, 0, 0);<br /> transform: translate3d(3000px, 0, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(-25px, 0, 0);<br /> transform: translate3d(-25px, 0, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(10px, 0, 0);<br /> transform: translate3d(10px, 0, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(-5px, 0, 0);<br /> transform: translate3d(-5px, 0, 0);<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.bounceInRight {<br /> -webkit-animation-name: bounceInRight;<br /> animation-name: bounceInRight;<br />}<br />@-webkit-keyframes bounceInUp {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 3000px, 0);<br /> transform: translate3d(0, 3000px, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, -20px, 0);<br /> transform: translate3d(0, -20px, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(0, 10px, 0);<br /> transform: translate3d(0, 10px, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(0, -5px, 0);<br /> transform: translate3d(0, -5px, 0);<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />@keyframes bounceInUp {<br /> from, 60%, 75%, 90%, to {<br /> -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);<br /> }<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 3000px, 0);<br /> transform: translate3d(0, 3000px, 0);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, -20px, 0);<br /> transform: translate3d(0, -20px, 0);<br /> }<br /> 75% {<br /> -webkit-transform: translate3d(0, 10px, 0);<br /> transform: translate3d(0, 10px, 0);<br /> }<br /> 90% {<br /> -webkit-transform: translate3d(0, -5px, 0);<br /> transform: translate3d(0, -5px, 0);<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />.bounceInUp {<br /> -webkit-animation-name: bounceInUp;<br /> animation-name: bounceInUp;<br />}<br />@-webkit-keyframes bounceOut {<br /> 20% {<br /> -webkit-transform: scale3d(.9, .9, .9);<br /> transform: scale3d(.9, .9, .9);<br /> }<br /> 50%, 55% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1);<br /> transform: scale3d(1.1, 1.1, 1.1);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br />}<br />@keyframes bounceOut {<br /> 20% {<br /> -webkit-transform: scale3d(.9, .9, .9);<br /> transform: scale3d(.9, .9, .9);<br /> }<br /> 50%, 55% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(1.1, 1.1, 1.1);<br /> transform: scale3d(1.1, 1.1, 1.1);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br />}<br />.bounceOut {<br /> -webkit-animation-name: bounceOut;<br /> animation-name: bounceOut;<br />}<br />@-webkit-keyframes bounceOutDown {<br /> 20% {<br /> -webkit-transform: translate3d(0, 10px, 0);<br /> transform: translate3d(0, 10px, 0);<br /> }<br /> 40%, 45% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, -20px, 0);<br /> transform: translate3d(0, -20px, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 2000px, 0);<br /> transform: translate3d(0, 2000px, 0);<br /> }<br />}<br />@keyframes bounceOutDown {<br /> 20% {<br /> -webkit-transform: translate3d(0, 10px, 0);<br /> transform: translate3d(0, 10px, 0);<br /> }<br /> 40%, 45% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, -20px, 0);<br /> transform: translate3d(0, -20px, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 2000px, 0);<br /> transform: translate3d(0, 2000px, 0);<br /> }<br />}<br />.bounceOutDown {<br /> -webkit-animation-name: bounceOutDown;<br /> animation-name: bounceOutDown;<br />}<br />@-webkit-keyframes bounceOutLeft {<br /> 20% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(20px, 0, 0);<br /> transform: translate3d(20px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-2000px, 0, 0);<br /> transform: translate3d(-2000px, 0, 0);<br /> }<br />}<br />@keyframes bounceOutLeft {<br /> 20% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(20px, 0, 0);<br /> transform: translate3d(20px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-2000px, 0, 0);<br /> transform: translate3d(-2000px, 0, 0);<br /> }<br />}<br />.bounceOutLeft {<br /> -webkit-animation-name: bounceOutLeft;<br /> animation-name: bounceOutLeft;<br />}<br />@-webkit-keyframes bounceOutRight {<br /> 20% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(-20px, 0, 0);<br /> transform: translate3d(-20px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(2000px, 0, 0);<br /> transform: translate3d(2000px, 0, 0);<br /> }<br />}<br />@keyframes bounceOutRight {<br /> 20% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(-20px, 0, 0);<br /> transform: translate3d(-20px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(2000px, 0, 0);<br /> transform: translate3d(2000px, 0, 0);<br /> }<br />}<br />.bounceOutRight {<br /> -webkit-animation-name: bounceOutRight;<br /> animation-name: bounceOutRight;<br />}<br />@-webkit-keyframes bounceOutUp {<br /> 20% {<br /> -webkit-transform: translate3d(0, -10px, 0);<br /> transform: translate3d(0, -10px, 0);<br /> }<br /> 40%, 45% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, 20px, 0);<br /> transform: translate3d(0, 20px, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -2000px, 0);<br /> transform: translate3d(0, -2000px, 0);<br /> }<br />}<br />@keyframes bounceOutUp {<br /> 20% {<br /> -webkit-transform: translate3d(0, -10px, 0);<br /> transform: translate3d(0, -10px, 0);<br /> }<br /> 40%, 45% {<br /> opacity: 1;<br /> -webkit-transform: translate3d(0, 20px, 0);<br /> transform: translate3d(0, 20px, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -2000px, 0);<br /> transform: translate3d(0, -2000px, 0);<br /> }<br />}<br />.bounceOutUp {<br /> -webkit-animation-name: bounceOutUp;<br /> animation-name: bounceOutUp;<br />}<br />@-webkit-keyframes fadeIn {<br /> from {<br /> opacity: 0;<br /> -ms-transform: scale(0.95);<br /> -webkit-transform: scale(0.95);<br /> transform: scale(0.95);<br /> }<br /> to {<br /> opacity: 1;<br /> -ms-transform: scale(1.0);<br /> -webkit-transform: scale(1.0);<br /> transform: scale(1.0);<br /> }<br />}<br />@keyframes fadeIn {<br /> from {<br /> opacity: 0;<br /> -ms-transform: scale(0.95);<br /> -webkit-transform: scale(0.95);<br /> transform: scale(0.95);<br /> }<br /> to {<br /> opacity: 1;<br /> -ms-transform: scale(1.0);<br /> -webkit-transform: scale(1.0);<br /> transform: scale(1.0);<br /> }<br />}<br />.fadeIn {<br /> -webkit-animation-name: fadeIn;<br /> animation-name: fadeIn;<br />}<br />@-webkit-keyframes fadeInDown {<br /> from {<br /> opacity: 0;<br /> /*-webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);*<br /> -webkit-transform: translate3d(0, -50px, 0);<br /> transform: translate3d(0, -50px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInDown {<br /> from {<br /> opacity: 0;<br /> /*-webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);*<br /> -webkit-transform: translate3d(0, -50px, 0);<br /> transform: translate3d(0, -50px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInDown {<br /> -webkit-animation-name: fadeInDown;<br /> animation-name: fadeInDown;<br />}<br />@-webkit-keyframes fadeInDownBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -2000px, 0);<br /> transform: translate3d(0, -2000px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInDownBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -2000px, 0);<br /> transform: translate3d(0, -2000px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInDownBig {<br /> -webkit-animation-name: fadeInDownBig;<br /> animation-name: fadeInDownBig;<br />}<br />@-webkit-keyframes fadeInLeft {<br /> from {<br /> opacity: 0;<br /> /*-webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);*<br /> -webkit-transform: translate3d(-50px, 0, 0);<br /> transform: translate3d(-50px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInLeft {<br /> from {<br /> opacity: 0;<br /> /*-webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);*<br /> -webkit-transform: translate3d(-50px, 0, 0);<br /> transform: translate3d(-50px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInLeft {<br /> -webkit-animation-name: fadeInLeft;<br /> animation-name: fadeInLeft;<br />}<br />@-webkit-keyframes fadeInLeftBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-2000px, 0, 0);<br /> transform: translate3d(-2000px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInLeftBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-2000px, 0, 0);<br /> transform: translate3d(-2000px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInLeftBig {<br /> -webkit-animation-name: fadeInLeftBig;<br /> animation-name: fadeInLeftBig;<br />}<br />@-webkit-keyframes fadeInRight {<br /> from {<br /> opacity: 0;<br /> /*-webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);*<br /> -webkit-transform: translate3d(50px, 0, 0);<br /> transform: translate3d(50px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInRight {<br /> from {<br /> opacity: 0;<br /> /*-webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);*<br /> -webkit-transform: translate3d(50px, 0, 0);<br /> transform: translate3d(50px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInRight {<br /> -webkit-animation-name: fadeInRight;<br /> animation-name: fadeInRight;<br />}<br />@-webkit-keyframes fadeInRightBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(2000px, 0, 0);<br /> transform: translate3d(2000px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInRightBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(2000px, 0, 0);<br /> transform: translate3d(2000px, 0, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInRightBig {<br /> -webkit-animation-name: fadeInRightBig;<br /> animation-name: fadeInRightBig;<br />}<br />@-webkit-keyframes fadeInUp {<br /> from {<br /> opacity: 0;<br /> visibility: hidden;<br /> /*-webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);*<br /> -webkit-transform: translate3d(0, 40px, 0);<br /> transform: translate3d(0, 40px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> /*visibility: visible;*<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInUp {<br /> from {<br /> opacity: 0;<br /> visibility: hidden;<br /> /*-webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);*<br /> -webkit-transform: translate3d(0, 40px, 0);<br /> transform: translate3d(0, 40px, 0);<br /> }<br /> to {<br /> visibility: visible;<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInUp {<br /> -webkit-animation-name: fadeInUp;<br /> animation-name: fadeInUp;<br />}<br />@-webkit-keyframes fadeInUpMenu {<br /> from {<br /> opacity: 0;<br /> visibility: hidden;<br /> /*-webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);*<br /> -webkit-transform: translate3d(0, 20px, 0);<br /> transform: translate3d(0, 20px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> visibility: visible;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInUpMenu {<br /> from {<br /> opacity: 0;<br /> visibility: hidden;<br /> /*-webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);*<br /> -webkit-transform: translate3d(0, 20px, 0);<br /> transform: translate3d(0, 20px, 0);<br /> }<br /> to {<br /> visibility: visible;<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInUpMenu {<br /> -webkit-animation-name: fadeInUpMenu;<br /> animation-name: fadeInUpMenu;<br />}<br />@-webkit-keyframes fadeInUpBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 2000px, 0);<br /> transform: translate3d(0, 2000px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes fadeInUpBig {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 2000px, 0);<br /> transform: translate3d(0, 2000px, 0);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.fadeInUpBig {<br /> -webkit-animation-name: fadeInUpBig;<br /> animation-name: fadeInUpBig;<br />}<br />@-webkit-keyframes fadeOut {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> }<br />}<br />@keyframes fadeOut {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> }<br />}<br />.fadeOut {<br /> -webkit-animation-name: fadeOut;<br /> animation-name: fadeOut;<br />}<br />@-webkit-keyframes fadeOutDown {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 40px, 0);<br /> transform: translate3d(0, 40px, 0);<br /> }<br />}<br />@keyframes fadeOutDown {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 40px, 0);<br /> transform: translate3d(0, 40px, 0);<br /> }<br />}<br />.fadeOutDown {<br /> -webkit-animation-name: fadeOutDown;<br /> animation-name: fadeOutDown;<br />}<br />@-webkit-keyframes fadeOutDownBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 2000px, 0);<br /> transform: translate3d(0, 2000px, 0);<br /> }<br />}<br />@keyframes fadeOutDownBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, 2000px, 0);<br /> transform: translate3d(0, 2000px, 0);<br /> }<br />}<br />.fadeOutDownBig {<br /> -webkit-animation-name: fadeOutDownBig;<br /> animation-name: fadeOutDownBig;<br />}<br />@-webkit-keyframes fadeOutLeft {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);<br /> }<br />}<br />@keyframes fadeOutLeft {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);<br /> }<br />}<br />.fadeOutLeft {<br /> -webkit-animation-name: fadeOutLeft;<br /> animation-name: fadeOutLeft;<br />}<br />@-webkit-keyframes fadeOutLeftBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-2000px, 0, 0);<br /> transform: translate3d(-2000px, 0, 0);<br /> }<br />}<br />@keyframes fadeOutLeftBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-2000px, 0, 0);<br /> transform: translate3d(-2000px, 0, 0);<br /> }<br />}<br />.fadeOutLeftBig {<br /> -webkit-animation-name: fadeOutLeftBig;<br /> animation-name: fadeOutLeftBig;<br />}<br />@-webkit-keyframes fadeOutRight {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);<br /> }<br />}<br />@keyframes fadeOutRight {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);<br /> }<br />}<br />.fadeOutRight {<br /> -webkit-animation-name: fadeOutRight;<br /> animation-name: fadeOutRight;<br />}<br />@-webkit-keyframes fadeOutRightBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(2000px, 0, 0);<br /> transform: translate3d(2000px, 0, 0);<br /> }<br />}<br />@keyframes fadeOutRightBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(2000px, 0, 0);<br /> transform: translate3d(2000px, 0, 0);<br /> }<br />}<br />.fadeOutRightBig {<br /> -webkit-animation-name: fadeOutRightBig;<br /> animation-name: fadeOutRightBig;<br />}<br />@-webkit-keyframes fadeOutUp {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);<br /> }<br />}<br />@keyframes fadeOutUp {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);<br /> }<br />}<br />.fadeOutUp {<br /> -webkit-animation-name: fadeOutUp;<br /> animation-name: fadeOutUp;<br />}<br />@-webkit-keyframes fadeOutUpBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -2000px, 0);<br /> transform: translate3d(0, -2000px, 0);<br /> }<br />}<br />@keyframes fadeOutUpBig {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(0, -2000px, 0);<br /> transform: translate3d(0, -2000px, 0);<br /> }<br />}<br />.fadeOutUpBig {<br /> -webkit-animation-name: fadeOutUpBig;<br /> animation-name: fadeOutUpBig;<br />}<br />@-webkit-keyframes flip {<br /> from {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -360deg);<br /> -webkit-animation-timing-function: ease-out;<br /> animation-timing-function: ease-out;<br /> }<br /> 40% {<br /> -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);<br /> transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);<br /> -webkit-animation-timing-function: ease-out;<br /> animation-timing-function: ease-out;<br /> }<br /> 50% {<br /> -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);<br /> transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> 80% {<br /> -webkit-transform: perspective(400px) scale3d(.95, .95, .95);<br /> transform: perspective(400px) scale3d(.95, .95, .95);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> to {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br />}<br />@keyframes flip {<br /> from {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -360deg);<br /> -webkit-animation-timing-function: ease-out;<br /> animation-timing-function: ease-out;<br /> }<br /> 40% {<br /> -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);<br /> transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);<br /> -webkit-animation-timing-function: ease-out;<br /> animation-timing-function: ease-out;<br /> }<br /> 50% {<br /> -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);<br /> transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> 80% {<br /> -webkit-transform: perspective(400px) scale3d(.95, .95, .95);<br /> transform: perspective(400px) scale3d(.95, .95, .95);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> to {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br />}<br />.animated.flip {<br /> -webkit-backface-visibility: visible;<br /> backface-visibility: visible;<br /> -webkit-animation-name: flip;<br /> animation-name: flip;<br />}<br />@-webkit-keyframes flipInX {<br /> from {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> opacity: 0;<br /> }<br /> 40% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> 60% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, 10deg);<br /> opacity: 1;<br /> }<br /> 80% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, -5deg);<br /> }<br /> to {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br />}<br />@keyframes flipInX {<br /> from {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> opacity: 0;<br /> }<br /> 40% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> 60% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, 10deg);<br /> opacity: 1;<br /> }<br /> 80% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, -5deg);<br /> }<br /> to {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br />}<br />.flipInX {<br /> -webkit-backface-visibility: visible !important;<br /> backface-visibility: visible !important;<br /> -webkit-animation-name: flipInX;<br /> animation-name: flipInX;<br />}<br />@-webkit-keyframes flipInY {<br /> from {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> opacity: 0;<br /> }<br /> 40% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -20deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> 60% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, 10deg);<br /> opacity: 1;<br /> }<br /> 80% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -5deg);<br /> }<br /> to {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br />}<br />@keyframes flipInY {<br /> from {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> opacity: 0;<br /> }<br /> 40% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -20deg);<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br /> }<br /> 60% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, 10deg);<br /> opacity: 1;<br /> }<br /> 80% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -5deg);<br /> }<br /> to {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br />}<br />.flipInY {<br /> -webkit-backface-visibility: visible !important;<br /> backface-visibility: visible !important;<br /> -webkit-animation-name: flipInY;<br /> animation-name: flipInY;<br />}<br />@-webkit-keyframes flipOutX {<br /> from {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br /> 30% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes flipOutX {<br /> from {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br /> 30% {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, -20deg);<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> transform: perspective(400px) rotate3d(1, 0, 0, 90deg);<br /> opacity: 0;<br /> }<br />}<br />.flipOutX {<br /> -webkit-animation-name: flipOutX;<br /> animation-name: flipOutX;<br /> -webkit-backface-visibility: visible !important;<br /> backface-visibility: visible !important;<br />}<br />@-webkit-keyframes flipOutY {<br /> from {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br /> 30% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -15deg);<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes flipOutY {<br /> from {<br /> -webkit-transform: perspective(400px);<br /> transform: perspective(400px);<br /> }<br /> 30% {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, -15deg);<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> transform: perspective(400px) rotate3d(0, 1, 0, 90deg);<br /> opacity: 0;<br /> }<br />}<br />.flipOutY {<br /> -webkit-backface-visibility: visible !important;<br /> backface-visibility: visible !important;<br /> -webkit-animation-name: flipOutY;<br /> animation-name: flipOutY;<br />}<br />@-webkit-keyframes lightSpeedIn {<br /> from {<br /> -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);<br /> transform: translate3d(100%, 0, 0) skewX(-30deg);<br /> opacity: 0;<br /> }<br /> 60% {<br /> -webkit-transform: skewX(20deg);<br /> transform: skewX(20deg);<br /> opacity: 1;<br /> }<br /> 80% {<br /> -webkit-transform: skewX(-5deg);<br /> transform: skewX(-5deg);<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />@keyframes lightSpeedIn {<br /> from {<br /> -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);<br /> transform: translate3d(100%, 0, 0) skewX(-30deg);<br /> opacity: 0;<br /> }<br /> 60% {<br /> -webkit-transform: skewX(20deg);<br /> transform: skewX(20deg);<br /> opacity: 1;<br /> }<br /> 80% {<br /> -webkit-transform: skewX(-5deg);<br /> transform: skewX(-5deg);<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />.lightSpeedIn {<br /> -webkit-animation-name: lightSpeedIn;<br /> animation-name: lightSpeedIn;<br /> -webkit-animation-timing-function: ease-out;<br /> animation-timing-function: ease-out;<br />}<br />@-webkit-keyframes lightSpeedOut {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);<br /> transform: translate3d(100%, 0, 0) skewX(30deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes lightSpeedOut {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);<br /> transform: translate3d(100%, 0, 0) skewX(30deg);<br /> opacity: 0;<br /> }<br />}<br />.lightSpeedOut {<br /> -webkit-animation-name: lightSpeedOut;<br /> animation-name: lightSpeedOut;<br /> -webkit-animation-timing-function: ease-in;<br /> animation-timing-function: ease-in;<br />}<br />@-webkit-keyframes rotateIn {<br /> from {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> -webkit-transform: rotate3d(0, 0, 1, -200deg);<br /> transform: rotate3d(0, 0, 1, -200deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />@keyframes rotateIn {<br /> from {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> -webkit-transform: rotate3d(0, 0, 1, -200deg);<br /> transform: rotate3d(0, 0, 1, -200deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />.rotateIn {<br /> -webkit-animation-name: rotateIn;<br /> animation-name: rotateIn;<br />}<br />@-webkit-keyframes rotateInDownLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -45deg);<br /> transform: rotate3d(0, 0, 1, -45deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />@keyframes rotateInDownLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -45deg);<br /> transform: rotate3d(0, 0, 1, -45deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />.rotateInDownLeft {<br /> -webkit-animation-name: rotateInDownLeft;<br /> animation-name: rotateInDownLeft;<br />}<br />@-webkit-keyframes rotateInDownRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 45deg);<br /> transform: rotate3d(0, 0, 1, 45deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />@keyframes rotateInDownRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 45deg);<br /> transform: rotate3d(0, 0, 1, 45deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />.rotateInDownRight {<br /> -webkit-animation-name: rotateInDownRight;<br /> animation-name: rotateInDownRight;<br />}<br />@-webkit-keyframes rotateInUpLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 45deg);<br /> transform: rotate3d(0, 0, 1, 45deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />@keyframes rotateInUpLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 45deg);<br /> transform: rotate3d(0, 0, 1, 45deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />.rotateInUpLeft {<br /> -webkit-animation-name: rotateInUpLeft;<br /> animation-name: rotateInUpLeft;<br />}<br />@-webkit-keyframes rotateInUpRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -90deg);<br /> transform: rotate3d(0, 0, 1, -90deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />@keyframes rotateInUpRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -90deg);<br /> transform: rotate3d(0, 0, 1, -90deg);<br /> opacity: 0;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: none;<br /> transform: none;<br /> opacity: 1;<br /> }<br />}<br />.rotateInUpRight {<br /> -webkit-animation-name: rotateInUpRight;<br /> animation-name: rotateInUpRight;<br />}<br />@-webkit-keyframes rotateOut {<br /> from {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> -webkit-transform: rotate3d(0, 0, 1, 200deg);<br /> transform: rotate3d(0, 0, 1, 200deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes rotateOut {<br /> from {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: center;<br /> transform-origin: center;<br /> -webkit-transform: rotate3d(0, 0, 1, 200deg);<br /> transform: rotate3d(0, 0, 1, 200deg);<br /> opacity: 0;<br /> }<br />}<br />.rotateOut {<br /> -webkit-animation-name: rotateOut;<br /> animation-name: rotateOut;<br />}<br />@-webkit-keyframes rotateOutDownLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 45deg);<br /> transform: rotate3d(0, 0, 1, 45deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes rotateOutDownLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 45deg);<br /> transform: rotate3d(0, 0, 1, 45deg);<br /> opacity: 0;<br /> }<br />}<br />.rotateOutDownLeft {<br /> -webkit-animation-name: rotateOutDownLeft;<br /> animation-name: rotateOutDownLeft;<br />}<br />@-webkit-keyframes rotateOutDownRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -45deg);<br /> transform: rotate3d(0, 0, 1, -45deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes rotateOutDownRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -45deg);<br /> transform: rotate3d(0, 0, 1, -45deg);<br /> opacity: 0;<br /> }<br />}<br />.rotateOutDownRight {<br /> -webkit-animation-name: rotateOutDownRight;<br /> animation-name: rotateOutDownRight;<br />}<br />@-webkit-keyframes rotateOutUpLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -45deg);<br /> transform: rotate3d(0, 0, 1, -45deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes rotateOutUpLeft {<br /> from {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: left bottom;<br /> transform-origin: left bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, -45deg);<br /> transform: rotate3d(0, 0, 1, -45deg);<br /> opacity: 0;<br /> }<br />}<br />.rotateOutUpLeft {<br /> -webkit-animation-name: rotateOutUpLeft;<br /> animation-name: rotateOutUpLeft;<br />}<br />@-webkit-keyframes rotateOutUpRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 90deg);<br /> transform: rotate3d(0, 0, 1, 90deg);<br /> opacity: 0;<br /> }<br />}<br />@keyframes rotateOutUpRight {<br /> from {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform-origin: right bottom;<br /> transform-origin: right bottom;<br /> -webkit-transform: rotate3d(0, 0, 1, 90deg);<br /> transform: rotate3d(0, 0, 1, 90deg);<br /> opacity: 0;<br /> }<br />}<br />.rotateOutUpRight {<br /> -webkit-animation-name: rotateOutUpRight;<br /> animation-name: rotateOutUpRight;<br />}<br />@-webkit-keyframes hinge {<br /> 0% {<br /> -webkit-transform-origin: top left;<br /> transform-origin: top left;<br /> -webkit-animation-timing-function: ease-in-out;<br /> animation-timing-function: ease-in-out;<br /> }<br /> 20%, 60% {<br /> -webkit-transform: rotate3d(0, 0, 1, 80deg);<br /> transform: rotate3d(0, 0, 1, 80deg);<br /> -webkit-transform-origin: top left;<br /> transform-origin: top left;<br /> -webkit-animation-timing-function: ease-in-out;<br /> animation-timing-function: ease-in-out;<br /> }<br /> 40%, 80% {<br /> -webkit-transform: rotate3d(0, 0, 1, 60deg);<br /> transform: rotate3d(0, 0, 1, 60deg);<br /> -webkit-transform-origin: top left;<br /> transform-origin: top left;<br /> -webkit-animation-timing-function: ease-in-out;<br /> animation-timing-function: ease-in-out;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 700px, 0);<br /> transform: translate3d(0, 700px, 0);<br /> opacity: 0;<br /> }<br />}<br />@keyframes hinge {<br /> 0% {<br /> -webkit-transform-origin: top left;<br /> transform-origin: top left;<br /> -webkit-animation-timing-function: ease-in-out;<br /> animation-timing-function: ease-in-out;<br /> }<br /> 20%, 60% {<br /> -webkit-transform: rotate3d(0, 0, 1, 80deg);<br /> transform: rotate3d(0, 0, 1, 80deg);<br /> -webkit-transform-origin: top left;<br /> transform-origin: top left;<br /> -webkit-animation-timing-function: ease-in-out;<br /> animation-timing-function: ease-in-out;<br /> }<br /> 40%, 80% {<br /> -webkit-transform: rotate3d(0, 0, 1, 60deg);<br /> transform: rotate3d(0, 0, 1, 60deg);<br /> -webkit-transform-origin: top left;<br /> transform-origin: top left;<br /> -webkit-animation-timing-function: ease-in-out;<br /> animation-timing-function: ease-in-out;<br /> opacity: 1;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 700px, 0);<br /> transform: translate3d(0, 700px, 0);<br /> opacity: 0;<br /> }<br />}<br />.hinge {<br /> -webkit-animation-name: hinge;<br /> animation-name: hinge;<br />}<br />* originally authored by Nick Pettit - https:<br />github.com/nickpettit/glide *<br />@-webkit-keyframes rollIn {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);<br /> transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />@keyframes rollIn {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);<br /> transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);<br /> }<br /> to {<br /> opacity: 1;<br /> -webkit-transform: none;<br /> transform: none;<br /> }<br />}<br />.rollIn {<br /> -webkit-animation-name: rollIn;<br /> animation-name: rollIn;<br />}<br />* originally authored by Nick Pettit - https:<br />github.com/nickpettit/glide *<br />@-webkit-keyframes rollOut {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);<br /> transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);<br /> }<br />}<br />@keyframes rollOut {<br /> from {<br /> opacity: 1;<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);<br /> transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);<br /> }<br />}<br />.rollOut {<br /> -webkit-animation-name: rollOut;<br /> animation-name: rollOut;<br />}<br />@-webkit-keyframes zoomIn {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br /> 50% {<br /> opacity: 1;<br /> }<br />}<br />@keyframes zoomIn {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br /> 50% {<br /> opacity: 1;<br /> }<br />}<br />.zoomIn {<br /> -webkit-animation-name: zoomIn;<br /> animation-name: zoomIn;<br />}<br />@-webkit-keyframes zoomInDown {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />@keyframes zoomInDown {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />.zoomInDown {<br /> -webkit-animation-name: zoomInDown;<br /> animation-name: zoomInDown;<br />}<br />@-webkit-keyframes zoomInLeft {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />@keyframes zoomInLeft {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />.zoomInLeft {<br /> -webkit-animation-name: zoomInLeft;<br /> animation-name: zoomInLeft;<br />}<br />@-webkit-keyframes zoomInRight {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />@keyframes zoomInRight {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />.zoomInRight {<br /> -webkit-animation-name: zoomInRight;<br /> animation-name: zoomInRight;<br />}<br />@-webkit-keyframes zoomInUp {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />@keyframes zoomInUp {<br /> from {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> 60% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />.zoomInUp {<br /> -webkit-animation-name: zoomInUp;<br /> animation-name: zoomInUp;<br />}<br />@-webkit-keyframes zoomOut {<br /> from {<br /> opacity: 1;<br /> }<br /> 50% {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br /> to {<br /> opacity: 0;<br /> }<br />}<br />@keyframes zoomOut {<br /> from {<br /> opacity: 1;<br /> }<br /> 50% {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.3, .3, .3);<br /> transform: scale3d(.3, .3, .3);<br /> }<br /> to {<br /> opacity: 0;<br /> }<br />}<br />.zoomOut {<br /> -webkit-animation-name: zoomOut;<br /> animation-name: zoomOut;<br />}<br />@-webkit-keyframes zoomOutDown {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);<br /> -webkit-transform-origin: center bottom;<br /> transform-origin: center bottom;<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />@keyframes zoomOutDown {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);<br /> -webkit-transform-origin: center bottom;<br /> transform-origin: center bottom;<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />.zoomOutDown {<br /> -webkit-animation-name: zoomOutDown;<br /> animation-name: zoomOutDown;<br />}<br />@-webkit-keyframes zoomOutLeft {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);<br /> transform: scale(.1) translate3d(-2000px, 0, 0);<br /> -webkit-transform-origin: left center;<br /> transform-origin: left center;<br /> }<br />}<br />@keyframes zoomOutLeft {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);<br /> transform: scale(.1) translate3d(-2000px, 0, 0);<br /> -webkit-transform-origin: left center;<br /> transform-origin: left center;<br /> }<br />}<br />.zoomOutLeft {<br /> -webkit-animation-name: zoomOutLeft;<br /> animation-name: zoomOutLeft;<br />}<br />@-webkit-keyframes zoomOutRight {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale(.1) translate3d(2000px, 0, 0);<br /> transform: scale(.1) translate3d(2000px, 0, 0);<br /> -webkit-transform-origin: right center;<br /> transform-origin: right center;<br /> }<br />}<br />@keyframes zoomOutRight {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale(.1) translate3d(2000px, 0, 0);<br /> transform: scale(.1) translate3d(2000px, 0, 0);<br /> -webkit-transform-origin: right center;<br /> transform-origin: right center;<br /> }<br />}<br />.zoomOutRight {<br /> -webkit-animation-name: zoomOutRight;<br /> animation-name: zoomOutRight;<br />}<br />@-webkit-keyframes zoomOutUp {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);<br /> -webkit-transform-origin: center bottom;<br /> transform-origin: center bottom;<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />@keyframes zoomOutUp {<br /> 40% {<br /> opacity: 1;<br /> -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);<br /> -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);<br /> }<br /> to {<br /> opacity: 0;<br /> -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);<br /> transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);<br /> -webkit-transform-origin: center bottom;<br /> transform-origin: center bottom;<br /> -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);<br /> }<br />}<br />.zoomOutUp {<br /> -webkit-animation-name: zoomOutUp;<br /> animation-name: zoomOutUp;<br />}<br />@-webkit-keyframes slideInDown {<br /> from {<br /> -webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />@keyframes slideInDown {<br /> from {<br /> -webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />.slideInDown {<br /> -webkit-animation-name: slideInDown;<br /> animation-name: slideInDown;<br />}<br />@-webkit-keyframes slideInLeft {<br /> from {<br /> -webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />@keyframes slideInLeft {<br /> from {<br /> -webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />.slideInLeft {<br /> -webkit-animation-name: slideInLeft;<br /> animation-name: slideInLeft;<br />}<br />@-webkit-keyframes slideInRight {<br /> from {<br /> -webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />@keyframes slideInRight {<br /> from {<br /> -webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />.slideInRight {<br /> -webkit-animation-name: slideInRight;<br /> animation-name: slideInRight;<br />}<br />@-webkit-keyframes slideInUp {<br /> from {<br /> -webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />@keyframes slideInUp {<br /> from {<br /> -webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);<br /> visibility: visible;<br /> }<br /> to {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br />}<br />.slideInUp {<br /> -webkit-animation-name: slideInUp;<br /> animation-name: slideInUp;<br />}<br />@-webkit-keyframes slideOutDown {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);<br /> }<br />}<br />@keyframes slideOutDown {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(0, 100%, 0);<br /> transform: translate3d(0, 100%, 0);<br /> }<br />}<br />.slideOutDown {<br /> -webkit-animation-name: slideOutDown;<br /> animation-name: slideOutDown;<br />}<br />@-webkit-keyframes slideOutLeft {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);<br /> }<br />}<br />@keyframes slideOutLeft {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(-100%, 0, 0);<br /> transform: translate3d(-100%, 0, 0);<br /> }<br />}<br />.slideOutLeft {<br /> -webkit-animation-name: slideOutLeft;<br /> animation-name: slideOutLeft;<br />}<br />@-webkit-keyframes slideOutRight {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);<br /> }<br />}<br />@keyframes slideOutRight {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(100%, 0, 0);<br /> transform: translate3d(100%, 0, 0);<br /> }<br />}<br />.slideOutRight {<br /> -webkit-animation-name: slideOutRight;<br /> animation-name: slideOutRight;<br />}<br />@-webkit-keyframes slideOutUp {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);<br /> }<br />}<br />@keyframes slideOutUp {<br /> from {<br /> -webkit-transform: translate3d(0, 0, 0);<br /> transform: translate3d(0, 0, 0);<br /> }<br /> to {<br /> visibility: hidden;<br /> -webkit-transform: translate3d(0, -100%, 0);<br /> transform: translate3d(0, -100%, 0);<br /> }<br />}<br />.slideOutUp {<br /> -webkit-animation-name: slideOutUp;<br /> animation-name: slideOutUp;<br />}<br />css<br />ootstrap.css<br />@charset "UTF-8";<br />*!<br /> * Bootstrap v3.3.5 (http:<br />getbootstrap.com)<br /> * Copyright 2011-2015 Twitter, Inc.<br /> * Licensed under MIT (https:<br />github.com/twbs<br />ootstrap<br />lo<br />maste<br />LICENSE)<br /> *<br />*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css *<br />html {<br /> font-family: sans-serif;<br /> -ms-text-size-adjust: 100%;<br /> -webkit-text-size-adjust: 100%;<br />}<br />ody {<br /> margin: 0;<br />}<br />article,<br />aside,<br />details,<br />figcaption,<br />figure,<br />footer,<br />header,<br />hgroup,<br />main,<br />menu,<br />nav,<br />section,<br />summary {<br /> display: block;<br />}<br />audio,<br />canvas,<br />progress,<br />video {<br /> display: inline-block;<br /> vertical-align: baseline;<br />}<br />audio:not([controls]) {<br /> display: none;<br /> height: 0;<br />}<br />[hidden],<br />template {<br /> display: none;<br />}<br />a {<br /> background-color: transparent;<br />}<br />a:active,<br />a:hover {<br /> outline: 0;<br />}<br />a<br />[title] {<br /> border-bottom: 1px dotted;<br />}<br />,<br />strong {<br /> font-weight: bold;<br />}<br />dfn {<br /> font-style: italic;<br />}<br />h1 {<br /> font-size: 2em;<br /> margin: 0.67em 0;<br />}<br />mark {<br /> background: #ff0;<br /> color: #000;<br />}<br />small {<br /> font-size: 80%;<br />}<br />sub,<br />sup {<br /> font-size: 75%;<br /> line-height: 0;<br /> position: relative;<br /> vertical-align: baseline;<br />}<br />sup {<br /> top: -0.5em;<br />}<br />sub {<br /> bottom: -0.25em;<br />}<br />img {<br /> border: 0;<br />}<br />svg:not(:root) {<br /> overflow: hidden;<br />}<br />figure {<br /> margin: 1em 40px;<br />}<br />hr {<br /> box-sizing: content-box;<br /> height: 0;<br />}<br />pre {<br /> overflow: auto;<br />}<br />code,<br />kbd,<br />pre,<br />samp {<br /> font-family: monospace, monospace;<br /> font-size: 1em;<br />}<br />utton,<br />input,<br />optgroup,<br />select,<br />textarea {<br /> color: inherit;<br /> font: inherit;<br /> margin: 0;<br />}<br />utton {<br /> overflow: visible;<br />}<br />utton,<br />select {<br /> text-transform: none;<br />}<br />utton,<br />html input[type="button"],<br />input[type="reset"],<br />input[type="submit"] {<br /> -webkit-appearance: button;<br /> cursor: pointer;<br />}<br />utton[disabled],<br />html input[disabled] {<br /> cursor: default;<br />}<br />utton::-moz-focus-inner,<br />input::-moz-focus-inner {<br /> border: 0;<br /> padding: 0;<br />}<br />input {<br /> line-height: normal;<br />}<br />input[type="checkbox"],<br />input[type="radio"] {<br /> box-sizing: border-box;<br /> padding: 0;<br />}<br />input[type="number"]::-webkit-inner-spin-button,<br />input[type="number"]::-webkit-outer-spin-button {<br /> height: auto;<br />}<br />input[type="search"] {<br /> -webkit-appearance: textfield;<br /> box-sizing: content-box;<br />}<br />input[type="search"]::-webkit-search-cancel-button,<br />input[type="search"]::-webkit-search-decoration {<br /> -webkit-appearance: none;<br />}<br />fieldset {<br /> border: 1px solid #c0c0c0;<br /> margin: 0 2px;<br /> padding: 0.35em 0.625em 0.75em;<br />}<br />legend {<br /> border: 0;<br /> padding: 0;<br />}<br />textarea {<br /> overflow: auto;<br />}<br />optgroup {<br /> font-weight: bold;<br />}<br />table {<br /> border-collapse: collapse;<br /> border-spacing: 0;<br />}<br />td,<br />th {<br /> padding: 0;<br />}<br />*! Source: https:<br />github.com/h5bp/html5-boilerplate<br />lo<br />maste<br />src/css/main.css *<br />@media print {<br /> *,<br /> *:before,<br /> *:after {<br /> background: transparent !important;<br /> color: #000 !important;<br /> box-shadow: none !important;<br /> text-shadow: none !important;<br /> }<br /> a,<br /> a:visited {<br /> text-decoration: underline;<br /> }<br /> a[href]:after {<br /> content: " (" attr(href) ")";<br /> }<br /> a<br />[title]:after {<br /> content: " (" attr(title) ")";<br /> }<br /> a[href^="#"]:after,<br /> a[href^="javascript:"]:after {<br /> content: "";<br /> }<br /> pre,<br /> blockquote {<br /> border: 1px solid #999;<br /> page-<br />eak-inside: avoid;<br /> }<br /> thead {<br /> display: table-header-group;<br /> }<br /> tr,<br /> img {<br /> page-<br />eak-inside: avoid;<br /> }<br /> img {<br /> max-width: 100% !important;<br /> }<br /> p,<br /> h2,<br /> h3 {<br /> orphans: 3;<br /> widows: 3;<br /> }<br /> h2,<br /> h3 {<br /> page-<br />eak-after: avoid;<br /> }<br /> .navbar {<br /> display: none;<br /> }<br /> .btn > .caret,<br /> .dropup > .btn > .caret {<br /> border-top-color: #000 !important;<br /> }<br /> .label {<br /> border: 1px solid #000;<br /> }<br /> .table {<br /> border-collapse: collapse !important;<br /> }<br /> .table td,<br /> .table th {<br /> background-color: #fff !important;<br /> }<br /> .table-bordered th,<br /> .table-bordered td {<br /> border: 1px solid #ddd !important;<br /> }<br />}<br />* {<br /> -webkit-box-sizing: border-box;<br /> -moz-box-sizing: border-box;<br /> box-sizing: border-box;<br />}<br />*:before,<br />*:after {<br /> -webkit-box-sizing: border-box;<br /> -moz-box-sizing: border-box;<br /> box-sizing: border-box;<br />}<br />html {<br /> font-size: 10px;<br /> -webkit-tap-highlight-color: transparent;<br />}<br />ody {<br /> font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;<br /> font-size: 14px;<br /> line-height: 1.42857;<br /> color: #333333;<br /> background-color: #fff;<br />}<br />input,<br />utton,<br />select,<br />textarea {<br /> font-family: inherit;<br /> font-size: inherit;<br /> line-height: inherit;<br />}<br />a {<br /> color: #337ab7;<br /> text-decoration: none;<br />}<br />a:hover, a:focus {<br /> color: #23527c;<br /> text-decoration: underline;<br />}<br />a:focus {<br /> outline: thin dotted;<br /> outline: 5px auto -webkit-focus-ring-color;<br /> outline-offset: -2px;<br />}<br />figure {<br /> margin: 0;<br />}<br />img {<br /> vertical-align: middle;<br />}<br />.img-responsive {<br /> display: block;<br /> max-width: 100%;<br /> height: auto;<br />}<br />.img-rounded {<br /> border-radius: 6px;<br />}<br />.img-thumbnail {<br /> padding: 4px;<br /> line-height: 1.42857;<br /> background-color: #fff;<br /> border: 1px solid #ddd;<br /> border-radius: 4px;<br /> -webkit-transition: all 0.2s ease-in-out;<br /> -o-transition: all 0.2s ease-in-out;<br /> transition: all 0.2s ease-in-out;<br /> display: inline-block;<br /> max-width: 100%;<br /> height: auto;<br />}<br />.img-circle {<br /> border-radius: 50%;<br />}<br />hr {<br /> margin-top: 20px;<br /> margin-bottom: 20px;<br /> border: 0;<br /> border-top: 1px solid #eeeeee;<br />}<br />.sr-only {<br /> position: absolute;<br /> width: 1px;<br /> height: 1px;<br /> margin: -1px;<br /> padding: 0;<br /> overflow: hidden;<br /> clip: rect(0, 0, 0, 0);<br /> border: 0;<br />}<br />.sr-only-focusable:active, .sr-only-focusable:focus {<br /> position: static;<br /> width: auto;<br /> height: auto;<br /> margin: 0;<br /> overflow: visible;<br /> clip: auto;<br />}<br />[role="button"] {<br /> cursor: pointer;<br />}<br />h1, h2, h3, h4, h5, h6,<br />.h1, .h2, .h3, .h4, .h5, .h6 {<br /> font-family: inherit;<br /> font-weight: 500;<br /> line-height: 1.1;<br /> color: inherit;<br />}<br />h1 small,<br />h1 .small, h2 small,<br />h2 .small, h3 small,<br />h3 .small, h4 small,<br />h4 .small, h5 small,<br />h5 .small, h6 small,<br />h6 .small,<br />.h1 small,<br />.h1 .small, .h2 small,<br />.h2 .small, .h3 small,<br />.h3 .small, .h4 small,<br />.h4 .small, .h5 small,<br />.h5 .small, .h6 small,<br />.h6 .small {<br /> font-weight: normal;<br /> line-height: 1;<br /> color: #777777;<br />}<br />h1, .h1,<br />h2, .h2,<br />h3, .h3 {<br /> margin-top: 20px;<br /> margin-bottom: 10px;<br />}<br />h1 small,<br />h1 .small, .h1 small,<br />.h1 .small,<br />h2 small,<br />h2 .small, .h2 small,<br />.h2 .small,<br />h3 small,<br />h3 .small, .h3 small,<br />.h3 .small {<br /> font-size: 65%;<br />}<br />h4, .h4,<br />h5, .h5,<br />h6, .h6 {<br /> margin-top: 10px;<br /> margin-bottom: 10px;<br />}<br />h4 small,<br />h4 .small, .h4 small,<br />.h4 .small,<br />h5 small,<br />h5 .small, .h5 small,<br />.h5 .small,<br />h6 small,<br />h6 .small, .h6 small,<br />.h6 .small {<br /> font-size: 75%;<br />}<br />h1, .h1 {<br /> font-size: 36px;<br />}<br />h2, .h2 {<br /> font-size: 30px;<br />}<br />h3, .h3 {<br /> font-size: 24px;<br />}<br />h4, .h4 {<br /> font-size: 18px;<br />}<br />h5, .h5 {<br /> font-size: 14px;<br />}<br />h6, .h6 {<br /> font-size: 12px;<br />}<br />p {<br /> margin: 0 0 10px;<br />}<br />.lead {<br /> margin-bottom: 20px;<br /> font-size: 16px;<br /> font-weight: 300;<br /> line-height: 1.4;<br />}<br />@media (min-width: 768px) {<br /> .lead {<br /> font-size: 21px;<br /> }<br />}<br />small,<br />.small {<br /> font-size: 85%;<br />}<br />mark,<br />.mark {<br /> background-color: #fcf8e3;<br /> padding: .2em;<br />}<br />.text-left {<br /> text-align: left;<br />}<br />.text-right {<br /> text-align: right;<br />}<br />.text-center {<br /> text-align: center;<br />}<br />.text-justify {<br /> text-align: justify;<br />}<br />.text-nowrap {<br /> white-space: nowrap;<br />}<br />.text-lowercase {<br /> text-transform: lowercase;<br />}<br />.text-uppercase, .initialism {<br /> text-transform: uppercase;<br />}<br />.text-capitalize {<br /> text-transform: capitalize;<br />}<br />.text-muted {<br /> color: #777777;<br />}<br />.text-primary {<br /> color: #337ab7;<br />}<br />a.text-primary:hover,<br />a.text-primary:focus {<br /> color: #286090;<br />}<br />.text-success {<br /> color: #3c763d;<br />}<br />a.text-success:hover,<br />a.text-success:focus {<br /> color: #2b542c;<br />}<br />.text-info {<br /> color: #31708f;<br />}<br />a.text-info:hover,<br />a.text-info:focus {<br /> color: #245269;<br />}<br />.text-warning {<br /> color: #8a6d3b;<br />}<br />a.text-warning:hover,<br />a.text-warning:focus {<br /> color: #66512c;<br />}<br />.text-danger {<br /> color: #a94442;<br />}<br />a.text-danger:hover,<br />a.text-danger:focus {<br /> color: #843534;<br />}<br />.bg-primary {<br /> color: #fff;<br />}<br />.bg-primary {<br /> background-color: #337ab7;<br />}<br />a.bg-primary:hover,<br />a.bg-primary:focus {<br /> background-color: #286090;<br />}<br />.bg-success {<br /> background-color: #dff0d8;<br />}<br />a.bg-success:hover,<br />a.bg-success:focus {<br /> background-color: #c1e2b3;<br />}<br />.bg-info {<br /> background-color: #d9edf7;<br />}<br />a.bg-info:hover,<br />a.bg-info:focus {<br /> background-color: #afd9ee;<br />}<br />.bg-warning {<br /> background-color: #fcf8e3;<br />}<br />a.bg-warning:hover,<br />a.bg-warning:focus {<br /> background-color: #f7ecb5;<br />}<br />.bg-danger {<br /> background-color: #f2dede;<br />}<br />a.bg-danger:hover,<br />a.bg-danger:focus {<br /> background-color: #e4b9b9;<br />}<br />.page-header {<br /> padding-bottom: 9px;<br /> margin: 40px 0 20px;<br /> border-bottom: 1px solid #eeeeee;<br />}<br />ul,<br />ol {<br /> margin-top: 0;<br /> margin-bottom: 10px;<br />}<br />ul ul,<br />ul ol,<br />ol ul,<br />ol ol {<br /> margin-bottom: 0;<br />}<br />.list-unstyled {<br /> padding-left: 0;<br /> list-style: none;<br />}<br />.list-inline {<br /> padding-left: 0;<br /> list-style: none;<br /> margin-left: -5px;<br />}<br />.list-inline > li {<br /> display: inline-block;<br /> padding-left: 5px;<br /> padding-right: 5px;<br />}<br />dl {<br /> margin-top: 0;<br /> margin-bottom: 20px;<br />}<br />dt,<br />dd {<br /> line-height: 1.42857;<br />}<br />dt {<br /> font-weight: bold;<br />}<br />dd {<br /> margin-left: 0;<br />}<br />.dl-horizontal dd:before, .dl-horizontal dd:after {<br /> content: " ";<br /> display: table;<br />}<br />.dl-horizontal dd:after {<br /> clear: both;<br />}<br />@media (min-width: 768px) {<br /> .dl-horizontal dt {<br /> float: left;<br /> width: 160px;<br /> clear: left;<br /> text-align: right;<br /> overflow: hidden;<br /> text-overflow: ellipsis;<br /> white-space: nowrap;<br /> }<br /> .dl-horizontal dd {<br /> margin-left: 180px;<br /> }<br />}<br />a<br />[title],<br />a<br />[data-original-title] {<br /> cursor: help;<br /> border-bottom: 1px dotted #777777;<br />}<br />.initialism {<br /> font-size: 90%;<br />}<br />lockquote {<br /> padding: 10px 20px;<br /> margin: 0 0 20px;<br /> font-size: 17.5px;<br /> border-left: 5px solid #eeeeee;<br />}<br />lockquote p:last-child,<br />lockquote ul:last-child,<br />lockquote ol:last-child {<br /> margin-bottom: 0;<br />}<br />lockquote footer,<br />lockquote small,<br />lockquote .small {<br /> display: block;<br /> font-size: 80%;<br /> line-height: 1.42857;<br /> color: #777777;<br />}<br />lockquote footer:before,<br />lockquote small:before,<br />lockquote .small:before {<br /> content: '\2014 \00A0';<br />}<br />.blockquote-reverse,<br />lockquote.pull-right {<br /> padding-right: 15px;<br /> padding-left: 0;<br /> border-right: 5px solid #eeeeee;<br /> border-left: 0;<br /> text-align: right;<br />}<br />.blockquote-reverse footer:before,<br />.blockquote-reverse small:before,<br />.blockquote-reverse .small:before,<br />lockquote.pull-right footer:before,<br />lockquote.pull-right small:before,<br />lockquote.pull-right .small:before {<br /> content: '';<br />}<br />.blockquote-reverse footer:after,<br />.blockquote-reverse small:after,<br />.blockquote-reverse .small:after,<br />lockquote.pull-right footer:after,<br />lockquote.pull-right small:after,<br />lockquote.pull-right .small:after {<br /> content: '\00A0 \2014';<br />}<br />address {<br /> margin-bottom: 20px;<br /> font-style: normal;<br /> line-height: 1.42857;<br />}<br />code,<br />kbd,<br />pre,<br />samp {<br /> font-family: Menlo, Monaco, Consolas, "Courier New", monospace;<br />}<br />code {<br /> padding: 2px 4px;<br /> font-size: 90%;<br /> color: #c7254e;<br /> background-color: #f9f2f4;<br /> border-radius: 4px;<br />}<br />kbd {<br /> padding: 2px 4px;<br /> font-size: 90%;<br /> color: #fff;<br /> background-color: #333;<br /> border-radius: 3px;<br /> box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);<br />}<br />kbd kbd {<br /> padding: 0;<br /> font-size: 100%;<br /> font-weight: bold;<br /> box-shadow: none;<br />}<br />pre {<br /> display: block;<br /> padding: 9.5px;<br /> margin: 0 0 10px;<br /> font-size: 13px;<br /> line-height: 1.42857;<br /> word-<br />eak: <br />eak-all;<br /> word-wrap: <br />eak-word;<br /> color: #333333;<br /> background-color: #f5f5f5;<br /> border: 1px solid #ccc;<br /> border-radius: 4px;<br />}<br />pre code {<br /> padding: 0;<br /> font-size: inherit;<br /> color: inherit;<br /> white-space: pre-wrap;<br /> background-color: transparent;<br /> border-radius: 0;<br />}<br />.pre-scrollable {<br /> max-height: 340px;<br /> overflow-y: scroll;<br />}<br />.container {<br /> margin-right: auto;<br /> margin-left: auto;<br /> padding-left: 15px;<br /> padding-right: 15px;<br />}<br />.container:before, .container:after {<br /> content: " ";<br /> display: table;<br />}<br />.container:after {<br /> clear: both;<br />}<br />@media (min-width: 768px) {<br /> .container {<br /> width: 750px;<br /> }<br />}<br />@media (min-width: 992px) {<br /> .container {<br /> width: 970px;<br /> }<br />}<br />@media (min-width: 1200px) {<br /> .container {<br /> width: 1170px;<br /> }<br />}<br />.container-fluid {<br /> margin-right: auto;<br /> margin-left: auto;<br /> padding-left: 15px;<br /> padding-right: 15px;<br />}<br />.container-fluid:before, .container-fluid:after {<br /> content: " ";<br /> display: table;<br />}<br />.container-fluid:after {<br /> clear: both;<br />}<br />.row {<br /> margin-left: -15px;<br /> margin-right: -15px;<br />}<br />.row:before, .row:after {<br /> content: " ";<br /> display: table;<br />}<br />.row:after {<br /> clear: both;<br />}<br />.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {<br /> position: relative;<br /> min-height: 1px;<br /> padding-left: 15px;<br /> padding-right: 15px;<br />}<br />.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {<br /> float: left;<br />}<br />.col-xs-1 {<br /> width: 8.33333%;<br />}<br />.col-xs-2 {<br /> width: 16.66667%;<br />}<br />.col-xs-3 {<br /> width: 25%;<br />}<br />.col-xs-4 {<br /> width: 33.33333%;<br />}<br />.col-xs-5 {<br /> width: 41.66667%;<br />}<br />.col-xs-6 {<br /> width: 50%;<br />}<br />.col-xs-7 {<br /> width: 58.33333%;<br />}<br />.col-xs-8 {<br /> width: 66.66667%;<br />}<br />.col-xs-9 {<br /> width: 75%;<br />}<br />.col-xs-10 {<br /> width: 83.33333%;<br />}<br />.col-xs-11 {<br /> width: 91.66667%;<br />}<br />.col-xs-12 {<br /> width: 100%;<br />}<br />.col-xs-pull-0 {<br /> right: auto;<br />}<br />.col-xs-pull-1 {<br /> right: 8.33333%;<br />}<br />.col-xs-pull-2 {<br /> right: 16.66667%;<br />}<br />.col-xs-pull-3 {<br /> right: 25%;<br />}<br />.col-xs-pull-4 {<br /> right: 33.33333%;<br />}<br />.col-xs-pull-5 {<br /> right: 41.66667%;<br />}<br />.col-xs-pull-6 {<br /> right: 50%;<br />}<br />.col-xs-pull-7 {<br /> right: 58.33333%;<br />}<br />.col-xs-pull-8 {<br /> right: 66.66667%;<br />}<br />.col-xs-pull-9 {<br /> right: 75%;<br />}<br />.col-xs-pull-10 {<br /> right: 83.33333%;<br />}<br />.col-xs-pull-11 {<br /> right: 91.66667%;<br />}<br />.col-xs-pull-12 {<br /> right: 100%;<br />}<br />.col-xs-push-0 {<br /> left: auto;<br />}<br />.col-xs-push-1 {<br /> left: 8.33333%;<br />}<br />.col-xs-push-2 {<br /> left: 16.66667%;<br />}<br />.col-xs-push-3 {<br /> left: 25%;<br />}<br />.col-xs-push-4 {<br /> left: 33.33333%;<br />}<br />.col-xs-push-5 {<br /> left: 41.66667%;<br />}<br />.col-xs-push-6 {<br /> left: 50%;<br />}<br />.col-xs-push-7 {<br /> left: 58.33333%;<br />}<br />.col-xs-push-8 {<br /> left: 66.66667%;<br />}<br />.col-xs-push-9 {<br /> left: 75%;<br />}<br />.col-xs-push-10 {<br /> left: 83.33333%;<br />}<br />.col-xs-push-11 {<br /> left: 91.66667%;<br />}<br />.col-xs-push-12 {<br /> left: 100%;<br />}<br />.col-xs-offset-0 {<br /> margin-left: 0%;<br />}<br />.col-xs-offset-1 {<br /> margin-left: 8.33333%;<br />}<br />.col-xs-offset-2 {<br /> margin-left: 16.66667%;<br />}<br />.col-xs-offset-3 {<br /> margin-left: 25%;<br />}<br />.col-xs-offset-4 {<br /> margin-left: 33.33333%;<br />}<br />.col-xs-offset-5 {<br /> margin-left: 41.66667%;<br />}<br />.col-xs-offset-6 {<br /> margin-left: 50%;<br />}<br />.col-xs-offset-7 {<br /> margin-left: 58.33333%;<br />}<br />.col-xs-offset-8 {<br /> margin-left: 66.66667%;<br />}<br />.col-xs-offset-9 {<br /> margin-left: 75%;<br />}<br />.col-xs-offset-10 {<br /> margin-left: 83.33333%;<br />}<br />.col-xs-offset-11 {<br /> margin-left: 91.66667%;<br />}<br />.col-xs-offset-12 {<br /> margin-left: 100%;<br />}<br />@media (min-width: 768px) {<br /> .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {<br /> float: left;<br /> }<br /> .col-sm-1 {<br /> width: 8.33333%;<br /> }<br /> .col-sm-2 {<br /> width: 16.66667%;<br /> }<br /> .col-sm-3 {<br /> width: 25%;<br /> }<br /> .col-sm-4 {<br /> width: 33.33333%;<br /> }<br /> .col-sm-5 {<br /> width: 41.66667%;<br /> }<br /> .col-sm-6 {<br /> width: 50%;<br /> }<br /> .col-sm-7 {<br /> width: 58.33333%;<br /> }<br /> .col-sm-8 {<br /> width: 66.66667%;<br /> }<br /> .col-sm-9 {<br /> width: 75%;<br /> }<br /> .col-sm-10 {<br /> width: 83.33333%;<br /> }<br /> .col-sm-11 {<br /> width: 91.66667%;<br /> }<br /> .col-sm-12 {<br /> width: 100%;<br /> }<br /> .col-sm-pull-0 {<br /> right: auto;<br /> }<br /> .col-sm-pull-1 {<br /> right: 8.33333%;<br /> }<br /> .col-sm-pull-2 {<br /> right: 16.66667%;<br /> }<br /> .col-sm-pull-3 {<br /> right: 25%;<br /> }<br /> .col-sm-pull-4 {<br /> right: 33.33333%;<br /> }<br /> .col-sm-pull-5 {<br /> right: 41.66667%;<br /> }<br /> .col-sm-pull-6 {<br /> right: 50%;<br /> }<br /> .col-sm-pull-7 {<br /> right: 58.33333%;<br /> }<br /> .col-sm-pull-8 {<br /> right: 66.66667%;<br /> }<br /> .col-sm-pull-9 {<br /> right: 75%;<br /> }<br /> .col-sm-pull-10 {<br /> right: 83.33333%;<br /> }<br /> .col-sm-pull-11 {<br /> right: 91.66667%;<br /> }<br /> .col-sm-pull-12 {<br /> right: 100%;<br /> }<br /> .col-sm-push-0 {<br /> left: auto;<br /> }<br /> .col-sm-push-1 {<br /> left: 8.33333%;<br /> }<br /> .col-sm-push-2 {<br /> left: 16.66667%;<br /> }<br /> .col-sm-push-3 {<br /> left: 25%;<br /> }<br /> .col-sm-push-4 {<br /> left: 33.33333%;<br /> }<br /> .col-sm-push-5 {<br /> left: 41.66667%;<br /> }<br /> .col-sm-push-6 {<br /> left: 50%;<br /> }<br /> .col-sm-push-7 {<br /> left: 58.33333%;<br /> }<br /> .col-sm-push-8 {<br /> left: 66.66667%;<br /> }<br /> .col-sm-push-9 {<br /> left: 75%;<br /> }<br /> .col-sm-push-10 {<br /> left: 83.33333%;<br /> }<br /> .col-sm-push-11 {<br /> left: 91.66667%;<br /> }<br /> .col-sm-push-12 {<br /> left: 100%;<br /> }<br /> .col-sm-offset-0 {<br /> margin-left: 0%;<br /> }<br /> .col-sm-offset-1 {<br /> margin-left: 8.33333%;<br /> }<br /> .col-sm-offset-2 {<br /> margin-left: 16.66667%;<br /> }<br /> .col-sm-offset-3 {<br /> margin-left: 25%;<br /> }<br /> .col-sm-offset-4 {<br /> margin-left: 33.33333%;<br /> }<br /> .col-sm-offset-5 {<br /> margin-left: 41.66667%;<br /> }<br /> .col-sm-offset-6 {<br /> margin-left: 50%;<br /> }<br /> .col-sm-offset-7 {<br /> margin-left: 58.33333%;<br /> }<br /> .col-sm-offset-8 {<br /> margin-left: 66.66667%;<br /> }<br /> .col-sm-offset-9 {<br /> margin-left: 75%;<br /> }<br /> .col-sm-offset-10 {<br /> margin-left: 83.33333%;<br /> }<br /> .col-sm-offset-11 {<br /> margin-left: 91.66667%;<br /> }<br /> .col-sm-offset-12 {<br /> margin-left: 100%;<br /> }<br />}<br />@media (min-width: 992px) {<br /> .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {<br /> float: left;<br /> }<br /> .col-md-1 {<br /> width: 8.33333%;<br /> }<br /> .col-md-2 {<br /> width: 16.66667%;<br /> }<br /> .col-md-3 {<br /> width: 25%;<br /> }<br /> .col-md-4 {<br /> width: 33.33333%;<br /> }<br /> .col-md-5 {<br /> width: 41.66667%;<br /> }<br /> .col-md-6 {<br /> width: 50%;<br /> }<br /> .col-md-7 {<br /> width: 58.33333%;<br /> }<br /> .col-md-8 {<br /> width: 66.66667%;<br /> }<br /> .col-md-9 {<br /> width: 75%;<br /> }<br /> .col-md-10 {<br /> width: 83.33333%;<br /> }<br /> .col-md-11 {<br /> width: 91.66667%;<br /> }<br /> .col-md-12 {<br /> width: 100%;<br /> }<br /> .col-md-pull-0 {<br /> right: auto;<br /> }<br /> .col-md-pull-1 {<br /> right: 8.33333%;<br /> }<br /> .col-md-pull-2 {<br /> right: 16.66667%;<br /> }<br /> .col-md-pull-3 {<br /> right: 25%;<br /> }<br /> .col-md-pull-4 {<br /> right: 33.33333%;<br /> }<br /> .col-md-pull-5 {<br /> right: 41.66667%;<br /> }<br /> .col-md-pull-6 {<br /> right: 50%;<br /> }<br /> .col-md-pull-7 {<br /> right: 58.33333%;<br /> }<br /> .col-md-pull-8 {<br /> right: 66.66667%;<br /> }<br /> .col-md-pull-9 {<br /> right: 75%;<br /> }<br /> .col-md-pull-10 {<br /> right: 83.33333%;<br /> }<br /> .col-md-pull-11 {<br /> right: 91.66667%;<br /> }<br /> .col-md-pull-12 {<br /> right: 100%;<br /> }<br /> .col-md-push-0 {<br /> left: auto;<br /> }<br /> .col-md-push-1 {<br /> left: 8.33333%;<br /> }<br /> .col-md-push-2 {<br /> left: 16.66667%;<br /> }<br /> .col-md-push-3 {<br /> left: 25%;<br /> }<br /> .col-md-push-4 {<br /> left: 33.33333%;<br /> }<br /> .col-md-push-5 {<br /> left: 41.66667%;<br /> }<br /> .col-md-push-6 {<br /> left: 50%;<br /> }<br /> .col-md-push-7 {<br /> left: 58.33333%;<br /> }<br /> .col-md-push-8 {<br /> left: 66.66667%;<br /> }<br /> .col-md-push-9 {<br /> left: 75%;<br /> }<br /> .col-md-push-10 {<br /> left: 83.33333%;<br /> }<br /> .col-md-push-11 {<br /> left: 91.66667%;<br /> }<br /> .col-md-push-12 {<br /> left: 100%;<br /> }<br /> .col-md-offset-0 {<br /> margin-left: 0%;<br /> }<br /> .col-md-offset-1 {<br /> margin-left: 8.33333%;<br /> }<br /> .col-md-offset-2 {<br /> margin-left: 16.66667%;<br /> }<br /> .col-md-offset-3 {<br /> margin-left: 25%;<br /> }<br /> .col-md-offset-4 {<br /> margin-left: 33.33333%;<br /> }<br /> .col-md-offset-5 {<br /> margin-left: 41.66667%;<br /> }<br /> .col-md-offset-6 {<br /> margin-left: 50%;<br /> }<br /> .col-md-offset-7 {<br /> margin-left: 58.33333%;<br /> }<br /> .col-md-offset-8 {<br /> margin-left: 66.66667%;<br /> }<br /> .col-md-offset-9 {<br /> margin-left: 75%;<br /> }<br /> .col-md-offset-10 {<br /> margin-left: 83.33333%;<br /> }<br /> .col-md-offset-11 {<br /> margin-left: 91.66667%;<br /> }<br /> .col-md-offset-12 {<br /> margin-left: 100%;<br /> }<br />}<br />@media (min-width: 1200px) {<br /> .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {<br /> float: left;<br /> }<br /> .col-lg-1 {<br /> width: 8.33333%;<br /> }<br /> .col-lg-2 {<br /> width: 16.66667%;<br /> }<br /> .col-lg-3 {<br /> width: 25%;<br /> }<br /> .col-lg-4 {<br /> width: 33.33333%;<br /> }<br /> .col-lg-5 {<br /> width: 41.66667%;<br /> }<br /> .col-lg-6 {<br /> width: 50%;<br /> }<br /> .col-lg-7 {<br /> width: 58.33333%;<br /> }<br /> .col-lg-8 {<br /> width: 66.66667%;<br /> }<br /> .col-lg-9 {<br /> width: 75%;<br /> }<br /> .col-lg-10 {<br /> width: 83.33333%;<br /> }<br /> .col-lg-11 {<br /> width: 91.66667%;<br /> }<br /> .col-lg-12 {<br /> width: 100%;<br /> }<br /> .col-lg-pull-0 {<br /> right: auto;<br /> }<br /> .col-lg-pull-1 {<br /> right: 8.33333%;<br /> }<br /> .col-lg-pull-2 {<br /> right: 16.66667%;<br /> }<br /> .col-lg-pull-3 {<br /> right: 25%;<br /> }<br /> .col-lg-pull-4 {<br /> right: 33.33333%;<br /> }<br /> .col-lg-pull-5 {<br /> right: 41.66667%;<br /> }<br /> .col-lg-pull-6 {<br /> right: 50%;<br /> }<br /> .col-lg-pull-7 {<br /> right: 58.33333%;<br /> }<br /> .col-lg-pull-8 {<br /> right: 66.66667%;<br /> }<br /> .col-lg-pull-9 {<br /> right: 75%;<br /> }<br /> .col-lg-pull-10 {<br /> right: 83.33333%;<br /> }<br /> .col-lg-pull-11 {<br /> right: 91.66667%;<br /> }<br /> .col-lg-pull-12 {<br /> right: 100%;<br /> }<br /> .col-lg-push-0 {<br /> left: auto;<br /> }<br /> .col-lg-push-1 {<br /> left: 8.33333%;<br /> }<br /> .col-lg-push-2 {<br /> left: 16.66667%;<br /> }<br /> .col-lg-push-3 {<br /> left: 25%;<br /> }<br /> .col-lg-push-4 {<br /> left: 33.33333%;<br /> }<br /> .col-lg-push-5 {<br /> left: 41.66667%;<br /> }<br /> .col-lg-push-6 {<br /> left: 50%;<br /> }<br /> .col-lg-push-7 {<br /> left: 58.33333%;<br /> }<br /> .col-lg-push-8 {<br /> left: 66.66667%;<br /> }<br /> .col-lg-push-9 {<br /> left: 75%;<br /> }<br /> .col-lg-push-10 {<br /> left: 83.33333%;<br /> }<br /> .col-lg-push-11 {<br /> left: 91.66667%;<br /> }<br /> .col-lg-push-12 {<br /> left: 100%;<br /> }<br /> .col-lg-offset-0 {<br /> margin-left: 0%;<br /> }<br /> .col-lg-offset-1 {<br /> margin-left: 8.33333%;<br /> }<br /> .col-lg-offset-2 {<br /> margin-left: 16.66667%;<br /> }<br /> .col-lg-offset-3 {<br /> margin-left: 25%;<br /> }<br /> .col-lg-offset-4 {<br /> margin-left: 33.33333%;<br /> }<br /> .col-lg-offset-5 {<br /> margin-left: 41.66667%;<br /> }<br /> .col-lg-offset-6 {<br /> margin-left: 50%;<br /> }<br /> .col-lg-offset-7 {<br /> margin-left: 58.33333%;<br /> }<br /> .col-lg-offset-8 {<br /> margin-left: 66.66667%;<br /> }<br /> .col-lg-offset-9 {<br /> margin-left: 75%;<br /> }<br /> .col-lg-offset-10 {<br /> margin-left: 83.33333%;<br /> }<br /> .col-lg-offset-11 {<br /> margin-left: 91.66667%;<br /> }<br /> .col-lg-offset-12 {<br /> margin-left: 100%;<br /> }<br />}<br />table {<br /> background-color: transparent;<br />}<br />caption {<br /> padding-top: 8px;<br /> padding-bottom: 8px;<br /> color: #777777;<br /> text-align: left;<br />}<br />th {<br /> text-align: left;<br />}<br />.table {<br /> width: 100%;<br /> max-width: 100%;<br /> margin-bottom: 20px;<br />}<br />.table > thead > tr > th,<br />.table > thead > tr > td,<br />.table > tbody > tr > th,<br />.table > tbody > tr > td,<br />.table > tfoot > tr > th,<br />.table > tfoot > tr > td {<br /> padding: 8px;<br /> line-height: 1.42857;<br /> vertical-align: top;<br /> border-top: 1px solid #ddd;<br />}<br />.table > thead > tr > th {<br /> vertical-align: bottom;<br /> border-bottom: 2px solid #ddd;<br />}<br />.table > caption + thead > tr:first-child > th,<br />.table > caption + thead > tr:first-child > td,<br />.table > colgroup + thead > tr:first-child > th,<br />.table > colgroup + thead > tr:first-child > td,<br />.table > thead:first-child > tr:first-child > th,<br />.table > thead:first-child > tr:first-child > td {<br /> border-top: 0;<br />}<br />.table > tbody + tbody {<br /> border-top: 2px solid #ddd;<br />}<br />.table .table {<br /> background-color: #fff;<br />}<br />.table-condensed > thead > tr > th,<br />.table-condensed > thead > tr > td,<br />.table-condensed > tbody > tr > th,<br />.table-condensed > tbody > tr > td,<br />.table-condensed > tfoot > tr > th,<br />.table-condensed > tfoot > tr > td {<br /> padding: 5px;<br />}<br />.table-bordered {<br /> border: 1px solid #ddd;<br />}<br />.table-bordered > thead > tr > th,<br />.table-bordered > thead > tr > td,<br />.table-bordered > tbody > tr > th,<br />.table-bordered > tbody > tr > td,<br />.table-bordered > tfoot > tr > th,<br />.table-bordered > tfoot > tr > td {<br /> border: 1px solid #ddd;<br />}<br />.table-bordered > thead > tr > th,<br />.table-bordered > thead > tr > td {<br /> border-bottom-width: 2px;<br />}<br />.table-striped > tbody > tr:nth-of-type(odd) {<br /> background-color: #f9f9f9;<br />}<br />.table-hover > tbody > tr:hover {<br /> background-color: #f5f5f5;<br />}<br />table col[class*="col-"] {<br /> position: static;<br /> float: none;<br /> display: table-column;<br />}<br />table td[class*="col-"],<br />table th[class*="col-"] {<br /> position: static;<br /> float: none;<br /> display: table-cell;<br />}<br />.table > thead > tr > td.active,<br />.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,<br />.table > tbody > tr > td.active,<br />.table > tbody > tr > th.active,<br />.table > tbody > tr.active > td,<br />.table > tbody > tr.active > th,<br />.table > tfoot > tr > td.active,<br />.table > tfoot > tr > th.active,<br />.table > tfoot > tr.active > td,<br />.table > tfoot > tr.active > th {<br /> background-color: #f5f5f5;<br />}<br />.table-hover > tbody > tr > td.active:hover,<br />.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {<br /> background-color: #e8e8e8;<br />}<br />.table > thead > tr > td.success,<br />.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,<br />.table > tbody > tr > td.success,<br />.table > tbody > tr > th.success,<br />.table > tbody > tr.success > td,<br />.table > tbody > tr.success > th,<br />.table > tfoot > tr > td.success,<br />.table > tfoot > tr > th.success,<br />.table > tfoot > tr.success > td,<br />.table > tfoot > tr.success > th {<br /> background-color: #dff0d8;<br />}<br />.table-hover > tbody > tr > td.success:hover,<br />.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {<br /> background-color: #d0e9c6;<br />}<br />.table > thead > tr > td.info,<br />.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,<br />.table > tbody > tr > td.info,<br />.table > tbody > tr > th.info,<br />.table > tbody > tr.info > td,<br />.table > tbody > tr.info > th,<br />.table > tfoot > tr > td.info,<br />.table > tfoot > tr > th.info,<br />.table > tfoot > tr.info > td,<br />.table > tfoot > tr.info > th {<br /> background-color: #d9edf7;<br />}<br />.table-hover > tbody > tr > td.info:hover,<br />.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {<br /> background-color: #c4e3f3;<br />}<br />.table > thead > tr > td.warning,<br />.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,<br />.table > tbody > tr > td.warning,<br />.table > tbody > tr > th.warning,<br />.table > tbody > tr.warning > td,<br />.table > tbody > tr.warning > th,<br />.table > tfoot > tr > td.warning,<br />.table > tfoot > tr > th.warning,<br />.table > tfoot > tr.warning > td,<br />.table > tfoot > tr.warning > th {<br /> background-color: #fcf8e3;<br />}<br />.table-hover > tbody > tr > td.warning:hover,<br />.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {<br /> background-color: #faf2cc;<br />}<br />.table > thead > tr > td.danger,<br />.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,<br />.table > tbody > tr > td.danger,<br />.table > tbody > tr > th.danger,<br />.table > tbody > tr.danger > td,<br />.table > tbody > tr.danger > th,<br />.table > tfoot > tr > td.danger,<br />.table > tfoot > tr > th.danger,<br />.table > tfoot > tr.danger > td,<br />.table > tfoot > tr.danger > th {<br /> background-color: #f2dede;<br />}<br />.table-hover > tbody > tr > td.danger:hover,<br />.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {<br /> background-color: #ebcccc;<br />}<br />.table-responsive {<br /> overflow-x: auto;<br /> min-height: 0.01%;<br />}<br />@media screen and (max-width: 767px) {<br /> .table-responsive {<br /> width: 100%;<br /> margin-bottom: 15px;<br /> overflow-y: hidden;<br /> -ms-overflow-style: -ms-autohiding-scrollbar;<br /> border: 1px solid #ddd;<br /> }<br /> .table-responsive > .table {<br /> margin-bottom: 0;<br /> }<br /> .table-responsive > .table > thead > tr > th,<br /> .table-responsive > .table > thead > tr > td,<br /> .table-responsive > .table > tbody > tr > th,<br /> .table-responsive > .table > tbody > tr > td,<br /> .table-responsive > .table > tfoot > tr > th,<br /> .table-responsive > .table > tfoot > tr > td {<br /> white-space: nowrap;<br /> }<br /> .table-responsive > .table-bordered {<br /> border: 0;<br /> }<br /> .table-responsive > .table-bordered > thead > tr > th:first-child,<br /> .table-responsive > .table-bordered > thead > tr > td:first-child,<br /> .table-responsive > .table-bordered > tbody > tr > th:first-child,<br /> .table-responsive > .table-bordered > tbody > tr > td:first-child,<br /> .table-responsive > .table-bordered > tfoot > tr > th:first-child,<br /> .table-responsive > .table-bordered > tfoot > tr > td:first-child {<br /> border-left: 0;<br /> }<br /> .table-responsive > .table-bordered > thead > tr > th:last-child,<br /> .table-responsive > .table-bordered > thead > tr > td:last-child,<br /> .table-responsive > .table-bordered > tbody > tr > th:last-child,<br /> .table-responsive > .table-bordered > tbody > tr > td:last-child,<br /> .table-responsive > .table-bordered > tfoot > tr > th:last-child,<br /> .table-responsive > .table-bordered > tfoot > tr > td:last-child {<br /> border-right: 0;<br /> }<br /> .table-responsive > .table-bordered > tbody > tr:last-child > th,<br /> .table-responsive > .table-bordered > tbody > tr:last-child > td,<br /> .table-responsive > .table-bordered > tfoot > tr:last-child > th,<br /> .table-responsive > .table-bordered > tfoot > tr:last-child > td {<br /> border-bottom: 0;<br /> }<br />}<br />fieldset {<br /> padding: 0;<br /> margin: 0;<br /> border: 0;<br /> min-width: 0;<br />}<br />legend {<br /> display: block;<br /> width: 100%;<br /> padding: 0;<br /> margin-bottom: 20px;<br /> font-size: 21px;<br /> line-height: inherit;<br /> color: #333333;<br /> border: 0;<br /> border-bottom: 1px solid #e5e5e5;<br />}<br />label {<br /> display: inline-block;<br /> max-width: 100%;<br /> margin-bottom: 5px;<br /> font-weight: bold;<br />}<br />input[type="search"] {<br /> -webkit-box-sizing: border-box;<br /> -moz-box-sizing: border-box;<br /> box-sizing: border-box;<br />}<br />input[type="radio"],<br />input[type="checkbox"] {<br /> margin: 4px 0 0;<br /> margin-top: 1px \9;<br /> line-height: normal;<br />}<br />input[type="file"] {<br /> display: block;<br />}<br />input[type="range"] {<br /> display: block;<br /> width: 100%;<br />}<br />select[multiple],<br />select[size] {<br /> height: auto;<br />}<br />input[type="file"]:focus,<br />input[type="radio"]:focus,<br />input[type="checkbox"]:focus {<br /> outline: thin dotted;<br /> outline: 5px auto -webkit-focus-ring-color;<br /> outline-offset: -2px;<br />}<br />output {<br /> display: block;<br /> padding-top: 11px;<br /> font-size: 14px;<br /> line-height: 1.42857;<br /> color: #555555;<br />}<br />.form-control {<br /> display: block;<br /> width: 100%;<br /> height: 42px;<br /> padding: 10px 20px;<br /> font-size: 14px;<br /> line-height: 1.42857;<br /> color: #555555;<br /> background-color: #fff;<br /> background-image: none;<br /> border: 1px solid #ccc;<br /> border-radius: 4px;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br /> -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;<br /> -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;<br /> transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;<br />}<br />.form-control:focus {<br /> border-color: #66afe9;<br /> outline: 0;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);<br />}<br />.form-control::-moz-placeholder {<br /> color: #999;<br /> opacity: 1;<br />}<br />.form-control:-ms-input-placeholder {<br /> color: #999;<br />}<br />.form-control::-webkit-input-placeholder {<br /> color: #999;<br />}<br />.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {<br /> background-color: #eeeeee;<br /> opacity: 1;<br />}<br />.form-control[disabled], fieldset[disabled] .form-control {<br /> cursor: not-allowed;<br />}<br />textarea.form-control {<br /> height: auto;<br />}<br />input[type="search"] {<br /> -webkit-appearance: none;<br />}<br />@media screen and (-webkit-min-device-pixel-ratio: 0) {<br /> input[type="date"].form-control,<br /> input[type="time"].form-control,<br /> input[type="datetime-local"].form-control,<br /> input[type="month"].form-control {<br /> line-height: 42px;<br /> }<br /> input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,<br /> .input-group-sm > input[type="date"].input-group-addon,<br /> .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],<br /> input[type="time"].input-sm,<br /> .input-group-sm > input[type="time"].form-control,<br /> .input-group-sm > input[type="time"].input-group-addon,<br /> .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm<br /> input[type="time"],<br /> input[type="datetime-local"].input-sm,<br /> .input-group-sm > input[type="datetime-local"].form-control,<br /> .input-group-sm > input[type="datetime-local"].input-group-addon,<br /> .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm<br /> input[type="datetime-local"],<br /> input[type="month"].input-sm,<br /> .input-group-sm > input[type="month"].form-control,<br /> .input-group-sm > input[type="month"].input-group-addon,<br /> .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm<br /> input[type="month"] {<br /> line-height: 30px;<br /> }<br /> input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,<br /> .input-group-lg > input[type="date"].input-group-addon,<br /> .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"],<br /> input[type="time"].input-lg,<br /> .input-group-lg > input[type="time"].form-control,<br /> .input-group-lg > input[type="time"].input-group-addon,<br /> .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg<br /> input[type="time"],<br /> input[type="datetime-local"].input-lg,<br /> .input-group-lg > input[type="datetime-local"].form-control,<br /> .input-group-lg > input[type="datetime-local"].input-group-addon,<br /> .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg<br /> input[type="datetime-local"],<br /> input[type="month"].input-lg,<br /> .input-group-lg > input[type="month"].form-control,<br /> .input-group-lg > input[type="month"].input-group-addon,<br /> .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg<br /> input[type="month"] {<br /> line-height: 46px;<br /> }<br />}<br />.form-group {<br /> margin-bottom: 15px;<br />}<br />.radio,<br />.checkbox {<br /> position: relative;<br /> display: block;<br /> margin-top: 10px;<br /> margin-bottom: 10px;<br />}<br />.radio label,<br />.checkbox label {<br /> min-height: 20px;<br /> padding-left: 20px;<br /> margin-bottom: 0;<br /> font-weight: normal;<br /> cursor: pointer;<br />}<br />.radio input[type="radio"],<br />.radio-inline input[type="radio"],<br />.checkbox input[type="checkbox"],<br />.checkbox-inline input[type="checkbox"] {<br /> position: absolute;<br /> margin-left: -20px;<br /> margin-top: 4px \9;<br />}<br />.radio + .radio,<br />.checkbox + .checkbox {<br /> margin-top: -5px;<br />}<br />.radio-inline,<br />.checkbox-inline {<br /> position: relative;<br /> display: inline-block;<br /> padding-left: 20px;<br /> margin-bottom: 0;<br /> vertical-align: middle;<br /> font-weight: normal;<br /> cursor: pointer;<br />}<br />.radio-inline + .radio-inline,<br />.checkbox-inline + .checkbox-inline {<br /> margin-top: 0;<br /> margin-left: 10px;<br />}<br />input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],<br />input[type="checkbox"][disabled],<br />input[type="checkbox"].disabled, fieldset[disabled]<br />input[type="checkbox"] {<br /> cursor: not-allowed;<br />}<br />.radio-inline.disabled, fieldset[disabled] .radio-inline,<br />.checkbox-inline.disabled, fieldset[disabled]<br />.checkbox-inline {<br /> cursor: not-allowed;<br />}<br />.radio.disabled label, fieldset[disabled] .radio label,<br />.checkbox.disabled label, fieldset[disabled]<br />.checkbox label {<br /> cursor: not-allowed;<br />}<br />.form-control-static {<br /> padding-top: 11px;<br /> padding-bottom: 11px;<br /> margin-bottom: 0;<br /> min-height: 34px;<br />}<br />.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,<br />.input-group-lg > .form-control-static.input-group-addon,<br />.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,<br />.input-group-sm > .form-control-static.input-group-addon,<br />.input-group-sm > .input-group-btn > .form-control-static.btn {<br /> padding-left: 0;<br /> padding-right: 0;<br />}<br />.input-sm, .input-group-sm > .form-control,<br />.input-group-sm > .input-group-addon,<br />.input-group-sm > .input-group-btn > .btn {<br /> height: 30px;<br /> padding: 5px 20px;<br /> font-size: 12px;<br /> line-height: 1.5;<br /> border-radius: 3px;<br />}<br />select.input-sm, .input-group-sm > select.form-control,<br />.input-group-sm > select.input-group-addon,<br />.input-group-sm > .input-group-btn > select.btn {<br /> height: 30px;<br /> line-height: 30px;<br />}<br />textarea.input-sm, .input-group-sm > textarea.form-control,<br />.input-group-sm > textarea.input-group-addon,<br />.input-group-sm > .input-group-btn > textarea.btn,<br />select[multiple].input-sm,<br />.input-group-sm > select[multiple].form-control,<br />.input-group-sm > select[multiple].input-group-addon,<br />.input-group-sm > .input-group-btn > select[multiple].btn {<br /> height: auto;<br />}<br />.form-group-sm .form-control {<br /> height: 30px;<br /> padding: 5px 20px;<br /> font-size: 12px;<br /> line-height: 1.5;<br /> border-radius: 3px;<br />}<br />.form-group-sm select.form-control {<br /> height: 30px;<br /> line-height: 30px;<br />}<br />.form-group-sm textarea.form-control,<br />.form-group-sm select[multiple].form-control {<br /> height: auto;<br />}<br />.form-group-sm .form-control-static {<br /> height: 30px;<br /> min-height: 32px;<br /> padding: 6px 20px;<br /> font-size: 12px;<br /> line-height: 1.5;<br />}<br />.input-lg, .input-group-lg > .form-control,<br />.input-group-lg > .input-group-addon,<br />.input-group-lg > .input-group-btn > .btn {<br /> height: 46px;<br /> padding: 10px 20px;<br /> font-size: 18px;<br /> line-height: 1.33333;<br /> border-radius: 6px;<br />}<br />select.input-lg, .input-group-lg > select.form-control,<br />.input-group-lg > select.input-group-addon,<br />.input-group-lg > .input-group-btn > select.btn {<br /> height: 46px;<br /> line-height: 46px;<br />}<br />textarea.input-lg, .input-group-lg > textarea.form-control,<br />.input-group-lg > textarea.input-group-addon,<br />.input-group-lg > .input-group-btn > textarea.btn,<br />select[multiple].input-lg,<br />.input-group-lg > select[multiple].form-control,<br />.input-group-lg > select[multiple].input-group-addon,<br />.input-group-lg > .input-group-btn > select[multiple].btn {<br /> height: auto;<br />}<br />.form-group-lg .form-control {<br /> height: 46px;<br /> padding: 10px 20px;<br /> font-size: 18px;<br /> line-height: 1.33333;<br /> border-radius: 6px;<br />}<br />.form-group-lg select.form-control {<br /> height: 46px;<br /> line-height: 46px;<br />}<br />.form-group-lg textarea.form-control,<br />.form-group-lg select[multiple].form-control {<br /> height: auto;<br />}<br />.form-group-lg .form-control-static {<br /> height: 46px;<br /> min-height: 38px;<br /> padding: 11px 20px;<br /> font-size: 18px;<br /> line-height: 1.33333;<br />}<br />.has-feedback {<br /> position: relative;<br />}<br />.has-feedback .form-control {<br /> padding-right: 52.5px;<br />}<br />.form-control-feedback {<br /> position: absolute;<br /> top: 0;<br /> right: 0;<br /> z-index: 2;<br /> display: block;<br /> width: 42px;<br /> height: 42px;<br /> line-height: 42px;<br /> text-align: center;<br /> pointer-events: none;<br />}<br />.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,<br />.input-group-lg > .input-group-addon + .form-control-feedback,<br />.input-group-lg > .input-group-btn > .btn + .form-control-feedback,<br />.input-group-lg + .form-control-feedback,<br />.form-group-lg .form-control + .form-control-feedback {<br /> width: 46px;<br /> height: 46px;<br /> line-height: 46px;<br />}<br />.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,<br />.input-group-sm > .input-group-addon + .form-control-feedback,<br />.input-group-sm > .input-group-btn > .btn + .form-control-feedback,<br />.input-group-sm + .form-control-feedback,<br />.form-group-sm .form-control + .form-control-feedback {<br /> width: 30px;<br /> height: 30px;<br /> line-height: 30px;<br />}<br />.has-success .help-block,<br />.has-success .control-label,<br />.has-success .radio,<br />.has-success .checkbox,<br />.has-success .radio-inline,<br />.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {<br /> color: #3c763d;<br />}<br />.has-success .form-control {<br /> border-color: #3c763d;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br />}<br />.has-success .form-control:focus {<br /> border-color: #2b542c;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;<br />}<br />.has-success .input-group-addon {<br /> color: #3c763d;<br /> border-color: #3c763d;<br /> background-color: #dff0d8;<br />}<br />.has-success .form-control-feedback {<br /> color: #3c763d;<br />}<br />.has-warning .help-block,<br />.has-warning .control-label,<br />.has-warning .radio,<br />.has-warning .checkbox,<br />.has-warning .radio-inline,<br />.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {<br /> color: #8a6d3b;<br />}<br />.has-warning .form-control {<br /> border-color: #8a6d3b;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br />}<br />.has-warning .form-control:focus {<br /> border-color: #66512c;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;<br />}<br />.has-warning .input-group-addon {<br /> color: #8a6d3b;<br /> border-color: #8a6d3b;<br /> background-color: #fcf8e3;<br />}<br />.has-warning .form-control-feedback {<br /> color: #8a6d3b;<br />}<br />.has-e<br />or .help-block,<br />.has-e<br />or .control-label,<br />.has-e<br />or .radio,<br />.has-e<br />or .checkbox,<br />.has-e<br />or .radio-inline,<br />.has-e<br />or .checkbox-inline, .has-e<br />or.radio label, .has-e<br />or.checkbox label, .has-e<br />or.radio-inline label, .has-e<br />or.checkbox-inline label {<br /> color: #a94442;<br />}<br />.has-e<br />or .form-control {<br /> border-color: #a94442;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);<br />}<br />.has-e<br />or .form-control:focus {<br /> border-color: #843534;<br /> -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;<br /> box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;<br />}<br />.has-e<br />or .input-group-addon {<br /> color: #a94442;<br /> border-color: #a94442;<br /> background-color: #f2dede;<br />}<br />.has-e<br />or .form-control-feedback {<br /> color: #a94442;<br />}<br />.has-feedback label ~ .form-control-feedback {<br /> top: 25px;<br />}<br />.has-feedback label.sr-only ~ .form-control-feedback {<br /> top: 0;<br />}<br />.help-block {<br /> display: block;<br /> margin-top: 5px;<br /> margin-bottom: 10px;<br /> color: #737373;<br />}<br />@media (min-width: 768px) {<br /> .form-inline .form-group {<br /> display: inline-block;<br /> margin-bottom: 0;<br /> vertical-align: middle;<br /> }<br /> .form-inline .form-control {<br /> display: inline-block;<br /> width: auto;<br /> vertical-align: middle;<br /> }<br /> .form-inline .form-control-static {<br /> display: inline-block;<br /> }<br /> .form-inline .input-group {<br /> display: inline-table;<br /> vertical-align: middle;<br /> }<br /> .form-inline .input-group .input-group-addon,<br /> .form-inline .input-group .input-group-btn,<br /> .form-inline .input-group .form-control {<br /> width: auto;<br /> }<br /> .form-inline .input-group > .form-control {<br /> width: 100%;<br /> }<br /> .form-inline .control-label {<br /> margin-bottom: 0;<br /> vertical-align: middle;<br /> }<br /> .form-inline .radio,<br /> .form-inline .checkbox {<br /> display: inline-block;<br /> margin-top: 0;<br /> margin-bottom: 0;<br /> vertical-align: middle;<br /> }<br /> .form-inline .radio label,<br /> .form-inline .checkbox label {<br /> padding-left: 0;<br /> }<br /> .form-inline .radio input[type="radio"],<br /> .form-inline .checkbox input[type="checkbox"] {<br /> position: relative;<br /> margin-left: 0;<br /> }<br /> .form-inline .has-feedback .form-control-feedback {<br /> top: 0;<br /> }<br />}<br />.form-horizontal .radio,<br />.form-horizontal .checkbox,<br />.form-horizontal .radio-inline,<br />.form-horizontal .checkbox-inline {<br /> margin-top: 0;<br /> margin-bottom: 0;<br /> padding-top: 11px;<br />}<br />.form-horizontal .radio,<br />.form-horizontal .checkbox {<br /> min-height: 31px;<br />}<br />.form-horizontal .form-group {<br /> margin-left: -15px;<br /> margin-right: -15px;<br />}<br />.form-horizontal .form-group:before, .form-horizontal .form-group:after {<br /> content: " ";<br /> display: table;<br />}<br />.form-horizontal .form-group:after {<br /> clear: both;<br />}<br />@media (min-width: 768px) {<br /> .form-horizontal .control-label {<br /> text-align: right;<br /> margin-bottom: 0;<br /> padding-top: 11px;<br /> }<br />}<br />.form-horizontal .has-feedback .form-control-feedback {<br /> right: 15px;<br />}<br />@media (min-width: 768px) {<br /> .form-horizontal .form-group-lg .control-label {<br /> padding-top: 14.33333px;<br /> font-size: 18px;<br /> }<br />}<br />@media (min-width: 768px) {<br /> .form-horizontal .form-group-sm .control-label {<br /> padding-top: 6px;<br /> font-size: 12px;<br /> }<br />}<br />.btn {<br /> display: inline-block;<br /> margin-bottom: 0;<br /> font-weight: normal;<br /> text-align: center;<br /> vertical-align: middle;<br /> touch-action: manipulation;<br /> cursor: pointer;<br /> background-image: none;<br /> border: 1px solid transparent;<br /> white-space: nowrap;<br /> padding: 10px 20px;<br /> font-size: 14px;<br /> line-height: 1.42857;<br /> border-radius: 4px;<br /> -webkit-user-select: none;<br /> -moz-user-select: none;<br /> -ms-user-select: none;<br /> user-select: none;<br />}<br />.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {<br /> outline: thin dotted;<br /> outline: 5px auto -webkit-focus-ring-color;<br /> outline-offset: -2px;<br />}<br />.btn:hover, .btn:focus, .btn.focus {<br /> color: #333;<br /> text-decoration: none;<br />}<br />.btn:active, .btn.active {<br /> outline: 0;<br /> background-image: none;<br /> -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);<br /> box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);<br />}<br />.btn.disabled, .btn[disabled], fieldset[disabled] .btn {<br /> cursor: not-allowed;<br /> opacity: 0.65;<br /> filter: alpha(opacity=65);<br /> -webkit-box-shadow: none;<br /> box-shadow: none;<br />}<br />a.btn.disabled, fieldset[disabled] a.btn {<br /> pointer-events: none;<br />}<br />.btn-default {<br /> color: #333;<br /> background-color: #fff;<br /> border-color: #ccc;<br />}<br />.btn-default:focus, .btn-default.focus {<br /> color: #333;<br /> background-color: #e6e6e6;<br /> border-color: #8c8c8c;<br />}<br />.btn-default:hover {<br /> color: #333;<br /> background-color: #e6e6e6;<br /> border-color: #adadad;<br />}<br />.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {<br /> color: #333;<br /> background-color: #e6e6e6;<br /> border-color: #adadad;<br />}<br />.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {<br /> color: #333;<br /> background-color: #d4d4d4;<br /> border-color: #8c8c8c;<br />}<br />.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {<br /> background-image: none;<br />}<br />.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {<br /> background-color: #fff;<br /> border-color: #ccc;<br />}<br />.btn-default .badge {<br /> color: #fff;<br /> background-color: #333;<br />}<br />.btn-primary {<br /> color: #fff;<br /> background-color: #337ab7;<br /> border-color: #2e6da4;<br />}<br />.btn-primary:focus, .btn-primary.focus {<br /> color: #fff;<br /> background-color: #286090;<br /> border-color: #122b40;<br />}<br />.btn-primary:hover {<br /> color: #fff;<br /> background-color: #286090;<br /> border-color: #204d74;<br />}<br />.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {<br /> color: #fff;<br /> background-color: #286090;<br /> border-color: #204d74;<br />}<br />.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {<br /> color: #fff;<br /> background-color: #204d74;<br /> border-color: #122b40;<br />}<br />.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {<br /> background-image: none;<br />}<br />.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {<br /> background-color: #337ab7;<br /> border-color: #2e6da4;<br />}<br />.btn-primary .badge {<br /> color: #337ab7;<br /> background-color: #fff;<br />}<br />.btn-success {<br /> color: #fff;<br /> background-color: #5cb85c;<br /> border-color: #4cae4c;<br />}<br />.btn-success:focus, .btn-success.focus {<br /> color: #fff;<br /> background-color: #449d44;<br /> border-color: #255625;<br />}<br />.btn-success:hover {<br /> color: #fff;<br /> background-color: #449d44;<br /> border-color: #398439;<br />}<br />.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {<br /> color: #fff;<br /> background-color: #449d44;<br /> border-color: #398439;<br />}<br />.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {<br /> color: #fff;<br /> background-color: #398439;<br /> border-color: #255625;<br />}<br />.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {<br /> background-image: none;<br />}<br />.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {<br /> background-color: #5cb85c;<br /> border-color: #4cae4c;<br />}<br />.btn-success .badge {<br /> color: #5cb85c;<br /> background-color: #fff;<br />}<br />.btn-info {<br /> color: #fff;<br /> background-color: #5bc0de;<br /> border-color: #46b8da;<br />}<br />.btn-info:focus, .btn-info.focus {<br /> color: #fff;<br /> background-color: #31b0d5;<br /> border-color: #1b6d85;<br />}<br />.btn-info:hover {<br /> color: #fff;<br /> background-color: #31b0d5;<br /> border-color: #269abc;<br />}<br />.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {<br /> color: #fff;<br /> background-color: #31b0d5;<br /> border-color: #269abc;<br />}<br />.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {<br /> color: #fff;<br /> background-color: #269abc;<br /> border-color: #1b6d85;<br />}<br />.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {<br /> background-image: none;<br />}<br />.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {<br /> background-color: #5bc0de;<br /> border-color: #46b8da;<br />}<br />.btn-info .badge {<br /> color: #5bc0de;<br /> background-color: #fff;<br />}<br />.btn-warning {<br /> color: #fff;<br /> background-color: #f0ad4e;<br /> border-color: #eea236;<br />}<br />.btn-warning:focus, .btn-warning.focus {<br /> color: #fff;<br /> background-color: #ec971f;<br /> border-color: #985f0d;<br />}<br />.btn-warning:hover {<br /> color: #fff;<br /> background-color: #ec971f;<br /> border-color: #d58512;<br />}<br />.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {<br /> color: #fff;<br /> background-color: #ec971f;<br /> border-color: #d58512;<br />}<br />.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {<br /> color: #fff;<br /> background-color: #d58512;<br /> border-color: #985f0d;<br />}<br />.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {<br /> background-image: none;<br />}<br />.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {<br /> background-color: #f0ad4e;<br /> border-color: #eea236;<br />}<br />.btn-warning .badge {<br /> color: #f0ad4e;<br /> background-color: #fff;<br />}<br />.btn-danger {<br /> color: #fff;<br /> background-color: #d9534f;<br /> border-color: #d43f3a;<br />}<br />.btn-danger:focus, .btn-danger.focus {<br /> color: #fff;<br /> background-color: #c9302c;<br /> border-color: #761c19;<br />}<br />.btn-danger:hover {<br /> color: #fff;<br /> background-color: #c9302c;<br /> border-color: #ac2925;<br />}<br />.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {<br /> color: #fff;<br /> background-color: #c9302c;<br /> border-color: #ac2925;<br />}<br />.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {<br /> color: #fff;<br /> background-color: #ac2925;<br /> border-color: #761c19;<br />}<br />.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {<br /> background-image: none;<br />}<br />.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {<br /> background-color: #d9534f;<br /> border-color: #d43f3a;<br />}<br />.btn-danger .badge {<br /> color: #d9534f;<br /> background-color: #fff;<br />}<br />.btn-link {<br /> color: #337ab7;<br /> font-weight: normal;<br /> border-radius: 0;<br />}<br />.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {<br /> background-color: transparent;<br /> -webkit-box-shadow: none;<br /> box-shadow: none;<br />}<br />.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {<br /> border-color: transparent;<br />}<br />.btn-link:hover, .btn-link:focus {<br /> color: #23527c;<br /> text-decoration: underline;<br /> background-color: transparent;<br />}<br />.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {<br /> color: #777777;<br /> text-decoration: none;<br />}<br />.btn-lg, .btn-group-lg > .btn {<br /> padding: 10px 20px;<br /> font-size: 18px;<br /> line-height: 1.33333;<br /> border-radius: 6px;<br />}<br />.btn-sm, .btn-group-sm > .btn {<br /> padding: 5px 20px;<br /> font-size: 12px;<br /> line-height: 1.5;<br /> border-radius: 3px;<br />}<br />.btn-xs, .btn-group-xs > .btn {<br /> padding: 1px 5px;<br /> font-size: 12px;<br /> line-height: 1.5;<br /> border-radius: 3px;<br />}<br />.btn-block {<br /> display: block;<br /> width: 100%;<br />}<br />.btn-block + .btn-block {<br /> margin-top: 5px;<br />}<br />input[type="submit"].btn-block,<br />input[type="reset"].btn-block,<br />input[type="button"].btn-block {<br /> width: 100%;<br />}<br />.fade {<br /> opacity: 0;<br /> -webkit-transition: opacity 0.15s linear;<br /> -o-transition: opacity 0.15s linear;<br /> transition: opacity 0.15s linear;<br />}<br />.fade.in {<br /> opacity: 1;<br />}<br />.collapse {<br /> display: none;<br />}<br />.collapse.in {<br /> display: block;<br />}<br />tr.collapse.in {<br /> display: table-row;<br />}<br />tbody.collapse.in {<br /> display: table-row-group;<br />}<br />.collapsing {<br /> position: relative;<br /> height: 0;<br /> overflow: hidden;<br /> -webkit-transition-property: height, visibility;<br /> transition-property: height, visibility;<br /> -webkit-transition-duration: 0.35s;<br /> transition-duration: 0.35s;<br /> -webkit-transition-timing-function: ease;<br /> transition-timing-function: ease;<br />}<br />.caret {<br /> display: inline-block;<br /> width: 0;<br /> height: 0;<br /> margin-left: 2px;<br /> vertical-align: middle;<br /> border-top: 4px dashed;<br /> border-top: 4px solid \9;<br /> border-right: 4px solid transparent;<br /> border-left: 4px solid transparent;<br />}<br />.dropup,<br />.dropdown {<br /> position: relative;<br />}<br />.dropdown-toggle:focus {<br /> outline: 0;<br />}<br />.dropdown-menu {<br /> position: absolute;<br /> top: 100%;<br /> left: 0;<br /> z-index: 1000;<br /> display: none;<br /> float: left;<br /> min-width: 160px;<br /> padding: 5px 0;<br /> margin: 2px 0 0;<br /> list-style: none;<br /> font-size: 14px;<br /> text-align: left;<br /> background-color: #fff;<br /> border: 1px solid #ccc;<br /> border: 1px solid rgba(0, 0, 0, 0.15);<br /> border-radius: 4px;<br /> -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);<br /> box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);<br /> background-clip: padding-box;<br />}<br />.dropdown-menu.pull-right {<br /> right: 0;<br /> left: auto;<br />}<br />.dropdown-menu .divider {<br /> height: 1px;<br /> margin: 9px 0;<br /> overflow: hidden;<br /> background-color: #e5e5e5;<br />}<br />.dropdown-menu > li > a {<br /> display: block;<br /> padding: 3px 20px;<br /> clear: both;<br /> font-weight: normal;<br /> line-height: 1.42857;<br /> color: #333333;<br /> white-space: nowrap;<br />}<br />.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {<br /> text-decoration: none;<br /> color: #262626;<br /> background-color: #f5f5f5;<br />}<br />.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {<br /> color: #fff;<br /> text-decoration: none;<br /> outline: 0;<br /> background-color: #337ab7;<br />}<br />.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {<br /> color: #777777;<br />}<br />.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {<br /> text-decoration: none;<br /> background-color: transparent;<br /> background-image: none;<br /> filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);<br /> cursor: not-allowed;<br />}<br />.open > .dropdown-menu {<br /> display: block;<br />}<br />.open > a {<br /> outline: 0;<br />}<br />.dropdown-menu-right {<br /> left: auto;<br /> right: 0;<br />}<br />.dropdown-menu-left {<br /> left: 0;<br /> right: auto;<br />}<br />.dropdown-header {<br /> display: block;<br /> padding: 3px 20px;<br /> font-size: 12px;<br /> line-height: 1.42857;<br /> color: #777777;<br /> white-space: nowrap;<br />}<br />.dropdown-backdrop {<br /> position: fixed;<br /> left: 0;<br /> right: 0;<br /> bottom: 0;<br /> top: 0;<br /> z-index: 990;<br />}<br />.pull-right > .dropdown-menu {<br /> right: 0;<br /> left: auto;<br />}<br />.dropup .caret,<br />.navbar-fixed-bottom .dropdown .caret {<br /> border-top: 0;<br /> border-bottom: 4px dashed;<br /> border-bottom: 4px solid \9;<br /> content: "";<br />}<br />.dropup .dropdown-menu,<br />.navbar-fixed-bottom .dropdown .dropdown-menu {<br /> top: auto;<br /> bottom: 100%;<br /> margin-bottom: 2px;<br />}<br />@media (min-width: 768px) {<br /> .navbar-right .dropdown-menu {<br /> right: 0;<br /> left: auto;<br /> }<br /> .navbar-right .dropdown-menu-left {<br /> left: 0;<br /> right: auto;<br /> }<br />}<br />.btn-group,<br />.btn-group-vertical {<br /> position: relative;<br /> display: inline-block;<br /> vertical-align: middle;<br />}<br />.btn-group > .btn,<br />.btn-group-vertical > .btn {<br /> position: relative;<br /> float: left;<br />}<br />.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,<br />.btn-group-vertical > .btn:hover,<br />.btn-group-vertical > .btn:focus,<br />.btn-group-vertical > .btn:active,<br />.btn-group-vertical > .btn.active {<br /> z-index: 2;<br />}<br />.btn-group .btn + .btn,<br />.btn-group .btn + .btn-group,<br />.btn-group .btn-group + .btn,<br />.btn-group .btn-group + .btn-group {<br /> margin-left: -1px;<br />}<br />.btn-toolbar {<br /> margin-left: -5px;<br />}<br />.btn-toolbar:before, .btn-toolbar:after {<br /> content: " ";<br /> display: table;<br />}<br />.btn-toolbar:after {<br /> clear: both;<br />}<br />.btn-toolbar .btn,<br />.btn-toolbar .btn-group,<br />.btn-toolbar .input-group {<br /> float: left;<br />}<br />.btn-toolbar > .btn,<br />.btn-toolbar > .btn-group,<br />.btn-toolbar > .input-group {<br /> margin-left: 5px;<br />}<br />.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {<br /> border-radius: 0;<br />}<br />.btn-group > .btn:first-child {<br /> margin-left: 0;<br />}<br />.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {<br /> border-bottom-right-radius: 0;<br /> border-top-right-radius: 0;<br />}<br />.btn-group > .btn:last-child:not(:first-child),<br />.btn-group > .dropdown-toggle:not(:first-child) {<br /> border-bottom-left-radius: 0;<br /> border-top-left-radius: 0;<br />}<br />.btn-group > .btn-group {<br /> float: left;<br />}<br />.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {<br /> border-radius: 0;<br />}<br />.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,<br />.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {<br /> border-bottom-right-radius: 0;<br /> border-top-right-radius: 0;<br />}<br />.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {<br /> border-bottom-left-radius: 0;<br /> border-top-left-radius: 0;<br />}<br />.btn-group .dropdown-toggle:active,<br />.btn-group.open .dropdown-toggle {<br /> outline: 0;<br />}<br />.btn-group > .btn + .dropdown-toggle {<br /> padding-left: 8px;<br /> padding-right: 8px;<br />}<br />.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {<br /> padding-left: 12px;<br /> padding-right: 12px;<br />}<br />.btn-group.open .dropdown-toggle {<br /> -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);<br /> box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);<br />}<br />.btn-group.open .dropdown-toggle.btn-link {<br /> -webkit-box-shadow: none;<br /> box-shadow: none;<br />}<br />.btn .caret {<br /> margin-left: 0;<br />}<br />.btn-lg .caret, .btn-group-lg > .btn .caret {<br /> border-width: 5px 5px 0;<br /> border-bottom-width: 0;<br />}<br />.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {<br /> border-width: 0 5px 5px;<br />}<br />.btn-group-vertical > .btn,<br />.btn-group-vertical > .btn-group,<br />.btn-group-vertical > .btn-group > .btn {<br /> display: block;<br /> float: none;<br /> width: 100%;<br /> max-width: 100%;<br />}<br />.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {<br /> content: " ";<br /> display: table;<br />}<br />.btn-group-vertical > .btn-group:after {<br /> clear: both;<br />}<br />.btn-group-vertical > .btn-group > .btn {<br /> float: none;<br />}<br />.btn-group-vertical > .btn + .btn,<br />.btn-group-vertical > .btn + .btn-group,<br />.btn-group-vertical > .btn-group + .btn,<br />.btn-group-vertical > .btn-group + .btn-group {<br /> margin-top: -1px;<br /> margin-left: 0;<br />}<br />.btn-group-vertical > .btn:not(:first-child):not(:last-child) {<br /> border-radius: 0;<br />}<br />.btn-group-vertical > .btn:first-child:not(:last-child) {<br /> border-top-right-radius: 4px;<br /> border-bottom-right-radius: 0;<br /> border-bottom-left-radius: 0;<br />}<br />.btn-group-vertical > .btn:last-child:not(:first-child) {<br /> border-bottom-left-radius: 4px;<br /> border-top-right-radius: 0;<br /> border-top-left-radius: 0;<br />}<br />.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {<br /> border-radius: 0;<br />}<br />.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,<br />.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {<br /> border-bottom-right-radius: 0;<br /> border-bottom-left-radius: 0;<br />}<br />.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {<br /> border-top-right-radius: 0;<br /> border-top-left-radius: 0;<br />}<br />.btn-group-justified {<br /> display: table;<br /> width: 100%;<br /> table-layout: fixed;<br /> border-collapse: separate;<br />}<br />.btn-group-justified > .btn,<br />.btn-group-justified > .btn-group {<br /> float: none;<br /> display: table-cell;<br /> width: 1%;<br />}<br />.btn-group-justified > .btn-group .btn {<br /> width: 100%;<br />}<br />.btn-group-justified > .btn-group .dropdown-menu {<br /> left: auto;<br />}<br />[data-toggle="buttons"] > .btn input[type="radio"],<br />[data-toggle="buttons"] > .btn input[type="checkbox"],<br />[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],<br />[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {<br /> position: absolute;<br /> clip: rect(0, 0, 0, 0);<br /> pointer-events: none;<br />}<br />.input-group {<br /> position: relative;<br /> display: table;<br /> border-collapse: separate;<br />}<br />.input-group[class*="col-"] {<br /> float: none;<br /> padding-left: 0;<br /> padding-right: 0;<br />}<br />.input-group .form-control {<br /> position: relative;<br /> z-index: 2;<br /> float: left;<br /> width: 100%;<br /> margin-bottom: 0;<br />}<br />.input-group-addon,<br />.input-group-btn,<br />.input-group .form-control {<br /> display: table-cell;<br />}<br />.input-group-addon:not(:first-child):not(:last-child),<br />.input-group-btn:not(:first-child):not(:last-child),<br />.input-group .form-control:not(:first-child):not(:last-child) {<br /> border-radius: 0;<br />}<br />.input-group-addon,<br />.input-group-btn {<br /> width: 1%;<br /> white-space: nowrap;<br /> vertical-align: middle;<br />}<br />.input-group-addon {<br /> padding: 10px 20px;<br /> font-size: 14px;<br /> font-weight: normal;<br /> line-height: 1;<br /> color: #555555;<br /> text-align: center;<br /> background-color: #eeeeee;<br /> border: 1px solid #ccc;<br /> border-radius: 4px;<br />}<br />.input-group-addon.input-sm,<br />.input-group-sm > .input-group-addon,<br />.input-group-sm > .input-group-btn > .input-group-addon.btn {<br /> padding: 5px 20px;<br /> font-size: 12px;<br /> border-radius: 3px;<br />}<br />.input-group-addon.input-lg,<br />.input-group-lg > .input-group-addon,<br />.input-group-lg > .input-group-btn > .input-group-addon.btn {<br /> padding: 10px 20px;<br /> font-size: 18px;<br /> border-radius: 6px;<br />}<br />.input-group-addon input[type="radio"],<br />.input-group-addon input[type="checkbox"] {<br /> margin-top: 0;<br />}<br />.input-group .form-control:first-child,<br />.input-group-addon:first-child,<br />.input-group-btn:first-child > .btn,<br />.input-group-btn:first-child > .btn-group > .btn,<br />.input-group-btn:first-child > .dropdown-toggle,<br />.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),<br />.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {<br /> border-bottom-right-radius: 0;<br /> border-top-right-radius: 0;<br />}<br />.input-group-addon:first-child {<br /> border-right: 0;<br />}<br />.input-group .form-control:last-child,<br />.input-group-addon:last-child,<br />.input-group-btn:last-child > .btn,<br />.input-group-btn:last-child > .btn-group > .btn,<br />.input-group-btn:last-child > .dropdown-toggle,<br />.input-group-btn:first-child > .btn:not(:first-child),<br />.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {<br /> border-bottom-left-radius: 0;<br /> border-top-left-radius: 0;<br />}<br />.input-group-addon:last-child {<br /> border-left: 0;<br />}<br />.input-group-btn {<br /> position: relative;<br /> font-size: 0;<br /> white-space: nowrap;<br />}<br />.input-group-btn > .btn {<br /> position: relative;<br />}<br />.input-group-btn > .btn + .btn {<br /> margin-left: -1px;<br />}<br />.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {<br /> z-index: 2;<br />}<br />.input-group-btn:first-child > .btn,<br />.input-group-btn:first-child > .btn-group {<br /> margin-right: -1px;<br />}<br />.input-group-btn:last-child > .btn,<br />.input-group-btn:last-child > .btn-group {<br /> z-index: 2;<br /> margin-left: -1px;<br />}<br />.nav {<br /> margin-bottom: 0;<br /> padding-left: 0;<br /> list-style: none;<br />}<br />.nav:before, .nav:after {<br /> content: " ";<br /> display: table;<br />}<br />.nav:after {<br /> clear:... </div> </div> <div class="pdf-solution"> <a href="javascript:void(0);" id="hypGetSolution" data-action="main_cta" data-requirelogin="true" class="download" data-category="Solved" data-label="120657" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=120657" data-gaq="true">SOLUTION.PDF</a> </div> <div class="pdf-solution solnfixed"> <div class="cont"> <a href="javascript:void(0);" id="hypGetSolutionBottom" data-action="main_cta_bottom" data-requirelogin="true" class="download" data-category="Solved" data-label="120657" role="button" data-navigateurl="/myaccount/QuestionRequest.aspx?qid=120657" data-gaq="true">SOLUTION.PDF</a> <h2>Answer To This Question Is Available To Download</h2> </div> </div> </div> <div id="dvRecentQuestionList"> <div id="pnlRecentRelatedQuestionList"> <div class="rel-que"> <h2>Related Questions & Answers<span class="bdr"></span></h2> <ul> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/it-is-very-important-to-read-the-instructions-this-is-doctoral-work-turnitin-an-3443863.html">IT IS VERY IMPORTANT TO READ THE INSTRUCTIONS!!! THIS IS DOCTORAL WORK. Turnitin and Waypoint are being used to check for plagiarism, and please use APA format. Please pay close attention I NEED...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Mar 01, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/it-is-very-important-to-read-the-instructions-this-is-doctoral-work-turnitin-an-3443862.html">IT IS VERY IMPORTANT TO READ THE INSTRUCTIONS!!! THIS IS DOCTORAL WORK. Turnitin and Waypoint are being used to check for plagiarism, and please use APA format. Please pay close attention I NEED...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Mar 01, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-read-the-instructions-this-is-doctoral-work-provide-one-response-to-each-3443857.html">PLEASE READ THE INSTRUCTIONS. This is Doctoral work!! Provide one response to EACH student’s POST. Each response should be 200 words. PLEASE KEEP IN ORDER; the responses must be relevant to the...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 27, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-read-the-instructions-this-is-doctoral-work-provide-one-response-to-each-3443856.html">PLEASE READ THE INSTRUCTIONS. This is Doctoral work!! Provide one response to EACH student’s POST. Each response should be 150 words. PLEASE KEEP IN ORDER; the responses must be relevant to the...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 27, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/it-is-very-important-to-read-the-instructions-this-is-doctoral-work-turnitin-an-3443850.html">IT IS VERY IMPORTANT TO READ THE INSTRUCTIONS!!! THIS IS DOCTORAL WORK. Turnitin and Waypoint are being used to check for plagiarism, and please use APA format. Please pay close attention I NEED...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 25, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/it-is-very-important-to-read-the-instructions-this-is-doctoral-work-turnitin-an-3443847.html">IT IS VERY IMPORTANT TO READ THE INSTRUCTIONS!!! THIS IS DOCTORAL WORK. Turnitin and Waypoint are being used to check for plagiarism, and please use APA format. Please pay close attention I NEED...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 22, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/it-is-very-important-to-read-the-instructions-this-is-doctoral-work-turnitin-an-3443846.html">IT IS VERY IMPORTANT TO READ THE INSTRUCTIONS!!! THIS IS DOCTORAL WORK. Turnitin and Waypoint are being used to check for plagiarism, and please use APA format. Please pay close attention I NEED...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 22, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-read-the-instructions-this-is-doctoral-work-provide-one-response-to-each-3443842.html">PLEASE READ THE INSTRUCTIONS. This is Doctoral work!! Provide one response to EACH student’s POST. Each response should be 200 words. PLEASE KEEP IN ORDER; the responses must be relevant to the...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 20, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/please-read-the-instructions-this-is-doctoral-work-provide-one-response-to-each-3443840.html">Marcus Mccall-MY POST-Malicious Insiders As the company's Chief Information Officer entrusted with safeguarding our proprietary and valuable data among our 10,000 employees, your role is pivotal in...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 19, 2025</span> </div> </li> <li> <a id="hypQuestionUrl" href="https://www.topassignmentexperts.com/questions/it-is-very-important-to-read-the-instructions-this-is-doctoral-work-turnitin-an-3443838.html">IT IS VERY IMPORTANT TO READ THE INSTRUCTIONS!!! THIS IS DOCTORAL WORK. Turnitin and Waypoint are being used to check for plagiarism, and please use APA format. Please pay close attention I NEED...</a> <div class="info"> <span class="solved" title="solved"><em class="ico"></em>Solved</span> <span class="postedtime"><em class="ico"></em> Feb 17, 2025</span> </div> </li> </ul> <div class="clearfix"></div> <a id="hypMoreRelatedQuestion" class="moreque" href="/computer-science-homework-help/">More Questions »</a> </div> </div> </div> </div> <div class="col-md-4"> <div class="submit-assignment"> <div id="dvQuestionContainer"> <div class="assignment-frm"> <div id="dvTitle"><h3>Submit New Assignment</h3></div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvSubject"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtSubject" type="text" id="txtSubject" class="form-control" placeholder="Subject" /> <span class="help-block filled" id="spnSubjectName" style="display: none;"><span class="parsley-checkemailavailability">Please select subject</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6" id="dvDeadLine"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtDeadLine" type="text" readonly="readonly" id="txtDeadLine" class="form-control" placeholder="Deadline" /> <span class="help-block filled" id="spnDeadline" style="display: none;"><span class="parsley-checkemailavailability">Please select deadline for your assignment</span></span> </div> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvNoOfPages"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlNoOfPages" id="ddlNoOfPages" class="form-control"> <option value="-1">Select No Of Pages</option> <option value="0">Not Applicable</option> <option value="1">Pages/Words: 1/250</option> <option value="2">Pages/Words: 2/500</option> <option value="3">Pages/Words: 3/750</option> <option value="4">Pages/Words: 4/1000</option> <option value="5">Pages/Words: 5/1250</option> <option value="6">Pages/Words: 6/1500</option> <option value="7">Pages/Words: 7/1750</option> <option value="8">Pages/Words: 8/2000</option> <option value="9">Pages/Words: 9/2250</option> <option value="10">Pages/Words: 10/2500</option> <option value="11">Pages/Words: 11/2750</option> <option value="12">Pages/Words: 12/3000</option> <option value="13">Pages/Words: 13/3250</option> <option value="14">Pages/Words: 14/3500</option> <option value="15">Pages/Words: 15/3750</option> <option value="16">Pages/Words: 16/4000</option> <option value="17">Pages/Words: 17/4250</option> <option value="18">Pages/Words: 18/4500</option> <option value="19">Pages/Words: 19/4750</option> <option value="20">Pages/Words: 20/5000</option> <option value="21">Pages/Words: 21/5250</option> <option value="22">Pages/Words: 22/5500</option> <option value="23">Pages/Words: 23/5750</option> <option value="24">Pages/Words: 24/6000</option> <option value="25">Pages/Words: 25/6250</option> <option value="26">Pages/Words: 26/6500</option> <option value="27">Pages/Words: 27/6750</option> <option value="28">Pages/Words: 28/7000</option> <option value="29">Pages/Words: 29/7250</option> <option value="30">Pages/Words: 30/7500</option> <option value="31">Pages/Words: 31/7750</option> <option value="32">Pages/Words: 32/8000</option> <option value="33">Pages/Words: 33/8250</option> <option value="34">Pages/Words: 34/8500</option> <option value="35">Pages/Words: 35/8750</option> <option value="36">Pages/Words: 36/9000</option> <option value="37">Pages/Words: 37/9250</option> <option value="38">Pages/Words: 38/9500</option> <option value="39">Pages/Words: 39/9750</option> <option value="40">Pages/Words: 40/10000</option> <option value="41">Pages/Words: 41/10250</option> <option value="42">Pages/Words: 42/10500</option> <option value="43">Pages/Words: 43/10750</option> <option value="44">Pages/Words: 44/11000</option> <option value="45">Pages/Words: 45/11250</option> <option value="46">Pages/Words: 46/11500</option> <option value="47">Pages/Words: 47/11750</option> <option value="48">Pages/Words: 48/12000</option> <option value="49">Pages/Words: 49/12250</option> <option value="50">Pages/Words: 50/12500</option> <option value="51">Pages/Words: 51/12750</option> <option value="52">Pages/Words: 52/13000</option> <option value="53">Pages/Words: 53/13250</option> <option value="54">Pages/Words: 54/13500</option> <option value="55">Pages/Words: 55/13750</option> <option value="56">Pages/Words: 56/14000</option> <option value="57">Pages/Words: 57/14250</option> <option value="58">Pages/Words: 58/14500</option> <option value="59">Pages/Words: 59/14750</option> <option value="60">Pages/Words: 60/15000</option> <option value="61">Pages/Words: 61/15250</option> <option value="62">Pages/Words: 62/15500</option> <option value="63">Pages/Words: 63/15750</option> <option value="64">Pages/Words: 64/16000</option> <option value="65">Pages/Words: 65/16250</option> <option value="66">Pages/Words: 66/16500</option> <option value="67">Pages/Words: 67/16750</option> <option value="68">Pages/Words: 68/17000</option> <option value="69">Pages/Words: 69/17250</option> <option value="70">Pages/Words: 70/17500</option> <option value="71">Pages/Words: 71/17750</option> <option value="72">Pages/Words: 72/18000</option> <option value="73">Pages/Words: 73/18250</option> <option value="74">Pages/Words: 74/18500</option> <option value="75">Pages/Words: 75/18750</option> <option value="76">Pages/Words: 76/19000</option> <option value="77">Pages/Words: 77/19250</option> <option value="78">Pages/Words: 78/19500</option> <option value="79">Pages/Words: 79/19750</option> <option value="80">Pages/Words: 80/20000</option> <option value="81">Pages/Words: 81/20250</option> <option value="82">Pages/Words: 82/20500</option> <option value="83">Pages/Words: 83/20750</option> <option value="84">Pages/Words: 84/21000</option> <option value="85">Pages/Words: 85/21250</option> <option value="86">Pages/Words: 86/21500</option> <option value="87">Pages/Words: 87/21750</option> <option value="88">Pages/Words: 88/22000</option> <option value="89">Pages/Words: 89/22250</option> <option value="90">Pages/Words: 90/22500</option> <option value="91">Pages/Words: 91/22750</option> <option value="92">Pages/Words: 92/23000</option> <option value="93">Pages/Words: 93/23250</option> <option value="94">Pages/Words: 94/23500</option> <option value="95">Pages/Words: 95/23750</option> <option value="96">Pages/Words: 96/24000</option> <option value="97">Pages/Words: 97/24250</option> <option value="98">Pages/Words: 98/24500</option> <option value="99">Pages/Words: 99/24750</option> <option value="100">Pages/Words: 100/25000</option> </select> <span class="help-block filled" id="spnNoOfPages" style="display: none;"><span class="parsley-checkemailavailability">Please select no of pages for your assignment</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6" id="dvReferenceId"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlReferenceId" id="ddlReferenceId" class="form-control"> <option value="0">Referencing Style</option> <option value="1">Harvard</option> <option value="2">MLA</option> <option value="3">Vancouver</option> <option value="4">Chicago/Turabian</option> <option value="5">APA</option> <option value="6">Oxford</option> <option value="7">Oscola</option> <option value="8">AGLC</option> <option value="9">MHRA</option> <option value="10">Others</option> <option value="11">BMJ</option> <option value="12">Chicago</option> <option value="13">Footnotes</option> <option value="14">Footnotes and bibliography</option> <option value="15">IEEE</option> <option value="16">Open</option> <option value="17">OSCOLA</option> <option value="18">Turabian</option> </select> <span class="help-block filled" id="spnReferenceId" style="display: none;"><span class="parsley-checkemailavailability">Please select references for your assignment</span></span> </div> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6" id="dvLevelId"> <div class="form-group"> <select name="ctl00$MainContent$QuestionBox$ddlLevelId" id="ddlLevelId" class="form-control"> <option value="0">Select Level</option> <option value="1">Certification</option> <option value="2">Diploma</option> <option value="3">Advanced Diploma</option> <option value="4">Undergraduate</option> <option value="5">Masters</option> <option value="6">Others</option> </select> <span class="help-block filled" id="spnLevelId" style="display: none;"><span class="parsley-checkemailavailability">Please select level for your assignment</span></span> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6"> <div id="dvNoOfCopies"> <div class="form-group"> <div class="input-group multiple-copies"> <span class="input-group-btn"> <button class="btn btn-default" data-dir="dwn" id="btnDown"><span class="glyphicon glyphicon-minus"></span></button> </span> <input name="ctl00$MainContent$QuestionBox$txtNoOfCopies" type="text" value="No Of Copies: 1" id="txtNoOfCopies" class="form-control text-center" data-noofcopies="1" placeholder="No Of Copies" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnNoOfCopies" id="hdnNoOfCopies" value="1" /> <span class="input-group-btn"> <button class="btn btn-default" data-dir="up" id="btnUp"><span class="glyphicon glyphicon-plus"></span></button> </span> </div> <i class="glyphicon glyphicon-info-sign popinfo" data-toggle="popover" data-trigger="focus" title="" data-html="true" data-content="<ul><li>Extra 10% discount upto 3 copies (2-3 copies)</li><li>Extra 20% discount for more than 3 copies</li></ul>"></i> </div> </div> </div> </div> <div class="row"> <div class="col-xs-12" id="dvName"> <div class="form-group"> <input name="ctl00$MainContent$QuestionBox$txtName" type="text" id="txtName" class="form-control" placeholder="Your Name" /> <span class="help-block filled" id="spnUserName" style="display: none;"><span class="parsley-checkemailavailability">Please Enter your name</span></span> </div> </div> </div> <div class="form-group"> <div class="nicEdit-main" id="txtDescription">Copy and Paste Your Assignment Here</div> <span class="help-block filled" id="spnDescription" style="display: none;"><span class="parsley-checkemailavailability">Please Enter your question</span></span> </div> <div class="row"> <div class="col-xs-12 col-sm-6 col-md-6"> <div class="form-group"> <a href="javascript:void(0);" id="hypAttachFiles" class="attach-file">Attach File</a> </div> </div> <div class="col-xs-12 col-sm-6 col-md-6"> <input type="submit" name="ctl00$MainContent$QuestionBox$btnSubmit" value="Get a Free Quote" id="btnSubmit" class="submit" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnSubjectId" id="hdnSubjectId" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnDescription" id="hdnDescription" /> <input type="hidden" name="ctl00$MainContent$QuestionBox$hdnDeadline" id="hdnDeadline" /> </div> <div id="dvUploadFileContainer" class="atchcont" style="display: none;"> <div id="dvQFile1" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile1" id="qFile1" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id="1">Cancel</a> </div> <div id="dvQFile2" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile2" id="qFile2" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='2'>Cancel</a> </div> <div id="dvQFile3" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile3" id="qFile3" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='3'>Cancel</a> </div> <div id="dvQFile4" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile4" id="qFile4" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='4'>Cancel</a> </div> <div id="dvQFile5" class="hide row"> <div class="attach-btn"> <input type="file" name="ctl00$MainContent$QuestionBox$qFile5" id="qFile5" class="filestyle" data-buttonBefore="true" /> </div> <a href="javascript:void(0);" class="clearupload" data-id='5'>Cancel</a> </div> <a id="hypMoreFile" class="havemorefiles" href="javascript:void(0);" style="float: right;">Attach More File</a> </div> </div> <div class="modal fade" id="dvSubjectContaner" data-keyboard="false" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <ul class='nav nav-tabs' role='tablist'> <li role='presentation' class='active'><a href='#accounting' aria-controls='accounting' role='tab' data-toggle='tab'>Accounting</a></li> <li role='presentation'><a href='#computer-science' aria-controls='computer-science' role='tab' data-toggle='tab'>Computer Science</a></li> <li role='presentation'><a href='#economics' aria-controls='economics' role='tab' data-toggle='tab'>Economics</a></li> <li role='presentation'><a href='#engineering' aria-controls='engineering' role='tab' data-toggle='tab'>Engineering</a></li> <li role='presentation'><a href='#finance' aria-controls='finance' role='tab' data-toggle='tab'>Finance</a></li> <li role='presentation'><a href='#thesis' aria-controls='thesis' role='tab' data-toggle='tab'>Thesis</a></li> <li role='presentation'><a href='#management' aria-controls='management' role='tab' data-toggle='tab'>Management</a></li> <li role='presentation'><a href='#science_math' aria-controls='science_math' role='tab' data-toggle='tab'>Science/Math</a></li> <li role='presentation'><a href='#statistics' aria-controls='statistics' role='tab' data-toggle='tab'>Statistics</a></li> <li role='presentation'><a href='#writing' aria-controls='writing' role='tab' data-toggle='tab'>Writing</a></li> <li role='presentation'><a href='#dissertations' aria-controls='dissertations' role='tab' data-toggle='tab'>Dissertations</a></li> <li role='presentation'><a href='#essays' aria-controls='essays' role='tab' data-toggle='tab'>Essays</a></li> <li role='presentation'><a href='#programming' aria-controls='programming' role='tab' data-toggle='tab'>Programming</a></li> <li role='presentation'><a href='#healthcare' aria-controls='healthcare' role='tab' data-toggle='tab'>Healthcare</a></li> <li role='presentation'><a href='#law' aria-controls='law' role='tab' data-toggle='tab'>Law</a></li> <li role='presentation'><a href='#humanities' aria-controls='humanities' role='tab' data-toggle='tab'>Humanities</a></li> </ul> <div class='tab-content'> <div role='tabpanel' class='tab-pane active' id='accounting'> <ul> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='14'>» Accounting - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='15'>» Advanced Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='16'>» Auditing</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='17'>» Cost Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='18'>» Financial Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='19'>» Managerial Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='20'>» Payroll Accounting</a></li> <li><a href='javascript:void(0);' data-subjectid='1' data-topicid='142'>» Taxation</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='computer-science'> <ul> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='21'>» Automata or Computationing</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='22'>» Computer Architecture</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='23'>» Computer Graphics and Multimedia Applications</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='24'>» Computer Network Security</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='25'>» Data Structures</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='26'>» Database Management System</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='27'>» Design and Analysis of Algorithms</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='28'>» Information Technology</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='29'>» Linux Environment</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='30'>» Networking</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='31'>» Operating System</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='32'>» Software Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='33'>» Big Data</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='34'>» Android</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='35'>» iOS</a></li> <li><a href='javascript:void(0);' data-subjectid='2' data-topicid='36'>» Matlab</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='economics'> <ul> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='37'>» Economics - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='38'>» International Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='39'>» Macro Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='40'>» Micro Economics</a></li> <li><a href='javascript:void(0);' data-subjectid='3' data-topicid='41'>» Game Theory</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='engineering'> <ul> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='42'>» Chemical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='43'>» Civil Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='44'>» Electrical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='45'>» Mechanical Engineering</a></li> <li><a href='javascript:void(0);' data-subjectid='4' data-topicid='143'>» Electronics and communication Engineering</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='finance'> <ul> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='46'>» Corporate Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='47'>» International Financial Management</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='48'>» Investment</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='49'>» Risk Management</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='50'>» Personal Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='51'>» Behavioral Finance</a></li> <li><a href='javascript:void(0);' data-subjectid='5' data-topicid='136'>» Finance - Others</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='thesis'> <ul> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='93'>» Accounting Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='94'>» Economics Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='95'>» Finance Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='96'>» Management Thesis</a></li> <li><a href='javascript:void(0);' data-subjectid='6' data-topicid='97'>» Other Thesis Topics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='management'> <ul> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='52'>» Business Law</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='53'>» Human Resource Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='54'>» Management - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='55'>» Managing Information Technology</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='56'>» Marketing Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='57'>» Strategic Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='58'>» Supply Chain Management / Operations Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='59'>» Hospitality Management</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='60'>» Business Ethics</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='61'>» International Business</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='62'>» Business Communications</a></li> <li><a href='javascript:void(0);' data-subjectid='7' data-topicid='124'>» Project Management</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='science_math'> <ul> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='63'>» Advanced Mathematics</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='64'>» Biology</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='65'>» Chemistry</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='66'>» Earth Science</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='67'>» Maths</a></li> <li><a href='javascript:void(0);' data-subjectid='8' data-topicid='68'>» Physics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='statistics'> <ul> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='69'>» ANOVA</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='70'>» Applied Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='71'>» Basics of Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='72'>» Central Tendency</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='73'>» Descriptive Statistics</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='74'>» Hypothesis Testing</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='75'>» Operational Research</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='76'>» Regression</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='77'>» Sampling Theory</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='78'>» Statistics - Others</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='79'>» Stochastic processes</a></li> <li><a href='javascript:void(0);' data-subjectid='9' data-topicid='80'>» Time Series Analysis</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='writing'> <ul> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='81'>» Academic writing</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='82'>» Admission Services</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='83'>» Capstone</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='84'>» Paper Writing</a></li> <li><a href='javascript:void(0);' data-subjectid='10' data-topicid='135'>» Spanish</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='dissertations'> <ul> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='85'>» Accounting Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='86'>» Economics Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='87'>» Finance Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='88'>» Human Resource Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='89'>» Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='90'>» Marketing Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='91'>» Project Management Dissertation</a></li> <li><a href='javascript:void(0);' data-subjectid='11' data-topicid='92'>» Statistics Dissertation</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='essays'> <ul> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='98'>» Narrative Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='99'>» Scholarship Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='100'>» Admission Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='101'>» Persuasive Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='102'>» Descriptive Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='103'>» Expository Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='104'>» accounting essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='105'>» finance essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='106'>» economics essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='107'>» leadership essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='108'>» statistics essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='109'>» College Essay</a></li> <li><a href='javascript:void(0);' data-subjectid='12' data-topicid='110'>» Other Essay Topics</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='programming'> <ul> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='111'>» Java</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='112'>» Python</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='113'>» C/C++</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='114'>» HTML</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='115'>» Ruby</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='116'>» PHP</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='117'>» Javascript</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='118'>» R Programming</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='119'>» .NET/C#</a></li> <li><a href='javascript:void(0);' data-subjectid='13' data-topicid='120'>» Other Programming Language</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='healthcare'> <ul> <li><a href='javascript:void(0);' data-subjectid='121' data-topicid='122'>» Nursing</a></li> <li><a href='javascript:void(0);' data-subjectid='121' data-topicid='123'>» Healthcare - Others</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='law'> <ul> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='126'>» Tax Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='127'>» Intellectual Property Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='128'>» Family Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='129'>» Criminal Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='130'>» Constitutional Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='131'>» Civil Litigates</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='132'>» International Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='133'>» Labour/Employment Law</a></li> <li><a href='javascript:void(0);' data-subjectid='125' data-topicid='134'>» Other law</a></li> </ul> </div> <div role='tabpanel' class='tab-pane' id='humanities'> <ul> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='138'>» Sociology</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='139'>» Psychology</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='140'>» Foreign language</a></li> <li><a href='javascript:void(0);' data-subjectid='137' data-topicid='141'>» Proofreading</a></li> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <div id="pnlRegister" class="login-popup" style="display: none;"> <div class="modal" id="dvLoginRegister" data-keyboard="false" data-backdrop="static" tabindex="-1" role="dialog" aria-hidden="false" style="display: block;"> <div class="modal-backdrop fade in" style="height: 100%;"></div> <div class="modal-dialog"> <div class="modal-content login"> <button type="button" class="close" id="btnCloseLogin" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <div class="modal-body"> <div class="container"> <div class="col-xs-12"> <div class="wrapper" id="wrapper"> <div class="login-form" id="dvLoginRegisterContainer"> <div class="col-md-6"> <div id="pnlRegister" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnRegister')"> <div id="register"> <div class="heading">Create an Account</div> <div class="form-group"><input name="ctl00$MainContent$LoginRegister$txtFisrtName" type="text" id="txtFisrtName" class="form-control name" data-parsley-required="true" data-parsley-pattern="^[A-Za-z\d\s]+$" data-parsley-pattern-message="Name should be alphanumeric." data-parsley-required-message="Please Enter your name." placeholder="Your Name" data-parsley-trigger="foucusout" /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtUserName" type="text" id="txtUserName" placeholder="Email Id" data-parsley-trigger="foucusout" data-parsley-type="email" class="form-control email-address" data-parsley-checkemailavailability="true" data-parsley-group="email" data-parsley-required-message="Please Enter your email id." data-parsley-required="true" data-parsley-checkemailavailability-message="Email is already registerd. Please login or choose another email id." /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtUserPassword" type="password" id="txtUserPassword" data-parsley-error-message="The password Should be at least 6 characters and can be a maximum of 15 characters." data-parsley-required="true" data-parsley-maxlength="15" data-parsley-minlength="6" class="form-control password" placeholder="Password" /> </div> <div class="form-group"> <input type="submit" name="ctl00$MainContent$LoginRegister$btnRegister" value="Sign Up" id="btnRegister" class="btn btn-success btn-block" data-gaq="true" data-category="Solved" data-label="120657" data-action="sign_up" /> <p class="frm-btm">Already registered? <a href="javascript:void(0)" id="login-link">Login</a> </p> </div> </div> </div> <div id="pnlLogin" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnLogin')"> <div id="login" style="display: none"> <div class="heading">Log In to Your Account</div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtEmailId" type="text" id="txtEmailId" data-parsley-error-message="Please Enter your email id." data-parsley-required="true" data-parsley-type="email" class="form-control email-address" placeholder="Email Id" /> </div> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtPassword" type="password" id="txtPassword" data-parsley-error-message="Please enter your password" data-parsley-required="true" data-parsley-maxlength="15" data-parsley-minlength="6" class="form-control password" placeholder="Password" /> </div> <div class="form-group"> <div class="forgotlink"> <a href="javascript:void(0)" id="forgotlink">Forgot Password</a> </div> <input type="submit" name="ctl00$MainContent$LoginRegister$btnLogin" value="Login" id="btnLogin" class="btn btn-success btn-block" data-gaq="true" data-category="Solved" data-label="120657" data-action="sign_in" /> <p class="frm-btm"> Not Account? <a href="javascript:void(0)" id="sign-link">Sign up</a> </p> </div> </div> </div> <div id="pnlForgotPassword" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'btnForgotPassword')"> <div id="dvForgotPassword" style="display: none"> <h2>Get Password?</h2> <p>Enter your email address to reset your password</p> <div class="form-group"> <input name="ctl00$MainContent$LoginRegister$txtResetPassowrdEmail" type="text" id="txtResetPassowrdEmail" data-parsley-error-message="Please Enter your email id." data-parsley-required="true" data-parsley-type="email" class="form-control email-address" placeholder="Email Id" /> </div> <div class="form-group"> <input type="submit" name="ctl00$MainContent$LoginRegister$btnForgotPassword" value="Reset Password" id="btnForgotPassword" class="btn btn-success btn-block" /> <p class="frm-btm">Back to Login? <a href="javascript:void(0)" id="lnkbackToLogin">Click here</a> </p> </div> </div> </div> </div> <div class="col-md-6"> <div class="login-benifits"> <div class="heading"> 96% of students say that they get better grades when they use TAE </div> <ul> <li>Millions of Homework Answers and Textbook Solutions</li> <li>If stuck, Ask Questions to Our Experts ANYTIME</li> <li>24X7 Support Available</li> </ul> </div> </div> <div class="clear"></div> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnCountryName" id="hdnCountryName" value="India" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnUserName" id="hdnUserName" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnIsLoginFailed" id="hdnIsLoginFailed" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnEntityId" id="hdnEntityId" /> <input type="hidden" name="ctl00$MainContent$LoginRegister$hdnNavigationUrl" id="hdnNavigationUrl" value="/myaccount/QuestionRequest.aspx?qid=120657" /> <div class="clear"></div> </div> </div> </div> </div> <!-- Login end --> </div> </div> </div> </div> </div> <footer> <div class="cont"> <div class="container"> <div class="row"> <div class="col-md-4 col-sm-6 col-xs-12"> <div class="ftr-logo"> <img src="../assets/images/logo.png" width="270" height="46" /> </div> <div class="ftr-mail"><a href="mailto:info@topassignmentexperts.com" rel="nofollow">info@topassignmentexperts.com</a></div> </div> <div class="col-md-8 col-sm-6 col-xs-12"> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/assignment-help/">» Assignment Help</a> <a href="/homework-help/">» Homework Help</a> <a href="/assignment-writing-services/">» Assignment writing services</a> <a href="/buy-assignment-online/">» Buy assignment online</a> <a href="/best-essay-writing-service/">» Best essay writing service</a> </div> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/do-my-assignment-for-me/">» Do my assignment for me</a> <a href="/write-my-essay-for-me/">» Write my essay for me</a> <a href="/best-dissertation-help/">» Best Dissertation Help</a> <a href="/dissertation-writing-help/">» Dissertation Writing Help</a> </div> <div class="col-md-4 col-sm-6 col-xs-12"> <a href="/about-us.aspx" rel="nofollow">» About TAE</a> <a href="/contact-us.aspx" rel="nofollow">» Contact Us</a> <a href="/privacy-policy.aspx" rel="nofollow">» Privacy Policy</a> <a href="/revision-refund-policy.aspx" rel="nofollow">» Revision Refund Policy</a> <a href="/terms-and-condition.aspx" rel="nofollow">» T&C </a> </div> </div> </div> </div> </div> <div class="copyright text-center"> <p>Disclaimer: The reference papers provided by TAE serve as model papers for students and are not to be submitted as it is. These papers are intended to be used for research and reference purposes only.</p> Copyright © 2025. All rights reserved. </div> </footer> <div id="pnlOnlineChatModule" ng-app="OnlineChatModule"> <div id="pnlOnlineChatController" ng-controller="VisitorChatController" ng-init="initOnlineChatController('https://api.unifolks.com/signalr','visitorChatHub','https://chat.unifolks.com/',3,'{"DomainId":3,"AssignmentId":0,"LastAssignmentId":0,"UserId":0,"ConnectionId":null,"UserAgent":null,"ChatUserType":1,"EmailId":"","FirstName":"","DisplayName":"","IsExpert":false,"IsStudent":false,"IsModerator":false,"AdminUserTypeId":0,"AdminUserType":0,"TimeZoneId":"UTC","Country":null,"UserSourceTypeId":0,"IsApprovedForInstantChat":false,"IsExpertEngaged":false,"UserSourceType":0,"UserSourceText":"Not Defined","ConnectionIds":[],"IsConnectedToInstantChat":false,"InstantChatSubjects":[],"ExpertApprovedSubject":[]}')" data-ChatHubUrl="https://api.unifolks.com/signalr" data-AzureChatHubUrl="https://chat.unifolks.com/" data-OnlineChatHub="visitorChatHub" data-DomainId="3" data-UserInfo="'{"DomainId":3,"AssignmentId":0,"LastAssignmentId":0,"UserId":0,"ConnectionId":null,"UserAgent":null,"ChatUserType":1,"EmailId":"","FirstName":"","DisplayName":"","IsExpert":false,"IsStudent":false,"IsModerator":false,"AdminUserTypeId":0,"AdminUserType":0,"TimeZoneId":"UTC","Country":null,"UserSourceTypeId":0,"IsApprovedForInstantChat":false,"IsExpertEngaged":false,"UserSourceType":0,"UserSourceText":"Not Defined","ConnectionIds":[],"IsConnectedToInstantChat":false,"InstantChatSubjects":[],"ExpertApprovedSubject":[]}'"> <div id="live-user-chat" style="display: none;"> <div class="live-user-chat-top" ng-click="OnChatHeadClick($event)"> <a href="javascript:void(0);" class="live-user-chat-close">x</a> <div class="live-user-chat-head"> <div class="live-user-chat-agent"><i class="fa fa-online" aria-hidden="true"></i> <ng-bind ng-bind="ChatSessionInfo.AdminDisplayName"></ng-bind></div> I am Online - Talk to me! <div class="live-user-chat-subhead" style="display: none">Please fill out the form below to start chatting with the next available agent.</div> </div> <div class="online-chat-person" style="display: none">Mehmet Mert</div> <span class="live-user-chat-message-counter" style="display: none">3</span> </div> <div class="live-user-chat-box" ng-show="ChatStepId>0"> <div class="dissabledbox" class="ng-hide" ng-show="!IsChatReady"></div> <div class="live-user-chat-order clearfix ng-hide" ng-show="ChatStepId==1"> <div class="live-user-chat-message clearfix"> <img src="/assets/images/avatar.png" alt="" width="32" height="32"> <div class="live-user-chat-message-content clearfix"> I am <b>Monica</b>. I am here to assist you. But please let me know whether you are here for a new order or an exising one. </div> </div> <div class="live-user-chat-button clearfix"> <input type="button" value="New Order" ng-click="OrderTypeChanged(1)" class="live-chat-order-new" /> <input type="button" value="Existing Order" ng-click="OrderTypeChanged(2)" class="live-chat-order-new" /> </div> </div> <div class="live-user-chat-history ng-hide" ng-show="ChatStepId==2" ng-scrollbars ng-scrollbars-update="updateChatConversationScrollbar" ng-scrollbars-config="chatScrollbarConfig"> <div class="live-user-chat-message clearfix" ng-repeat="item in ChatSessionInfo.ChatConversationList | orderBy: DateCreated:true" ng-class="{'user':item.SenderTypeId==1}"> <img src="/assets/images/avatar.png" alt="" width="32" height="32" ng-show="item.SenderTypeId==2"> <div class="live-user-chat-message-content clearfix"> <div class="live-user-chat-person" ng-show="item.SenderTypeId==2"> <ng-bind ng-bind="item.AdminDisplayName"></ng-bind> </div> <ng-bind-html ng-bind-html="item.ConversationText|trustAsHtml" ng-show="item.Conversation"></ng-bind-html> <ng-bind-html ng-bind-html="item.ConversationFiles |trustAsHtml"></ng-bind-html> <span class="live-user-chat-time"> <ng-bind ng-bind="item.DateCreated | utcToLocal:'hh.mm a'"></ng-bind> </span> </div> </div> </div> <div class="ng-hide" ng-show="IsAgentTyping"> <div class="messageBody clearfix"> <ng-bind ng-bind="AgentTypingMessage"></ng-bind> </div> </div> <div class="attached-file" style="display: none;" id="dvChatFileContainer"></div> <!-- end chat-history --> <div class="live-user-ask-questionng-hide" ng-show="ChatStepId==2"> <textarea rows="5" cols="10" ng-keyup="onChatKeyPress($event)" ng-model="ChatMessage" enter-submit="InsertChatConversation($event)" class="form-control" placeholder="Ask Your Question Here...:-)"></textarea> <div class="live-chat-msg-btn"> <input type="button" value="Submit" class="live-chat-send" ng-click="InsertChatConversation($event)" /> <div class="live-chat-attachcont"> <div id="btnChatDropzone" class="live-chat-attach"></div> <div class="dragnupload dz-clickable dz-message" id="chatDropzone" options="dzChatOptions" callbacks="dzChatCallbacks" methods="dzChatMethods" ng-dropzone></div> </div> </div> </div> </div> <!-- end chat --> </div> </div> </div> <script id="scrSiteHome" src="/assets/2.9.478/js/dist/cms-chatbox-template.js" ></script> <script src="https://chat.unifolks.com/js/signalr/dist/browser/signalr.js" ></script> <script src="/assets/2.9.478/js/src/public/pages/VisitorChat.js" ></script> <script src="/assets/js/src/public/pages/tfth.popuplogin.js" ></script> <script src="/assets/js/src/global/datetimepicker/jquery.datetimepicker.js" ></script> <script src="/assets/js/src/global/jquery.expander.js"></script> <script> window.EventCategory = 'Solved'; window.EventLabel = '120657'; window.NavigationUrl = '/myaccount/QuestionRequest.aspx?qid=120657'; $(function () { $(document).on("click", '[data-gaq="true"]', function () { var item = $(this), action = item.data("action"), category = item.data("category"), label = item.data("label"); gtag('event', action, { 'event_category': category, 'event_label': label }); }); $(document).on("click", '#hypNoOfAnswers', function () { gtag('event', 'answer_below', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); }); if (gtag) { gtag('event', 'page_load', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } $('header').addClass("darkbg"); $('.country-top .dropdown-menu a').on('click', function () { $(this).parent().parent().prev().html($(this).html() + '<span class="caret"></span>'); }); $('div.desc').expander({ slicePoint: 500, expandText: "<br clear='all'>View more »", userCollapseText: "View less »", moreClass: "more-link", lessClass: "less-link", expandPrefix: "", expandSpeed: 0, collapseSpeed: 0, beforeExpand: function () { }, afterExpand: function () { var action = 'view_more'; gtag('event', action, { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); }, onCollapse: function () { $("html, body").animate({ scrollTop: $("header").position().top }); } }); var dateToDisable = new Date(); dateToDisable.setFullYear(dateToDisable.getFullYear() + 2, dateToDisable.getMonth(), dateToDisable.getDate()); var btnDeadline = $('#btnDeadline'); var hdnQuestionDeadline = $('#hdnQuestionDeadline'); var btnRequestQuestion = $('#btnRequestQuestion'); btnDeadline.show(); btnRequestQuestion.hide(); btnDeadline.datetimepicker({ minDate: 0, format: 'd/m/Y H:i', yearStart: new Date().getFullYear(), yearEnd: new Date().getFullYear() + 2, maxDate: dateToDisable, step: 30, onChangeDateTime: function (currentTime, input, event) { if (!currentTime) { return false; } var selectedDateTime = new Date(); if (currentTime) { selectedDateTime = new Date(currentTime); } selectedDateTime.setSeconds(0); btnDeadline.datetimepicker({ value: selectedDateTime }); }, onClose: function (currentTime, input) { var selectedDateTime = new Date(); if (currentTime) { selectedDateTime = new Date(currentTime); } if (selectedDateTime.getMinutes() > 0) { selectedDateTime.setMinutes(selectedDateTime.getMinutes() + 30); } selectedDateTime.setMinutes(0); selectedDateTime.setSeconds(0); selectedDateTime.setMilliseconds(0); var localDateTime = new Date(); if (localDateTime.getMinutes() > 0) { localDateTime.setMinutes(localDateTime.getMinutes() + 30); } localDateTime.setMinutes(0); localDateTime.setSeconds(0); localDateTime.setMilliseconds(0); if (selectedDateTime <= localDateTime) { $('#spnNewDeadline').show(); btnRequestQuestion.hide(); hdnQuestionDeadline.val(''); } else { $('#spnNewDeadline').hide(); btnRequestQuestion.show(); hdnQuestionDeadline.val(btnDeadline.val()); } } }); btnDeadline.click(function (e) { btnDeadline.datetimepicker('show'); if (gtag) { gtag('event', 'main_cta', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } e.preventDefault(); return false; }); if (hdnQuestionDeadline.val()) { btnDeadline.hide(); btnRequestQuestion.show(); btnRequestQuestion.on('click', function () { if (gtag) { gtag('event', 'main_cta', { 'event_category': window.EventCategory, 'event_label': window.EventLabel }); } }); } else { btnDeadline.show(); btnRequestQuestion.hide(); } var downloadSolutions = $('#hypGetSolution, #hypGetSolutionBottom, #hypGetSolutionSolved, #hypGetSolutionSolvedBottom'); downloadSolutions.on('click', function (e) { var requirelogin = $(this).data('requirelogin'); if (requirelogin) { e.preventDefault(); $('#pnlRegister').show(); } }); $('#btnCloseLogin').on('click', function (e) { $('#pnlRegister').hide(); }); var options = { Register: { registerContainer: '#register', txtUserName: '#txtUserName', txtUserPassword: '#txtUserPassword', txtName: '#txtFisrtName', hdnCountryName: '#hdnCountryName', hdnUserName: '#hdnUserName', btnRegister: '#btnRegister' }, Login: { loginContainer: '#login', txtEmailId: '#txtEmailId', txtPassword: '#txtPassword', forgotlink: '#forgotlink', btnLogin: '#btnLogin', dvForgotPassword: '#dvForgotPassword', btnForgotPassword: '#btnForgotPassword', }, hdnIsLoginFailed: '#hdnIsLoginFailed', navigationUrl: window.NavigationUrl }; $('#dvLoginRegisterContainer').loginregister(options); var isLoginFailed = $('#hdnIsLoginFailed').val(); if (isLoginFailed === 'true') { $('#pnlRegister').show(); } }); </script> <script> var IsSubjectEnabled = true, DefaultSubjectId = 0, IsDeadlineEnabled = false, DeadLineHours = 10, IsNoOfPageEnabled = true, NoOfPages = 0, IsReferenceEnabled = true,IsLevelEnabled = true, ReferenceId = 0,LevelId=0, IsNameEnabled = true,eventCategory='',eventAction='',eventLabel=''; $(function () { var options = { dvQuestionContainer: '#dvQuestionContainer', dvSubject: '#dvSubject', dvSubjectContaner: '#dvSubjectContaner', dvDeadLine: '#dvDeadLine', dvNoOfPages: '#dvNoOfPages', dvReferenceId: '#dvReferenceId', dvLevelId: '#dvLevelId ', txtSubject: '#txtSubject', txtDeadLine: '#txtDeadLine', ddlNoOfPages: '#ddlNoOfPages', hdnNoOfPages: '#hdnNoOfPages', btnPageDown: '#btnPageDown', btnPageUp: '#btnPageUp', ddlReferenceId: '#ddlReferenceId', ddlLevelId: '#ddlLevelId', txtName: '#txtName', txtDescription: '#txtDescription', btnSubmit: '#btnSubmit', hdnSubjectId: '#hdnSubjectId', hypAttachFiles: '#hypAttachFiles', settings: { IsSubjectEnabled: IsSubjectEnabled, DefaultSubjectId: DefaultSubjectId, IsDeadlineEnabled: IsDeadlineEnabled, DeadLineHours: DeadLineHours, IsNoOfPageEnabled: IsNoOfPageEnabled, NoOfPages: NoOfPages, IsReferenceEnabled: IsReferenceEnabled, ReferenceId: ReferenceId, IsLevelEnabled: IsLevelEnabled, LevelId: LevelId, IsNameEnabled: IsNameEnabled } }; $("header").addClass("active"); $('#dvQuestionContainer').questionbox(options); $('#ulTopNavTab li').removeClass('active'); $('#ulTopNavTab li:nth-child(2)').addClass('active'); var downloadsoln = $('.pdf-solution'); SolnDownload = function () { downloadsoln.offset().top - $(window).scrollTop() > $(window).height() ? $(".solnfixed").slideDown() : $(".solnfixed").slideUp() }; downloadsoln.is(":visible") && (SolnDownload(), $(window).scroll(function () { SolnDownload() })); }); $('[data-toggle="popover"]').popover({ container: 'body' }); </script> <script type="text/javascript"> $(function () { }); </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="8A868A75" /> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="JZTzb6Hs7ZiKCXwTlTFedMLnVGuyeC4TxWcDeOm+j3UcfOvJdzLGUU7t1Iwda5RmR63QYtoQfYAlEB+Hv8iyopyePDTMpR0HvLZU0J5ys2CrqQYgXLdQIxL+au87AfS8rXBFxwdMAKqJJjQFR+IgwA4qnkFwTpR4rLd0i573HeuEum1nFAwmKzq6kTpc5N+UwbbkQQZgCIV7EGGYadpdoE3Nww54i3xuYaudskLH4nR4255dtZ4ZI7wr2uMy3tEsXZaHCSBQPnk9kR5fq6PkayjBqeXq6XZiFCjMEIeyu2NuHUJ1uEBlVWIyaCE538/sz7EvyEg83NDasUqnme0gk80BpQYccqy/FQ9kYM+JseIcgWZjKl2jTHryDmO3zTbXW8myPgS0kjDTFTidUEqRZz/ol4Xq+nzBbbHX/yIa45Rh/jb99949hNsFbHAoje+zgBotmWoUv1Kqw94jjelYRlmTulWN30VcH7sXcYAlgX5A3TPJvgbU3pH+L9npcvVaHerWdzqPtfpPKClhmuOhjQ2zXANBGJaSlQmnwcadkgT49osFKqGGGzdRa9qcSB6rSXCpPnBjoztIUyOyE5TY+5tR537PVnwiOsVTjorBcAJyIInLg2XdfIZhy7E5Uzzrm0FgFfSaH8TJKXcJLlzx2ndYBE1Y81lS2oJNUsMOOyAIpZ+KQZO4QfvsPeSEIWF+ROvLw/IoQSw5VahMNBnDEih/nhlkgTO5jwCxru5mDVzvfxsSfolgK2JnAWsqyh+u+iHeZT3WxX4PJyUSk/c3ZeTz8/rOFqcMDVEXTJSjRlJ88GeWZTUfIc6q38uF0w3rRoW9riFN8RjLW3soYZlgAkwufBsjlaCQfcaPr0vS/kBG/o1H+2h3OJgpZ5Q2vc3hiQXXENiFjaZqfsu4z2nx8Bmh4rNBFTR8l3ET04yjNRkjwkkRynNrtH1XjFhKpIRWrFoGIUuz2xZQPHtiwtJ+vGWhn2CXxAGI63FzAssOyrhId7zvtn2liBF3mkhEcXWkDZT83vw/kEW2nXh1HgI18Z1nkTjya2xLIDd4DYG274jfdns+qYSuzRZfW8pFNJaJ4QW39ssAIzLAqFerKIctb2+tx6ltmOfZANDIHjN5uZ+K+DD0Xaml1+vRqD/slGIzetSuMTrXZmKfbz+h5RcddCO2hDi8SAGALdjGo7gtiIhsQeNTxbRExPooQPbcxIigowAb/aCQmwPl8WuH4d9hAi+1lTZKj/oFsBVjrtrI+uzf9O1EPoJIN+5zU5MfpbMbwdbz4se+wYxYFq96631WwYKVX9L1Bw4XtpJdb+ewMzxEJDpGI+i1DF8BeG5It0uxbzsf5NoLBgc3PWITYVGMlpk2znDffv80nGAi+DA7xcE0892VVk0YaR2xa8gCh4+07ejRRn17W23LBlRep5oHRheFmYKh7sNKupwU47GZK+e68YXUmPLHACQSTaWzO9TKYLJOgUrrUJqoi9yVcD2ILm7vGr6gufmpngQefByVO6UZ1b0lUH/IK2ipvFIAAuwd6AsrTfgsisNeGiSm9VGXLfL+OBqruD+bFjjl6JE/7F9gwNiOSE9vz5vuuBPT/kfleMKRx0vWsVdFqTpjbh1y+7SWpeOirOokxUqlnW42B5jxalf9sj1LroA0cGsZFi+1JNWYCIsl/Y/wAAGPpPCjkjoo2kU50a1ncdV/rJghcJ7yUIIqe9TqTtPNQ1a+maEN6rh0sYqh7+lKdU3vWvdDGPtsiOpJWB/nZREEYowU5toW4EzMWyuiGpziycMMW1Ohwd3BxpMwCLkzPH5t2F3nfuTOg/a+qnfIdV2pGcY01IMGLcEhhPiJiKHUx3sSZ9A7yqj+1Bb+OvIkhQe1/VyE1c/BHhsAFAFDirEjxvE4eb3rEntceK2prwkHkkVSrCdw+4WRusKJZ+tO0abK12SuteNjusGxGCrSTVlEu7YhRVxkUTAUL3FNPX0FeOLQOmV6yPbJBZPs+ZdDklQk+Wy1gjGqbyJh6kMbPUvYSzrFmTmw4oZ9Z1Z9rqk4Yt+EzZwfPoCHdf4aLq+/3k3IzreA2JR49Or0Fk3+UFRZF/ZUXTw8DXPwTEsrHTeAKmPk8BJb83N2gy2yhEUp7MAWhgnmuAXlVOrbiLsMsk3iBMVidNOBtPG90+CfXdc7tDvfYMyoby235GEOAaglyd1SaeHImuSn1Dlm+/y0F1YNb5fXjO9FGyLSzVkRMPfdTSTlwqtbRQJOp6ESMAsAhKrO/EdK/bMau4EtLUIHRBkmNWhtfBIRlXTptS3xl2lD5DsA3oPFFHPaYfpY+NEmqFzfWLpA8CMi6+ioDm9hUGL8Z0AAWbatRMPFsYl6HAhua7fGtczM4yCR9tt3rOCDgR5kJ5dZ/4Ik1ocw1Dmv63N8I8y0a9VW2BM9hmvHcERBLUlLqczcCC15hZ7F2SIm1Xoj5d4HthYavF8efjwPUEOo7eMesq6aFFAyZOT097KT3F9rNZRHcvkt9zAbfCQnxynfmXjqDKDj5j1od03yDCXcDtETUepI4aUyFak4S0HL+CW8B6ruGyMdx6O4n8dk8efc+f+Tc7Zq3AAGlb8FnYNk8otODBsqUAXhTy2aL8ykBEUAsEhXfaqD7DGwaafmX8GURbz8aqAsO/7fUnvRlp0aS20VUZtugX6JPFTqE2GmIGNJ19IvR3pKp4DEWtP5pK3L9zZq8d62Ix4hxNY5HD+ECggrxbd1sjnFGecId8VtaS2F5ZcV5tXpNTt6EyDVwsJPeDBqqr6OIAMO/R3oIiVqHUDFuFSaO2zN43Z0r2JDdU8emlKIcm8kE1dR3acj+T5juEyIQuysEiVCP9SEPuN0EWuyWv0mgNzsaQJqYhMlgj4tppX+lPJvjJeFyOTs7Db4GrLBA6wg4K94pECvkaIp49eGke0QXLgGjT4MGyG8MZ9Jb8jR7q4LNjrvJB/GxliFmN17rUx9LQaGR8WQ3VsamYMrLi0UbB3DNrQhBV8qYMh5SY7h/ChoZ7d0YYzeRwIY5tR3eq9jhImvkZy+uD4rb3R4nnrwHfrAHWihYA+K1zsJaGh7dehwgG062lbLg795S/fDlboeJ6aOKXow3JWteGCHuHez324XaQLohwzLrY5RhVbJ0jo6UqK+WbmA/FCvvOcLt0kopY/bnkbK+zd9QhUp9EjzYfmuMLQMgHMa4jQZ1K4N4D1LysYpGxqK4Fr8fetHBc4bjR6yRpkIQknM07JRqSKmm4dimN6qgNITQ0Fzi6Pm+Bd3/ENZnFordgDYP7BvEW+M+txzRY2U0sqNNdtoPGjIp4Pyi2QUSW1eFfAinKVR" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZNql995Jv-hfKiaCVDN0QJdSyUJc-a1p_mZZaSE5PbL9e3E97vNqOWjrLAq9kxcE9A2&t=638240343755514788" type="text/javascript"></script> </form> </body> </html>