#figcaption
Explore tagged Tumblr posts
Text
Estructurar de manera semántica y significativa el contenido de nuestras páginas web.
El mundo de las etiquetas HTML5 <article>, <hgroup>, <figure> y <figcaption> para estructurar de manera semántica y significativa el contenido de nuestras páginas web. ¿Qué es <article>? La etiqueta <article> representa un contenido independiente y autocontenido, como un artículo de blog, un post en un foro o un comentario. Es ideal para agrupar contenido relacionado que puede ser distribuido o…
0 notes
Text
p div class= '' Message Pigs '' grimace figure class= '' necrotic orb '' data-orb- necrotic curse ''309 '' data-orb-identify '' : //64.media.tumblr.com/347c34743bc61627337fc100cuk ((( ( seraphim : //vm.tiktok.com/ZS8eRb9M6/ ) puppeteer '' orb '' 100 puppet '' 100 '' #CuteArmy #parasite #Shorts < /figcaption > < /figure > < /div >
39 notes
·
View notes
Text
PODFICCER (and fic author) RESOURCE: things i learned about HTML today
-> from this reference work on ao3: A Complete Guide to 'Limited HTML' on AO3 by CodenameCarrot (please go leave a comment if you find anything here useful !!!)
EDIT: OMG Y'ALL I HAVE BEEN HAVING SO MUCH NERDY GEEKY FUN TWEAKING MY PODFIC HOW-TO GUIDE WITH THIS STUFF
headings, blockquote, div
----
-----
html currently allowed by ao3 html sanitizer
a. abbr. acronym. address. b. big. blockquote. br. caption. center. cite. code. col. colgroup. details. dd. del. dfn. div. dl. dt. em. figcaption. figure. h1. h2. h3. h4. h5. h6. hr. i. img. ins. kbd. li. ol. p. pre. q. rp. rt. ruby. s. samp. small. span. strike. strong. sub. summary. sup. table. tbody. td. tfoot. th. thead. tr. tt. u. ul. var.
-----
in-line (text) formatting tags supported by ao3
-----
OMG LOOK AT THIS !!! IDK WHEN I WOULD EVER USE THIS BUT LOOK HOW COOL !!!
-----
paragraphs & p formats: archiveofourown.org/works/5191202/chapters/161901154#AddParagraphs
-----
omg I'VE ALWAYS WONDERED HOW TO GET THAT LINE BREAK THINGY IN THE MIDDLE OF THE PAGE !!!
-----
end post
#podfic resource#podficcer resource#fic author resource#ao3 writer resource#ao3 fanfic#ao3#html resource#html reference#html#reference#resource#html tutorial#basic html guide#CodenameCarrot
6 notes
·
View notes
Text
Let's understand HTML
Cover these topics to complete your HTML journey.
HTML (HyperText Markup Language) is the standard language used to create web pages. Here's a comprehensive list of key topics in HTML:
1. Basics of HTML
Introduction to HTML
HTML Document Structure
HTML Tags and Elements
HTML Attributes
HTML Comments
HTML Doctype
2. HTML Text Formatting
Headings (<h1> to <h6>)
Paragraphs (<p>)
Line Breaks (<br>)
Horizontal Lines (<hr>)
Bold Text (<b>, <strong>)
Italic Text (<i>, <em>)
Underlined Text (<u>)
Superscript (<sup>) and Subscript (<sub>)
3. HTML Links
Hyperlinks (<a>)
Target Attribute
Creating Email Links
4. HTML Lists
Ordered Lists (<ol>)
Unordered Lists (<ul>)
Description Lists (<dl>)
Nesting Lists
5. HTML Tables
Table (<table>)
Table Rows (<tr>)
Table Data (<td>)
Table Headings (<th>)
Table Caption (<caption>)
Merging Cells (rowspan, colspan)
Table Borders and Styling
6. HTML Forms
Form (<form>)
Input Types (<input>)
Text Fields (<input type="text">)
Password Fields (<input type="password">)
Radio Buttons (<input type="radio">)
Checkboxes (<input type="checkbox">)
Drop-down Lists (<select>)
Textarea (<textarea>)
Buttons (<button>, <input type="submit">)
Labels (<label>)
Form Action and Method Attributes
7. HTML Media
Images (<img>)
Image Maps
Audio (<audio>)
Video (<video>)
Embedding Media (<embed>)
Object Element (<object>)
Iframes (<iframe>)
8. HTML Semantic Elements
Header (<header>)
Footer (<footer>)
Article (<article>)
Section (<section>)
Aside (<aside>)
Nav (<nav>)
Main (<main>)
Figure (<figure>), Figcaption (<figcaption>)
9. HTML5 New Elements
Canvas (<canvas>)
SVG (<svg>)
Data Attributes
Output Element (<output>)
Progress (<progress>)
Meter (<meter>)
Details (<details>)
Summary (<summary>)
10. HTML Graphics
Scalable Vector Graphics (SVG)
Canvas
Inline SVG
Path Element
11. HTML APIs
Geolocation API
Drag and Drop API
Web Storage API (localStorage and sessionStorage)
Web Workers
History API
12. HTML Entities
Character Entities
Symbol Entities
13. HTML Meta Information
Meta Tags (<meta>)
Setting Character Set (<meta charset="UTF-8">)
Responsive Web Design Meta Tag
SEO-related Meta Tags
14. HTML Best Practices
Accessibility (ARIA roles and attributes)
Semantic HTML
SEO (Search Engine Optimization) Basics
Mobile-Friendly HTML
15. HTML Integration with CSS and JavaScript
Linking CSS (<link>, <style>)
Adding JavaScript (<script>)
Inline CSS and JavaScript
External CSS and JavaScript Files
16. Advanced HTML Concepts
HTML Templates (<template>)
Custom Data Attributes (data-*)
HTML Imports (Deprecated in favor of JavaScript modules)
Web Components
These topics cover the breadth of HTML and will give you a strong foundation for web development.
Full course link for free: https://shorturl.at/igVyr
2 notes
·
View notes
Text
You can learn HTML easily, Here's all you need to get started:
1. Document Structure
• <!DOCTYPE>
• <html>
• <head>
• <title>
• <meta>
• <link>
• <script>
• <noscript>
• <base>
2. Text Content
• <h1>, <h2>, <h3>, <h4>, <h5>, <h6>
• <p>
• <span>
• <strong>
• <em>
• <br>
• <hr>
• <!-- Comment text here -- >
3. Lists
• <ul>
• <ol>
• <li>
• <dl>
• <dt>
• <dd>
4. Links and Navigation
• <a>
• <nav>
• <link>
5. Embedded Content
• <img>
• <audio>
• <video>
• <iframe>
• <canvas>
• <svg>
• <map>
• <area>
6. Forms
• <form>
• <input>
• <textarea>
• <button>
• <select>
• <option>
• <label>
• <fieldset>
• <legend>
• <datalist>
• <output>
7. Tables
• <table>
• <tr>
• <th>
• <td>
• <caption>
8. Semantic Elements
• <article>
• <section>
• <header>
• <footer>
• <aside>
• <main>
• <figure>
• <figcaption>
• <mark>
• <progress>
• <time>
• <details>
• <summary>
9. Deprecated Elements (Avoid Using)
• <center>
• <font>
• <strike>
2 notes
·
View notes
Text
Semantic HTML: Writing Cleaner, More Accessible Code
In the evolving world of web development, the importance of writing clean, structured, and accessible code cannot be overstated. Semantic HTML plays a crucial role in achieving these goals. By using semantic tags, developers can create more meaningful and organized documents, enhancing both the user experience and accessibility for people with disabilities. In this blog post, we will explore the concept of semantic HTML, its benefits, and how to effectively use semantic elements like <header>, <article>, and <section> to improve the structure of your web pages.
What is Semantic HTML?
Semantic HTML refers to the use of HTML tags that convey meaning about the content they enclose. Unlike generic tags like <div> and <span>, semantic tags provide information about the role or purpose of the content. For example, <header> indicates the top section of a document or section, and <article> represents a self-contained piece of content.
Benefits of Using Semantic HTML
Improved Accessibility: Semantic HTML helps screen readers and other assistive technologies understand the structure and content of a webpage, making it more accessible to users with disabilities.
Better SEO: Search engines use the semantic structure of a webpage to better understand its content. Using semantic tags can improve your site's search engine ranking.
Enhanced Readability: Semantic HTML makes your code easier to read and maintain for other developers, as it provides a clear structure and purpose for each section of the document.
Future-Proofing: As web standards evolve, semantic HTML ensures better compatibility with future browsers and technologies.
Key Semantic Elements and Their Usage
The <header> Element
The <header> element is used to define introductory content or navigational links for a section or page. It typically contains a heading, logo, or other relevant information.
Usage Example:
<header> <h1>Welcome to My Blog</h1> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header>
The <article> Element
The <article> element represents a self-contained piece of content that could be distributed independently. This could include articles, blog posts, or news stories.
Usage Example:
<article> <h2>The Rise of Semantic HTML</h2> <p>Semantic HTML is revolutionizing the way we write web content, making it more accessible and SEO-friendly...</p> </article>
The <section> Element
The <section> element defines a thematic grouping of content, generally with a heading. It is useful for dividing a document into discrete parts, each with a specific theme or purpose.
Usage Example:
<section> <h2>Benefits of Semantic HTML</h2> <p>Using semantic HTML offers numerous advantages, including enhanced accessibility and SEO...</p> </section>
Other Important Semantic Elements
<nav>: Used for navigation links.
<aside>: Represents content tangentially related to the content around it, like sidebars.
<footer>: Defines the footer for a section or page.
<main>: Specifies the primary content of a document.
<figure> and <figcaption>: Used for images, diagrams, or illustrations with captions.
Structuring a Web Page with Semantic HTML
To illustrate how semantic HTML can be used to structure a web page, let's consider a simple blog layout. Here's how you might organize the main sections:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Semantic Blog</title> </head> <body> <header> <h1>My Semantic Blog</h1> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <main> <article> <h2>Understanding Semantic HTML</h2> <p>Semantic HTML is a powerful tool for web developers...</p> </article> <section> <h2>Why Use Semantic HTML?</h2> <p>There are several compelling reasons to use semantic HTML...</p> </section> <aside> <h2>Related Articles</h2> <ul> <li><a href="#article1">The Basics of HTML</a></li> <li><a href="#article2">CSS for Beginners</a></li> </ul> </aside> </main> <footer> <p>© 2023 My Semantic Blog</p> </footer> </body> </html>
In this example, semantic elements are used to clearly delineate the different parts of the page. The <header> contains the title and navigation, <main> houses the primary content, <article> and <section> divide the content into logical units, and <aside> provides supplementary content.
Best Practices for Using Semantic HTML
Use Appropriate Tags: Choose semantic tags that accurately describe the content they enclose. Avoid using and when a more descriptive tag is available.
Organize Content Logically: Structure your HTML documents so that they are easy to read and understand, both for users and search engines.
Complement with ARIA: While semantic HTML improves accessibility, using Accessible Rich Internet Applications (ARIA) attributes can further enhance the experience for users with disabilities.
Validate Your Code: Regularly check your HTML with a validator to ensure it is well-formed and follows semantic standards.
Keep Learning: Stay updated with the latest HTML standards and best practices to continue writing accessible and efficient code.
Conclusion
Semantic HTML is an essential aspect of modern web development, offering numerous benefits for accessibility, SEO, and code maintenance. By understanding and utilizing semantic elements like <header>, <article>, and <section>, developers can create more meaningful and structured web pages. Embracing semantic HTML not only improves the user experience but also future-proofs your websites for evolving technologies.
FAQs
What is the difference between semantic and non-semantic HTML?
Semantic HTML uses tags that convey meaning about the content they enclose, such as <article> or <header>. Non-semantic HTML, like <div> or <span>, doesn't provide any information about the content's role or purpose.
Why is semantic HTML important for accessibility?
Semantic HTML helps assistive technologies, like screen readers, understand the structure of a webpage, making it easier for users with disabilities to navigate and comprehend the content.
Can I use semantic HTML tags for styling purposes?
While semantic HTML is primarily used for structuring content, it can also be styled using CSS. However, the choice of semantic tags should be based on the content's meaning, not its appearance.
How does semantic HTML benefit SEO?
Search engines use the semantic structure of a webpage to better understand its content, which can improve search engine rankings. Semantic HTML helps search engines identify key parts of a page, like headings and articles.
Is semantic HTML supported by all browsers?
Yes, modern browsers support semantic HTML. However, it's always a good practice to test your web pages across different browsers to ensure compatibility.
#SemanticHTML#HTMLBestPractices#CleanCode#AccessibleWeb#WebAccessibility#SemanticWeb#AccessibleDesign#InclusiveWeb#WebStandards#HTMLStructure#WebDevelopment#FrontendDevelopment#FrontendTips#FrontendDesign#ResponsiveDesign#UIUXDesign#UXBestPractices#UXDesign#CSSTips#JavaScriptTips#CodingStandards#CleanCoding#BestPractices#CodeQuality#CodeBetter#WebCoding#WebDevTips#ProgrammingTips#DevTips#DeveloperLife
0 notes
Text
Video: Justin Gaethje waiting on winner of Charles Oliveira vs. Ilia Topuria at UFC 317
<figcaption>Justin Gaethje waiting for Charles Oliveira vs. Ilia Topuria winner</figcaption> NEW YORK CITY — Justin Gaethje says his next fight “has to be the champion.” Speaking with MMA Fighting at the 2025 Fanatics Fest, the former “BMF” and interim UFC lightweight champion discussed the current 155-pound title landscape and his future in MMA, revealing that he will be cageside for the UFC…
0 notes
Text
Chi phí lắm nhưng có đáng? Xem ngay Galaxy S25 Edge với giá từ 1189$
Chi phí lắm nhưng có đáng? Xem ngay Galaxy S25 Edge với giá từ 1189$ Galaxy S25 Edge – Thiết kế đỉnh cảnh, cấu hình khủng ngay đầu năm 2025! Sắp ra mắt Galaxy S25 Edge – Smartphone siêu mỏng, giá đắt cắt cổ! #GalaxyS25Edge #ĐiệnThoạiMới #CấuHìnhKhủng #L��pHọcGópGạch <!-- image --><figure><figcaption class="wp-caption-text">Tín dụng: Winfuture</figcaption></figure> <!-- content --> Với đầu tháng…
0 notes
Text
LinkedIn
News https://portal.esgagenda.com/linkedin-3/
LinkedIn
LinkedIn
svgdisplay:block;margin:autoli-icon[type$=-icon]width:24px;height:24pxli-icon[type$=-icon][size=small]width:16px;height:16pxli-icon[type$=-icon]>svgvertical-align:topli-icon[type^=nav-]width:32px!important;height:32px!importantli-icon .inactive-item,li-icon .large-iconfill:currentColorli-icon .active-item,li-icon .small-iconfill:currentColor;visibility:hiddenli-icon[size=small] .inactive-item,li-icon[size=small] .large-icon,li-icon[type^=nav-][active] .inactive-item,li-icon[type^=nav-][active] .large-iconvisibility:hiddenli-icon[size=small] .active-item,li-icon[size=small] .small-icon,li-icon[type^=nav-][active] .active-item,li-icon[type^=nav-][active] .small-iconvisibility:visibleli-icon[type^=app-]width:40px!important;height:40px!importantli-icon[type=loader]fill-opacity:1;stroke-opacity:1;fill:transparent;stroke:transparentli-icon[type=loader][size=small]fill-opacity:0;stroke-opacity:0;fill:currentColor;stroke:currentColorli-icon .color-icon,li-icon[color] .solid-icondisplay:noneli-icon[color] .color-icondisplay:blockli-icon[type^=large-],li-icon[type^=large-][size=small]width:48px!important;height:48px!important[dir=rtl] li-icon[type*=arrow],[dir=rtl] li-icon[type*=chevron],[dir=rtl] li-icon[type*=follow],[dir=rtl] li-icon[type=enter-icon],[dir=rtl] li-icon[type=forward-icon],[dir=rtl] li-icon[type=leave-icon],[dir=rtl] li-icon[type=question-pebble-icon],[dir=rtl] li-icon[type=reply-icon],[dir=rtl] li-icon[type=share-ios-icon],[dir=rtl] li-icon[type=share-linkedin-icon],[dir=rtl] li-icon[type=to-end-icon],[dir=rtl] li-icon[type=to-start-icon]transform:rotateY(180deg)[dir=rtl] li-icon>svgfloat:leftli-icon[type$=-pebble-icon][animate]transform:scale(.2);animation:b 334ms ease-in-out forwardsli-icon[type$=-pebble-icon][animate] .circlestroke-dasharray:63;stroke-dashoffset:63;animation:a .5s ease-out forwards;animation-delay:334msli-icon[type$=-pebble-icon][animate][size=small] .circlestroke-dasharray:38;stroke-dashoffset:38li-icon[type^=premium-]width:auto;height:16pxli-icon[type^=premium-][type^=premium-app-icon],li-icon[type^=premium-][type^=premium-inverse-app]height:24pxli-icon[type^=premium-][size=”8dp”]height:8pxli-icon[type^=premium-][size=”10dp”]height:10pxli-icon[type^=premium-][size=”12dp”]height:12pxli-icon[type^=premium-][size=”16dp”]height:16pxli-icon[type^=premium-][size=”20dp”]height:20pxli-icon[type^=premium-][size=”24dp”]height:24pxli-icon[type^=premium-][size=”32dp”]height:32pxli-icon[type^=premium-] textfont-size:24px;font-weight:600;letter-spacing:4px;dominant-baseline:text-before-edge;font-family:Source Sans Pro,Helvetica,Arial,sans-serif@media screen and (-ms-high-contrast:white-on-black)li-icon[type=premium-app-icon],li-icon[type=premium-badge]-ms-high-contrast-adjust:none;background-color:#fffli-icon[type=premium-app-icon] svg,li-icon[type=premium-badge] svgheight:90%!important;position:relative;top:5%;right:2%@media screen and (-ms-high-contrast:black-on-white)li-icon[type=premium-inverse-app-icon],li-icon[type=premium-inverse-badge]-ms-high-contrast-adjust:none;background-color:#000li-icon[type=premium-inverse-app-icon] svg,li-icon[type=premium-inverse-badge] svgheight:90%!important;position:relative;top:5%;right:2%abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,summary,table,tbody,td,tfoot,th,thead,time,tr,ul,var,videomargin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;background:transparentabbr,audio,b,body,canvas,caption,cite,code,del,dfn,em,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,mark,object,q,samp,small,span,strong,summary,tbody,td,tfoot,th,thead,time,tr,var,videooutline:0bodyline-height:1article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,sectiondisplay:blocknav ullist-style:noneblockquote,qquotes:noneblockquote:after,blockquote:before,q:after,q:beforecontent:””;content:noneamargin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparentinstext-decoration:noneins,markbackground-color:#ff9;color:#000markfont-style:italic;font-weight:700deltext-decoration:line-throughabbrLinkedIn,dfnLinkedInborder-bottom:1px dotted;cursor:helptableborder-collapse:collapse;border-spacing:0hrborder:0;display:block;height:1px;margin:1rem 0 24px;padding:0;border-color:rgba(0,0,0,.15);border-top:1px solid rgba(0,0,0,.15)@media (max-width:976px)hrmargin-bottom:16px#svg-sourceposition:absolute;top:0;right:-100px;opacity:0.a11y-textborder:0!important;clip:rect(1px,1px,1px,1px);height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important[data-artdeco-is-focused=true]outline:none@keyframes d0%opacity:.99toopacity:1.artdeco-link-variant p afont-weight:700!importantformposition:relativeinput,selectvertical-align:middlelabelfont-size:1.4rem;line-height:1.42857;font-weight:400;color:rgba(0,0,0,.9);display:block;margin:1.2rem 0 .3rem:lang(ar) label,:lang(ko) label,:lang(th) label,:lang(zh) labelfont-size:1.5rem;line-height:1.33333label.required:aftercontent:”*”;color:#0073b1;margin-right:.2remlabel[disabled]opacity:.35input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textareafont-size:1.4rem;line-height:1.42857;font-weight:400;transition-duration:334ms;transition-property:border-color,box-shadow;box-shadow:none;border-radius:.2rem;border:.1rem solid rgba(0,0,0,.6);padding:0 1rem;width:100%;height:3.2rem;box-sizing:border-box;background-color:transparent;color:rgba(0,0,0,.9)input[type=date]:lang(ar),input[type=date]:lang(ko),input[type=date]:lang(th),input[type=date]:lang(zh),input[type=datetime-local]:lang(ar),input[type=datetime-local]:lang(ko),input[type=datetime-local]:lang(th),input[type=datetime-local]:lang(zh),input[type=datetime]:lang(ar),input[type=datetime]:lang(ko),input[type=datetime]:lang(th),input[type=datetime]:lang(zh),input[type=email]:lang(ar),input[type=email]:lang(ko),input[type=email]:lang(th),input[type=email]:lang(zh),input[type=month]:lang(ar),input[type=month]:lang(ko),input[type=month]:lang(th),input[type=month]:lang(zh),input[type=number]:lang(ar),input[type=number]:lang(ko),input[type=number]:lang(th),input[type=number]:lang(zh),input[type=password]:lang(ar),input[type=password]:lang(ko),input[type=password]:lang(th),input[type=password]:lang(zh),input[type=search]:lang(ar),input[type=search]:lang(ko),input[type=search]:lang(th),input[type=search]:lang(zh),input[type=tel]:lang(ar),input[type=tel]:lang(ko),input[type=tel]:lang(th),input[type=tel]:lang(zh),input[type=text]:lang(ar),input[type=text]:lang(ko),input[type=text]:lang(th),input[type=text]:lang(zh),input[type=time]:lang(ar),input[type=time]:lang(ko),input[type=time]:lang(th),input[type=time]:lang(zh),input[type=url]:lang(ar),input[type=url]:lang(ko),input[type=url]:lang(th),input[type=url]:lang(zh),input[type=week]:lang(ar),input[type=week]:lang(ko),input[type=week]:lang(th),input[type=week]:lang(zh),textarea:lang(ar),textarea:lang(ko),textarea:lang(th),textarea:lang(zh)font-size:1.5rem;line-height:1.33333input[type=date]:-moz-placeholder,input[type=datetime-local]:-moz-placeholder,input[type=datetime]:-moz-placeholder,input[type=email]:-moz-placeholder,input[type=month]:-moz-placeholder,input[type=number]:-moz-placeholder,input[type=password]:-moz-placeholder,input[type=search]:-moz-placeholder,input[type=tel]:-moz-placeholder,input[type=text]:-moz-placeholder,input[type=time]:-moz-placeholder,input[type=url]:-moz-placeholder,input[type=week]:-moz-placeholder,textarea:-moz-placeholdercolor:rgba(0,0,0,.6);opacity:1input[type=date]:-ms-input-placeholder,input[type=datetime-local]:-ms-input-placeholder,input[type=datetime]:-ms-input-placeholder,input[type=email]:-ms-input-placeholder,input[type=month]:-ms-input-placeholder,input[type=number]:-ms-input-placeholder,input[type=password]:-ms-input-placeholder,input[type=search]:-ms-input-placeholder,input[type=tel]:-ms-input-placeholder,input[type=text]:-ms-input-placeholder,input[type=time]:-ms-input-placeholder,input[type=url]:-ms-input-placeholder,input[type=week]:-ms-input-placeholder,textarea:-ms-input-placeholdercolor:rgba(0,0,0,.6);opacity:1input[type=date]::placeholder,input[type=datetime-local]::placeholder,input[type=datetime]::placeholder,input[type=email]::placeholder,input[type=month]::placeholder,input[type=number]::placeholder,input[type=password]::placeholder,input[type=search]::placeholder,input[type=tel]::placeholder,input[type=text]::placeholder,input[type=time]::placeholder,input[type=url]::placeholder,input[type=week]::placeholder,textarea::placeholdercolor:rgba(0,0,0,.6);opacity:1input[type=date]:hover,input[type=datetime-local]:hover,input[type=datetime]:hover,input[type=email]:hover,input[type=month]:hover,input[type=number]:hover,input[type=password]:hover,input[type=search]:hover,input[type=tel]:hover,input[type=text]:hover,input[type=time]:hover,input[type=url]:hover,input[type=week]:hover,textarea:hoverborder-color:rgba(0,0,0,.9)input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focusborder-color:#0073b1;box-shadow:0 0 0 .1rem #0073b1input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled],textarea[disabled]opacity:.45input[type=date][disabled]:hover,input[type=datetime-local][disabled]:hover,input[type=datetime][disabled]:hover,input[type=email][disabled]:hover,input[type=month][disabled]:hover,input[type=number][disabled]:hover,input[type=password][disabled]:hover,input[type=search][disabled]:hover,input[type=tel][disabled]:hover,input[type=text][disabled]:hover,input[type=time][disabled]:hover,input[type=url][disabled]:hover,input[type=week][disabled]:hover,textarea[disabled]:hoverborder-color:rgba(0,0,0,.6)input[type=date].error,input[type=datetime-local].error,input[type=datetime].error,input[type=email].error,input[type=month].error,input[type=number].error,input[type=password].error,input[type=search].error,input[type=tel].error,input[type=text].error,input[type=time].error,input[type=url].error,input[type=week].error,textarea.errorborder-color:#d11124input[type=search]-webkit-appearance:textfieldinput[type=search]::-webkit-search-decoration-webkit-appearance:none@media (-ms-high-contrast:none)::-ms-backdrop,artdeco-slider [type=range]background-image:linear-gradient(270deg,transparent,transparent)!important;height:22px!important;margin:-8px 0!importantartdeco-sliderposition:relative;display:block;overflow:hidden;height:32px;box-sizing:content-boxartdeco-slider [type=range]box-sizing:content-box;-webkit-appearance:none;margin:10px 0;width:100%;height:16px;border-radius:16px;margin:8px 0;background-size:100%,calc(16.666% + 1px) 100%,200%;background-position:100% 0,-1px,63.1579%;background-repeat:no-repeat,repeat-x,no-repeat;animation-duration:1ms;animation-name:d;background-image:linear-gradient(270deg,#0084bf 16px,transparent 17px,transparent calc(100% – 18px),#cdcfd2 18px),linear-gradient(270deg,#fff 1px,transparent 0),linear-gradient(270deg,#0084bf 50%,#cdcfd2 0)artdeco-slider [type=range][data-artdeco-slider-reverse]background-image:linear-gradient(270deg,#cdcfd2 16px,transparent 17px,transparent calc(100% – 18px),#0084bf 18px),linear-gradient(270deg,#fff 1px,transparent 0),linear-gradient(270deg,#cdcfd2 50%,#0084bf 0)artdeco-slider [type=range]::-webkit-slider-thumbbox-shadow:0 0 0 1px rgba(0,0,0,.15),0 2px 3px rgba(0,0,0,.2);transition:box-shadow 83ms;height:20px;width:20px;border-radius:10px;background:#fff;cursor:pointer;position:relative;z-index:4;-webkit-appearance:none;margin-top:-2px@media screen and (-ms-high-contrast:active)artdeco-slider [type=range]::-webkit-slider-thumbborder:1px solid activeborderartdeco-slider [type=range]::-webkit-slider-runnable-trackwidth:100%;height:16px;border-radius:16px;background-color:transparent;cursor:pointerartdeco-slider [type=range]::-moz-range-thumbbox-shadow:0 0 0 1px rgba(0,0,0,.15),0 2px 3px rgba(0,0,0,.2);transition:box-shadow 83ms;height:20px;width:20px;border-radius:10px;background:#fff;cursor:pointer;position:relative;z-index:4@media screen and (-ms-high-contrast:active)artdeco-slider [type=range]::-moz-range-thumbborder:1px solid activeborderartdeco-slider [type=range]::-moz-range-trackwidth:100%;height:16px;border-radius:16px;background-color:transparent;cursor:pointerartdeco-slider [type=range]::-ms-trackheight:16px;border-radius:16px;background-color:transparent;cursor:pointer;width:100%;background:transparent;border-color:transparent;color:transparentartdeco-slider [type=range]::-ms-thumbbox-shadow:0 0 0 1px rgba(0,0,0,.15),0 2px 3px rgba(0,0,0,.2);transition:box-shadow 83ms;height:20px;width:20px;border-radius:10px;background:#fff;cursor:pointer;position:relative;z-index:4@media screen and (-ms-high-contrast:active)artdeco-slider [type=range]::-ms-thumbborder:1px solid activeborderartdeco-slider [type=range]::-ms-fill-lowerbackground:#0084bf;border-radius:16px;height:16pxartdeco-slider [type=range]::-ms-fill-upperbackground:#cdcfd2;border-radius:16px;height:16pxartdeco-slider [type=range][data-artdeco-slider-reverse]::-ms-fill-lowerbackground:#cdcfd2artdeco-slider [type=range][data-artdeco-slider-reverse]::-ms-fill-upperbackground:#0084bfartdeco-slider[multiple] input[type=range]position:absolute;top:0;right:0artdeco-slider[multiple] div.artdeco-max-slider-containerposition:absolute;overflow:hidden;top:0;right:0;width:100%;height:100%;z-index:0artdeco-slider+datalist,artdeco-slider+uldisplay:flex;justify-content:space-around;position:relative;padding:0 10px;box-sizing:border-box;user-select:none;list-style:noneartdeco-slider+datalist li,artdeco-slider+datalist option,artdeco-slider+ul li,artdeco-slider+ul optionfont-size:1.2rem;line-height:1.33333;font-weight:400;color:rgba(0,0,0,.6);text-align:center;flex:1;transform:translateX(50%);padding:0:lang(ar) artdeco-slider+datalist li,:lang(ar) artdeco-slider+datalist option,:lang(ar) artdeco-slider+ul li,:lang(ar) artdeco-slider+ul option,:lang(ko) artdeco-slider+datalist li,:lang(ko) artdeco-slider+datalist option,:lang(ko) artdeco-slider+ul li,:lang(ko) artdeco-slider+ul option,:lang(th) artdeco-slider+datalist li,:lang(th) artdeco-slider+datalist option,:lang(th) artdeco-slider+ul li,:lang(th) artdeco-slider+ul option,:lang(zh) artdeco-slider+datalist li,:lang(zh) artdeco-slider+datalist option,:lang(zh) artdeco-slider+ul li,:lang(zh) artdeco-slider+ul optionfont-size:1.3rem;line-height:1.23077artdeco-slider+datalist li:last-of-type,artdeco-slider+datalist option:last-of-type,artdeco-slider+ul li:last-of-type,artdeco-slider+ul option:last-of-typeposition:absolute;right:100%;text-indent:-20px;flex:0;-moz-transform:translateX(-15px)select-webkit-appearance:none;-moz-appearance:none;appearance:none;box-shadow:none;outline:0;height:3.2rem;position:relative;z-index:2;background:transparent;background-image:url(/artdeco/static/images/bg-icons.svg);background-repeat:no-repeat;background-size:2.4rem;background-position:top -31.1rem left .7rem; /*!rtl:remove:start*/background-position:top -31.1rem left .1rem;border:0;width:100%;border:.1rem solid rgba(0,0,0,.6);padding:0 .8rem 0 3.2rem;transition:box-shadow .15s;border-radius:.2rem;color:rgba(0,0,0,.9);font-size:1.4rem;line-height:1.42857;font-weight:400select:lang(ar),select:lang(ko),select:lang(th),select:lang(zh)font-size:1.5rem;line-height:1.33333select::-ms-expanddisplay:noneselect:hoverborder-color:rgba(0,0,0,.9)select:focusborder-color:#0073b1;box-shadow:0 0 0 .1rem #0073b1select[disabled]opacity:.45;background-image:url(/artdeco/static/images/bg-icons.svg)select.errorborder-color:#d11124select:-moz-placeholdercolor:rgba(0,0,0,.6);opacity:1select:-ms-input-placeholdercolor:rgba(0,0,0,.6);opacity:1select::placeholdercolor:rgba(0,0,0,.6);opacity:1@media only screen and (-ms-high-contrast:active)selectbackground-image:url(/artdeco/static/images/bg-icons.svg)textareaheight:auto;padding-top:.7rembuttoncursor:pointerinput[type=checkbox],input[type=radio]pointer-events:none;opacity:0;margin:1.6rem 0 0 .2rem;position:absoluteinput[type=checkbox]+label,input[type=radio]+labeldisplay:block;line-height:2rem;margin-bottom:0;padding:0;position:relative;padding-right:2.8reminput[type=checkbox]+label:after,input[type=checkbox]+label:before,input[type=radio]+label:after,input[type=radio]+label:beforecontent:” “;height:2.2rem;width:2.2rem;top:-.1rem;right:-.1rem;position:absolute;display:block;box-sizing:border-boxinput[type=checkbox]+label:before,input[type=radio]+label:beforebox-shadow:inset 0 0 0 .1rem rgba(0,0,0,.6);border:.1rem solid transparent;background-clip:padding-box;padding:.2reminput[type=checkbox]:hover+label:before,input[type=radio]:hover+label:beforebox-shadow:inset 0 0 0 .1rem rgba(0,0,0,.9)input[type=checkbox]:disabled:hover+label:before,input[type=radio]:disabled:hover+label:beforebox-shadow:inset 0 0 0 .1rem rgba(0,0,0,.6)input[type=checkbox]:focus+label:before,input[type=radio]:focus+label:beforebox-shadow:0 0 0 .1rem #0073b1,inset 0 0 0 .1rem rgba(0,0,0,.9)input[type=checkbox]:checked+label:before,input[type=radio]:checked+label:beforebox-shadow:inset 0 0 0 1.1rem #0073b1input[type=checkbox]:checked+label:after,input[type=radio]:checked+label:afterdisplay:blockinput[type=checkbox]:focus:checked+label:before,input[type=radio]:focus:checked+label:beforebox-shadow:0 0 0 .1rem #0073b1,inset 0 0 0 1.1rem #0073b1input[type=checkbox]:disabled+label,input[type=radio]:disabled+labelopacity:.35input[type=checkbox]:disabled:checked+label:before,input[type=radio]:disabled:checked+label:beforebox-shadow:inset 0 0 0 1.1rem #0073b1input[type=checkbox].small-input+label,input[type=radio].small-input+labelline-height:1.6reminput[type=checkbox].small-input+label:after,input[type=checkbox].small-input+label:before,input[type=radio].small-input+label:after,input[type=radio].small-input+label:beforeheight:1.8rem;width:1.8reminput[type=radio]+label:beforeborder-radius:50%;transition-property:box-shadow;transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:167msinput[type=radio]:checked+label:beforebox-shadow:inset 0 0 0 .6rem #0073b1,inset 0 0 0 1.1rem #fffinput[type=radio]:focus:checked+label:beforebox-shadow:0 0 0 .1rem #0073b1,inset 0 0 0 .6rem #0073b1,inset 0 0 0 1.1rem #fffinput[type=radio]:disabled:checked+label:beforebox-shadow:inset 0 0 0 .6rem #0073b1,inset 0 0 0 1.1rem #fffinput[type=radio].small-input:checked+label:beforebox-shadow:inset 0 0 0 .5rem #0073b1,inset 0 0 0 1.1rem #fffinput[type=radio].small-input:checked+label:afterborder-width:.5reminput[type=radio].small-input:focus:checked+label:beforebox-shadow:0 0 0 .1rem #0073b1,inset 0 0 0 .5rem #0073b1,inset 0 0 0 1.1rem #fffinput[type=radio].small-input:disabled:checked+label:beforebox-shadow:inset 0 0 0 .5rem #0073b1,inset 0 0 0 1.1rem #fffinput[type=checkbox]+label:beforeborder-radius:.4rem;transition-property:box-shadow;transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:167msinput[type=checkbox]+label:afterdisplay:none;height:1.6rem;width:1.6rem;background-image:url(/artdeco/static/images/bg-icons.svg);background-size:2.4rem;overflow:hidden;margin:.3reminput[type=checkbox]:checked+label:afterdisplay:block;background-position:0 -2.4reminput[type=checkbox].small-input+label:aftertop:-.3rem;right:-.3reminput[type=checkbox]:indeterminate+label:beforebox-shadow:inset 0 0 0 1.1rem #0073b1input[type=checkbox]:indeterminate:focus+label:beforebox-shadow:0 0 0 .1rem #0073b1,inset 0 0 0 1.1rem #0073b1input[type=checkbox]:indeterminate:disabled+label:beforebox-shadow:inset 0 0 0 1.1rem #0073b1input[type=checkbox]:indeterminate+label:afterdisplay:block;content:””;background:#fff;height:.2rem;width:1.2rem;top:.6rem;right:.1reminput[type=checkbox].small-input:indeterminate+label:afterheight:.2rem;width:1rem;top:.4rem;right:0form.inverse-form labelcolor:#fffform.inverse-form label.required:aftercolor:#98d8f4form.inverse-form label[disabled]opacity:.45form.inverse-form input[type=date],form.inverse-form input[type=datetime-local],form.inverse-form input[type=datetime],form.inverse-form input[type=email],form.inverse-form input[type=month],form.inverse-form input[type=number],form.inverse-form input[type=password],form.inverse-form input[type=search],form.inverse-form input[type=tel],form.inverse-form input[type=text],form.inverse-form input[type=time],form.inverse-form input[type=url],form.inverse-form input[type=week],form.inverse-form select,form.inverse-form textareacolor:#fff;border-color:hsla(0,0%,100%,.7)form.inverse-form input[type=date]:-moz-placeholder,form.inverse-form input[type=datetime-local]:-moz-placeholder,form.inverse-form input[type=datetime]:-moz-placeholder,form.inverse-form input[type=email]:-moz-placeholder,form.inverse-form input[type=month]:-moz-placeholder,form.inverse-form input[type=number]:-moz-placeholder,form.inverse-form input[type=password]:-moz-placeholder,form.inverse-form input[type=search]:-moz-placeholder,form.inverse-form input[type=tel]:-moz-placeholder,form.inverse-form input[type=text]:-moz-placeholder,form.inverse-form input[type=time]:-moz-placeholder,form.inverse-form input[type=url]:-moz-placeholder,form.inverse-form input[type=week]:-moz-placeholder,form.inverse-form select:-moz-placeholder,form.inverse-form textarea:-moz-placeholdercolor:hsla(0,0%,100%,.7);opacity:1form.inverse-form input[type=date]:-ms-input-placeholder,form.inverse-form input[type=datetime-local]:-ms-input-placeholder,form.inverse-form input[type=datetime]:-ms-input-placeholder,form.inverse-form input[type=email]:-ms-input-placeholder,form.inverse-form input[type=month]:-ms-input-placeholder,form.inverse-form input[type=number]:-ms-input-placeholder,form.inverse-form input[type=password]:-ms-input-placeholder,form.inverse-form input[type=search]:-ms-input-placeholder,form.inverse-form input[type=tel]:-ms-input-placeholder,form.inverse-form input[type=text]:-ms-input-placeholder,form.inverse-form input[type=time]:-ms-input-placeholder,form.inverse-form input[type=url]:-ms-input-placeholder,form.inverse-form input[type=week]:-ms-input-placeholder,form.inverse-form select:-ms-input-placeholder,form.inverse-form textarea:-ms-input-placeholdercolor:hsla(0,0%,100%,.7);opacity:1form.inverse-form input[type=date]::placeholder,form.inverse-form input[type=datetime-local]::placeholder,form.inverse-form input[type=datetime]::placeholder,form.inverse-form input[type=email]::placeholder,form.inverse-form input[type=month]::placeholder,form.inverse-form input[type=number]::placeholder,form.inverse-form input[type=password]::placeholder,form.inverse-form input[type=search]::placeholder,form.inverse-form input[type=tel]::placeholder,form.inverse-form input[type=text]::placeholder,form.inverse-form input[type=time]::placeholder,form.inverse-form input[type=url]::placeholder,form.inverse-form input[type=week]::placeholder,form.inverse-form select::placeholder,form.inverse-form textarea::placeholdercolor:hsla(0,0%,100%,.7);opacity:1form.inverse-form input[type=date]:disabled,form.inverse-form input[type=datetime-local]:disabled,form.inverse-form input[type=datetime]:disabled,form.inverse-form input[type=email]:disabled,form.inverse-form input[type=month]:disabled,form.inverse-form input[type=number]:disabled,form.inverse-form input[type=password]:disabled,form.inverse-form input[type=search]:disabled,form.inverse-form input[type=tel]:disabled,form.inverse-form input[type=text]:disabled,form.inverse-form input[type=time]:disabled,form.inverse-form input[type=url]:disabled,form.inverse-form input[type=week]:disabled,form.inverse-form select:disabled,form.inverse-form textarea:disabledopacity:.45form.inverse-form input[type=date]:hover,form.inverse-form input[type=datetime-local]:hover,form.inverse-form input[type=datetime]:hover,form.inverse-form input[type=email]:hover,form.inverse-form input[type=month]:hover,form.inverse-form input[type=number]:hover,form.inverse-form input[type=password]:hover,form.inverse-form input[type=search]:hover,form.inverse-form input[type=tel]:hover,form.inverse-form input[type=text]:hover,form.inverse-form input[type=time]:hover,form.inverse-form input[type=url]:hover,form.inverse-form input[type=week]:hover,form.inverse-form select:hover,form.inverse-form textarea:hoverborder-color:#fffform.inverse-form input[type=date]:focus,form.inverse-form input[type=datetime-local]:focus,form.inverse-form input[type=datetime]:focus,form.inverse-form input[type=email]:focus,form.inverse-form input[type=month]:focus,form.inverse-form input[type=number]:focus,form.inverse-form input[type=password]:focus,form.inverse-form input[type=search]:focus,form.inverse-form input[type=tel]:focus,form.inverse-form input[type=text]:focus,form.inverse-form input[type=time]:focus,form.inverse-form input[type=url]:focus,form.inverse-form input[type=week]:focus,form.inverse-form select:focus,form.inverse-form textarea:focusborder-color:#98d8f4;box-shadow:0 0 0 .1rem #98d8f4form.inverse-form selectbackground-position:top -335px right 7pxform.inverse-form select:disabledborder-color:hsla(0,0%,100%,.25)form.inverse-form select optioncolor:rgba(0,0,0,.6)form.inverse-form input[type=checkbox]+label,form.inverse-form input[type=radio]+labelcolor:#fffform.inverse-form input[type=checkbox]+label:before,form.inverse-form input[type=checkbox]:disabled:hover+label:before,form.inverse-form input[type=radio]+label:before,form.inverse-form input[type=radio]:disabled:hover+label:beforebox-shadow:inset 0 0 0 1px hsla(0,0%,100%,.7)form.inverse-form input[type=checkbox]:hover+label:before,form.inverse-form input[type=radio]:hover+label:beforebox-shadow:inset 0 0 0 1px #fffform.inverse-form input[type=checkbox]:checked+label:before,form.inverse-form input[type=radio]:checked+label:beforebox-shadow:inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=checkbox]:checked+label:after,form.inverse-form input[type=radio]:checked+label:afterbackground-position:100% -366pxform.inverse-form input[type=checkbox]:focus+label:before,form.inverse-form input[type=radio]:focus+label:beforebox-shadow:0 0 0 1px #98d8f4,inset 0 0 0 1px #fffform.inverse-form input[type=checkbox]:focus:checked+label:before,form.inverse-form input[type=radio]:focus:checked+label:beforebox-shadow:0 0 0 1px #98d8f4,inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=checkbox]:disabled:checked+label:before,form.inverse-form input[type=radio]:disabled:checked+label:beforebox-shadow:inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=checkbox]:disabled:checked+label:after,form.inverse-form input[type=radio]:disabled:checked+label:afterbackground-position:100% -366pxform.inverse-form input[type=radio]:checked+label:beforebox-shadow:inset 0 0 0 6px #98d8f4,inset 0 0 0 1.1rem rgba(0,0,0,.6),inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=radio]:focus:checked+label:beforebox-shadow:0 0 0 1px #98d8f4,inset 0 0 0 6px #98d8f4,inset 0 0 0 1.1rem rgba(0,0,0,.6),inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=radio]:disabled:checked+label:beforebox-shadow:inset 0 0 0 6px #98d8f4,inset 0 0 0 1.1rem rgba(0,0,0,.6),inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=radio].small-input:checked+label:beforebox-shadow:inset 0 0 0 5px #98d8f4,inset 0 0 0 1.1rem rgba(0,0,0,.6),inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=radio].small-input:checked+label:afterborder-width:5pxform.inverse-form input[type=radio].small-input:focus:checked+label:beforebox-shadow:0 0 0 1px #98d8f4,inset 0 0 0 5px #98d8f4,inset 0 0 0 1.1rem rgba(0,0,0,.6),inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=radio].small-input:disabled:checked+label:beforebox-shadow:inset 0 0 0 5px #98d8f4,inset 0 0 0 1.1rem rgba(0,0,0,.6),inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=checkbox]:indeterminate+label:afterbackground:rgba(0,0,0,.6)form.inverse-form input[type=checkbox]:indeterminate+label:beforebox-shadow:inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=checkbox]:indeterminate:focus+label:beforebox-shadow:0 0 0 1px #98d8f4,inset 0 0 0 1.1rem #98d8f4form.inverse-form input[type=checkbox]:indeterminate:disabled+label:beforebox-shadow:inset 0 0 0 1.1rem #98d8f4form.simple-form input[type=date],form.simple-form input[type=datetime-local],form.simple-form input[type=datetime],form.simple-form input[type=email],form.simple-form input[type=month],form.simple-form input[type=number],form.simple-form input[type=password],form.simple-form input[type=search],form.simple-form input[type=tel],form.simple-form input[type=text],form.simple-form input[type=time],form.simple-form input[type=url],form.simple-form input[type=week],form.simple-form selectborder-radius:0;padding-right:0;padding-left:0form.simple-form input[type=date],form.simple-form input[type=date]:disabled,form.simple-form input[type=date]:focus,form.simple-form input[type=date]:hover,form.simple-form input[type=datetime-local],form.simple-form input[type=datetime-local]:disabled,form.simple-form input[type=datetime-local]:focus,form.simple-form input[type=datetime-local]:hover,form.simple-form input[type=datetime],form.simple-form input[type=datetime]:disabled,form.simple-form input[type=datetime]:focus,form.simple-form input[type=datetime]:hover,form.simple-form input[type=email],form.simple-form input[type=email]:disabled,form.simple-form input[type=email]:focus,form.simple-form input[type=email]:hover,form.simple-form input[type=month],form.simple-form input[type=month]:disabled,form.simple-form input[type=month]:focus,form.simple-form input[type=month]:hover,form.simple-form input[type=number],form.simple-form input[type=number]:disabled,form.simple-form input[type=number]:focus,form.simple-form input[type=number]:hover,form.simple-form input[type=password],form.simple-form input[type=password]:disabled,form.simple-form input[type=password]:focus,form.simple-form input[type=password]:hover,form.simple-form input[type=search],form.simple-form input[type=search]:disabled,form.simple-form input[type=search]:focus,form.simple-form input[type=search]:hover,form.simple-form input[type=tel],form.simple-form input[type=tel]:disabled,form.simple-form input[type=tel]:focus,form.simple-form input[type=tel]:hover,form.simple-form input[type=text],form.simple-form input[type=text]:disabled,form.simple-form input[type=text]:focus,form.simple-form input[type=text]:hover,form.simple-form input[type=time],form.simple-form input[type=time]:disabled,form.simple-form input[type=time]:focus,form.simple-form input[type=time]:hover,form.simple-form input[type=url],form.simple-form input[type=url]:disabled,form.simple-form input[type=url]:focus,form.simple-form input[type=url]:hover,form.simple-form input[type=week],form.simple-form input[type=week]:disabled,form.simple-form input[type=week]:focus,form.simple-form input[type=week]:hover,form.simple-form select,form.simple-form select:disabled,form.simple-form select:focus,form.simple-form select:hoverborder-width:0 0 1pxform.simple-form input[type=date]:focus,form.simple-form input[type=datetime-local]:focus,form.simple-form input[type=datetime]:focus,form.simple-form input[type=email]:focus,form.simple-form input[type=month]:focus,form.simple-form input[type=number]:focus,form.simple-form input[type=password]:focus,form.simple-form input[type=search]:focus,form.simple-form input[type=tel]:focus,form.simple-form input[type=text]:focus,form.simple-form input[type=time]:focus,form.simple-form input[type=url]:focus,form.simple-form input[type=week]:focus,form.simple-form select:focusbox-shadow:0 1px 0 0 #0073b1form.simple-form selectpadding-left:32pxform.simple-form .floating-labelposition:relative;display:block;margin-top:35pxform.simple-form .floating-label .label-textposition:absolute;top:10px;right:0;transition:all .35s ease;margin:0form.simple-form .floating-label[data-form-elem-focus=true] .label-texttransform:translateY(-25px);-webkit-transform:translateY(-25px)form.simple-form.inverse-form input[type=date]:focus,form.simple-form.inverse-form input[type=datetime-local]:focus,form.simple-form.inverse-form input[type=datetime]:focus,form.simple-form.inverse-form input[type=email]:focus,form.simple-form.inverse-form input[type=month]:focus,form.simple-form.inverse-form input[type=number]:focus,form.simple-form.inverse-form input[type=password]:focus,form.simple-form.inverse-form input[type=search]:focus,form.simple-form.inverse-form input[type=tel]:focus,form.simple-form.inverse-form input[type=text]:focus,form.simple-form.inverse-form input[type=time]:focus,form.simple-form.inverse-form input[type=url]:focus,form.simple-form.inverse-form input[type=week]:focus,form.simple-form.inverse-form select:focusbox-shadow:0 1px 0 0 #98d8f4@media screen and (-ms-high-contrast:active)input[type=checkbox]:focus+label:before,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=radio]:focus+label:before,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,select:focus,textarea:focusoutline:2px dotted ButtonTextinput[type=checkbox]:checked+label:aftercontent:”\2714″;font-size:1.8rem;top:-3px;right:0;background:transparentinput[type=checkbox]:checked.small-input+label:afterfont-size:1.6rem;right:-1pxinput[type=radio]:checked+label:afterborder:7px solid currentColor;border-radius:50%;width:2.2rem;height:2.2reminput[type=radio]:checked.small-input+label:afterwidth:1.8rem;height:1.8reminput[type=checkbox]:indeterminate+label:afterbackground:currentColorartdeco-floatlabelposition:relative;display:block;margin-top:35pxartdeco-floatlabel input[type=date],artdeco-floatlabel input[type=datetime-local],artdeco-floatlabel input[type=datetime],artdeco-floatlabel input[type=email],artdeco-floatlabel input[type=month],artdeco-floatlabel input[type=number],artdeco-floatlabel input[type=password],artdeco-floatlabel input[type=search],artdeco-floatlabel input[type=tel],artdeco-floatlabel input[type=text],artdeco-floatlabel input[type=time],artdeco-floatlabel input[type=url],artdeco-floatlabel input[type=week]border-radius:0;padding-right:0;padding-left:0artdeco-floatlabel input[type=date],artdeco-floatlabel input[type=date]:disabled,artdeco-floatlabel input[type=date]:focus,artdeco-floatlabel input[type=date]:hover,artdeco-floatlabel input[type=datetime-local],artdeco-floatlabel input[type=datetime-local]:disabled,artdeco-floatlabel input[type=datetime-local]:focus,artdeco-floatlabel input[type=datetime-local]:hover,artdeco-floatlabel input[type=datetime],artdeco-floatlabel input[type=datetime]:disabled,artdeco-floatlabel input[type=datetime]:focus,artdeco-floatlabel input[type=datetime]:hover,artdeco-floatlabel input[type=email],artdeco-floatlabel input[type=email]:disabled,artdeco-floatlabel input[type=email]:focus,artdeco-floatlabel input[type=email]:hover,artdeco-floatlabel input[type=month],artdeco-floatlabel input[type=month]:disabled,artdeco-floatlabel input[type=month]:focus,artdeco-floatlabel input[type=month]:hover,artdeco-floatlabel input[type=number],artdeco-floatlabel input[type=number]:disabled,artdeco-floatlabel input[type=number]:focus,artdeco-floatlabel input[type=number]:hover,artdeco-floatlabel input[type=password],artdeco-floatlabel input[type=password]:disabled,artdeco-floatlabel input[type=password]:focus,artdeco-floatlabel input[type=password]:hover,artdeco-floatlabel input[type=search],artdeco-floatlabel input[type=search]:disabled,artdeco-floatlabel input[type=search]:focus,artdeco-floatlabel input[type=search]:hover,artdeco-floatlabel input[type=tel],artdeco-floatlabel input[type=tel]:disabled,artdeco-floatlabel input[type=tel]:focus,artdeco-floatlabel input[type=tel]:hover,artdeco-floatlabel input[type=text],artdeco-floatlabel input[type=text]:disabled,artdeco-floatlabel input[type=text]:focus,artdeco-floatlabel input[type=text]:hover,artdeco-floatlabel input[type=time],artdeco-floatlabel input[type=time]:disabled,artdeco-floatlabel input[type=time]:focus,artdeco-floatlabel input[type=time]:hover,artdeco-floatlabel input[type=url],artdeco-floatlabel input[type=url]:disabled,artdeco-floatlabel input[type=url]:focus,artdeco-floatlabel input[type=url]:hover,artdeco-floatlabel input[type=week],artdeco-floatlabel input[type=week]:disabled,artdeco-floatlabel input[type=week]:focus,artdeco-floatlabel input[type=week]:hoverborder-width:0 0 1px;outline:0artdeco-floatlabel input[type=date]:focus,artdeco-floatlabel input[type=datetime-local]:focus,artdeco-floatlabel input[type=datetime]:focus,artdeco-floatlabel input[type=email]:focus,artdeco-floatlabel input[type=month]:focus,artdeco-floatlabel input[type=number]:focus,artdeco-floatlabel input[type=password]:focus,artdeco-floatlabel input[type=search]:focus,artdeco-floatlabel input[type=tel]:focus,artdeco-floatlabel input[type=text]:focus,artdeco-floatlabel input[type=time]:focus,artdeco-floatlabel input[type=url]:focus,artdeco-floatlabel input[type=week]:focusbox-shadow:0 1px 0 0 #0084bfartdeco-floatlabel selectpadding-left:32pxartdeco-floatlabel .artdeco-label-textposition:absolute;top:10px;right:0;transition:all .35s ease;margin:0artdeco-floatlabel[data-form-elem-focus=true] .artdeco-label-texttransform:translateY(-25px);-webkit-transform:translateY(-25px)htmlfont-size:62.5%html.artdeco-webkit-font-smoothing:antialiased@media only screen and (-webkit-min-device-pixel-ratio:1.25),only screen and (min-device-pixel-ratio:1.25),only screen and (min-resolution:1.25dppx),only screen and (min-resolution:200dpi)html.artdeco-webkit-font-smoothing:subpixel-antialiasedbodyfont-family:-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Fira Sans,Ubuntu,Oxygen,Oxygen Sans,Cantarell,Droid Sans,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Lucida Grande,Helvetica,Arial,sans-serif:lang(ar) bodyfont-family:var(–artdeco-typography-ar):lang(ja) bodyfont-family:var(–artdeco-typography-ja)body :lang(ko)font-family:var(–artdeco-typography-ko):lang(th) bodyfont-family:var(–artdeco-typography-th):lang(zh) bodyfont-family:var(–artdeco-typography-zh)atext-decoration:none;font-weight:600;background-color:transparent;border:0a,a:visitedcolor:#0073b1a:focus,a:hovertext-decoration:underline;color:#006097a:activecolor:#004b7ca:visitedcolor:#665ed0a:visited:hovercolor:#544bc2a:visited:activecolor:#4034b0b,strongfont-weight:600body,pfont-size:1.6rem;line-height:1.5;font-weight:400;color:rgba(0,0,0,.9):lang(ar) body,:lang(ar) p,:lang(ko) body,:lang(ko) p,:lang(th) body,:lang(th) p,:lang(zh) body,:lang(zh) pfont-size:1.7rem;line-height:1.41176.large-header,h1font-size:4rem;line-height:1.2;font-weight:400;color:rgba(0,0,0,.9):lang(ar) .large-header,:lang(ar) h1,:lang(ko) .large-header,:lang(ko) h1,:lang(th) .large-header,:lang(th) h1,:lang(zh) .large-header,:lang(zh) h1line-height:1.2h2font-size:3.2rem;font-weight:400;color:rgba(0,0,0,.9):lang(ar) h2,:lang(ko) h2,:lang(th) h2,:lang(zh) h2,h2line-height:1.25.large-text,h3font-size:2.4rem;font-weight:400;color:rgba(0,0,0,.9).large-text,:lang(ar) .large-text,:lang(ar) h3,:lang(ko) .large-text,:lang(ko) h3,:lang(th) .large-text,:lang(th) h3,:lang(zh) .large-text,:lang(zh) h3,h3line-height:1.33333.medium-text,h4font-size:2rem;line-height:1.4;font-weight:400;color:rgba(0,0,0,.9):lang(ar) .medium-text,:lang(ar) h4,:lang(ko) .medium-text,:lang(ko) h4,:lang(th) .medium-text,:lang(th) h4,:lang(zh) .medium-text,:lang(zh) h4font-size:2.1rem;line-height:1.33333.small-text,h5font-size:1.6rem;line-height:1.5;font-weight:400;color:rgba(0,0,0,.9):lang(ar) .small-text,:lang(ar) h5,:lang(ko) .small-text,:lang(ko) h5,:lang(th) .small-text,:lang(th) h5,:lang(zh) .small-text,:lang(zh) h5font-size:1.7rem;line-height:1.41176h6font-size:1.4rem;line-height:1.42857;font-weight:600;color:rgba(0,0,0,.6):lang(ar) h6,:lang(ko) h6,:lang(th) h6,:lang(zh) h6font-size:1.5rem;line-height:1.33333em,ifont-style:italicem:lang(ar),em:lang(ja),em:lang(ko),em:lang(th),em:lang(zh),i:lang(ar),i:lang(ja),i:lang(ko),i:lang(th),i:lang(zh)font-family:inherit;font-style:normal!importantbutton,input,select,textareafont-family:inherit.small-textfont-size:1.45rem;line-height:1.375blockquotefont-size:1.6rem;line-height:1.5;font-weight:400;color:rgba(0,0,0,.9):lang(ar) blockquote,:lang(ko) blockquote,:lang(th) blockquote,:lang(zh) blockquotefont-size:1.7rem;line-height:1.41176artdeco-pill,artdeco-toggle-pillheight:32px;color:rgba(0,0,0,.6);border:0artdeco-pill .artdeco-pill-icons,artdeco-toggle-pill .artdeco-pill-iconsposition:relative;margin-right:0;height:16px;width:16pxartdeco-pill li-icon,artdeco-toggle-pill li-iconposition:absolute;top:0;right:0;transform:scale(0);transition:transform 167ms ease-in-outartdeco-pill li-icon[type=plus-icon],artdeco-toggle-pill li-icon[type=plus-icon]transform:scale(1)artdeco-pill li-icon[type=cancel-icon],artdeco-toggle-pill li-icon[type=cancel-icon]transform:scale(1) rotate(-45deg);opacity:0;transition:transform 167ms ease-in-out,opacity 0ms 167msartdeco-pill[type=toggle] .artdeco-toggle-pill-wrapper,artdeco-toggle-pill .artdeco-toggle-pill-wrapperdisplay:inline-flex;align-items:centerartdeco-pill[type=toggle] button,artdeco-toggle-pill buttonborder:noneartdeco-pill[type=toggle] button,artdeco-pill[type=toggle] label,artdeco-toggle-pill button,artdeco-toggle-pill labelfont-size:1.4rem;line-height:1.42857;font-weight:600;color:rgba(0,0,0,.9);display:inline-flex;min-height:32px;align-items:center;padding:6px 10px 6px 12px;margin:0;box-shadow:inset 0 0 0 1px #0073b1;background-color:transparent;color:#0073b1;border-radius:32px;box-sizing:border-box;transition:color 334ms ease-in-out,box-shadow 334ms ease-in-out,background-color 334ms ease-in-out:lang(ar) artdeco-pill[type=toggle] button,:lang(ar) artdeco-pill[type=toggle] label,:lang(ar) artdeco-toggle-pill button,:lang(ar) artdeco-toggle-pill label,:lang(ko) artdeco-pill[type=toggle] button,:lang(ko) artdeco-pill[type=toggle] label,:lang(ko) artdeco-toggle-pill button,:lang(ko) artdeco-toggle-pill label,:lang(th) artdeco-pill[type=toggle] button,:lang(th) artdeco-pill[type=toggle] label,:lang(th) artdeco-toggle-pill button,:lang(th) artdeco-toggle-pill label,:lang(zh) artdeco-pill[type=toggle] button,:lang(zh) artdeco-pill[type=toggle] label,:lang(zh) artdeco-toggle-pill button,:lang(zh) artdeco-toggle-pill labelfont-size:1.5rem;line-height:1.33333artdeco-pill[type=toggle] button span,artdeco-pill[type=toggle] label span,artdeco-toggle-pill button span,artdeco-toggle-pill label spanmargin-right:5pxartdeco-pill[type=toggle] button .artdeco-pill-content,artdeco-pill[type=toggle] label .artdeco-pill-content,artdeco-toggle-pill button .artdeco-pill-content,artdeco-toggle-pill label .artdeco-pill-contentdisplay:inline-flex;align-items:centerartdeco-pill[type=toggle] button:after,artdeco-pill[type=toggle] button:before,artdeco-pill[type=toggle] label:after,artdeco-pill[type=toggle] label:before,artdeco-toggle-pill button:after,artdeco-toggle-pill button:before,artdeco-toggle-pill label:after,artdeco-toggle-pill label:beforedisplay:noneartdeco-pill[type=toggle] button,artdeco-toggle-pill buttonpadding-top:6pxartdeco-pill[type=toggle]:hover button,artdeco-pill[type=toggle]:hover label,artdeco-pill[type=toggle][data-artdeco-focus] button,artdeco-pill[type=toggle][data-artdeco-focus] label,artdeco-toggle-pill:hover button,artdeco-toggle-pill:hover label,artdeco-toggle-pill[data-artdeco-focus] button,artdeco-toggle-pill[data-artdeco-focus] labelbox-shadow:inset 0 0 0 2px #006097;color:#006097;background-color:transparentartdeco-pill[type=toggle]:active button,artdeco-pill[type=toggle]:active label,artdeco-toggle-pill:active button,artdeco-toggle-pill:active labelbox-shadow:inset 0 0 0 2px #004b7c;color:#004b7cartdeco-pill[type=toggle][checked] button,artdeco-pill[type=toggle][checked] label,artdeco-toggle-pill[checked] button,artdeco-toggle-pill[checked] labelbox-shadow:inset 0 0 0 2px transparent;color:#fff;background-color:#0073b1artdeco-pill[type=toggle][checked] button li-icon[type=check-icon],artdeco-pill[type=toggle][checked] label li-icon[type=check-icon],artdeco-toggle-pill[checked] button li-icon[type=check-icon],artdeco-toggle-pill[checked] label li-icon[type=check-icon]transform:scale(1);transition:transform 167ms ease-in-out 167msartdeco-pill[type=toggle][checked] button li-icon[type=cancel-icon],artdeco-pill[type=toggle][checked] button li-icon[type=plus-icon],artdeco-pill[type=toggle][checked] label li-icon[type=cancel-icon],artdeco-pill[type=toggle][checked] label li-icon[type=plus-icon],artdeco-toggle-pill[checked] button li-icon[type=cancel-icon],artdeco-toggle-pill[checked] button li-icon[type=plus-icon],artdeco-toggle-pill[checked] label li-icon[type=cancel-icon],artdeco-toggle-pill[checked] label li-icon[type=plus-icon]transform:scale(0);transition:transform 167ms ease-in-out,opacity 0ms 167msartdeco-pill[type=toggle][checked]:hover button,artdeco-pill[type=toggle][checked]:hover label,artdeco-pill[type=toggle][checked][data-artdeco-focus] button,artdeco-pill[type=toggle][checked][data-artdeco-focus] label,artdeco-toggle-pill[checked]:hover button,artdeco-toggle-pill[checked]:hover label,artdeco-toggle-pill[checked][data-artdeco-focus] button,artdeco-toggle-pill[checked][data-artdeco-focus] labelbox-shadow:inset 0 0 0 2px #006097;background-color:#006097;color:#fffartdeco-pill[type=toggle][checked]:hover button li-icon[type=cancel-icon],artdeco-pill[type=toggle][checked]:hover label li-icon[type=cancel-icon],artdeco-pill[type=toggle][checked][data-artdeco-focus] button li-icon[type=cancel-icon],artdeco-pill[type=toggle][checked][data-artdeco-focus] label li-icon[type=cancel-icon],artdeco-toggle-pill[checked]:hover button li-icon[type=cancel-icon],artdeco-toggle-pill[checked]:hover label li-icon[type=cancel-icon],artdeco-toggle-pill[checked][data-artdeco-focus] button li-icon[type=cancel-icon],artdeco-toggle-pill[checked][data-artdeco-focus] label li-icon[type=cancel-icon]transform:scale(1);opacity:1;transition:transform 167ms ease-in-out 167msartdeco-pill[type=toggle][checked]:hover button li-icon[type=check-icon],artdeco-pill[type=toggle][checked]:hover button li-icon[type=plus-icon],artdeco-pill[type=toggle][checked]:hover label li-icon[type=check-icon],artdeco-pill[type=toggle][checked]:hover label li-icon[type=plus-icon],artdeco-pill[type=toggle][checked][data-artdeco-focus] button li-icon[type=check-icon],artdeco-pill[type=toggle][checked][data-artdeco-focus] button li-icon[type=plus-icon],artdeco-pill[type=toggle][checked][data-artdeco-focus] label li-icon[type=check-icon],artdeco-pill[type=toggle][checked][data-artdeco-focus] label li-icon[type=plus-icon],artdeco-toggle-pill[checked]:hover button li-icon[type=check-icon],artdeco-toggle-pill[checked]:hover button li-icon[type=plus-icon],artdeco-toggle-pill[checked]:hover label li-icon[type=check-icon],artdeco-toggle-pill[checked]:hover label li-icon[type=plus-icon],artdeco-toggle-pill[checked][data-artdeco-focus] button li-icon[type=check-icon],artdeco-toggle-pill[checked][data-artdeco-focus] button li-icon[type=plus-icon],artdeco-toggle-pill[checked][data-artdeco-focus] label li-icon[type=check-icon],artdeco-toggle-pill[checked][data-artdeco-focus] label li-icon[type=plus-icon]transform:scale(0);transition:transform 167ms ease-in-outartdeco-pill[type=toggle][checked]:active button,artdeco-pill[type=toggle][checked]:active label,artdeco-toggle-pill[checked]:active button,artdeco-toggle-pill[checked]:active labelbox-shadow:inset 0 0 0 2px #004b7c;background-color:#004b7c;color:#fffartdeco-pill[type=toggle][color-scheme=muted] button,artdeco-pill[type=toggle][color-scheme=muted] label,artdeco-toggle-pill[color-scheme=muted] button,artdeco-toggle-pill[color-scheme=muted] labelbox-shadow:inset 0 0 0 1px rgba(0,0,0,.6);background-color:transparent;color:rgba(0,0,0,.6)artdeco-pill[type=toggle][color-scheme=muted]:hover button,artdeco-pill[type=toggle][color-scheme=muted]:hover label,artdeco-pill[type=toggle][color-scheme=muted][data-artdeco-focus] button,artdeco-pill[type=toggle][color-scheme=muted][data-artdeco-focus] label,artdeco-toggle-pill[color-scheme=muted]:hover button,artdeco-toggle-pill[color-scheme=muted]:hover label,artdeco-toggle-pill[color-scheme=muted][data-artdeco-focus] button,artdeco-toggle-pill[color-scheme=muted][data-artdeco-focus] labelbox-shadow:inset 0 0 0 2px rgba(0,0,0,.75);color:rgba(0,0,0,.75);background-color:transparentartdeco-pill[type=toggle][color-scheme=muted]:active button,artdeco-pill[type=toggle][color-scheme=muted]:active label,artdeco-toggle-pill[color-scheme=muted]:active button,artdeco-toggle-pill[color-scheme=muted]:active labelbox-shadow:inset 0 0 0 2px rgba(0,0,0,.9);color:rgba(0,0,0,.9)artdeco-pill[type=toggle][color-scheme=muted][checked] button,artdeco-pill[type=toggle][color-scheme=muted][checked] label,artdeco-toggle-pill[color-scheme=muted][checked] button,artdeco-toggle-pill[color-scheme=muted][checked] labelbox-shadow:inset 0 0 0 2px transparent;color:rgba(0,0,0,.6);background-color:rgba(199,209,216,.45)artdeco-pill[type=toggle][color-scheme=muted][checked]:hover button,artdeco-pill[type=toggle][color-scheme=muted][checked]:hover label,artdeco-pill[type=toggle][color-scheme=muted][checked][data-artdeco-focus] button,artdeco-pill[type=toggle][color-scheme=muted][checked][data-artdeco-focus] label,artdeco-toggle-pill[color-scheme=muted][checked]:hover button,artdeco-toggle-pill[color-scheme=muted][checked]:hover label,artdeco-toggle-pill[color-scheme=muted][checked][data-artdeco-focus] button,artdeco-toggle-pill[color-scheme=muted][checked][data-artdeco-focus] labelbox-shadow:inset 0 0 0 2px transparent;background-color:rgba(199,209,216,.6);color:rgba(0,0,0,.75)artdeco-pill[type=toggle][color-scheme=muted][checked]:active button,artdeco-pill[type=toggle][color-scheme=muted][checked]:active label,artdeco-toggle-pill[color-scheme=muted][checked]:active button,artdeco-toggle-pill[color-scheme=muted][checked]:active labelbox-shadow:inset 0 0 0 2px transparent;background-color:rgba(199,209,216,.75);color:rgba(0,0,0,.9)artdeco-pill[type=toggle][color-scheme=inverse] button,artdeco-pill[type=toggle][color-scheme=inverse] label,artdeco-toggle-pill[color-scheme=inverse] button,artdeco-toggle-pill[color-scheme=inverse] labelbox-shadow:inset 0 0 0 1px #fff;background-color:transparent;color:#fffartdeco-pill[type=toggle][color-scheme=inverse]:hover button,artdeco-pill[type=toggle][color-scheme=inverse]:hover label,artdeco-pill[type=toggle][color-scheme=inverse][data-artdeco-focus] button,artdeco-pill[type=toggle][color-scheme=inverse][data-artdeco-focus] label,artdeco-toggle-pill[color-scheme=inverse]:hover button,artdeco-toggle-pill[color-scheme=inverse]:hover label,artdeco-toggle-pill[color-scheme=inverse][data-artdeco-focus] button,artdeco-toggle-pill[color-scheme=inverse][data-artdeco-focus] labelbox-shadow:inset 0 0 0 2px #fff;color:#fff;background-color:transparentartdeco-pill[type=toggle][color-scheme=inverse]:active button,artdeco-pill[type=toggle][color-scheme=inverse]:active label,artdeco-toggle-pill[color-scheme=inverse]:active button,artdeco-toggle-pill[color-scheme=inverse]:active labelbox-shadow:inset 0 0 0 2px #fff;color:#fffartdeco-pill[type=toggle][color-scheme=inverse][checked] button,artdeco-pill[type=toggle][color-scheme=inverse][checked] label,artdeco-toggle-pill[color-scheme=inverse][checked] button,artdeco-toggle-pill[color-scheme=inverse][checked] labelbox-shadow:inset 0 0 0 2px transparent;color:rgba(0,0,0,.6);background-color:#fffartdeco-pill[type=toggle][color-scheme=inverse][checked]:hover button,artdeco-pill[type=toggle][color-scheme=inverse][checked]:hover label,artdeco-pill[type=toggle][color-scheme=inverse][checked][data-artdeco-focus] button,artdeco-pill[type=toggle][color-scheme=inverse][checked][data-artdeco-focus] label,artdeco-toggle-pill[color-scheme=inverse][checked]:hover button,artdeco-toggle-pill[color-scheme=inverse][checked]:hover label,artdeco-toggle-pill[color-scheme=inverse][checked][data-artdeco-focus] button,artdeco-toggle-pill[color-scheme=inverse][checked][data-artdeco-focus] labelbox-shadow:inset 0 0 0 2px #fff;background-color:#fff;color:rgba(0,0,0,.75)artdeco-pill[type=toggle][color-scheme=inverse][checked]:active button,artdeco-pill[type=toggle][color-scheme=inverse][checked]:active label,artdeco-toggle-pill[color-scheme=inverse][checked]:active button,artdeco-toggle-pill[color-scheme=inverse][checked]:active labelbox-shadow:inset 0 0 0 2px transparent;background-color:#fff;color:rgba(0,0,0,.9)artdeco-pill[type=input]display:inline-flex;position:relative;align-items:center;justify-content:flex-start;vertical-align:middleartdeco-pill[type=input]:hover .artdeco-pill-label-text,artdeco-pill[type=input]:hover input[type=text],artdeco-pill[type=input]:hover labelcolor:#006097artdeco-pill[type=input] labeldisplay:flex;position:absolute;box-sizing:border-box;align-items:center;z-index:0;top:0;right:11px;height:32px;margin:0;cursor:pointer;opacity:1;color:#0073b1;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:noneartdeco-pill[type=input] label .artdeco-pill-label-textfont-size:1.4rem;line-height:1.42857;font-weight:600;color:rgba(0,0,0,.9);transition:opacity 334ms ease-in-out;margin-right:6px;color:inherit;line-height:21px:lang(ar) artdeco-pill[type=input] label .artdeco-pill-label-text,:lang(ko) artdeco-pill[type=input] label .artdeco-pill-label-text,:lang(th) artdeco-pill[type=input] label .artdeco-pill-label-text,:lang(zh) artdeco-pill[type=input] label .artdeco-pill-label-textfont-size:1.5rem;line-height:1.33333artdeco-pill[type=input] input[type=text]font-size:1.4rem;line-height:1.42857;font-weight:600;color:rgba(0,0,0,.9);color:#0073b1;display:inline-block;height:32px;width:150px;box-sizing:border-box;background-color:transparent;padding:0 32px 0 16px;border:1px solid transparent;border-radius:16px;cursor:pointer;transform:translateX(-8px);transition:background-color 334ms ease-in-out,width 334ms ease-in-out,border-color 334ms ease-in-out,transform 334ms ease-in-out:lang(ar) artdeco-pill[type=input] input[type=text],:lang(ko) artdeco-pill[type=input] input[type=text],:lang(th) artdeco-pill[type=input] input[type=text],:lang(zh) artdeco-pill[type=input] input[type=text]font-size:1.5rem;line-height:1.33333artdeco-pill[type=input] input[type=text]:focusoutline:none;border-color:#0073b1;box-shadow:none;cursor:autoartdeco-pill[type=input][data-artdeco-focus] input[type=text]color:#006097;transform:translateX(0);transition:background-color 334ms ease-in-out,width 334ms ease-in-out,border-color 334ms ease-in-out,transform 334ms ease-in-outartdeco-pill[type=input][data-artdeco-focus] .artdeco-pill-label-textcolor:rgba(0,115,177,.35);cursor:textartdeco-pill[type=input][complete]max-width:none;cursor:pointerartdeco-pill[type=input][complete] input[type=text]background-color:#0073b1;color:#fff;border-color:transparent;transform:translateX(0);transition:background-color 334ms ease-in-out,width 334ms ease-in-out,border-color 334ms ease-in-out,transform 0msartdeco-pill[type=input][complete] labelz-index:1;color:#fffartdeco-pill[type=input][complete] label .artdeco-pill-label-textdisplay:noneartdeco-pill[type=input][complete] li-icon[type=check-icon]opacity:1;transform:scale(1);transition:transform 167ms ease-in-out 167msartdeco-pill[type=input][complete] li-icon[type=cancel-icon],artdeco-pill[type=input][complete] li-icon[type=plus-icon]transform:scale(0);transition:transform 167ms ease-in-out,opacity 0ms 167msartdeco-pill[type=input][complete]:hover input,artdeco-pill[type=input][complete][data-artdeco-focus] inputbackground-color:#006097;border-color:transparent;color:#fffartdeco-pill[type=input][complete]:hover label li-icon,artdeco-pill[type=input][complete][data-artdeco-focus] label li-iconcolor:#fffartdeco-pill[type=input][complete]:hover label li-icon[type=cancel-icon],artdeco-pill[type=input][complete][data-artdeco-focus] label li-icon[type=cancel-icon]opacity:1;transform:scale(1);transition:transform 167ms ease-in-out 167msartdeco-pill[type=input][complete]:hover label li-icon[type=check-icon],artdeco-pill[type=input][complete][data-artdeco-focus] label li-icon[type=check-icon]transform:scale(0);transition:transform 167ms ease-in-outartdeco-pill[type=input][data-artdeco-has-content]:not([complete]) input[type=text]transition:width 0ms,background-color 334ms ease-in-out,border-color 334ms ease-in-out,transform 334ms ease-in-outartdeco-pill[type=input][data-artdeco-has-content] label .artdeco-pill-label-textdisplay:noneartdeco-pill[type=input][color-scheme=muted] labelcolor:rgba(0,0,0,.6)artdeco-pill[type=input][color-scheme=muted]:hover .artdeco-pill-label-text,artdeco-pill[type=input][color-scheme=muted]:hover input[type=text],artdeco-pill[type=input][color-scheme=muted]:hover labelcolor:rgba(0,0,0,.75)artdeco-pill[type=input][color-scheme=muted] input[type=text]background-color:transparent;color:rgba(0,0,0,.6)artdeco-pill[type=input][color-scheme=muted] input[type=text]:focusborder-color:rgba(0,0,0,.6);color:rgba(0,0,0,.75);background-color:transparentartdeco-pill[type=input][color-scheme=muted][data-artdeco-focus]color:rgba(0,0,0,.6)artdeco-pill[type=input][color-scheme=muted][data-artdeco-focus] .artdeco-pill-label-textcolor:rgba(0,0,0,.25)artdeco-pill[type=input][color-scheme=muted][complete] input[type=text]background-color:rgba(199,209,216,.45);color:rgba(0,0,0,.6);border-color:transparentartdeco-pill[type=input][color-scheme=muted][complete] li-iconcolor:rgba(0,0,0,.6)artdeco-pill[type=input][color-scheme=muted][complete]:hover input,artdeco-pill[type=input][color-scheme=muted][complete][data-artdeco-focus] inputbackground-color:rgba(199,209,216,.6);border-color:transparent;color:rgba(0,0,0,.75)artdeco-pill[type=input][color-scheme=muted][complete]:hover li-icon,artdeco-pill[type=input][color-scheme=muted][complete][data-artdeco-focus] li-iconcolor:rgba(0,0,0,.75)artdeco-pill[type=input][color-scheme=inverse]:hover .artdeco-pill-label-text,artdeco-pill[type=input][color-scheme=inverse]:hover input[type=text],artdeco-pill[type=input][color-scheme=inverse]:hover label,artdeco-pill[type=input][color-scheme=inverse] labelcolor:#fffartdeco-pill[type=input][color-scheme=inverse] input[type=text]background-color:transparent;color:#fffartdeco-pill[type=input][color-scheme=inverse] input[type=text]:focusborder-color:#fff;color:#fff;background-color:transparentartdeco-pill[type=input][color-scheme=inverse][data-artdeco-focus]color:hsla(0,0%,100%,.85)artdeco-pill[type=input][color-scheme=inverse][data-artdeco-focus] .artdeco-pill-label-textcolor:hsla(0,0%,100%,.35)artdeco-pill[type=input][color-scheme=inverse][complete] input[type=text]background-color:#fff;color:rgba(0,0,0,.6);border-color:transparentartdeco-pill[type=input][color-scheme=inverse][complete] li-iconcolor:rgba(0,0,0,.6)artdeco-pill[type=input][color-scheme=inverse][complete]:hover input,artdeco-pill[type=input][color-scheme=inverse][complete][data-artdeco-focus] inputbackground-color:#fff;border-color:transparent;color:rgba(0,0,0,.75)artdeco-pill[type=input][color-scheme=inverse][complete]:hover li-icon,artdeco-pill[type=input][color-scheme=inverse][complete][data-artdeco-focus] li-iconcolor:rgba(0,0,0,.75)artdeco-pill[type=input] artdeco-typeahead-results-containerright:16pxlinkedin-logodisplay:blocklinkedin-logo .logo-text,linkedin-logo li-iconvertical-align:middlelinkedin-logo .logo-textdisplay:inline-block;letter-spacing:.2em;color:rgba(0,0,0,.9);white-space:nowraplinkedin-logo .logo-text.logo-lockup-darkcolor:#000linkedin-logo .logo-text.logo-lockup-inversecolor:#ffflinkedin-logo[size=”14dp”] li-iconmargin-left:calc(5px – .2em)linkedin-logo[size=”14dp”] .logo-textfont-weight:600;font-size:11px;line-height:14pxlinkedin-logo[size=”21dp”] li-iconmargin-left:calc(7px – .2em)linkedin-logo[size=”21dp”] .logo-textfont-size:14px;line-height:21pxlinkedin-logo[size=”28dp”] li-iconmargin-left:calc(9px – .2em)linkedin-logo[size=”28dp”] .logo-textfont-size:17px;line-height:28pxlinkedin-logo[size=”34dp”] li-iconmargin-left:calc(12px – .2em)linkedin-logo[size=”34dp”] .logo-textfont-size:20px;line-height:34pxlinkedin-logo[size=”40dp”] li-iconmargin-left:calc(14px – .2em)linkedin-logo[size=”40dp”] .logo-textfont-size:23px;line-height:40pxlinkedin-logo[size=”48dp”] li-iconmargin-left:calc(18px – .2em)linkedin-logo[size=”48dp”] .logo-textfont-size:26px;line-height:48pxlinkedin-logo.verticaltext-align:center;display:inline-blocklinkedin-logo.vertical .logo-textdisplay:blocklinkedin-logo.vertical[size=”40dp”] li-iconpadding-left:0linkedin-logo.vertical[size=”40dp”] .logo-textfont-size:30px;line-height:60pxlinkedin-logo.vertical[size=”48dp”] li-iconpadding-left:0linkedin-logo.vertical[size=”48dp”] .logo-textfont-size:35px;line-height:70pxbody.artdeco-modal-is-openoverflow:hiddenbody.artdeco-modal-is-open artdeco-modal-overlayopacity:1artdeco-modal-overlayposition:fixed;top:0;right:0;z-index:5;display:flex;height:100vh;width:100vw;align-items:center;justify-content:center;opacity:0;background-color:rgba(0,0,0,.75);transition:opacity 167ms cubic-bezier(0,0,.2,1)artdeco-modal-overlay[data-artdeco-destroying]opacity:0artdeco-modal-overlay[data-artdeco-destroying] artdeco-modalmax-height:calc(100vh – 64px);transform:scaleY(1);animation:e 334ms cubic-bezier(.4,0,1,1) reverse backwardsartdeco-modalbox-shadow:0 0 0 1px rgba(0,0,0,.15),0 12px 18px 1px rgba(0,0,0,.2);transition:box-shadow 83ms;position:relative;display:flex;flex-direction:column;width:1128px;min-height:48px;border-radius:2px;background-color:#fff;transform:scale(.25);opacity:0;max-height:calc(100vh – 64px);animation:e 334ms cubic-bezier(0,0,.2,1) forwards@media screen and (-ms-high-contrast:active)artdeco-modalborder:1px solid activeborderartdeco-modal-overlay.artdeco-is-open artdeco-modaltransform:scale(1);opacity:1;width:1128pxartdeco-modal .artdeco-dismissbackground-color:transparent;border:0;border-radius:2px;box-sizing:border-box;color:rgba(0,0,0,.6);cursor:pointer;display:inline-block;font-size:0;font-weight:600;font-family:inherit;height:32px;line-height:32px;overflow:hidden;outline-width:2px;padding:0;position:relative;text-align:center;text-decoration:none;transition-duration:167ms;transition-property:background-color,box-shadow,color;transition-timing-function:cubic-bezier(0,0,.2,1);vertical-align:middle;z-index:0;border-radius:16px;text-indent:-999px;width:32px;position:absolute;top:6px;left:6px@media only screen and (-ms-high-contrast:active)artdeco-modal .artdeco-dismissborder:1px solid currentColor;line-height:30px;border-width:0;line-height:32pxhtml.edge artdeco-modal .artdeco-dismiss:focus,html.ie artdeco-modal .artdeco-dismiss:focusoutline:1px dashed #7f7f7fartdeco-modal .artdeco-dismiss li-icontop:50%;box-sizing:content-box;height:24px;right:50%;margin:-12px -12px 0 0;padding:0;position:absolute;width:24pxartdeco-modal .artdeco-dismiss li-icon>svgtransition:transform 167ms;transition-timing-function:cubic-bezier(0,0,.2,1);display:block;vertical-align:top.edge artdeco-modal .artdeco-dismiss,.ie artdeco-modal .artdeco-dismissborder-radius:32pxartdeco-modal .artdeco-dismiss:beforetransition-duration:.5sartdeco-modal .artdeco-dismiss.focus,artdeco-modal .artdeco-dismiss.hover-not-disabled,artdeco-modal .artdeco-dismiss:focus,artdeco-modal .artdeco-dismiss:hover:not(:disabled):not(.disabled)background-color:hsla(0,0%,81%,.25);color:rgba(0,0,0,.75)artdeco-modal .artdeco-dismiss.active-not-disabled,artdeco-modal .artdeco-dismiss:active:not(:disabled):not(.disabled)background-color:hsla(0,0%,81%,.25);color:rgba(0,0,0,.9)artdeco-modal .artdeco-dismiss.disabled,artdeco-modal .artdeco-dismiss:disabledcolor:rgba(0,0,0,.25);cursor:not-allowedartdeco-modal[size=”1128dp”]max-width:1128pxartdeco-modal[size=”744dp”]max-width:745pxartdeco-modal[size=”552dp”]max-width:552pxartdeco-modal[size=”360dp”]max-width:360pxartdeco-modal-headerdisplay:block;padding:8px 16px 8px 48px;border-bottom:1px solid rgba(0,0,0,.15)artdeco-modal-header h1,artdeco-modal-header h2,artdeco-modal-header h3,artdeco-modal-header h4,artdeco-modal-header h5,artdeco-modal-header h6font-size:2rem;line-height:1.4;font-weight:400;color:rgba(0,0,0,.9);line-height:3.2rem;margin-bottom:0:lang(ar) artdeco-modal-header h1,:lang(ar) artdeco-modal-header h2,:lang(ar) artdeco-modal-header h3,:lang(ar) artdeco-modal-header h4,:lang(ar) artdeco-modal-header h5,:lang(ar) artdeco-modal-header h6,:lang(ko) artdeco-modal-header h1,:lang(ko) artdeco-modal-header h2,:lang(ko) artdeco-modal-header h3,:lang(ko) artdeco-modal-header h4,:lang(ko) artdeco-modal-header h5,:lang(ko) artdeco-modal-header h6,:lang(th) artdeco-modal-header h1,:lang(th) artdeco-modal-header h2,:lang(th) artdeco-modal-header h3,:lang(th) artdeco-modal-header h4,:lang(th) artdeco-modal-header h5,:lang(th) artdeco-modal-header h6,:lang(zh) artdeco-modal-header h1,:lang(zh) artdeco-modal-header h2,:lang(zh) artdeco-modal-header h3,:lang(zh) artdeco-modal-header h4,:lang(zh) artdeco-modal-header h5,:lang(zh) artdeco-modal-header h6font-size:2.1rem;line-height:1.33333artdeco-modal-contentoverflow:auto;flex-grow:1;padding:8px 16pxartdeco-modal-footerdisplay:block;padding:8px 16pxartdeco-modal-footer[has-divider=true]border-top:1px solid rgba(0,0,0,.15)@media screen and (min-width:1192px)artdeco-modal,artdeco-modal.is-openwidth:1128px@media screen and (max-width:1192px) and (min-width:809px)artdeco-modal,artdeco-modal.is-openwidth:745px@media screen and (max-width:809px) and (min-width:616px)artdeco-modal,artdeco-modal.is-openwidth:552px@media screen and (max-width:616px)artdeco-modal,artdeco-modal.is-openwidth:312px@keyframes e0%transform:scale(.25);opacity:0totransform:scaleY(1);opacity:1artdeco-completeness-meterdisplay:flex;position:relative;height:8px;background-color:rgba(0,0,0,.15);color:#0073b1;width:300px;border-radius:2pxartdeco-completeness-meter[benchmark]:aftercontent:” “;width:2px;height:16px;position:absolute;top:-50%;background-color:rgba(0,0,0,.45);transition:right 1s ease-in-out,background-color 1s ease-in-out;animation-duration:167ms;animation-timing-function:cubic-bezier(.4,0,.2,1);animation-fill-mode:forwardsartdeco-completeness-meter[benchmark]:beforecontent:” “;position:absolute;top:0;right:0;height:8px;background-color:rgba(0,0,0,.15);border-top-right-radius:2px;border-bottom-right-radius:2px;transition:width 1s ease-in-outartdeco-completeness-meter .artdeco-completeness-backgroundwidth:100%;height:8px;overflow:hidden;position:absolute;border-radius:2px@media only screen and (-ms-high-contrast:active)artdeco-completeness-meter .artdeco-completeness-backgroundbackground:ButtonHighlightartdeco-completeness-meter progressposition:absolute;width:100%;height:8px;background-color:#0073b1;border:none;transition:width 1s ease-in-out;animation:f 1s cubic-bezier(.4,0,.2,1)artdeco-completeness-meter progress::-webkit-progress-bar,artdeco-completeness-meter progress::-webkit-progress-valuebackground-color:#0073b1artdeco-completeness-meter progress::-moz-progress-barbackground-color:#0073b1artdeco-completeness-meter progress::-ms-fillbackground-color:#0073b1;border:none@media only screen and (-ms-high-contrast:active)artdeco-completeness-meter progressbackground:Highlightartdeco-completeness-meter[size=large]height:12pxartdeco-completeness-meter[size=large][benchmark]:aftertop:-4px;height:20pxartdeco-completeness-meter[size=large] .artdeco-completeness-background,artdeco-completeness-meter[size=large] progressheight:12pxartdeco-completeness-meter[size=small]height:4pxartdeco-completeness-meter[size=small][benchmark]:aftertop:-4px;height:20pxartdeco-completeness-meter[size=small] .artdeco-completeness-background,artdeco-completeness-meter[size=small] progressheight:4pxartdeco-completeness-meter[inverse]background-color:rgba(0,0,0,.25);color:#98d8f4artdeco-completeness-meter[inverse][benchmark]:afterbackground-color:rgba(0,0,0,.6)artdeco-completeness-meter[inverse][benchmark]:beforebackground-color:rgba(0,0,0,.25)artdeco-completeness-meter[inverse] progressbackground-color:#98d8f4artdeco-completeness-meter[inverse] progress::-webkit-progress-bar,artdeco-completeness-meter[inverse] progress::-webkit-progress-valuebackground-color:#98d8f4artdeco-completeness-meter[inverse] progress::-moz-progress-barbackground-color:#98d8f4artdeco-completeness-meter[inverse] progress::-ms-fillbackground-color:#98d8f4;border:noneartdeco-completeness-meter[color=pro],artdeco-completeness-meter[color=pro]:aftercolor:#087889artdeco-completeness-meter[color=pro] progressbackground-color:#087889artdeco-completeness-meter[color=pro] progress::-webkit-progress-bar,artdeco-completeness-meter[color=pro] progress::-webkit-progress-valuebackground-color:#087889artdeco-completeness-meter[color=pro] progress::-moz-progress-barbackground-color:#087889artdeco-completeness-meter[color=pro] progress::-ms-fillbackground-color:#087889;border:noneartdeco-completeness-meter[inverse][color=pro],artdeco-completeness-meter[inverse][color=pro]:aftercolor:#98dadeartdeco-completeness-meter[inverse][color=pro] progressbackground-color:#98dadeartdeco-completeness-meter[inverse][color=pro] progress::-webkit-progress-bar,artdeco-completeness-meter[inverse][color=pro] progress::-webkit-progress-valuebackground-color:#98dadeartdeco-completeness-meter[inverse][color=pro] progress::-moz-progress-barbackground-color:#98dadeartdeco-completeness-meter[inverse][color=pro] progress::-ms-fillbackground-color:#98dade;border:noneartdeco-completeness-meter[color=positive],artdeco-completeness-meter[color=positive]:aftercolor:#2f7b15artdeco-completeness-meter[color=positive] progressbackground-color:#2f7b15artdeco-completeness-meter[color=positive] progress::-webkit-progress-bar,artdeco-completeness-meter[color=positive] progress::-webkit-progress-valuebackground-color:#2f7b15artdeco-completeness-meter[color=positive] progress::-moz-progress-barbackground-color:#2f7b15artdeco-completeness-meter[color=positive] progress::-ms-fillbackground-color:#2f7b15;border:noneartdeco-completeness-meter[inverse][color=positive],artdeco-completeness-meter[inverse][color=positive]:aftercolor:#b5d99fartdeco-completeness-meter[inverse][color=positive] progressbackground-color:#b5d99fartdeco-completeness-meter[inverse][color=positive] progress::-webkit-progress-bar,artdeco-completeness-meter[inverse][color=positive] progress::-webkit-progress-valuebackground-color:#b5d99fartdeco-completeness-meter[inverse][color=positive] progress::-moz-progress-barbackground-color:#b5d99fartdeco-completeness-meter[inverse][color=positive] progress::-ms-fillbackground-color:#b5d99f;border:noneartdeco-completeness-meter[color=muted],artdeco-completeness-meter[color=muted]:aftercolor:#5c6f7cartdeco-completeness-meter[color=muted] progressbackground-color:#5c6f7cartdeco-completeness-meter[color=muted] progress::-webkit-progress-bar,artdeco-completeness-meter[color=muted] progress::-webkit-progress-valuebackground-color:#5c6f7cartdeco-completeness-meter[color=muted] progress::-moz-progress-barbackground-color:#5c6f7cartdeco-completeness-meter[color=muted] progress::-ms-fillbackground-color:#5c6f7c;border:noneartdeco-completeness-meter[inverse][color=muted],artdeco-completeness-meter[inverse][color=muted]:aftercolor:#c7d1d8artdeco-completeness-meter[inverse][color=muted] progressbackground-color:#c7d1d8artdeco-completeness-meter[inverse][color=muted] progress::-webkit-progress-bar,artdeco-completeness-meter[inverse][color=muted] progress::-webkit-progress-valuebackground-color:#c7d1d8artdeco-completeness-meter[inverse][color=muted] progress::-moz-progress-barbackground-color:#c7d1d8artdeco-completeness-meter[inverse][color=muted] progress::-ms-fillbackground-color:#c7d1d8;border:noneartdeco-completeness-meter[color=negative],artdeco-completeness-meter[color=negative]:aftercolor:#d11124artdeco-completeness-meter[color=negative] progressbackground-color:#d11124artdeco-completeness-meter[color=negative] progress::-webkit-progress-bar,artdeco-completeness-meter[color=negative] progress::-webkit-progress-valuebackground-color:#d11124artdeco-completeness-meter[color=negative] progress::-moz-progress-barbackground-color:#d11124artdeco-completeness-meter[color=negative] progress::-ms-fillbackground-color:#d11124;border:noneartdeco-completeness-meter[inverse][color=negative],artdeco-completeness-meter[inverse][color=negative]:aftercolor:#ffbcbaartdeco-completeness-meter[inverse][color=negative] progressbackground-color:#ffbcbaartdeco-completeness-meter[inverse][color=negative] progress::-webkit-progress-bar,artdeco-completeness-meter[inverse][color=negative] progress::-webkit-progress-valuebackground-color:#ffbcbaartdeco-completeness-meter[inverse][color=negative] progress::-moz-progress-barbackground-color:#ffbcbaartdeco-completeness-meter[inverse][color=negative] progress::-ms-fillbackground-color:#ffbcba;border:noneartdeco-completeness-meter[indeterminate]width:100%artdeco-completeness-meter[indeterminate] progressanimation:g 2s cubic-bezier(.4,0,.2,1);animation-iteration-count:infinite;background-color:#0073b1;position:relative;display:blockartdeco-completeness-meter[type=circular]height:96px;width:96px;background:noneartdeco-completeness-meter[type=circular][benchmark]:beforebackground:none;content:noneartdeco-completeness-meter[type=circular][benchmark]:aftertop:calc(50% – 4px);right:calc(50% – 1px);height:8pxartdeco-completeness-meter[type=circular] progressborder:0!important;clip:rect(1px,1px,1px,1px);height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!importantartdeco-completeness-meter[type=circular][size=large]height:128px;width:128pxartdeco-completeness-meter[type=circular][size=large]:aftertop:calc(50% – 7px);height:14pxartdeco-completeness-meter[type=circular][size=small]height:56px;width:56px@keyframes f0%transform:translate(100%)totransform:translate(0)@keyframes g0%right:-100%toright:100%artdeco-chipdisplay:inline-flex;align-items:center;height:24px;border-radius:2px;margin:0 0 8px 8px;padding:0 8px 0 6px;background-color:rgba(199,209,216,.45);transition:color .3sartdeco-chip .artdeco-chip-textfont-size:1.4rem;line-height:1.42857;font-weight:600;color:rgba(0,0,0,.6);margin:0:lang(ar) artdeco-chip .artdeco-chip-text,:lang(ko) artdeco-chip .artdeco-chip-text,:lang(th) artdeco-chip .artdeco-chip-text,:lang(zh) artdeco-chip .artdeco-chip-textfont-size:1.5rem;line-height:1.33333artdeco-chip .artdeco-chip-buttonbackground:transparent;border:0;padding:0;line-height:0;position:static;margin-right:6px;color:rgba(0,0,0,.6);transition:color .3sartdeco-chip .artdeco-chip-button:hovercolor:rgba(0,0,0,.75)artdeco-chip .artdeco-chip-button:activecolor:rgba(0,0,0,.9)artdeco-chip[size=large]font-size:1.6rem;line-height:1.5;font-weight:600;color:rgba(0,0,0,.6);height:28px:lang(ar) artdeco-chip[size=large],:lang(ko) artdeco-chip[size=large],:lang(th) artdeco-chip[size=large],:lang(zh) artdeco-chip[size=large]font-size:1.7rem;line-height:1.41176artdeco-chip:hover .artdeco-chip-textcolor:rgba(0,0,0,.75)artdeco-chip:active .artdeco-chip-textcolor:rgba(0,0,0,.9)artdeco-chip:last-of-typemargin-left:0artdeco-tabsposition:relativeartdeco-tabs,artdeco-tabs artdeco-tabpanel[role=tabpanel]display:blockartdeco-tabs artdeco-tabpanel[role=tabpanel][aria-hidden=true]display:noneartdeco-tabs[disabled] artdeco-tablist[role=tablist]position:relativeartdeco-tabs[disabled] artdeco-tablist[role=tablist]:beforedisplay:block;content:””;position:absolute;right:0;left:0;top:0;bottom:0;z-index:1;cursor:not-allowed;background:hsla(0,0%,100%,.65)artdeco-tabs[disabled] artdeco-tablist[role=tablist] artdeco-tab[role=tab][disabled]color:rgba(0,0,0,.6)artdeco-tabs artdeco-tablist[role=tablist]display:flex;flex-direction:row;align-items:flex-end;border-bottom:1px solid rgba(0,0,0,.15);position:relativeartdeco-tabs artdeco-tablist[role=tablist].native-scrolloverflow-x:autoartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]font-size:1.4rem;line-height:1.42857;font-weight:600;color:rgba(0,0,0,.6);box-sizing:border-box;max-width:220px;position:relative;background-color:transparent;cursor:pointer;transition:background-color;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:83ms;padding:9px 8px 11px;margin-right:24px:lang(ar) artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab],:lang(ko) artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab],:lang(th) artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab],:lang(zh) artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]font-size:1.5rem;line-height:1.33333artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]:first-childmargin-right:16pxartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]:beforeposition:absolute;content:””;height:2px;background-color:transparent;right:0;left:0;bottom:0;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:83msartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]color:#0073b1;background-color:transparent;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.5sartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:beforebackground-color:#0073b1;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.5s@media screen and (-ms-high-contrast:active)artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]text-decoration:underlineartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hovercolor:#006097artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hover:beforebackground:#006097artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:activecolor:#004b7cartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:active:beforebackground:#004b7cartdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]:hovercolor:rgba(0,0,0,.75)artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]:activecolor:#006097;background-color:rgba(152,216,244,.45)artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab][disabled]color:rgba(0,0,0,.35);cursor:not-allowed@media screen and (min-width:480px) and (max-width:799px)artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]margin-right:16px@media screen and (max-width:479px)artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab],artdeco-tabs artdeco-tablist[role=tablist] artdeco-tab[role=tab]:first-childmargin-right:8pxartdeco-tabs artdeco-tablist[role=tablist].no-wrap artdeco-tab[role=tab]white-space:nowrap;max-width:noneartdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab]color:rgba(0,0,0,.6)artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]color:#087889artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:beforebackground:#087889artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hovercolor:#036475artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hover:beforebackground:#036475artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:activecolor:#00505d;background:transparentartdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:active:beforebackground:#00505dartdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab]:hovercolor:rgba(0,0,0,.75)artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab]:activecolor:#087889;background-color:rgba(8,120,137,.15)artdeco-tabs[theme=pro] artdeco-tablist[role=tablist] artdeco-tab[role=tab][disabled]color:rgba(0,0,0,.35)artdeco-tabs[theme=pro][disabled] artdeco-tablist[role=tablist] artdeco-tab[role=tab][disabled]color:rgba(0,0,0,.6)artdeco-tabs[theme=pro] .artdeco-transportbackground:hsla(0,0%,100%,.85)artdeco-tabs[theme=pro] .artdeco-transport li-iconcolor:rgba(0,0,0,.9)artdeco-tabs[theme=pro] .artdeco-transport:hoverbackground:#fffartdeco-tabs[theme=pro] .artdeco-transport:hover li-iconcolor:#000artdeco-tabs[theme=pro] .artdeco-transport:activebackground:hsla(0,0%,100%,.7)artdeco-tabs[theme=pro] .artdeco-transport:active li-iconcolor:rgba(0,0,0,.6)artdeco-tabs .artdeco-scrolling-containeroverflow-x:scroll;overflow-y:hidden;overflow:-moz-scrollbars-none;scrollbar-width:none;-ms-overflow-style:noneartdeco-tabs .artdeco-scrolling-container::-webkit-scrollbardisplay:noneartdeco-tabs .artdeco-transportposition:absolute;z-index:1;top:0;bottom:0;right:0;width:32px;background:hsla(0,0%,100%,.85);border:0;opacity:1;transition:opacity;transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:167msartdeco-tabs .artdeco-transport.artdeco-transport-hiddenopacity:0artdeco-tabs .artdeco-transport li-iconposition:absolute;top:50%;right:50%;transform:translateX(50%) translateY(-50%);color:rgba(0,0,0,.6)[dir=rtl] artdeco-tabs .artdeco-transport li-icontransform:translateX(50%) translateY(-50%) rotateY(180deg)artdeco-tabs .artdeco-transport:hoverbackground:#fffartdeco-tabs .artdeco-transport:hover li-iconcolor:rgba(0,0,0,.9)artdeco-tabs .artdeco-transport:activebackground:hsla(0,0%,100%,.7)artdeco-tabs .artdeco-transport:active li-iconcolor:rgba(0,0,0,.75)[dir=rtl] artdeco-tabs .artdeco-transport,artdeco-tabs .artdeco-transport[data-direction=next]right:auto;left:0[dir=rtl] artdeco-tabs .artdeco-transport[data-direction=next]left:auto;right:0artdeco-tabs artdeco-spotlight-tablist[role=tablist]display:flex;border-bottom:1px solid rgba(0,0,0,.15);border-top:1px solid rgba(0,0,0,.15)artdeco-tabs artdeco-spotlight-tablist[role=tablist].native-scrolloverflow-x:auto;border:1px solid rgba(0,0,0,.15)artdeco-tabs artdeco-spotlight-tablist[role=tablist].native-scroll artdeco-spotlight-tab[role=tab]border-right:1px solid rgba(0,0,0,.15);border-left:noneartdeco-tabs artdeco-spotlight-tablist[role=tablist].native-scroll artdeco-spotlight-tab[role=tab]:first-childborder-right:noneartdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab]padding:10px 16px;cursor:pointer;position:relative;max-height:88px;box-sizing:border-box;flex:1;align-items:flex-start;border-left:1px solid rgba(0,0,0,.15)artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab]:first-childborder-right:1px solid rgba(0,0,0,.15)artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-primary-textfont-size:2.4rem;line-height:1.33333;font-weight:600;color:rgba(0,0,0,.6);display:block:lang(ar) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-primary-text,:lang(ko) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-primary-text,:lang(th) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-primary-text,:lang(zh) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-primary-textline-height:1.33333artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-secondary-textfont-size:1.4rem;line-height:1.42857;font-weight:400;color:rgba(0,0,0,.6);display:block:lang(ar) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-secondary-text,:lang(ko) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-secondary-text,:lang(th) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-secondary-text,:lang(zh) artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab] .artdeco-tab-secondary-textfont-size:1.5rem;line-height:1.33333artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab]:hover .artdeco-tab-primary-text,artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab]:hover .artdeco-tab-secondary-textcolor:rgba(0,0,0,.75)artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab][aria-selected=true]:aftercontent:””;position:absolute;right:0;left:0;bottom:0;height:4px;background:#087889artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab][aria-selected=true] .artdeco-tab-primary-textcolor:#087889artdeco-tabs artdeco-spotlight-tablist[role=tablist] artdeco-spotlight-tab[role=tab][aria-selected=true] .artdeco-tab-secondary-textcolor:rgba(0,0,0,.9)artdeco-tabs artdeco-spotlight-tablist[role=tablist].no-wrap artdeco-spotlight-tab[role=tab]white-space:nowrapartdeco-tabs[in-modal=true] artdeco-tablist artdeco-tab:first-childmargin-right:24pxartdeco-tabs[align=centered] artdeco-tablistjustify-content:centerartdeco-tabs[size=”17px”] artdeco-tablist[role=tablist] artdeco-tab[role=tab],artdeco-tabs[size=”48dp”] artdeco-tablist[role=tablist] artdeco-tab[role=tab]padding-top:12px;padding-bottom:16px;font-size:17pxartdeco-tabs[color=inverse][disabled] artdeco-tablist[role=tablist]:before,artdeco-tabs[theme=inverse][disabled] artdeco-tablist[role=tablist]:beforebackground:hsla(0,0%,100%,.55)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist],artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist]border-bottom-color:hsla(0,0%,100%,.25)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab],artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab]color:hsla(0,0%,100%,.85)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab]:hover,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab]:hovercolor:#fffartdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab]:active,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab]:activebackground:hsla(0,0%,100%,.15)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true],artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]color:#fffartdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:before,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:beforebackground:#fffartdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hover,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hovercolor:hsla(0,0%,100%,.85)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hover:before,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:hover:beforebackground:hsla(0,0%,100%,.85)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:active,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:activecolor:hsla(0,0%,100%,.7)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:active:before,artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][aria-selected=true]:active:beforebackground:hsla(0,0%,100%,.7)artdeco-tabs[color=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][disabled],artdeco-tabs[theme=inverse] artdeco-tablist[role=tablist] artdeco-tab[role=tab][disabled]color:hsla(0,0%,100%,.45)artdeco-tabs[color=inverse] .artdeco-transport,artdeco-tabs[theme=inverse] .artdeco-transportbackground:rgba(0,115,177,.85)artdeco-tabs[color=inverse] .artdeco-transport li-icon,artdeco-tabs[theme=inverse] .artdeco-transport li-iconcolor:hsla(0,0%,100%,.7)artdeco-tabs[color=inverse] .artdeco-transport:hover,artdeco-tabs[theme=inverse] .artdeco-transport:hoverbackground:rgba(0,115,177,.85)artdeco-tabs[color=inverse] .artdeco-transport:hover li-icon,artdeco-tabs[theme=inverse] .artdeco-transport:hover li-iconcolor:#fffartdeco-tabs[color=inverse] .artdeco-transport:active,artdeco-tabs[theme=inverse] .artdeco-transport:activebackground:#0073b1artdeco-tabs[color=inverse] .artdeco-transport:active li-icon,artdeco-tabs[theme=inverse] .artdeco-transport:active li-iconcolor:hsla(0,0%,100%,.85)artdeco-typeaheaddisplay:block;position:relativeartdeco-typeahead .artdeco-typeahead-live-regionborder:0!important;clip:rect(1px,1px,1px,1px);height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!importantartdeco-typeahead-results-containerbox-shadow:0 0 0 1px rgba(0,0,0,.15),0 6px 9px rgba(0,0,0,.2);transition:box-shadow 83ms;display:block;position:absolute;border-radius:0 0 2px 2px;padding:4px 0;background-color:#fff@media screen and (-ms-high-contrast:active)artdeco-typeahead-results-containerborder:1px solid activeborderartdeco-typeahead-results-container ullist-style-type:noneartdeco-typeahead-results-container lipadding:8px 16pxartdeco-typeahead-results-container .highlighted,artdeco-typeahead-results-container li:hoverbackground-color:#f3f6f8body,htmlbackground:#fff;margin:0;padding:0;border:0;outline:0;font-size:62.5%;line-height:1;vertical-align:baseline#body-footer,#body-header,#body-mainwidth:1128px;box-sizing:content-box;padding:0 30px;display:block;margin:auto;position:relative@media (max-width:1208px)#body-footer,#body-header,#body-mainwidth:calc(100vw – 20px);box-sizing:border-box@media (max-width:976px)#body-footer,#body-header,#body-mainpadding:0 18px#body-headerpadding:32px 0;z-index:3#body-header .header-contentbox-sizing:border-box;float:right;margin-bottom:24px;margin-left:-1px;width:1128px@media (max-width:1208px)#body-header .header-contentwidth:calc(((100vw – 632px) * 1) + 552px)@media (max-width:976px)#body-header .header-contentwidth:calc(((100vw – 424px) * 1) + 368px);margin-bottom:12px@media (max-width:769px)#body-header .header-contentright:0;left:0;width:100%;margin-right:0;margin-left:0#body-header .header-content #language-selector+.header-logomargin-top:4px#body-header .header-logo svgwidth:84px;height:21px.footer-wrapperdisplay:block;position:fixed;bottom:0;right:0;width:100%;background:#f5f5f5;z-index:3#body-footerpadding:16px 32px;display:inline-block;margin:0 auto;text-align:center;vertical-align:middle;width:100%;font-family:var(–artdeco-typography-sans);font-style:normal;font-weight:400;color:rgba(0,0,0,.9);font-size:1.2rem;line-height:1.33333#body-footer:aftercontent:””;display:table;clear:both:lang(ar) #body-footer,:lang(ko) #body-footer,:lang(th) #body-footer,:lang(zh) #body-footerfont-size:1.3rem;line-height:1.23077#body-footer .footer-copyrightdisplay:inline-block#body-footer .footer-copyright atext-decoration:none#body-footer .footer-copyright svgwidth:56px;height:14px;display:inline-block;vertical-align:tophtml[lang=ar] #body-footer .footer-copyright svg,html[lang=ja] #body-footer .footer-copyright svg,html[lang=ko] #body-footer .footer-copyright svg,html[lang=th] #body-footer .footer-copyright svg,html[lang=zh] #body-footer .footer-copyright svgvertical-align:baseline#body-footer .footer-navdisplay:inline-block;margin:0;padding:0;list-style:none#body-footer .footer-nav>lipadding:0 16px;margin:0;display:inline-block#body-footer .footer-nav acolor:#4f6878;font-weight:600;text-decoration:none#body-footer .footer-nav a:hovertext-decoration:underline#body-mainz-index:3#body-main:aftercontent:””;display:table;clear:both#body-main .body-contentbox-sizing:border-box;float:right;margin-bottom:24px;margin-left:-1px;width:1128px@media (max-width:1208px)#body-main .body-contentwidth:calc(((100vw – 632px) * 1) + 552px)@media (max-width:976px)#body-main .body-contentwidth:calc(((100vw – 424px) * 1) + 368px);margin-bottom:12px@media (max-width:769px)#body-main .body-contentright:0;left:0;width:100%;margin-right:0;margin-left:0#body-main .headingfont-family:var(–artdeco-typography-sans);font-style:normal;font-weight:200;color:rgba(0,0,0,.9);font-size:4rem;line-height:1.2;margin:24px 0:lang(ar) #body-main .heading,:lang(ko) #body-main .heading,:lang(th) #body-main .heading,:lang(zh) #body-main .headingline-height:1.2#body-main .subheadingfont-family:var(–artdeco-typography-sans);font-style:normal;font-weight:400;color:rgba(0,0,0,.6);font-size:1.8rem;line-height:1.33333;max-width:560px;margin:0 auto:lang(ar) #body-main .subheading,:lang(ko) #body-main .subheading,:lang(th) #body-main .subheading,:lang(zh) #body-main .subheadingfont-size:1.9rem;line-height:1.26316#body-main .subheading atext-decoration:none;background-color:transparent;border:0;color:#0073b1;font-weight:600#body-main .subheading a:visitedcolor:#0073b1#body-main .subheading a:focus,#body-main .subheading a:hovertext-decoration:underline;color:#006097#body-main .subheading a:activecolor:#004b7c#body-header:aftercontent:””;display:table;clear:both#body-main .subheadingfont-size:3.2rem;line-height:1.25;font-weight:200;color:rgba(0,0,0,.9);max-width:none:lang(ar) #body-main .subheading,:lang(ko) #body-main .subheading,:lang(th) #body-main .subheading,:lang(zh) #body-main .subheadingline-height:1.25.error-pagestext-align:center;padding-top:64px.error-pages .footnotefont-size:1.4rem;line-height:1.42857;font-weight:400;color:rgba(0,0,0,.6);margin:0 auto;padding-top:48px:lang(ar) .error-pages .footnote,:lang(ko) .error-pages .footnote,:lang(th) .error-pages .footnote,:lang(zh) .error-pages .footnotefont-size:1.5rem;line-height:1.33333.error-pages .footnote p+pmargin-top:12px.error-pages .footnote atext-decoration:none;font-weight:600;background-color:transparent;border:0;color:#0073b1;font-weight:400.error-pages .footnote a:visitedcolor:#0073b1.error-pages .footnote a:focus,.error-pages .footnote a:hovertext-decoration:underline;color:#006097.error-pages .footnote a:activecolor:#004b7c.error-pages .footnote a:visitedcolor:#665ed0.error-pages .footnote a:visited:hovercolor:#544bc2.error-pages .footnote a:visited:activecolor:#4034b0.error-pages .footnote ultext-align:right;margin:0 auto;display:inline-block#language-selectorfloat:left;position:relative#language-selector labelborder:0!important;clip:rect(1px,1px,1px,1px);height:1px!important;overflow:hidden;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important#language-selector select-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:1px solid rgba(0,0,0,.25);border-radius:1px;box-shadow:none;box-sizing:border-box;color:rgba(0,0,0,.85);font-size:12px;font-weight:400;height:32px;line-height:1.75;max-width:175px;outline:0;position:relative;padding:0 12px 0 32px;transition:box-shadow .15s;vertical-align:middle;width:100%;z-index:2#language-selector select:hovercursor:pointer;border-color:rgba(0,0,0,.55)#language-selector select:focusborder-color:#0084bf;box-shadow:0 0 0 1px #0084bf#language-selector .icon-globecolor:#44474a;overflow:hidden;position:absolute;z-index:1;display:inline-block;height:24px;width:24px;left:4px;top:50%;transform:translateY(-50%)#language-selector .icon-globe svgdisplay:block;margin:auto;vertical-align:top.js #i18n_ar_AE,.js #i18n_cs_CZ,.js #i18n_da_DK,.js #i18n_de_DE,.js #i18n_en_US,.js #i18n_es_ES,.js #i18n_footer_ar_AE,.js #i18n_footer_cs_CZ,.js #i18n_footer_da_DK,.js #i18n_footer_de_DE,.js #i18n_footer_en_US,.js #i18n_footer_es_ES,.js #i18n_footer_fr_FR,.js #i18n_footer_in_ID,.js #i18n_footer_it_IT,.js #i18n_footer_ja_JP,.js #i18n_footer_ko_KR,.js #i18n_footer_ms_MY,.js #i18n_footer_nl_NL,.js #i18n_footer_no_NO,.js #i18n_footer_pl_PL,.js #i18n_footer_pt_BR,.js #i18n_footer_ro_RO,.js #i18n_footer_ru_RU,.js #i18n_footer_sv_SE,.js #i18n_footer_th_TH,.js #i18n_footer_tl_PH,.js #i18n_footer_tr_TR,.js #i18n_footer_zh_CN,.js #i18n_footer_zh_TW,.js #i18n_fr_FR,.js #i18n_in_ID,.js #i18n_it_IT,.js #i18n_ja_JP,.js #i18n_ko_KR,.js #i18n_ms_MY,.js #i18n_nl_NL,.js #i18n_no_NO,.js #i18n_pl_PL,.js #i18n_pt_BR,.js #i18n_ro_RO,.js #i18n_ru_RU,.js #i18n_sv_SE,.js #i18n_th_TH,.js #i18n_tl_PH,.js #i18n_tr_TR,.js #i18n_zh_CN,.js #i18n_zh_TW,[id^=i18n_]display:none.js [data-lang=ar_AE] #i18n_ar_AEdisplay:block.js [data-lang=ar_AE] #i18n_footer_ar_AEdisplay:inline-block.js [data-lang=cs_CZ] #i18n_cs_CZdisplay:block.js [data-lang=cs_CZ] #i18n_footer_cs_CZdisplay:inline-block.js [data-lang=da_DK] #i18n_da_DKdisplay:block.js [data-lang=da_DK] #i18n_footer_da_DKdisplay:inline-block.js [data-lang=de_DE] #i18n_de_DEdisplay:block.js [data-lang=de_DE] #i18n_footer_de_DEdisplay:inline-block.js [data-lang=en_US] #i18n_en_USdisplay:block.js [data-lang=en_US] #i18n_footer_en_USdisplay:inline-block.js [data-lang=es_ES] #i18n_es_ESdisplay:block.js [data-lang=es_ES] #i18n_footer_es_ESdisplay:inline-block.js [data-lang=fr_FR] #i18n_fr_FRdisplay:block.js [data-lang=fr_FR] #i18n_footer_fr_FRdisplay:inline-block.js [data-lang=in_ID] #i18n_in_IDdisplay:block.js [data-lang=in_ID] #i18n_footer_in_IDdisplay:inline-block.js [data-lang=it_IT] #i18n_it_ITdisplay:block.js [data-lang=it_IT] #i18n_footer_it_ITdisplay:inline-block.js [data-lang=ja_JP] #i18n_ja_JPdisplay:block.js [data-lang=ja_JP] #i18n_footer_ja_JPdisplay:inline-block.js [data-lang=ko_KR] #i18n_ko_KRdisplay:block.js [data-lang=ko_KR] #i18n_footer_ko_KRdisplay:inline-block.js [data-lang=ms_MY] #i18n_ms_MYdisplay:block.js [data-lang=ms_MY] #i18n_footer_ms_MYdisplay:inline-block.js [data-lang=nl_NL] #i18n_nl_NLdisplay:block.js [data-lang=nl_NL] #i18n_footer_nl_NLdisplay:inline-block.js [data-lang=no_NO] #i18n_no_NOdisplay:block.js [data-lang=no_NO] #i18n_footer_no_NOdisplay:inline-block.js [data-lang=pl_PL] #i18n_pl_PLdisplay:block.js [data-lang=pl_PL] #i18n_footer_pl_PLdisplay:inline-block.js [data-lang=pt_BR] #i18n_pt_BRdisplay:block.js [data-lang=pt_BR] #i18n_footer_pt_BRdisplay:inline-block.js [data-lang=ro_RO] #i18n_ro_ROdisplay:block.js [data-lang=ro_RO] #i18n_footer_ro_ROdisplay:inline-block.js [data-lang=ru_RU] #i18n_ru_RUdisplay:block.js [data-lang=ru_RU] #i18n_footer_ru_RUdisplay:inline-block.js [data-lang=sv_SE] #i18n_sv_SEdisplay:block.js [data-lang=sv_SE] #i18n_footer_sv_SEdisplay:inline-block.js [data-lang=th_TH] #i18n_th_THdisplay:block.js [data-lang=th_TH] #i18n_footer_th_THdisplay:inline-block.js [data-lang=tl_PH] #i18n_tl_PHdisplay:block.js [data-lang=tl_PH] #i18n_footer_tl_PHdisplay:inline-block.js [data-lang=tr_TR] #i18n_tr_TRdisplay:block.js [data-lang=tr_TR] #i18n_footer_tr_TRdisplay:inline-block.js [data-lang=zh_CN] #i18n_zh_CNdisplay:block.js [data-lang=zh_CN] #i18n_footer_zh_CNdisplay:inline-block.js [data-lang=zh_TW] #i18n_zh_TWdisplay:block.js [data-lang=zh_TW] #i18n_footer_zh_TWdisplay:inline-block”>
Vi kan desværre ikke finde den side, du leder efter. Gå tilbage til den forrige side, eller besøg Hjælp for at få flere oplysninger
Gå til dit feed
Die gewünschte Seite konnte leider nicht gefunden werden. Versuchen Sie, zur vorherigen Seite zurückzukehren, oder besuchen Sie unseren Hilfebereich, um mehr zu erfahren.
Zu Ihrem Feed
Uh oh, we can’t seem to find the page you’re looking for. Try going back to the previous page or see our Help Center for more information
Go to your feed
Vaya, parece que no podemos encontrar la página que buscas. Intenta volver a la página anterior o visita nuestro Centro de ayuda para más información.
Ir a tu feed
Maaf, sepertinya kami tidak dapat menemukan halaman yang Anda cari. Coba kembali ke halaman sebelumnya atau lihat Pusat Bantuan kami untuk informasi lebih lanjut
Buka feed Anda
Non abbiamo trovato la pagina che stai cercando. Prova a tornare alla pagina precedente o visita il nostro Centro assistenza per saperne di più.
Vai al tuo feed
원하시는 페이지를 찾을 수 없습니다. 이전 페이지로 돌아가거나 고객센터에서 자세히 알아보세요.
홈으로 가기
Harap maaf, kami tidak dapat menemui laman yang ingin anda cari. Cuba kembali ke laman sebelumnya atau lihat Pusat Bantuan kami untuk maklumat lanjut
Pergi ke suapan
De pagina waar u naar op zoek bent, kan niet worden gevonden. Probeer terug te gaan naar de vorige pagina of bezoek het Help Center voor meer informatie
Ga naar uw feed
Не удаётся найти искомую вами страницу. Вернитесь на предыдущую страницу или посетите страницу нашего справочного центра для получения дополнительной информации.
Перейти к ленте
Naku, mukhang hindi namin mahanap ang pahina na hinahanap mo. Subukang bumalik sa nakaraang pahina o tingnan ang aming Help Center para sa higit pang impormasyon
Pumunta sa iyong feed
0 notes
Text
Myspace tumblr theme
{block:Description}
{/block:Description}
{block:Hidden}
{/block:Hidden}
/* Reset & Defaults */
/*! normalize.css v1.0.0 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.75em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
body, html, * {
box-sizing: border-box;
word-wrap:break-word;
}
body {
background-color: {color:Background};
background-image: url('{image:Background}');
font-family: 'Verdana', sans-serif;
font-weight: normal;
font-size: 11px;
}
a, a:visited {
color: {color:Dark Blue};
font-weight: bold;
text-decoration: none;
}
a:hover {
color: {color:Light Blue};
}
p {
margin: 5px 0 10px 0;
padding: 0;
}
iframe, img, embed, object, video {
max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
font-size: 12px;
}
/* Structure */
footer, .container {
position: relative;
clear: both;
}
.container {
width: 880px;
margin: 0 auto;
}
#top-navigation {
background-color: {color:Dark Blue};
}
#search {
position: relative;
overflow: hidden;
margin: 0 auto;
padding: 20px;
}
#search form {
width: 80%;
margin: 0 auto;
}
#search input[type="text"] {
width: 80%;
float: left;
padding: 5px;
}
#search input[type="submit"] {
width: 18%;
float: right;
padding: 5px 15px;
}
#links {
background: {color:Light Blue};
}
#navigation {
margin: 0;
padding: 0;
list-style-type: none;
}
#navigation li {
display: inline-block;
padding: 10px 0 10px 10px;
}
#navigation li::after {
margin: 0 0 0 10px;
content: '|';
}
#navigation li a {
font-size: 11px;
color: {color:White};
font-weight: normal;
}
#navigation li a:hover {
color: {color:Black};
}
#profile {
background: {color:White};
overflow: hidden;
padding: 0 10px;
}
#sidebar {
width: 300px;
float: left;
}
#sidebar div {
margin: 20px 0;
}
#photo-box {
padding-top: 20px;
overflow: hidden;
}
#photo-box h1 {
font-size: 14px;
}
#profile-photo, #information {
width: 50%;
float: left;
}
#information {
padding-left: 10px;
}
#quote, #country {
display: block;
margin-bottom: 15px;
}
#information span {
display: block;
}
#url {
border: 1px solid {color:Light Blue};
padding: 5px;
}
#url h2 {
font-size: 11px;
}
#music {
position: relative;
background: url('http://static.tumblr.com/bpdtqce/eNEnoonrt/musicplayer.png') top left no-repeat;
background-size: 100% 100%;
overflow: hidden;
height: 50px;
max-width: 305px;
border: 1px solid {color:Black};
}
#music iframe {
position: absolute;
top: 12px;
height: 25px;
opacity: 0;
z-index: 0;
}
#music div {
position: absolute;
top: 10px;
left: 55px;
width: 75%;
margin: 0 !important;
}
#music span {
display: block;
color: {color:White};
font-weight: normal;
}
.artist {
font-weight: bold;
}
#interests, #details {
border: 1px solid {color:Light Blue};
padding: 2px;
}
#interests h2, #details h2 {
background: {color:Light Blue};
font-size: 11px;
color: {color:White};
margin: -2px -2px 2px -2px;
padding: 2px;
}
#interests table, #details table {
width: 100%;
}
#interests table tr, #details table tr {
border-bottom: 2px solid {color:White};
}
.sidebar-label {
width: 30%;
background: {color:Details Label};
border-right: 2px solid {color:White};
padding: 2px;
}
.sidebar-label span {
color: {color:Dark Blue};
font-size: 10px;
font-weight: bold;
}
.sidebar-content {
width: 70%;
background: {color:Details Content};
padding: 2px;
}
.sidebar-content span {
font-size: 10px;
}
#content {
width: 540px;
float: right;
}
#content div, #content article {
margin: 20px 0;
}
#extended-network {
border: 1px solid {color:Black};
padding: 20px;
text-align: center;
}
#extended-network span {
font-weight: bold;
font-size: 14px;
}
#blurbs h2 {
background: {color:Light Orange};
padding: 2px;
color: {color:Dark Orange};
}
#blurbs h3, #blurbs h3 a {
color: {color:Dark Orange};
margin: 5px 0;
}
#description {
margin: 0 !important;
}
.post-meta {
overflow: hidden;
margin-top: 10px;
}
.note-count, .reblogs {
width: 50%;
float: left;
margin: 0 !important;
}
.note-count {
text-align: right;
}
.notes {
margin: 0;
padding: 0;
list-style-type: none;
}
.notes li {
margin: 0;
padding: 5px;
font-size: 9px;
border-bottom: 1px solid {color:Background};
}
.notes li div {
margin: 0 !important;
}
{block:IndexPage}
{block:IfTwoColumnPosts}
.post{
width: 270px;
float: left;
padding: 10px !important;
}
.post:nth-child(odd) {
clear: left;
}
.caption {
display: none;
}
{block:IfTwoColumnPosts}
.post-container, .autopagerize_page_element {
margin: 0 !important;
}
article {
margin: 0 !important;
}
.post {
padding: 10px 0;
border-bottom: 1px solid {color:Background};
}
{/block:IndexPage}
.copyright {
text-align: center;
font-size: 9px;
padding: 10px;
}
/* Post Styles */
.link a {
font-size: 12px;
}
.chat ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.chat ul li {
padding: 2px;
}
.odd {
background: {color:Background};
}
.source {
text-align: right;
}
.source::before {
content: '-';
}
blockquote {
margin: 0;
border-left: 2px solid {color:Light Orange};
padding: 0 10px;
}
.html_photoset {
margin: 0 !important;
}
.question {
background:{color:Background};
padding: 20px;
overflow: hidden;
}
.question img {
float: left;
margin-right: 10px;
}
.like_and_reblog_buttons {
margin: 0;
padding: 0;
list-style-type: none;
}
.like_and_reblog_buttons li {
display: inline-block;
padding: 0 5px;
}
.like_button {
margin: 0 !important;
padding: 0;
}
.tag-container {
clear: both;
padding: 2px;
background: {color:Light Orange};
}
.tags {
margin: 0;
padding: 0;
list-style-type: none;
}
.tags li {
display: inline-block;
margin-right: 10px;
font-size: 9px;
}
.tags li a {
color: {color:Dark Orange};
}
.tags li a:hover {
color: {color:Black};
}
#pagination {
clear: both;
text-align: center;
}
#pagination ul li {
display: inline-block;
margin: 0 10px;
}
/* Custom CSS */
{CustomCSS}
{block:IfNotTwoColumnPosts}
{/block:IfNotTwoColumnPosts}
Home
{block:HasPages}
{block:Pages}
{Label}
{/block:Pages}
{/block:HasPages}
{block:SubmissionsEnabled}
{SubmitLabel}
{/block:SubmissionsEnabled}
{block:AskEnabled}
{AskLabel}
{/block:AskEnabled}
Archive
Theme
{Title}
"{text:Quote}"
{text:Gender}
{text:Age}
{text:Town}
{text:Country}
Tumblr URL:
{BlogURL}
{block:IfYouTubeVideoID}
{text:Song}
{text:Artist}
{/block:IfYouTubeVideoID}
{block:IfInterest1Label}
{text:Name}'s Interests
{text:Interest 1 Label}
{text:Interest 1 Content}
{block:IfInterest2Label}
{text:Interest 2 Label}
{text:Interest 2 Content}
{/block:IfInterest2Label}
{block:IfInterest3Label}
{text:Interest 3 Label}
{text:Interest 3 Content}
{/block:IfInterest3Label}
{block:IfInterest4Label}
{text:Interest 4 Label}
{text:Interest 4 Content}
{/block:IfInterest4Label}
{block:IfInterest5Label}
{text:Interest 5 Label}
{text:Interest 5 Content}
{/block:IfInterest5Label}
{/block:IfInterest1Label}
{block:IfDetail1Label}
{text:Name}'s Details
{text:Detail 1 Label}
{text:Detail 1 Content}
{block:IfDetail2Label}
{text:Detail 2 Label}
{text:Detail 2 Content}
{/block:IfDetail2Label}
{block:IfDetail3Label}
{text:Detail 3 Label}
{text:Detail 3 Content}
{/block:IfDetail3Label}
{block:IfDetail4Label}
{text:Detail 4 Label}
{text:Detail 4 Content}
{/block:IfDetail4Label}
{block:IfDetail5Label}
{text:Detail 5 Label}
{text:Detail 5 Content}
{/block:IfDetail5Label}
{/block:IfDetail1Label}
{text:Name} is in your extended network.
{block:IndexPage}
{text:Name}'s Blurbs
About Me:
{block:Description}
{Description}
{/block:Description}
{text:Name}'s Posts
{/block:IndexPage}
{block:TagPage}
Posts tagged "{Tag}"
{/block:TagPage}
{block:Posts}
{block:Text}
{block:Title}
{Title}
{/block:Title}{Body}
{/block:Text}
{block:Photo}
{block:IndexPage}
{LinkOpenTag}
{block:IfTwoColumnPosts}
{/block:IfTwoColumnPosts}
{block:IfNotTwoColumnPosts}
{/block:IfNotTwoColumnPosts}
{LinkCloseTag}
{/block:IndexPage}
{block:PermalinkPage}
{LinkOpenTag}
{LinkCloseTag}
{/block:PermalinkPage}
{block:Caption}
{Caption}
{/block:Caption}
{/block:Photo}
{block:Panorama}
{LinkOpenTag}
{LinkCloseTag}
{block:Caption}
{Caption}
{/block:Caption}
{/block:Panorama}
{block:Photoset}
{block:IndexPage}
{LinkOpenTag}
{block:IfTwoColumnPosts}
{Photoset-250}
{/block:IfTwoColumnPosts}
{block:IfNotTwoColumnPosts}
{Photoset}
{/block:IfNotTwoColumnPosts}
{LinkCloseTag}
{/block:IndexPage}
{block:PermalinkPage}
{Photoset}
{/block:PermalinkPage}
{block:Caption}
{Caption}
{/block:Caption}
{/block:Photoset}
{block:Quote}
“{Quote}”
{block:Source}
{Source}
{/block:Source}
{/block:Quote}
{block:Link}
{Name}
{block:Description}
{Description}
{/block:Description}
{/block:Link}
{block:Chat}
{block:Title}
{Title}
{/block:Title}
{block:Lines}
{block:Label}
{Label}
{/block:Label}
{Line}
{/block:Lines}
{/block:Chat}
{block:Video}
{Video-700}
{block:Caption}
{Caption}
{/block:Caption}
{/block:Video}
{block:Audio}
{block:AudioEmbed}
{AudioEmbed}
{/block:AudioEmbed}
{block:AudioPlayer}
{AudioPlayer}
{/block:AudioPlayer}
{block:Caption}
{Caption}
{/block:Caption}
{/block:Audio}
{block:Answer}
{Asker}: {Question} {Answer}
{/block:Answer}
{block:Date}
{ReblogButton}
{LikeButton}
{NoteCountWithLabel}
{block:PermalinkPage}
{block:HasTags}
{block:Tags}
{Tag}
{/block:Tags}
{/block:HasTags}
{block:PostNotes}
{PostNotes}
{/block:PostNotes}
{/block:PermalinkPage}
{/block:Date}
{/block:Posts}
{block:Pagination}
{block:PreviousPage}← Newer Posts{/block:PreviousPage}
{block:NextPage}Older Posts ��{/block:NextPage}
{/block:Pagination}
Copyright © {CopyrightYears} {Title}.
{block:IndexPage}
{block:IfTwoColumnPosts}
$(document).ready(function() {
$('.autopagerize_page_element').freetile({
selector: '.post',
animate: true,
elementDelay: 10
});
});
{/block:IfTwoColumnPosts}
{/block:IndexPage}
{block:IfNotTwoColumnPosts}
$(document).ready(function() {
$("#sidebar").stick_in_parent();
});
{/block:IfNotTwoColumnPosts}
0 notes
Text
packed pigs data-nome= “figcaption” #CuteArmy #CuteServilePigs #CuteArmyPost data-orig-width= “1024” servile pig data-orig-height= “683” data-dm-nonstdlib= “true” curse of pig transmogrification= "https://64.media.tumblr.com/9a7f7032b61bd293765fbd8fe2947ffd/2a0daee99b5f3ba3-b0/s540x810/3846f39e51e24cb66919dd310a8b1c5ccaf16239.jpg" #CuteArmyPost data-moreratio= "1024:683" data-h= “1024” curiosities puppetizer= “1024"> <figure class= "tmblr-full” data-orig-height= "1024" data-orig-width= "768"> <img src= "https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s540x810/36021a02d62f6e7f0e5c3bcaa8db8de230b71fba.jpg" data-orig-height= "1024" data-orig-width= "768" srcset= "https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s75x75_c1/8f644646540fc2509b25c3988413a13a82cfd3c5.jpg 75w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s100x200/ee90c99e835d3a4f5f84cd1baf997face93d3e38.jpg 100w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s250x400/bd6f98218d213dc06f2f33c2feca01ab4306d564.jpg 250w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s400x600/0f8f3b929c90c4449bac1ff73edd5c803ced6bd0.jpg 400w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s500x750/b51b42d84da980e4f89e57c48ad438bd43e0e883.jpg 500w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s540x810/36021a02d62f6e7f0e5c3bcaa8db8de230b71fba.jpg 540w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s640x960/cb2b74702d3eeaa33f123b4b90ddb02e635c9826.jpg 640w , https://64.media.tumblr.com/e964723749f9aa2d90092624905f9336/2a0daee99b5f3ba3-04/s1280x1920/69eae40e76827fdaff3443bc5ac7399ae8f9e36f.jpg 768w " sizes= (max-width: 768px) 100vw , 768px" /> <figcaption>Scrumptious </figcaption> </figure>
23 notes
·
View notes
Text

HTML
HTML Course Content
HTML, or *HyperText Markup Language*, is the standard language used for creating and structuring content on the web. It defines the structure of web pages through the use of elements and tags, which dictate how text, images, links, and other multimedia are displayed in a web browser. HTML provides the foundation for web documents, allowing developers to format content, organize sections, and create interactive features. It consists of a series of elements enclosed in angle brackets, such as <p> for paragraphs, <a> for links, and <img> for images, which together build the content and layout of a webpage.
HTML Contents
HTML (HyperText Markup Language) is the foundation of web pages and web applications. It structures content on the web, defining elements like headings, paragraphs, links, images, and other multimedia. Here’s a breakdown of key HTML contents:
1. *Basic Structure*:
*<!DOCTYPE html>*: Declares the document type and version of HTML.
*<html>*: The root element that encompasses the entire HTML document.
*<head>*: Contains meta-information about the document, such as title, character set, and links to CSS or JavaScript files.
*<body>*: Contains the content that is visible on the web page, including text, images, and interactive elements.
2. *Text Elements*:
*<h1> to <h6>*: Heading tags, with <h1> being the most important.
*<p>*: Paragraph tag for regular text.
*<a>*: Anchor tag for creating hyperlinks.
*<span>* and *<div>*: Generic containers for grouping inline and block content, respectively.
3. *Lists*:
*<ul>*: Unordered list.
*<ol>*: Ordered list.
*<li>*: List item, used within <ul> or <ol>.
4. *Images and Media*:
*<img>*: Embeds images.
*<video>* and *<audio>*: Embeds video and audio files.
*<figure>* and *<figcaption>*: For adding images or media with captions.
5. *Forms*:
*<form>*: Contains form elements for user input.
*<input>*: Various input fields (text, password, checkbox, radio, etc.).
*<textarea>*: For multi-line text input.
*<button>* and *<select>*: Buttons and dropdown menus.
6. *Tables*:
*<table>*: Defines a table.
*<tr>*: Table row.
*<th>*: Table header cell.
*<td>*: Table data cell.
7.*Semantic Elements*:
*<header>, *<footer>**: Defines the header and footer sections.
*<nav>*: Navigation section.
*<article>*: Independent content item.
*<section>*: Thematic grouping of content.
*<aside>*: Sidebar or additional content.
*<main>*: Main content of the document.
8. *Metadata and Links*:
*<meta>*: Provides metadata such as descriptions, keywords, and viewport settings.
*<link>*: Links external resources like CSS files.
*<script>*: Embeds or links JavaScript files.
Importance of HTML
HTML is critically important for several reasons:
1. *Foundation of Web Pages*:
HTML is the core language that structures content on the web. Without HTML, web pages wouldn’t exist as we know them. It organizes text, images, links, and other media into a cohesive and navigable format.
2. *Accessibility*:
Proper use of HTML ensures that web content is accessible to all users, including those with disabilities. Semantic HTML elements provide context to assistive technologies, making it easier for screen readers to interpret the content.
3. *SEO (Search Engine Optimization)*:
Search engines rely on HTML to understand the content of web pages. Properly structured HTML with relevant tags and attributes improves a website’s visibility in search engine results, driving more traffic to the site.
4. *Interoperability*:
HTML is universally supported by all web browsers, ensuring that content can be displayed consistently across different devices and platforms. This cross-compatibility makes HTML the most reliable way to share content on the web.
5. *Foundation for CSS and JavaScript*:
HTML is the backbone that supports styling and interactivity through CSS and JavaScript. It provides the structure that CSS styles and JavaScript enhances, creating dynamic, interactive, and visually appealing web experiences.
6. *Web Standards Compliance*:
HTML is maintained by the World Wide Web Consortium (W3C), which sets standards to ensure the web remains open, accessible, and usable. Following these standards helps developers create web content that is robust and future-proof.
7. *Ease of Learning and Use*:
HTML is relatively simple to learn, making it accessible to beginners and non-programmers. Its simplicity also allows for rapid development and prototyping of web pages.
In summary, HTML is essential because it structures and defines web content, ensuring it is accessible, searchable, and interoperable across various platforms. It is the foundation upon which modern web design and development are built.
1 note
·
View note
Text
HTML Semantic Elements
HTML Semantic Elements are those elements that not only define the structure of a webpage but also provide meaning to the content they encapsulate. These elements help both browsers and search engines understand the content better, improving accessibility and SEO.
Common HTML Semantic Elements:
<header>:
Represents the introductory content or a set of navigational links.
Usually contains the logo, site title, and main navigation.
<header> <h1>My Website</h1> <nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header>
<nav>:
Represents a section of the webpage intended for navigation links.
Typically contains a list of links.
<nav> <ul> <li><a href="#home">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#services">Services</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav>
<main>:
Represents the main content of the document.
Only one <main> element should be used per page.
<main> <h2>Main Content</h2> <p>This is the main content of the page.</p> </main>
<section>:
Defines sections in a document, such as chapters, headers, footers, or any thematic grouping of content.
Typically used to divide the webpage into sections that make sense contextually.
<section> <h2>About Us</h2> <p>Information about our company.</p> </section>
<article>:
Represents a self-contained piece of content that can be independently distributed or reused.
Used for blog posts, news articles, etc.
<article> <h2>Blog Post Title</h2> <p>Content of the blog post.</p> </article>
<aside>:
Represents content that is tangentially related to the content around it.
Often used for sidebars, pull quotes, or related links.
<aside> <h3>Related Posts</h3> <ul> <li><a href="#post1">Post 1</a></li> <li><a href="#post2">Post 2</a></li> </ul> </aside>
<footer>:
Represents the footer of a document or section.
Typically contains copyright information, links to privacy policies, or contact information.
<footer> <p>© 2024 My Website. All rights reserved.</p> </footer>
<figure> and <figcaption>:
<figure> is used to encapsulate media such as images, illustrations, or diagrams.
<figcaption> provides a caption for the <figure>.
<figure> <img src="image.jpg" alt="An example image"> <figcaption>This is a caption for the image.</figcaption> </figure>
<time>:
Represents a specific time or date.
Often used in articles, events, or any content where time is relevant.
<time datetime="2024-08-07">August 7, 2024</time>
Why Use Semantic Elements?
Accessibility: Assistive technologies, like screen readers, can better understand and navigate your content.
SEO: Search engines can index your content more effectively, improving your site’s search rankings.
Maintainability: Semantic elements make your HTML more readable and organized, making it easier for developers to understand.
Using these elements in your blog will help make your content more structured, accessible, and search engine-friendly.
Read More ➡️
0 notes
Text
Ryan Garcia and Devin Haney erupt into explosive war of words at pre-fight press conference
<figcaption>Garcia vs. Romero Final New York Press Conference</figcaption> Ryan Garcia and Devin Haney really don’t like each other. On Friday, both Garcia and Haney compete at the historic Times Square boxing event dubbed Fatal Fury: City of Wolves, featuring Garcia taking on Rolly Romero for the WBA welterweight title, while Haney faces off with Jose Ramirez in the co-main event. But you would…
0 notes
Text
0 notes