
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_e1bcc4e4008a451b15f86120.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_47df3ffde06de5a458cb611c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a30e9e24e1b82a0252084ce2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c3182080c572e8c6a23b3e69.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_66f283b2f5821d9adeb1c590.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_53ec7e559c486492120492b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_836c156fd40f1702f79d44c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_07dcaab6ff28fb475295f0cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_00f866954b5b5e7df5624789.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e1a4045eaa2b3aeada0ecc93.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_747cc8c41c5634da1681922a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cbfaad0ac8cfcfaa1289cc8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_72c996fbf7a309c9a99263c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8e757b7a3a9ee786b37fa2c0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1013c1df52baea1be65eb785.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6adf8df59b1a15b43fb6b259.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5d98bde5b1754888c9a9138d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1790134cf7f540e977c1ac80.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_153b1fc1e7ab56740c65d600.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_eda243a552bb1b516c0f24f2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941895;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5c68a1b15cdda00e7cf196d2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5c088f96c78811bb51ca7a46.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b812e3bf1587818c92144994.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_df2ff6f360979a771f27b8f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d86f28dbd83c2444c01c3575.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_10edf4e15bf26836855e268b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_4314a9a3052b189d7c44f454.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_8ab39f5e4b244280d862fead.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_a59fdebf72ee244177922854.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_d67426128a0c72aa66214147.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_5c9f367965403c76efd3d549.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_8ab39f5e4b244280d862fead.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_6590076e492c861cab6d3fdb.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_81c2f221524c3a75781b617c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_0822a31e7403fb47af2a7f77.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_8ab39f5e4b244280d862fead.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_4eb09fae928bfb5aceb6d8d5.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_57c5b11517f39b525e32df42.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m3{transform:matrix(0.247531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247531,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-82.800000px;}
.v7{vertical-align:-33.120000px;}
.v6{vertical-align:-27.360000px;}
.vc{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:3.600000px;}
.v5{vertical-align:5.760000px;}
.v9{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:44.581274px;}
.ls12{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-0.936000px;}
.ls24{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.008640px;}
.ls20{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls27{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.132480px;}
.ls28{letter-spacing:0.135600px;}
.ls7{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.178560px;}
.ls25{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.181440px;}
.ls26{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.269280px;}
.ls21{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.289440px;}
.ls2f{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.460200px;}
.lsa{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.978000px;}
.ls18{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.923673px;}
.ls19{letter-spacing:2.071648px;}
.ls13{letter-spacing:2.880000px;}
.ls11{letter-spacing:5.040000px;}
.ls17{letter-spacing:5.220000px;}
.ls2e{letter-spacing:10.080000px;}
.ls6{letter-spacing:14.400000px;}
.lsd{letter-spacing:24.480000px;}
.ls15{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-19.440000px;}
.ws14{word-spacing:-18.864000px;}
.ws16{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.504000px;}
.ws1a{word-spacing:-18.288000px;}
.ws1c{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.999997px;}
.wsb{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.568000px;}
.wsc{word-spacing:-17.496000px;}
.ws1b{word-spacing:-17.208000px;}
.ws19{word-spacing:-17.064000px;}
.ws12{word-spacing:-16.925365px;}
.ws23{word-spacing:-16.865400px;}
.ws24{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.620000px;}
.ws1d{word-spacing:-16.560000px;}
.ws25{word-spacing:-15.918000px;}
.ws20{word-spacing:-15.300000px;}
.ws22{word-spacing:-15.120000px;}
.ws26{word-spacing:-14.993280px;}
.ws1e{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.833200px;}
.ws18{word-spacing:-12.349440px;}
.ws4{word-spacing:-12.241200px;}
.ws7{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.520000px;}
.ws8{word-spacing:-9.720000px;}
.ws21{word-spacing:-9.711360px;}
.ws27{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:15.880958px;}
.ws1{word-spacing:302.400000px;}
.ws0{word-spacing:335.760000px;}
._22{margin-left:-115.435781px;}
._23{margin-left:-7.200000px;}
._35{margin-left:-4.106880px;}
._21{margin-left:-2.652000px;}
._6{margin-left:-1.320960px;}
._4{width:1.053360px;}
._5{width:2.379840px;}
._9{width:4.121040px;}
._a{width:5.234640px;}
._11{width:6.345360px;}
._12{width:8.054640px;}
._10{width:9.072000px;}
._d{width:10.809120px;}
._c{width:11.832960px;}
._1c{width:12.844560px;}
._e{width:13.896000px;}
._13{width:15.456000px;}
._f{width:16.608000px;}
._7{width:17.865840px;}
._8{width:19.267440px;}
._1b{width:20.548320px;}
._18{width:21.736560px;}
._16{width:22.896000px;}
._19{width:24.696000px;}
._14{width:26.352000px;}
._15{width:28.020960px;}
._1a{width:29.293440px;}
._b{width:31.008000px;}
._2{width:32.220000px;}
._17{width:33.257280px;}
._26{width:34.926720px;}
._33{width:36.745200px;}
._34{width:37.940400px;}
._32{width:38.952000px;}
._30{width:40.968000px;}
._31{width:42.120000px;}
._2f{width:55.495680px;}
._3{width:65.580000px;}
._1{width:88.920000px;}
._20{width:90.000960px;}
._27{width:99.018720px;}
._28{width:102.978720px;}
._2a{width:119.020560px;}
._29{width:131.562720px;}
._0{width:148.860000px;}
._25{width:152.129040px;}
._2e{width:158.090880px;}
._2c{width:162.296640px;}
._2d{width:168.967680px;}
._1e{width:175.368000px;}
._2b{width:186.149040px;}
._1d{width:194.376000px;}
._1f{width:195.384000px;}
._24{width:200.905200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.680375px;}
.fsd{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs8{font-size:59.414866px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:65.475916px;}
.fsb{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fs7{font-size:279.971012px;}
.y0{bottom:0.000000px;}
.yda{bottom:3.240000px;}
.yf6{bottom:3.285000px;}
.yb2{bottom:3.960000px;}
.yf8{bottom:4.680000px;}
.y7c{bottom:4.908474px;}
.y35{bottom:16.071793px;}
.y7d{bottom:16.829181px;}
.y7a{bottom:19.781279px;}
.yf2{bottom:20.340000px;}
.yd9{bottom:20.520000px;}
.y100{bottom:20.550000px;}
.yf5{bottom:20.565000px;}
.y7b{bottom:34.248782px;}
.yf1{bottom:37.620000px;}
.yd8{bottom:37.800000px;}
.yf0{bottom:54.900000px;}
.yd7{bottom:55.080000px;}
.y18{bottom:56.880000px;}
.yd6{bottom:72.360000px;}
.y17{bottom:77.616000px;}
.yd5{bottom:89.460000px;}
.y112{bottom:105.696000px;}
.y78{bottom:115.236000px;}
.y99{bottom:120.456000px;}
.y33{bottom:122.076000px;}
.yb0{bottom:125.496000px;}
.y13a{bottom:134.316000px;}
.y71{bottom:135.936000px;}
.y53{bottom:142.056000px;}
.y77{bottom:146.196000px;}
.y98{bottom:151.410000px;}
.y32{bottom:153.030000px;}
.yaf{bottom:156.630000px;}
.y113{bottom:162.030000px;}
.y139{bottom:164.550000px;}
.y70{bottom:166.890000px;}
.y52{bottom:176.430000px;}
.y76{bottom:177.330000px;}
.y97{bottom:182.550000px;}
.y31{bottom:184.170000px;}
.yae{bottom:187.590000px;}
.y125{bottom:191.190000px;}
.y138{bottom:194.790000px;}
.y6f{bottom:198.030000px;}
.y75{bottom:208.290000px;}
.y51{bottom:210.990000px;}
.y96{bottom:213.510000px;}
.y12f{bottom:214.230000px;}
.y30{bottom:215.130000px;}
.yad{bottom:218.730000px;}
.y137{bottom:223.950000px;}
.y6e{bottom:228.990000px;}
.y124{bottom:229.350000px;}
.y16{bottom:233.199006px;}
.y74{bottom:239.430000px;}
.y95{bottom:244.650000px;}
.y12e{bottom:248.070000px;}
.yd1{bottom:249.510000px;}
.y50{bottom:249.690000px;}
.y2f{bottom:256.530000px;}
.y6d{bottom:259.950000px;}
.y123{bottom:267.510000px;}
.y15{bottom:269.199006px;}
.y73{bottom:270.390000px;}
.y94{bottom:275.610000px;}
.yac{bottom:280.650000px;}
.y12d{bottom:281.730000px;}
.yd0{bottom:283.890000px;}
.y14{bottom:287.199006px;}
.y4f{bottom:291.090000px;}
.y2e{bottom:297.930000px;}
.y72{bottom:301.350000px;}
.y13{bottom:305.199006px;}
.y122{bottom:305.670000px;}
.ycf{bottom:306.210000px;}
.y93{bottom:306.750000px;}
.yab{bottom:311.790000px;}
.y12c{bottom:315.390000px;}
.y6c{bottom:322.050000px;}
.y12{bottom:323.199006px;}
.y4e{bottom:332.535000px;}
.yce{bottom:335.415000px;}
.y92{bottom:337.755000px;}
.y2d{bottom:339.375000px;}
.y11{bottom:341.199006px;}
.yaa{bottom:342.795000px;}
.y121{bottom:343.875000px;}
.y12b{bottom:349.275000px;}
.y6b{bottom:353.235000px;}
.y10{bottom:359.199006px;}
.ycd{bottom:362.955000px;}
.y4d{bottom:363.495000px;}
.y91{bottom:368.895000px;}
.ya9{bottom:373.935000px;}
.y2c{bottom:380.775000px;}
.y120{bottom:382.035000px;}
.y6a{bottom:384.195000px;}
.ycc{bottom:385.275000px;}
.y12a{bottom:391.395000px;}
.y4c{bottom:394.635000px;}
.y90{bottom:399.855000px;}
.ya8{bottom:404.895000px;}
.ycb{bottom:407.595000px;}
.yf{bottom:414.699006px;}
.y69{bottom:415.335000px;}
.y11f{bottom:420.195000px;}
.y129{bottom:421.635000px;}
.y2b{bottom:422.175000px;}
.y4b{bottom:425.595000px;}
.yca{bottom:429.915000px;}
.y8f{bottom:430.995000px;}
.ye{bottom:432.699006px;}
.ya7{bottom:436.035000px;}
.y68{bottom:446.295000px;}
.y136{bottom:448.275000px;}
.yd{bottom:450.699006px;}
.y128{bottom:451.875000px;}
.y34{bottom:453.520143px;}
.y4a{bottom:456.735000px;}
.y11e{bottom:458.355000px;}
.y8e{bottom:461.955000px;}
.y2a{bottom:463.575000px;}
.ya6{bottom:466.995000px;}
.yc9{bottom:470.235000px;}
.y67{bottom:477.435000px;}
.y135{bottom:481.935000px;}
.y127{bottom:485.535000px;}
.y49{bottom:487.695000px;}
.y8d{bottom:493.095000px;}
.y11d{bottom:496.515000px;}
.ya5{bottom:498.135000px;}
.yc8{bottom:504.615000px;}
.y29{bottom:504.975000px;}
.y66{bottom:508.395000px;}
.y126{bottom:514.875000px;}
.y134{bottom:515.595000px;}
.yc{bottom:516.699016px;}
.y48{bottom:518.835000px;}
.y8c{bottom:524.055000px;}
.y102{bottom:526.755000px;}
.ya4{bottom:529.095000px;}
.yc7{bottom:533.055000px;}
.y65{bottom:539.535000px;}
.y11c{bottom:541.695000px;}
.y101{bottom:542.955000px;}
.yb{bottom:545.199016px;}
.y28{bottom:546.375000px;}
.y47{bottom:549.795000px;}
.y8b{bottom:555.195000px;}
.y133{bottom:557.895000px;}
.ya3{bottom:560.235000px;}
.yc6{bottom:567.255000px;}
.y64{bottom:570.495000px;}
.y11b{bottom:571.935000px;}
.ya{bottom:573.699016px;}
.yff{bottom:578.235000px;}
.y46{bottom:580.935000px;}
.y8a{bottom:586.155000px;}
.y27{bottom:587.775000px;}
.y132{bottom:588.135000px;}
.ya2{bottom:591.195000px;}
.y117{bottom:592.635000px;}
.y63{bottom:601.665000px;}
.y11a{bottom:602.205000px;}
.y45{bottom:611.925000px;}
.yfe{bottom:613.545000px;}
.y89{bottom:617.145000px;}
.y131{bottom:618.405000px;}
.yc5{bottom:619.125000px;}
.y9{bottom:621.699016px;}
.ya1{bottom:622.365000px;}
.y26{bottom:625.065000px;}
.y119{bottom:632.265000px;}
.y62{bottom:632.625000px;}
.y116{bottom:634.785000px;}
.yc4{bottom:640.545000px;}
.y44{bottom:643.065000px;}
.y130{bottom:647.565000px;}
.y88{bottom:648.285000px;}
.yfd{bottom:648.825000px;}
.y9c{bottom:649.905000px;}
.ya0{bottom:653.325000px;}
.yc3{bottom:662.145000px;}
.y61{bottom:663.765000px;}
.y25{bottom:664.665000px;}
.y115{bottom:665.025000px;}
.y118{bottom:666.105000px;}
.y8{bottom:669.699016px;}
.y43{bottom:674.025000px;}
.y87{bottom:679.245000px;}
.yc2{bottom:682.845000px;}
.yfc{bottom:683.925000px;}
.y9f{bottom:684.465000px;}
.y111{bottom:685.365000px;}
.yea{bottom:687.345000px;}
.y10f{bottom:689.865000px;}
.y114{bottom:690.765000px;}
.y24{bottom:694.005000px;}
.y60{bottom:694.725000px;}
.y7{bottom:698.199016px;}
.yc1{bottom:703.545000px;}
.y42{bottom:705.165000px;}
.y86{bottom:710.385000px;}
.y9b{bottom:712.005000px;}
.y9e{bottom:715.425000px;}
.y110{bottom:715.605000px;}
.yfb{bottom:719.205000px;}
.ye9{bottom:719.925000px;}
.y10e{bottom:722.265000px;}
.yc0{bottom:724.245000px;}
.y5f{bottom:725.865000px;}
.y6{bottom:726.699016px;}
.y23{bottom:733.785000px;}
.y41{bottom:736.125000px;}
.y85{bottom:741.345000px;}
.ybf{bottom:744.765000px;}
.ye8{bottom:753.405000px;}
.yfa{bottom:754.485000px;}
.y10d{bottom:754.845000px;}
.y5e{bottom:756.825000px;}
.y22{bottom:762.945000px;}
.ybe{bottom:766.365000px;}
.y40{bottom:767.265000px;}
.ye7{bottom:770.685000px;}
.y84{bottom:772.485000px;}
.y9a{bottom:774.105000px;}
.y5{bottom:782.199016px;}
.y10c{bottom:787.245000px;}
.ye6{bottom:787.785000px;}
.y5d{bottom:787.965000px;}
.yf9{bottom:789.765000px;}
.y3f{bottom:798.225000px;}
.y4{bottom:800.199016px;}
.y21{bottom:802.725000px;}
.y83{bottom:803.445000px;}
.ye5{bottom:805.065000px;}
.ybd{bottom:805.425000px;}
.y9d{bottom:808.665000px;}
.y5c{bottom:818.925000px;}
.y10b{bottom:821.445000px;}
.ye4{bottom:823.065000px;}
.yf7{bottom:824.145000px;}
.ybc{bottom:827.745000px;}
.y3e{bottom:829.365000px;}
.y82{bottom:834.585000px;}
.y20{bottom:837.285000px;}
.y10a{bottom:839.445000px;}
.y3{bottom:840.699016px;}
.ye3{bottom:841.065000px;}
.y5b{bottom:850.065000px;}
.y109{bottom:856.725000px;}
.ye2{bottom:858.345000px;}
.y2{bottom:858.699016px;}
.yf4{bottom:858.705000px;}
.y3d{bottom:860.325000px;}
.ybb{bottom:861.990000px;}
.y81{bottom:865.590000px;}
.y108{bottom:874.050000px;}
.ye1{bottom:875.670000px;}
.y1f{bottom:877.650000px;}
.y5a{bottom:881.070000px;}
.y107{bottom:891.330000px;}
.y3c{bottom:891.510000px;}
.yf3{bottom:893.310000px;}
.ye0{bottom:893.670000px;}
.yba{bottom:896.370000px;}
.y80{bottom:896.730000px;}
.y106{bottom:908.610000px;}
.ydf{bottom:911.670000px;}
.y1e{bottom:912.210000px;}
.yb9{bottom:913.830000px;}
.y3b{bottom:922.470000px;}
.y105{bottom:926.610000px;}
.y7f{bottom:927.690000px;}
.yef{bottom:928.590000px;}
.yde{bottom:928.950000px;}
.y1{bottom:931.785016px;}
.yb8{bottom:935.430000px;}
.y59{bottom:943.170000px;}
.ydd{bottom:946.050000px;}
.y1d{bottom:953.610000px;}
.yb7{bottom:956.850000px;}
.y7e{bottom:958.830000px;}
.ydc{bottom:963.330000px;}
.y58{bottom:974.310000px;}
.yb6{bottom:977.550000px;}
.ydb{bottom:981.330000px;}
.y3a{bottom:984.570000px;}
.y79{bottom:985.740000px;}
.y104{bottom:986.730000px;}
.yb5{bottom:998.250000px;}
.yd4{bottom:999.330000px;}
.y1c{bottom:1002.930000px;}
.y57{bottom:1005.270000px;}
.yee{bottom:1015.170000px;}
.y39{bottom:1015.710000px;}
.yb4{bottom:1018.950000px;}
.y103{bottom:1027.230000px;}
.y56{bottom:1036.410000px;}
.yb3{bottom:1039.650000px;}
.y38{bottom:1046.670000px;}
.y13d{bottom:1048.830000px;}
.yed{bottom:1055.670000px;}
.y1b{bottom:1058.190000px;}
.yb1{bottom:1061.070000px;}
.y55{bottom:1067.370000px;}
.y13c{bottom:1071.150000px;}
.y37{bottom:1077.810000px;}
.yec{bottom:1084.110000px;}
.y54{bottom:1098.510000px;}
.y13b{bottom:1105.530000px;}
.y36{bottom:1108.770000px;}
.yeb{bottom:1112.550000px;}
.y1a{bottom:1113.450000px;}
.yd3{bottom:1120.650000px;}
.y19{bottom:1139.940000px;}
.yd2{bottom:1141.200000px;}
.h20{height:17.100000px;}
.h1f{height:17.280000px;}
.h21{height:17.316000px;}
.h18{height:20.520000px;}
.h16{height:20.700000px;}
.h23{height:34.380000px;}
.h25{height:34.560000px;}
.h24{height:34.596000px;}
.hb{height:38.158594px;}
.h12{height:40.886657px;}
.h2{height:45.000000px;}
.h10{height:46.501100px;}
.ha{height:47.344922px;}
.h1a{height:48.616875px;}
.h27{height:50.585625px;}
.h19{height:50.944922px;}
.h28{height:51.329531px;}
.h26{height:52.998047px;}
.h29{height:53.302500px;}
.h11{height:58.283431px;}
.hc{height:58.651172px;}
.h14{height:59.561344px;}
.h1e{height:60.226875px;}
.h3{height:62.818125px;}
.h1c{height:65.010937px;}
.h1b{height:66.757500px;}
.h2a{height:68.084282px;}
.h22{height:68.940000px;}
.hf{height:70.628906px;}
.h6{height:70.664062px;}
.h17{height:72.376875px;}
.h7{height:72.562500px;}
.h9{height:74.704922px;}
.h15{height:74.884922px;}
.h1{height:81.000000px;}
.h13{height:85.467931px;}
.h8{height:96.508125px;}
.h1d{height:103.500000px;}
.he{height:203.826552px;}
.hd{height:442.620733px;}
.h0{height:1063.500000px;}
.h4{height:1262.880000px;}
.h5{height:1263.000000px;}
.w18{width:17.820000px;}
.w5{width:45.000209px;}
.wa{width:48.276000px;}
.w17{width:49.536000px;}
.w19{width:49.680000px;}
.w1a{width:49.716000px;}
.w7{width:58.860000px;}
.wb{width:63.360000px;}
.w9{width:73.260000px;}
.w8{width:74.016000px;}
.wd{width:91.116000px;}
.we{width:92.700000px;}
.w1b{width:93.816000px;}
.w12{width:95.580000px;}
.w11{width:95.796000px;}
.w1e{width:96.120000px;}
.w13{width:106.416000px;}
.w10{width:116.820000px;}
.w14{width:117.036000px;}
.w16{width:121.320000px;}
.wf{width:125.136000px;}
.w1d{width:156.450000px;}
.w1c{width:168.330000px;}
.w6{width:195.150000px;}
.wc{width:206.850000px;}
.w1f{width:382.785000px;}
.w4{width:442.620733px;}
.w15{width:656.790000px;}
.w3{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:2.853647px;}
.xe{left:5.487816px;}
.x1a{left:8.100000px;}
.x20{left:9.360000px;}
.x4d{left:10.440000px;}
.x2d{left:11.520000px;}
.x28{left:12.780000px;}
.x23{left:15.300000px;}
.x34{left:17.325000px;}
.x1c{left:18.720000px;}
.x1e{left:19.800000px;}
.x25{left:21.060000px;}
.x24{left:23.040000px;}
.x50{left:24.705000px;}
.xd{left:26.195179px;}
.x43{left:27.360000px;}
.x26{left:28.620000px;}
.x2b{left:29.880000px;}
.x32{left:31.905000px;}
.x2c{left:33.120000px;}
.x3c{left:34.560000px;}
.x37{left:36.360000px;}
.x3b{left:38.520000px;}
.x3d{left:40.005000px;}
.x6{left:42.471252px;}
.x40{left:43.785000px;}
.x3e{left:45.360000px;}
.x33{left:46.845000px;}
.x53{left:48.060000px;}
.x2e{left:49.674000px;}
.x36{left:50.940000px;}
.x3a{left:53.145000px;}
.x3f{left:54.720000px;}
.x39{left:58.500000px;}
.x38{left:62.454000px;}
.x18{left:69.114000px;}
.x4c{left:71.280000px;}
.x57{left:72.714000px;}
.x4f{left:74.700000px;}
.x51{left:76.680000px;}
.x4e{left:81.540000px;}
.x2a{left:82.980000px;}
.x52{left:84.060000px;}
.x22{left:86.574000px;}
.x27{left:87.654000px;}
.x1{left:105.000000px;}
.x55{left:106.050000px;}
.x17{left:119.556000px;}
.x3{left:127.655987px;}
.x42{left:154.649987px;}
.x58{left:174.450000px;}
.x59{left:178.230000px;}
.x7{left:180.749987px;}
.x56{left:191.415000px;}
.x5{left:219.399991px;}
.x41{left:239.979000px;}
.x15{left:245.594987px;}
.x14{left:272.234987px;}
.xa{left:276.734987px;}
.x44{left:290.415000px;}
.x13{left:298.694987px;}
.x11{left:303.194987px;}
.x45{left:308.235000px;}
.x19{left:314.715000px;}
.x16{left:325.334987px;}
.x9{left:329.834987px;}
.x8{left:356.294987px;}
.x46{left:357.915000px;}
.x2f{left:361.515000px;}
.x54{left:372.315000px;}
.x1b{left:373.575000px;}
.x47{left:407.625000px;}
.xc{left:414.840000px;}
.x48{left:425.445000px;}
.xb{left:437.504987px;}
.x2{left:442.004987px;}
.x4{left:446.504987px;}
.x1d{left:447.585000px;}
.x30{left:457.305000px;}
.x10{left:459.824987px;}
.x12{left:473.144987px;}
.x49{left:475.125000px;}
.x1f{left:520.845000px;}
.x4a{left:524.805000px;}
.x31{left:552.885000px;}
.x21{left:569.130000px;}
.x29{left:612.690000px;}
.x4b{left:618.630000px;}
.x35{left:659.310000px;}
.x5c{left:693.329987px;}
.x5b{left:754.919987px;}
.x5a{left:765.539987px;}
@media print{
.v8{vertical-align:-73.600000pt;}
.v7{vertical-align:-29.440000pt;}
.v6{vertical-align:-24.320000pt;}
.vc{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.200000pt;}
.v5{vertical-align:5.120000pt;}
.v9{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:39.627799pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.007680pt;}
.ls20{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls27{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.117760pt;}
.ls28{letter-spacing:0.120533pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.158720pt;}
.ls25{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.161280pt;}
.ls26{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.239360pt;}
.ls21{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.257280pt;}
.ls2f{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.409067pt;}
.lsa{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.869333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.709932pt;}
.ls19{letter-spacing:1.841465pt;}
.ls13{letter-spacing:2.560000pt;}
.ls11{letter-spacing:4.480000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls2e{letter-spacing:8.960000pt;}
.ls6{letter-spacing:12.800000pt;}
.lsd{letter-spacing:21.760000pt;}
.ls15{letter-spacing:172.778667pt;}
.ws11{word-spacing:-17.280000pt;}
.ws14{word-spacing:-16.768000pt;}
.ws16{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws1a{word-spacing:-16.256000pt;}
.ws1c{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.999997pt;}
.wsb{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.616000pt;}
.wsc{word-spacing:-15.552000pt;}
.ws1b{word-spacing:-15.296000pt;}
.ws19{word-spacing:-15.168000pt;}
.ws12{word-spacing:-15.044769pt;}
.ws23{word-spacing:-14.991467pt;}
.ws24{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.773333pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws25{word-spacing:-14.149333pt;}
.ws20{word-spacing:-13.600000pt;}
.ws22{word-spacing:-13.440000pt;}
.ws26{word-spacing:-13.327360pt;}
.ws1e{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.185067pt;}
.ws18{word-spacing:-10.977280pt;}
.ws4{word-spacing:-10.881067pt;}
.ws7{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.240000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws21{word-spacing:-8.632320pt;}
.ws27{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:14.116407pt;}
.ws1{word-spacing:268.800000pt;}
.ws0{word-spacing:298.453333pt;}
._22{margin-left:-102.609583pt;}
._23{margin-left:-6.400000pt;}
._35{margin-left:-3.650560pt;}
._21{margin-left:-2.357333pt;}
._6{margin-left:-1.174187pt;}
._4{width:0.936320pt;}
._5{width:2.115413pt;}
._9{width:3.663147pt;}
._a{width:4.653013pt;}
._11{width:5.640320pt;}
._12{width:7.159680pt;}
._10{width:8.064000pt;}
._d{width:9.608107pt;}
._c{width:10.518187pt;}
._1c{width:11.417387pt;}
._e{width:12.352000pt;}
._13{width:13.738667pt;}
._f{width:14.762667pt;}
._7{width:15.880747pt;}
._8{width:17.126613pt;}
._1b{width:18.265173pt;}
._18{width:19.321387pt;}
._16{width:20.352000pt;}
._19{width:21.952000pt;}
._14{width:23.424000pt;}
._15{width:24.907520pt;}
._1a{width:26.038613pt;}
._b{width:27.562667pt;}
._2{width:28.640000pt;}
._17{width:29.562027pt;}
._26{width:31.045973pt;}
._33{width:32.662400pt;}
._34{width:33.724800pt;}
._32{width:34.624000pt;}
._30{width:36.416000pt;}
._31{width:37.440000pt;}
._2f{width:49.329493pt;}
._3{width:58.293333pt;}
._1{width:79.040000pt;}
._20{width:80.000853pt;}
._27{width:88.016640pt;}
._28{width:91.536640pt;}
._2a{width:105.796053pt;}
._29{width:116.944640pt;}
._0{width:132.320000pt;}
._25{width:135.225813pt;}
._2e{width:140.525227pt;}
._2c{width:144.263680pt;}
._2d{width:150.193493pt;}
._1e{width:155.882667pt;}
._2b{width:165.465813pt;}
._1d{width:172.778667pt;}
._1f{width:173.674667pt;}
._24{width:178.582400pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.049222pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs8{font-size:52.813214pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:58.200815pt;}
.fsb{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fs7{font-size:248.863122pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:2.880000pt;}
.yf6{bottom:2.920000pt;}
.yb2{bottom:3.520000pt;}
.yf8{bottom:4.160000pt;}
.y7c{bottom:4.363088pt;}
.y35{bottom:14.286038pt;}
.y7d{bottom:14.959272pt;}
.y7a{bottom:17.583359pt;}
.yf2{bottom:18.080000pt;}
.yd9{bottom:18.240000pt;}
.y100{bottom:18.266667pt;}
.yf5{bottom:18.280000pt;}
.y7b{bottom:30.443361pt;}
.yf1{bottom:33.440000pt;}
.yd8{bottom:33.600000pt;}
.yf0{bottom:48.800000pt;}
.yd7{bottom:48.960000pt;}
.y18{bottom:50.560000pt;}
.yd6{bottom:64.320000pt;}
.y17{bottom:68.992000pt;}
.yd5{bottom:79.520000pt;}
.y112{bottom:93.952000pt;}
.y78{bottom:102.432000pt;}
.y99{bottom:107.072000pt;}
.y33{bottom:108.512000pt;}
.yb0{bottom:111.552000pt;}
.y13a{bottom:119.392000pt;}
.y71{bottom:120.832000pt;}
.y53{bottom:126.272000pt;}
.y77{bottom:129.952000pt;}
.y98{bottom:134.586667pt;}
.y32{bottom:136.026667pt;}
.yaf{bottom:139.226667pt;}
.y113{bottom:144.026667pt;}
.y139{bottom:146.266667pt;}
.y70{bottom:148.346667pt;}
.y52{bottom:156.826667pt;}
.y76{bottom:157.626667pt;}
.y97{bottom:162.266667pt;}
.y31{bottom:163.706667pt;}
.yae{bottom:166.746667pt;}
.y125{bottom:169.946667pt;}
.y138{bottom:173.146667pt;}
.y6f{bottom:176.026667pt;}
.y75{bottom:185.146667pt;}
.y51{bottom:187.546667pt;}
.y96{bottom:189.786667pt;}
.y12f{bottom:190.426667pt;}
.y30{bottom:191.226667pt;}
.yad{bottom:194.426667pt;}
.y137{bottom:199.066667pt;}
.y6e{bottom:203.546667pt;}
.y124{bottom:203.866667pt;}
.y16{bottom:207.288005pt;}
.y74{bottom:212.826667pt;}
.y95{bottom:217.466667pt;}
.y12e{bottom:220.506667pt;}
.yd1{bottom:221.786667pt;}
.y50{bottom:221.946667pt;}
.y2f{bottom:228.026667pt;}
.y6d{bottom:231.066667pt;}
.y123{bottom:237.786667pt;}
.y15{bottom:239.288005pt;}
.y73{bottom:240.346667pt;}
.y94{bottom:244.986667pt;}
.yac{bottom:249.466667pt;}
.y12d{bottom:250.426667pt;}
.yd0{bottom:252.346667pt;}
.y14{bottom:255.288005pt;}
.y4f{bottom:258.746667pt;}
.y2e{bottom:264.826667pt;}
.y72{bottom:267.866667pt;}
.y13{bottom:271.288005pt;}
.y122{bottom:271.706667pt;}
.ycf{bottom:272.186667pt;}
.y93{bottom:272.666667pt;}
.yab{bottom:277.146667pt;}
.y12c{bottom:280.346667pt;}
.y6c{bottom:286.266667pt;}
.y12{bottom:287.288005pt;}
.y4e{bottom:295.586667pt;}
.yce{bottom:298.146667pt;}
.y92{bottom:300.226667pt;}
.y2d{bottom:301.666667pt;}
.y11{bottom:303.288005pt;}
.yaa{bottom:304.706667pt;}
.y121{bottom:305.666667pt;}
.y12b{bottom:310.466667pt;}
.y6b{bottom:313.986667pt;}
.y10{bottom:319.288005pt;}
.ycd{bottom:322.626667pt;}
.y4d{bottom:323.106667pt;}
.y91{bottom:327.906667pt;}
.ya9{bottom:332.386667pt;}
.y2c{bottom:338.466667pt;}
.y120{bottom:339.586667pt;}
.y6a{bottom:341.506667pt;}
.ycc{bottom:342.466667pt;}
.y12a{bottom:347.906667pt;}
.y4c{bottom:350.786667pt;}
.y90{bottom:355.426667pt;}
.ya8{bottom:359.906667pt;}
.ycb{bottom:362.306667pt;}
.yf{bottom:368.621338pt;}
.y69{bottom:369.186667pt;}
.y11f{bottom:373.506667pt;}
.y129{bottom:374.786667pt;}
.y2b{bottom:375.266667pt;}
.y4b{bottom:378.306667pt;}
.yca{bottom:382.146667pt;}
.y8f{bottom:383.106667pt;}
.ye{bottom:384.621338pt;}
.ya7{bottom:387.586667pt;}
.y68{bottom:396.706667pt;}
.y136{bottom:398.466667pt;}
.yd{bottom:400.621338pt;}
.y128{bottom:401.666667pt;}
.y34{bottom:403.129016pt;}
.y4a{bottom:405.986667pt;}
.y11e{bottom:407.426667pt;}
.y8e{bottom:410.626667pt;}
.y2a{bottom:412.066667pt;}
.ya6{bottom:415.106667pt;}
.yc9{bottom:417.986667pt;}
.y67{bottom:424.386667pt;}
.y135{bottom:428.386667pt;}
.y127{bottom:431.586667pt;}
.y49{bottom:433.506667pt;}
.y8d{bottom:438.306667pt;}
.y11d{bottom:441.346667pt;}
.ya5{bottom:442.786667pt;}
.yc8{bottom:448.546667pt;}
.y29{bottom:448.866667pt;}
.y66{bottom:451.906667pt;}
.y126{bottom:457.666667pt;}
.y134{bottom:458.306667pt;}
.yc{bottom:459.288014pt;}
.y48{bottom:461.186667pt;}
.y8c{bottom:465.826667pt;}
.y102{bottom:468.226667pt;}
.ya4{bottom:470.306667pt;}
.yc7{bottom:473.826667pt;}
.y65{bottom:479.586667pt;}
.y11c{bottom:481.506667pt;}
.y101{bottom:482.626667pt;}
.yb{bottom:484.621348pt;}
.y28{bottom:485.666667pt;}
.y47{bottom:488.706667pt;}
.y8b{bottom:493.506667pt;}
.y133{bottom:495.906667pt;}
.ya3{bottom:497.986667pt;}
.yc6{bottom:504.226667pt;}
.y64{bottom:507.106667pt;}
.y11b{bottom:508.386667pt;}
.ya{bottom:509.954681pt;}
.yff{bottom:513.986667pt;}
.y46{bottom:516.386667pt;}
.y8a{bottom:521.026667pt;}
.y27{bottom:522.466667pt;}
.y132{bottom:522.786667pt;}
.ya2{bottom:525.506667pt;}
.y117{bottom:526.786667pt;}
.y63{bottom:534.813333pt;}
.y11a{bottom:535.293333pt;}
.y45{bottom:543.933333pt;}
.yfe{bottom:545.373333pt;}
.y89{bottom:548.573333pt;}
.y131{bottom:549.693333pt;}
.yc5{bottom:550.333333pt;}
.y9{bottom:552.621348pt;}
.ya1{bottom:553.213333pt;}
.y26{bottom:555.613333pt;}
.y119{bottom:562.013333pt;}
.y62{bottom:562.333333pt;}
.y116{bottom:564.253333pt;}
.yc4{bottom:569.373333pt;}
.y44{bottom:571.613333pt;}
.y130{bottom:575.613333pt;}
.y88{bottom:576.253333pt;}
.yfd{bottom:576.733333pt;}
.y9c{bottom:577.693333pt;}
.ya0{bottom:580.733333pt;}
.yc3{bottom:588.573333pt;}
.y61{bottom:590.013333pt;}
.y25{bottom:590.813333pt;}
.y115{bottom:591.133333pt;}
.y118{bottom:592.093333pt;}
.y8{bottom:595.288014pt;}
.y43{bottom:599.133333pt;}
.y87{bottom:603.773333pt;}
.yc2{bottom:606.973333pt;}
.yfc{bottom:607.933333pt;}
.y9f{bottom:608.413333pt;}
.y111{bottom:609.213333pt;}
.yea{bottom:610.973333pt;}
.y10f{bottom:613.213333pt;}
.y114{bottom:614.013333pt;}
.y24{bottom:616.893333pt;}
.y60{bottom:617.533333pt;}
.y7{bottom:620.621348pt;}
.yc1{bottom:625.373333pt;}
.y42{bottom:626.813333pt;}
.y86{bottom:631.453333pt;}
.y9b{bottom:632.893333pt;}
.y9e{bottom:635.933333pt;}
.y110{bottom:636.093333pt;}
.yfb{bottom:639.293333pt;}
.ye9{bottom:639.933333pt;}
.y10e{bottom:642.013333pt;}
.yc0{bottom:643.773333pt;}
.y5f{bottom:645.213333pt;}
.y6{bottom:645.954681pt;}
.y23{bottom:652.253333pt;}
.y41{bottom:654.333333pt;}
.y85{bottom:658.973333pt;}
.ybf{bottom:662.013333pt;}
.ye8{bottom:669.693333pt;}
.yfa{bottom:670.653333pt;}
.y10d{bottom:670.973333pt;}
.y5e{bottom:672.733333pt;}
.y22{bottom:678.173333pt;}
.ybe{bottom:681.213333pt;}
.y40{bottom:682.013333pt;}
.ye7{bottom:685.053333pt;}
.y84{bottom:686.653333pt;}
.y9a{bottom:688.093333pt;}
.y5{bottom:695.288014pt;}
.y10c{bottom:699.773333pt;}
.ye6{bottom:700.253333pt;}
.y5d{bottom:700.413333pt;}
.yf9{bottom:702.013333pt;}
.y3f{bottom:709.533333pt;}
.y4{bottom:711.288014pt;}
.y21{bottom:713.533333pt;}
.y83{bottom:714.173333pt;}
.ye5{bottom:715.613333pt;}
.ybd{bottom:715.933333pt;}
.y9d{bottom:718.813333pt;}
.y5c{bottom:727.933333pt;}
.y10b{bottom:730.173333pt;}
.ye4{bottom:731.613333pt;}
.yf7{bottom:732.573333pt;}
.ybc{bottom:735.773333pt;}
.y3e{bottom:737.213333pt;}
.y82{bottom:741.853333pt;}
.y20{bottom:744.253333pt;}
.y10a{bottom:746.173333pt;}
.y3{bottom:747.288014pt;}
.ye3{bottom:747.613333pt;}
.y5b{bottom:755.613333pt;}
.y109{bottom:761.533333pt;}
.ye2{bottom:762.973333pt;}
.y2{bottom:763.288014pt;}
.yf4{bottom:763.293333pt;}
.y3d{bottom:764.733333pt;}
.ybb{bottom:766.213333pt;}
.y81{bottom:769.413333pt;}
.y108{bottom:776.933333pt;}
.ye1{bottom:778.373333pt;}
.y1f{bottom:780.133333pt;}
.y5a{bottom:783.173333pt;}
.y107{bottom:792.293333pt;}
.y3c{bottom:792.453333pt;}
.yf3{bottom:794.053333pt;}
.ye0{bottom:794.373333pt;}
.yba{bottom:796.773333pt;}
.y80{bottom:797.093333pt;}
.y106{bottom:807.653333pt;}
.ydf{bottom:810.373333pt;}
.y1e{bottom:810.853333pt;}
.yb9{bottom:812.293333pt;}
.y3b{bottom:819.973333pt;}
.y105{bottom:823.653333pt;}
.y7f{bottom:824.613333pt;}
.yef{bottom:825.413333pt;}
.yde{bottom:825.733333pt;}
.y1{bottom:828.253348pt;}
.yb8{bottom:831.493333pt;}
.y59{bottom:838.373333pt;}
.ydd{bottom:840.933333pt;}
.y1d{bottom:847.653333pt;}
.yb7{bottom:850.533333pt;}
.y7e{bottom:852.293333pt;}
.ydc{bottom:856.293333pt;}
.y58{bottom:866.053333pt;}
.yb6{bottom:868.933333pt;}
.ydb{bottom:872.293333pt;}
.y3a{bottom:875.173333pt;}
.y79{bottom:876.213333pt;}
.y104{bottom:877.093333pt;}
.yb5{bottom:887.333333pt;}
.yd4{bottom:888.293333pt;}
.y1c{bottom:891.493333pt;}
.y57{bottom:893.573333pt;}
.yee{bottom:902.373333pt;}
.y39{bottom:902.853333pt;}
.yb4{bottom:905.733333pt;}
.y103{bottom:913.093333pt;}
.y56{bottom:921.253333pt;}
.yb3{bottom:924.133333pt;}
.y38{bottom:930.373333pt;}
.y13d{bottom:932.293333pt;}
.yed{bottom:938.373333pt;}
.y1b{bottom:940.613333pt;}
.yb1{bottom:943.173333pt;}
.y55{bottom:948.773333pt;}
.y13c{bottom:952.133333pt;}
.y37{bottom:958.053333pt;}
.yec{bottom:963.653333pt;}
.y54{bottom:976.453333pt;}
.y13b{bottom:982.693333pt;}
.y36{bottom:985.573333pt;}
.yeb{bottom:988.933333pt;}
.y1a{bottom:989.733333pt;}
.yd3{bottom:996.133333pt;}
.y19{bottom:1013.280000pt;}
.yd2{bottom:1014.400000pt;}
.h20{height:15.200000pt;}
.h1f{height:15.360000pt;}
.h21{height:15.392000pt;}
.h18{height:18.240000pt;}
.h16{height:18.400000pt;}
.h23{height:30.560000pt;}
.h25{height:30.720000pt;}
.h24{height:30.752000pt;}
.hb{height:33.918750pt;}
.h12{height:36.343695pt;}
.h2{height:40.000000pt;}
.h10{height:41.334311pt;}
.ha{height:42.084375pt;}
.h1a{height:43.215000pt;}
.h27{height:44.965000pt;}
.h19{height:45.284375pt;}
.h28{height:45.626250pt;}
.h26{height:47.109375pt;}
.h29{height:47.380000pt;}
.h11{height:51.807494pt;}
.hc{height:52.134375pt;}
.h14{height:52.943417pt;}
.h1e{height:53.535000pt;}
.h3{height:55.838333pt;}
.h1c{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h2a{height:60.519362pt;}
.h22{height:61.280000pt;}
.hf{height:62.781250pt;}
.h6{height:62.812500pt;}
.h17{height:64.335000pt;}
.h7{height:64.500000pt;}
.h9{height:66.404375pt;}
.h15{height:66.564375pt;}
.h1{height:72.000000pt;}
.h13{height:75.971494pt;}
.h8{height:85.785000pt;}
.h1d{height:92.000000pt;}
.he{height:181.179157pt;}
.hd{height:393.440652pt;}
.h0{height:945.333333pt;}
.h4{height:1122.560000pt;}
.h5{height:1122.666667pt;}
.w18{width:15.840000pt;}
.w5{width:40.000186pt;}
.wa{width:42.912000pt;}
.w17{width:44.032000pt;}
.w19{width:44.160000pt;}
.w1a{width:44.192000pt;}
.w7{width:52.320000pt;}
.wb{width:56.320000pt;}
.w9{width:65.120000pt;}
.w8{width:65.792000pt;}
.wd{width:80.992000pt;}
.we{width:82.400000pt;}
.w1b{width:83.392000pt;}
.w12{width:84.960000pt;}
.w11{width:85.152000pt;}
.w1e{width:85.440000pt;}
.w13{width:94.592000pt;}
.w10{width:103.840000pt;}
.w14{width:104.032000pt;}
.w16{width:107.840000pt;}
.wf{width:111.232000pt;}
.w1d{width:139.066667pt;}
.w1c{width:149.626667pt;}
.w6{width:173.466667pt;}
.wc{width:183.866667pt;}
.w1f{width:340.253333pt;}
.w4{width:393.440652pt;}
.w15{width:583.813333pt;}
.w3{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:2.536575pt;}
.xe{left:4.878059pt;}
.x1a{left:7.200000pt;}
.x20{left:8.320000pt;}
.x4d{left:9.280000pt;}
.x2d{left:10.240000pt;}
.x28{left:11.360000pt;}
.x23{left:13.600000pt;}
.x34{left:15.400000pt;}
.x1c{left:16.640000pt;}
.x1e{left:17.600000pt;}
.x25{left:18.720000pt;}
.x24{left:20.480000pt;}
.x50{left:21.960000pt;}
.xd{left:23.284604pt;}
.x43{left:24.320000pt;}
.x26{left:25.440000pt;}
.x2b{left:26.560000pt;}
.x32{left:28.360000pt;}
.x2c{left:29.440000pt;}
.x3c{left:30.720000pt;}
.x37{left:32.320000pt;}
.x3b{left:34.240000pt;}
.x3d{left:35.560000pt;}
.x6{left:37.752224pt;}
.x40{left:38.920000pt;}
.x3e{left:40.320000pt;}
.x33{left:41.640000pt;}
.x53{left:42.720000pt;}
.x2e{left:44.154667pt;}
.x36{left:45.280000pt;}
.x3a{left:47.240000pt;}
.x3f{left:48.640000pt;}
.x39{left:52.000000pt;}
.x38{left:55.514667pt;}
.x18{left:61.434667pt;}
.x4c{left:63.360000pt;}
.x57{left:64.634667pt;}
.x4f{left:66.400000pt;}
.x51{left:68.160000pt;}
.x4e{left:72.480000pt;}
.x2a{left:73.760000pt;}
.x52{left:74.720000pt;}
.x22{left:76.954667pt;}
.x27{left:77.914667pt;}
.x1{left:93.333333pt;}
.x55{left:94.266667pt;}
.x17{left:106.272000pt;}
.x3{left:113.471988pt;}
.x42{left:137.466655pt;}
.x58{left:155.066667pt;}
.x59{left:158.426667pt;}
.x7{left:160.666655pt;}
.x56{left:170.146667pt;}
.x5{left:195.022214pt;}
.x41{left:213.314667pt;}
.x15{left:218.306655pt;}
.x14{left:241.986655pt;}
.xa{left:245.986655pt;}
.x44{left:258.146667pt;}
.x13{left:265.506655pt;}
.x11{left:269.506655pt;}
.x45{left:273.986667pt;}
.x19{left:279.746667pt;}
.x16{left:289.186655pt;}
.x9{left:293.186655pt;}
.x8{left:316.706655pt;}
.x46{left:318.146667pt;}
.x2f{left:321.346667pt;}
.x54{left:330.946667pt;}
.x1b{left:332.066667pt;}
.x47{left:362.333333pt;}
.xc{left:368.746667pt;}
.x48{left:378.173333pt;}
.xb{left:388.893322pt;}
.x2{left:392.893322pt;}
.x4{left:396.893322pt;}
.x1d{left:397.853333pt;}
.x30{left:406.493333pt;}
.x10{left:408.733322pt;}
.x12{left:420.573322pt;}
.x49{left:422.333333pt;}
.x1f{left:462.973333pt;}
.x4a{left:466.493333pt;}
.x31{left:491.453333pt;}
.x21{left:505.893333pt;}
.x29{left:544.613333pt;}
.x4b{left:549.893333pt;}
.x35{left:586.053333pt;}
.x5c{left:616.293322pt;}
.x5b{left:671.039988pt;}
.x5a{left:680.479988pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  