
    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_44549893ce7541bc8aaadbb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_888c10150078f5b941b93ccc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_14f1bbc6a4098b05da37b078.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_48531106a4f73e3aa8296968.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_d39d1c57decfd0eb3574eea9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_890c90fa1c648746d51c6cf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_b12dcbbf76e3098637a9a5a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_1943aaca4ccb3ec049714d64.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_cad8c9ae5f4c157b83d4a136.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748000;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_f60a557836b537a179d5b904.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;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_c2bde441686c41ab3b4d2d80.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_73485f86d48aea764e7bf750.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_7bcb8e346166cc17e411438f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_a1ca169bb99fc2e4b02f4cc6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_26e6729b2beaea649ede9af4.woff2')format("woff");}.fff{font-family:fff;line-height:0.736000;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_4c57e927a304c2706e482a9b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_4654ec8ba09d35dc569f9fb7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.898000;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_f1cb3ef2032e92f6a4d94778.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_485112fa2f605b31c13c5eef.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.734000;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_988fb24213df33a214c9fdaa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.685000;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_732237bc55fbbd033dfcdab9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.736000;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_fdc7208555a3ff04e93f3497.woff2')format("woff");}.ff16{font-family:ff16;line-height:2.399000;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_1ad5173c73e73e738b547422.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.704000;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_42b8df82e40e0622a552eb85.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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_1cc6b2cd275ca19b38b6f676.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.683000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v3{vertical-align:-22.854000px;}
.v9{vertical-align:-18.570000px;}
.vc{vertical-align:-17.304000px;}
.v2{vertical-align:-12.912000px;}
.v4{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v6{vertical-align:16.182000px;}
.v5{vertical-align:27.024000px;}
.vd{vertical-align:33.618000px;}
.v8{vertical-align:35.076000px;}
.v7{vertical-align:44.898000px;}
.va{vertical-align:85.704000px;}
.vb{vertical-align:130.602000px;}
.ls2{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000810px;}
.ls5{letter-spacing:0.001590px;}
.ls2c{letter-spacing:0.001593px;}
.ls4{letter-spacing:0.002137px;}
.lsa{letter-spacing:0.002147px;}
.ls1a{letter-spacing:0.002613px;}
.ls3a{letter-spacing:0.002690px;}
.ls16{letter-spacing:0.002700px;}
.ls20{letter-spacing:0.003181px;}
.ls1f{letter-spacing:0.003239px;}
.ls38{letter-spacing:0.011915px;}
.ls42{letter-spacing:0.012888px;}
.lsd{letter-spacing:0.016745px;}
.ls15{letter-spacing:0.020540px;}
.ls28{letter-spacing:0.020719px;}
.ls46{letter-spacing:0.024974px;}
.ls4b{letter-spacing:0.027601px;}
.ls14{letter-spacing:0.031228px;}
.ls10{letter-spacing:0.327273px;}
.ls11{letter-spacing:1.813576px;}
.ls4d{letter-spacing:1.819576px;}
.ls40{letter-spacing:2.487275px;}
.ls4f{letter-spacing:2.984915px;}
.ls22{letter-spacing:2.988103px;}
.ls9{letter-spacing:2.989739px;}
.ls29{letter-spacing:2.992362px;}
.ls8{letter-spacing:5.808810px;}
.lsf{letter-spacing:5.814810px;}
.ls33{letter-spacing:5.976248px;}
.ls31{letter-spacing:5.982248px;}
.ls45{letter-spacing:6.395989px;}
.ls4e{letter-spacing:6.715739px;}
.ls12{letter-spacing:6.721739px;}
.ls41{letter-spacing:7.003642px;}
.ls21{letter-spacing:7.043428px;}
.ls1c{letter-spacing:7.069097px;}
.ls3b{letter-spacing:7.173181px;}
.ls1b{letter-spacing:8.301329px;}
.ls23{letter-spacing:10.905181px;}
.ls2d{letter-spacing:10.930918px;}
.ls37{letter-spacing:14.530921px;}
.ls2b{letter-spacing:16.716810px;}
.ls30{letter-spacing:16.884532px;}
.ls32{letter-spacing:16.890532px;}
.lse{letter-spacing:18.196379px;}
.ls36{letter-spacing:20.358810px;}
.ls17{letter-spacing:21.169739px;}
.ls3{letter-spacing:21.419468px;}
.ls1e{letter-spacing:21.861836px;}
.ls26{letter-spacing:23.170928px;}
.ls7{letter-spacing:23.994810px;}
.ls3f{letter-spacing:24.805739px;}
.ls6{letter-spacing:27.630810px;}
.lsc{letter-spacing:29.650934px;}
.ls3e{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls4a{letter-spacing:36.327303px;}
.ls35{letter-spacing:42.174810px;}
.ls3c{letter-spacing:102.268326px;}
.ls2a{letter-spacing:142.385479px;}
.ls47{letter-spacing:159.780179px;}
.ls49{letter-spacing:195.346661px;}
.ls27{letter-spacing:256.975304px;}
.ls0{letter-spacing:345.347589px;}
.ls48{letter-spacing:523.723708px;}
.ls4c{letter-spacing:536.465902px;}
.ls43{letter-spacing:601.658683px;}
.ls44{letter-spacing:644.302362px;}
.ls3d{letter-spacing:658.931458px;}
.ls24{letter-spacing:701.018766px;}
.ls34{letter-spacing:734.007884px;}
.ls1d{letter-spacing:870.480725px;}
.ls2e{letter-spacing:909.033485px;}
.ls19{letter-spacing:925.135316px;}
.ls39{letter-spacing:972.458992px;}
.ls18{letter-spacing:1002.764472px;}
.ls25{letter-spacing:1044.262688px;}
.ls50{letter-spacing:1050.153602px;}
.lsb{letter-spacing:1050.264810px;}
.ls13{letter-spacing:1073.979077px;}
.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;}
}
.ws26{word-spacing:-65.454600px;}
.ws4a{word-spacing:-54.523682px;}
.ws27{word-spacing:-47.258221px;}
.ws25{word-spacing:-42.637126px;}
.ws54{word-spacing:-38.937826px;}
.ws3b{word-spacing:-36.379667px;}
.ws2a{word-spacing:-32.727300px;}
.ws30{word-spacing:-31.706208px;}
.ws12{word-spacing:-29.887800px;}
.ws4d{word-spacing:-29.061842px;}
.ws18{word-spacing:-27.646998px;}
.ws4e{word-spacing:-18.183288px;}
.ws63{word-spacing:-17.214560px;}
.ws55{word-spacing:-16.605662px;}
.ws45{word-spacing:-16.429105px;}
.ws51{word-spacing:-16.232741px;}
.ws0{word-spacing:-16.139475px;}
.ws3a{word-spacing:-14.989103px;}
.ws33{word-spacing:-14.465467px;}
.wsc{word-spacing:-14.346144px;}
.ws5d{word-spacing:-14.138194px;}
.ws28{word-spacing:-14.111859px;}
.ws68{word-spacing:-13.941830px;}
.ws1c{word-spacing:-13.810921px;}
.ws3{word-spacing:-13.449600px;}
.ws34{word-spacing:-13.418193px;}
.ws35{word-spacing:-13.352738px;}
.ws6e{word-spacing:-12.971305px;}
.ws6c{word-spacing:-12.829102px;}
.ws60{word-spacing:-12.632738px;}
.ws67{word-spacing:-12.501829px;}
.ws1f{word-spacing:-12.305465px;}
.ws70{word-spacing:-12.253998px;}
.ws2b{word-spacing:-12.240010px;}
.ws61{word-spacing:-12.174556px;}
.ws31{word-spacing:-12.043646px;}
.ws6f{word-spacing:-11.841546px;}
.ws24{word-spacing:-11.476915px;}
.ws4c{word-spacing:-11.454555px;}
.ws69{word-spacing:-11.417140px;}
.ws50{word-spacing:-11.389100px;}
.ws57{word-spacing:-11.323646px;}
.ws49{word-spacing:-11.258191px;}
.ws32{word-spacing:-11.237813px;}
.ws3e{word-spacing:-11.192737px;}
.ws22{word-spacing:-11.127282px;}
.ws2f{word-spacing:-11.061827px;}
.ws36{word-spacing:-10.996373px;}
.ws15{word-spacing:-10.930918px;}
.ws17{word-spacing:-10.865464px;}
.ws21{word-spacing:-10.800009px;}
.ws3d{word-spacing:-10.734554px;}
.ws1d{word-spacing:-10.669100px;}
.ws72{word-spacing:-10.646034px;}
.ws6{word-spacing:-10.635944px;}
.ws2c{word-spacing:-10.603645px;}
.ws2d{word-spacing:-10.538191px;}
.ws2e{word-spacing:-10.472736px;}
.ws11{word-spacing:-10.341179px;}
.wse{word-spacing:-10.221628px;}
.wsd{word-spacing:-10.161852px;}
.ws1e{word-spacing:-10.145463px;}
.ws4{word-spacing:-9.982525px;}
.ws6b{word-spacing:-9.949099px;}
.ws43{word-spacing:-9.922750px;}
.ws10{word-spacing:-9.803198px;}
.ws5f{word-spacing:-9.752735px;}
.ws62{word-spacing:-9.687281px;}
.wsf{word-spacing:-9.683647px;}
.ws3c{word-spacing:-9.556372px;}
.ws14{word-spacing:-9.425462px;}
.ws71{word-spacing:-9.390747px;}
.ws7{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws6d{word-spacing:-9.151644px;}
.ws42{word-spacing:-8.901826px;}
.ws73{word-spacing:-8.852766px;}
.ws5b{word-spacing:-8.574553px;}
.ws44{word-spacing:-8.116370px;}
.ws64{word-spacing:-8.050916px;}
.ws20{word-spacing:-7.985461px;}
.ws39{word-spacing:-7.418817px;}
.ws56{word-spacing:-7.396370px;}
.ws37{word-spacing:-7.252370px;}
.ws5e{word-spacing:-7.134551px;}
.ws13{word-spacing:-6.610915px;}
.ws5a{word-spacing:-6.545460px;}
.ws1b{word-spacing:-6.021823px;}
.ws16{word-spacing:-5.825459px;}
.ws48{word-spacing:-5.498186px;}
.ws46{word-spacing:-5.432732px;}
.ws5c{word-spacing:-5.367277px;}
.ws6a{word-spacing:-5.105459px;}
.wsb{word-spacing:-5.027128px;}
.ws66{word-spacing:-4.581822px;}
.ws47{word-spacing:-3.992731px;}
.ws41{word-spacing:-3.861821px;}
.ws40{word-spacing:-3.665458px;}
.ws52{word-spacing:-3.652367px;}
.ws23{word-spacing:-3.207275px;}
.ws65{word-spacing:-3.010912px;}
.ws53{word-spacing:-2.618184px;}
.ws2{word-spacing:-0.086077px;}
.ws4f{word-spacing:-0.059776px;}
.ws4b{word-spacing:-0.052364px;}
.ws8{word-spacing:0.000000px;}
.ws29{word-spacing:0.013091px;}
.ws9{word-spacing:2.683639px;}
.ws3f{word-spacing:3.416730px;}
.ws58{word-spacing:5.939985px;}
.ws38{word-spacing:6.264444px;}
.wsa{word-spacing:11.429123px;}
.ws59{word-spacing:18.209470px;}
.ws1{word-spacing:23.312640px;}
.ws1a{word-spacing:34.370970px;}
.ws19{word-spacing:2278.218812px;}
._31{margin-left:-18.199140px;}
._3{margin-left:-10.759650px;}
._1{margin-left:-8.091257px;}
._4{margin-left:-5.881958px;}
._8{margin-left:-3.890165px;}
._2{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._7{width:1.420285px;}
._0{width:2.668393px;}
._3c{width:4.045732px;}
._30{width:7.174310px;}
._38{width:10.911543px;}
._37{width:17.766892px;}
._5{width:20.959727px;}
._2d{width:22.837369px;}
._35{width:24.163672px;}
._a{width:25.543261px;}
._9{width:26.659918px;}
._b{width:27.682091px;}
._20{width:29.096645px;}
._45{width:30.128832px;}
._2e{width:31.136677px;}
._2c{width:32.952339px;}
._3e{width:34.161015px;}
._32{width:35.738212px;}
._3d{width:37.132474px;}
._36{width:38.758086px;}
._39{width:55.337812px;}
._2f{width:69.234474px;}
._42{width:86.354233px;}
._34{width:147.600286px;}
._43{width:158.960078px;}
._33{width:187.006735px;}
._40{width:315.629497px;}
._3f{width:324.007702px;}
._3a{width:377.760283px;}
._44{width:386.009316px;}
._41{width:421.611636px;}
._3b{width:536.584052px;}
._17{width:701.158455px;}
._11{width:823.145191px;}
._21{width:1037.075780px;}
._26{width:1107.341031px;}
._1f{width:1208.392173px;}
._15{width:1223.270083px;}
._1e{width:1240.726745px;}
._19{width:1286.219494px;}
._18{width:1313.462033px;}
._25{width:1330.131091px;}
._2a{width:1339.528210px;}
._13{width:1392.785872px;}
._e{width:1421.935551px;}
._2b{width:1461.830587px;}
._1b{width:1503.985147px;}
._1a{width:1508.418664px;}
._28{width:1524.614102px;}
._14{width:1569.142946px;}
._f{width:1579.801289px;}
._12{width:1655.379839px;}
._22{width:1666.820946px;}
._d{width:1719.832534px;}
._24{width:1814.008605px;}
._10{width:1878.330761px;}
._1d{width:1884.961391px;}
._27{width:1904.530187px;}
._23{width:1929.778076px;}
._1c{width:1950.854458px;}
._16{width:1962.505376px;}
._29{width:2015.514647px;}
._c{width:2286.767644px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y47{bottom:160.314000px;}
.y2b{bottom:173.425500px;}
.y46{bottom:190.800000px;}
.y60{bottom:197.871000px;}
.ye2{bottom:204.358500px;}
.y76{bottom:207.208500px;}
.y2a{bottom:211.930500px;}
.y45{bottom:221.286000px;}
.y5f{bottom:228.357000px;}
.ya3{bottom:230.896500px;}
.ycc{bottom:241.701000px;}
.ya2{bottom:242.121000px;}
.y29{bottom:242.416500px;}
.yb9{bottom:242.545500px;}
.yf9{bottom:242.992500px;}
.y8e{bottom:245.110500px;}
.ye1{bottom:245.632500px;}
.y44{bottom:252.495000px;}
.y10d{bottom:254.461500px;}
.y75{bottom:258.954000px;}
.y5e{bottom:263.362500px;}
.y5d{bottom:267.408000px;}
.yd{bottom:273.297000px;}
.ye0{bottom:276.118500px;}
.y8d{bottom:280.510500px;}
.y43{bottom:282.981000px;}
.y10c{bottom:284.946000px;}
.y28{bottom:289.266000px;}
.ycb{bottom:292.602000px;}
.ya1{bottom:293.443500px;}
.yc{bottom:300.943500px;}
.y5c{bottom:306.459000px;}
.yf8{bottom:306.460500px;}
.ydf{bottom:306.604500px;}
.y8c{bottom:307.410000px;}
.y42{bottom:313.467000px;}
.y10b{bottom:315.432000px;}
.y27{bottom:319.750500px;}
.y74{bottom:319.864500px;}
.yca{bottom:323.088000px;}
.yb8{bottom:323.293500px;}
.ya0{bottom:323.929500px;}
.yb{bottom:328.588500px;}
.y8b{bottom:334.309500px;}
.yf7{bottom:336.945000px;}
.y41{bottom:343.951500px;}
.y26{bottom:350.236500px;}
.yc9{bottom:353.574000px;}
.y73{bottom:355.534500px;}
.ya{bottom:356.235000px;}
.y5b{bottom:358.204500px;}
.yde{bottom:358.350000px;}
.yb7{bottom:358.695000px;}
.y8a{bottom:361.207500px;}
.y10a{bottom:367.177500px;}
.yf6{bottom:367.431000px;}
.y9f{bottom:375.250500px;}
.y72{bottom:377.830500px;}
.y25{bottom:380.722500px;}
.yb6{bottom:385.593000px;}
.y89{bottom:388.705500px;}
.y40{bottom:396.421500px;}
.yf5{bottom:398.364000px;}
.yc8{bottom:406.644000px;}
.y24{bottom:411.208500px;}
.yb5{bottom:412.492500px;}
.y71{bottom:413.655000px;}
.y5a{bottom:417.883500px;}
.y9e{bottom:426.573000px;}
.y109{bottom:427.216500px;}
.yf4{bottom:428.850000px;}
.yb4{bottom:439.392000px;}
.ydd{bottom:439.752000px;}
.y23{bottom:441.694500px;}
.y70{bottom:444.139500px;}
.y59{bottom:448.368000px;}
.y88{bottom:453.133500px;}
.y9d{bottom:457.057500px;}
.y108{bottom:457.702500px;}
.yf3{bottom:459.334500px;}
.y3f{bottom:461.473500px;}
.yb3{bottom:466.291500px;}
.yc7{bottom:475.135500px;}
.ydc{bottom:475.152000px;}
.y58{bottom:478.854000px;}
.y6f{bottom:479.811000px;}
.y22{bottom:488.544000px;}
.yf2{bottom:489.820500px;}
.y9{bottom:491.260500px;}
.yb2{bottom:493.788000px;}
.y107{bottom:495.003000px;}
.y106{bottom:499.048500px;}
.ydb{bottom:502.051500px;}
.y6e{bottom:502.105500px;}
.yc6{bottom:505.621500px;}
.y57{bottom:509.340000px;}
.y3e{bottom:509.769000px;}
.y9c{bottom:510.270000px;}
.y87{bottom:514.027500px;}
.y21{bottom:519.028500px;}
.yf1{bottom:520.306500px;}
.yda{bottom:528.951000px;}
.y6d{bottom:537.930000px;}
.y105{bottom:540.394500px;}
.y8{bottom:543.672000px;}
.y86{bottom:544.513500px;}
.y20{bottom:549.514500px;}
.yb1{bottom:555.003000px;}
.yd9{bottom:555.850500px;}
.yc5{bottom:557.679000px;}
.y3d{bottom:558.066000px;}
.y56{bottom:561.085500px;}
.y6c{bottom:568.416000px;}
.y7{bottom:570.570000px;}
.y104{bottom:570.880500px;}
.yf0{bottom:572.499000px;}
.y85{bottom:574.999500px;}
.y9b{bottom:579.561000px;}
.y1f{bottom:580.000500px;}
.yd8{bottom:582.748500px;}
.y6{bottom:597.469500px;}
.y84{bottom:605.485500px;}
.y3c{bottom:606.363000px;}
.yc4{bottom:609.736500px;}
.yd7{bottom:610.246500px;}
.yb0{bottom:615.141000px;}
.y6b{bottom:620.161500px;}
.y55{bottom:620.763000px;}
.y103{bottom:622.626000px;}
.y1e{bottom:626.850000px;}
.y9a{bottom:630.883500px;}
.yef{bottom:635.967000px;}
.y3b{bottom:637.573500px;}
.yaf{bottom:645.625500px;}
.y54{bottom:651.249000px;}
.y83{bottom:657.231000px;}
.yc3{bottom:661.795500px;}
.yee{bottom:666.451500px;}
.y3a{bottom:668.782500px;}
.yd6{bottom:671.989500px;}
.yae{bottom:676.111500px;}
.y1d{bottom:678.595500px;}
.y6a{bottom:681.072000px;}
.y99{bottom:682.204500px;}
.y102{bottom:682.665000px;}
.y53{bottom:688.806000px;}
.yed{bottom:696.937500px;}
.y39{bottom:699.991500px;}
.y69{bottom:711.556500px;}
.y101{bottom:713.149500px;}
.yc2{bottom:713.853000px;}
.yad{bottom:718.087500px;}
.y82{bottom:718.125000px;}
.yec{bottom:727.423500px;}
.y52{bottom:727.857000px;}
.y38{bottom:731.202000px;}
.yd5{bottom:732.252000px;}
.y98{bottom:733.527000px;}
.y1c{bottom:739.243500px;}
.y68{bottom:742.042500px;}
.yc1{bottom:744.339000px;}
.y5{bottom:748.551000px;}
.y81{bottom:748.611000px;}
.y100{bottom:753.001500px;}
.yeb{bottom:758.356500px;}
.yac{bottom:760.063500px;}
.yd4{bottom:762.738000px;}
.y51{bottom:766.908000px;}
.y1b{bottom:769.729500px;}
.y67{bottom:772.528500px;}
.yc0{bottom:774.825000px;}
.y80{bottom:779.097000px;}
.y37{bottom:779.499000px;}
.y97{bottom:784.848000px;}
.yea{bottom:788.841000px;}
.yab{bottom:790.548000px;}
.yd3{bottom:793.224000px;}
.yff{bottom:796.572000px;}
.y50{bottom:797.394000px;}
.y7f{bottom:809.583000px;}
.y36{bottom:810.708000px;}
.y96{bottom:815.334000px;}
.ye9{bottom:819.327000px;}
.yd2{bottom:823.708500px;}
.y66{bottom:824.274000px;}
.y1a{bottom:827.113500px;}
.ybf{bottom:827.895000px;}
.yfe{bottom:840.142500px;}
.y35{bottom:841.917000px;}
.yaa{bottom:842.293500px;}
.y95{bottom:845.820000px;}
.y4f{bottom:849.139500px;}
.ye8{bottom:849.813000px;}
.y19{bottom:854.013000px;}
.yd1{bottom:854.194500px;}
.y7e{bottom:861.328500px;}
.y116{bottom:870.900000px;}
.y34{bottom:873.127500px;}
.y65{bottom:874.981500px;}
.ye7{bottom:880.299000px;}
.y18{bottom:880.912500px;}
.yfd{bottom:883.713000px;}
.ybe{bottom:896.386500px;}
.y4e{bottom:897.298500px;}
.y115{bottom:897.798000px;}
.y94{bottom:899.031000px;}
.y64{bottom:901.879500px;}
.ya9{bottom:902.431500px;}
.y4{bottom:902.547000px;}
.y33{bottom:904.336500px;}
.yd0{bottom:905.940000px;}
.y17{bottom:907.810500px;}
.y7d{bottom:922.222500px;}
.y114{bottom:924.697500px;}
.ybd{bottom:926.872500px;}
.yfc{bottom:927.283500px;}
.ye6{bottom:932.491500px;}
.ya8{bottom:932.917500px;}
.y3{bottom:933.928500px;}
.y16{bottom:934.710000px;}
.y32{bottom:935.545500px;}
.y113{bottom:951.597000px;}
.y63{bottom:952.207500px;}
.y4d{bottom:956.976000px;}
.ybc{bottom:957.357000px;}
.y7c{bottom:957.793500px;}
.y15{bottom:961.609500px;}
.ycf{bottom:966.202500px;}
.y31{bottom:966.756000px;}
.yfb{bottom:967.135500px;}
.y93{bottom:968.323500px;}
.ya7{bottom:973.398000px;}
.y112{bottom:978.496500px;}
.y7b{bottom:980.088000px;}
.ye5{bottom:981.096000px;}
.y4c{bottom:987.462000px;}
.ybb{bottom:987.843000px;}
.y14{bottom:988.509000px;}
.yce{bottom:996.688500px;}
.y92{bottom:998.809500px;}
.y2{bottom:999.790500px;}
.y111{bottom:1005.394500px;}
.y30{bottom:1015.053000px;}
.y7a{bottom:1015.813500px;}
.ya6{bottom:1017.178500px;}
.y4b{bottom:1017.948000px;}
.yfa{bottom:1018.881000px;}
.ycd{bottom:1027.174500px;}
.y13{bottom:1027.213500px;}
.y91{bottom:1029.294000px;}
.y110{bottom:1032.294000px;}
.y12{bottom:1032.636000px;}
.y1{bottom:1040.139000px;}
.yba{bottom:1040.914500px;}
.ye4{bottom:1044.564000px;}
.y62{bottom:1045.708500px;}
.y2f{bottom:1046.262000px;}
.y79{bottom:1046.299500px;}
.y4a{bottom:1048.434000px;}
.ya5{bottom:1057.659000px;}
.y10f{bottom:1059.193500px;}
.y10{bottom:1059.342000px;}
.y90{bottom:1059.780000px;}
.y11{bottom:1065.280500px;}
.y2e{bottom:1077.471000px;}
.y49{bottom:1078.920000px;}
.y78{bottom:1081.870500px;}
.y10e{bottom:1086.093000px;}
.ya4{bottom:1088.145000px;}
.ye3{bottom:1092.228000px;}
.y77{bottom:1104.165000px;}
.yf{bottom:1108.509000px;}
.y2d{bottom:1108.681500px;}
.y48{bottom:1109.404500px;}
.y8f{bottom:1112.991000px;}
.y61{bottom:1138.962000px;}
.ye{bottom:1139.890500px;}
.y2c{bottom:1192.194000px;}
.hd{height:16.677504px;}
.hb{height:28.578632px;}
.ha{height:33.187496px;}
.h8{height:37.927872px;}
.h7{height:40.348800px;}
.hc{height:42.799330px;}
.h6{height:44.831700px;}
.h9{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.he{height:60.211496px;}
.h2{height:60.254040px;}
.hf{height:65.272950px;}
.h4{height:67.226503px;}
.h13{height:93.370950px;}
.h10{height:93.988950px;}
.h12{height:132.993024px;}
.h11{height:138.268950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x1a{left:110.739000px;}
.x17{left:114.363000px;}
.x16{left:120.727500px;}
.x13{left:130.416000px;}
.x77{left:132.741000px;}
.x18{left:138.133500px;}
.x19{left:139.270500px;}
.x75{left:144.004500px;}
.x54{left:153.772500px;}
.x33{left:154.936500px;}
.x12{left:158.809500px;}
.x4a{left:161.710500px;}
.x1{left:164.451000px;}
.x76{left:169.542000px;}
.x34{left:171.093000px;}
.xc{left:172.627500px;}
.x11{left:173.754000px;}
.x55{left:176.326500px;}
.x2f{left:183.447000px;}
.x1f{left:185.163000px;}
.x2{left:186.421500px;}
.x4b{left:188.833500px;}
.x64{left:190.534500px;}
.x6f{left:201.670500px;}
.x43{left:204.930000px;}
.xf{left:214.422000px;}
.x44{left:218.031000px;}
.x10{left:221.125500px;}
.x66{left:228.057000px;}
.x6d{left:231.412500px;}
.x61{left:234.681000px;}
.x73{left:239.170500px;}
.x65{left:240.888000px;}
.x47{left:247.581000px;}
.x70{left:254.629500px;}
.x3f{left:259.294500px;}
.x1d{left:263.949000px;}
.x42{left:265.893000px;}
.xb{left:269.161500px;}
.x63{left:270.412500px;}
.x40{left:272.574000px;}
.x3{left:274.819500px;}
.x26{left:276.511500px;}
.x49{left:277.735500px;}
.x68{left:281.518500px;}
.x36{left:288.469500px;}
.x27{left:289.627500px;}
.x1e{left:291.726000px;}
.x60{left:300.141000px;}
.x5f{left:302.685000px;}
.x5a{left:304.191000px;}
.x72{left:309.096000px;}
.x3e{left:311.491500px;}
.x25{left:313.420500px;}
.x57{left:314.461500px;}
.x46{left:319.519500px;}
.x2e{left:322.984500px;}
.x39{left:327.229500px;}
.x78{left:328.548000px;}
.x7{left:329.793000px;}
.x38{left:331.065000px;}
.x53{left:333.234000px;}
.x79{left:347.155500px;}
.x6e{left:349.179000px;}
.x4{left:353.088000px;}
.x71{left:360.058500px;}
.x62{left:362.553000px;}
.x45{left:363.933000px;}
.x37{left:367.794000px;}
.x48{left:371.854500px;}
.x1c{left:373.006500px;}
.x52{left:376.981500px;}
.x6{left:381.384000px;}
.xd{left:382.602000px;}
.x35{left:387.093000px;}
.x8{left:392.640000px;}
.x5{left:394.558500px;}
.x2d{left:400.720500px;}
.x32{left:402.669000px;}
.x22{left:404.926500px;}
.x9{left:405.966000px;}
.x15{left:409.203000px;}
.x59{left:410.730000px;}
.x2b{left:412.318500px;}
.x3d{left:416.869500px;}
.x74{left:424.521000px;}
.x56{left:428.283000px;}
.x2c{left:430.492500px;}
.x5b{left:446.782500px;}
.x5c{left:470.872500px;}
.x69{left:482.625000px;}
.x6a{left:507.582000px;}
.xe{left:511.759500px;}
.x58{left:523.711500px;}
.x3a{left:524.715000px;}
.x4c{left:529.072500px;}
.x28{left:532.452000px;}
.x3b{left:539.665500px;}
.x30{left:543.003000px;}
.x3c{left:546.676500px;}
.x4d{left:568.092000px;}
.x29{left:576.660000px;}
.x2a{left:589.797000px;}
.x20{left:603.934500px;}
.x31{left:607.996500px;}
.x4e{left:613.902000px;}
.x4f{left:639.505500px;}
.x21{left:642.955500px;}
.x41{left:657.693000px;}
.x50{left:664.858500px;}
.x51{left:685.027500px;}
.x5d{left:747.753000px;}
.x6b{left:748.903500px;}
.x23{left:750.993000px;}
.x5e{left:755.422500px;}
.x6c{left:769.330500px;}
.x24{left:775.284000px;}
.x67{left:791.013000px;}
.x1b{left:799.195500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v9{vertical-align:-16.506667pt;}
.vc{vertical-align:-15.381333pt;}
.v2{vertical-align:-11.477333pt;}
.v4{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v6{vertical-align:14.384000pt;}
.v5{vertical-align:24.021333pt;}
.vd{vertical-align:29.882667pt;}
.v8{vertical-align:31.178667pt;}
.v7{vertical-align:39.909333pt;}
.va{vertical-align:76.181333pt;}
.vb{vertical-align:116.090667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000720pt;}
.ls5{letter-spacing:0.001414pt;}
.ls2c{letter-spacing:0.001416pt;}
.ls4{letter-spacing:0.001899pt;}
.lsa{letter-spacing:0.001908pt;}
.ls1a{letter-spacing:0.002323pt;}
.ls3a{letter-spacing:0.002391pt;}
.ls16{letter-spacing:0.002400pt;}
.ls20{letter-spacing:0.002827pt;}
.ls1f{letter-spacing:0.002879pt;}
.ls38{letter-spacing:0.010591pt;}
.ls42{letter-spacing:0.011456pt;}
.lsd{letter-spacing:0.014884pt;}
.ls15{letter-spacing:0.018258pt;}
.ls28{letter-spacing:0.018417pt;}
.ls46{letter-spacing:0.022199pt;}
.ls4b{letter-spacing:0.024534pt;}
.ls14{letter-spacing:0.027758pt;}
.ls10{letter-spacing:0.290909pt;}
.ls11{letter-spacing:1.612067pt;}
.ls4d{letter-spacing:1.617401pt;}
.ls40{letter-spacing:2.210911pt;}
.ls4f{letter-spacing:2.653258pt;}
.ls22{letter-spacing:2.656092pt;}
.ls9{letter-spacing:2.657546pt;}
.ls29{letter-spacing:2.659878pt;}
.ls8{letter-spacing:5.163387pt;}
.lsf{letter-spacing:5.168720pt;}
.ls33{letter-spacing:5.312220pt;}
.ls31{letter-spacing:5.317553pt;}
.ls45{letter-spacing:5.685324pt;}
.ls4e{letter-spacing:5.969546pt;}
.ls12{letter-spacing:5.974879pt;}
.ls41{letter-spacing:6.225460pt;}
.ls21{letter-spacing:6.260825pt;}
.ls1c{letter-spacing:6.283642pt;}
.ls3b{letter-spacing:6.376161pt;}
.ls1b{letter-spacing:7.378959pt;}
.ls23{letter-spacing:9.693494pt;}
.ls2d{letter-spacing:9.716372pt;}
.ls37{letter-spacing:12.916374pt;}
.ls2b{letter-spacing:14.859387pt;}
.ls30{letter-spacing:15.008473pt;}
.ls32{letter-spacing:15.013806pt;}
.lse{letter-spacing:16.174559pt;}
.ls36{letter-spacing:18.096720pt;}
.ls17{letter-spacing:18.817546pt;}
.ls3{letter-spacing:19.039527pt;}
.ls1e{letter-spacing:19.432743pt;}
.ls26{letter-spacing:20.596381pt;}
.ls7{letter-spacing:21.328720pt;}
.ls3f{letter-spacing:22.049546pt;}
.ls6{letter-spacing:24.560720pt;}
.lsc{letter-spacing:26.356386pt;}
.ls3e{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls4a{letter-spacing:32.290936pt;}
.ls35{letter-spacing:37.488720pt;}
.ls3c{letter-spacing:90.905178pt;}
.ls2a{letter-spacing:126.564870pt;}
.ls47{letter-spacing:142.026826pt;}
.ls49{letter-spacing:173.641476pt;}
.ls27{letter-spacing:228.422493pt;}
.ls0{letter-spacing:306.975635pt;}
.ls48{letter-spacing:465.532185pt;}
.ls4c{letter-spacing:476.858579pt;}
.ls43{letter-spacing:534.807718pt;}
.ls44{letter-spacing:572.713211pt;}
.ls3d{letter-spacing:585.716852pt;}
.ls24{letter-spacing:623.127792pt;}
.ls34{letter-spacing:652.451453pt;}
.ls1d{letter-spacing:773.760645pt;}
.ls2e{letter-spacing:808.029764pt;}
.ls19{letter-spacing:822.342503pt;}
.ls39{letter-spacing:864.407993pt;}
.ls18{letter-spacing:891.346197pt;}
.ls25{letter-spacing:928.233501pt;}
.ls50{letter-spacing:933.469869pt;}
.lsb{letter-spacing:933.568720pt;}
.ls13{letter-spacing:954.648068pt;}
.ws26{word-spacing:-58.181867pt;}
.ws4a{word-spacing:-48.465495pt;}
.ws27{word-spacing:-42.007308pt;}
.ws25{word-spacing:-37.899668pt;}
.ws54{word-spacing:-34.611401pt;}
.ws3b{word-spacing:-32.337481pt;}
.ws2a{word-spacing:-29.090933pt;}
.ws30{word-spacing:-28.183296pt;}
.ws12{word-spacing:-26.566933pt;}
.ws4d{word-spacing:-25.832749pt;}
.ws18{word-spacing:-24.575109pt;}
.ws4e{word-spacing:-16.162923pt;}
.ws63{word-spacing:-15.301831pt;}
.ws55{word-spacing:-14.760588pt;}
.ws45{word-spacing:-14.603649pt;}
.ws51{word-spacing:-14.429103pt;}
.ws0{word-spacing:-14.346200pt;}
.ws3a{word-spacing:-13.323647pt;}
.ws33{word-spacing:-12.858193pt;}
.wsc{word-spacing:-12.752128pt;}
.ws5d{word-spacing:-12.567283pt;}
.ws28{word-spacing:-12.543875pt;}
.ws68{word-spacing:-12.392738pt;}
.ws1c{word-spacing:-12.276374pt;}
.ws3{word-spacing:-11.955200pt;}
.ws34{word-spacing:-11.927283pt;}
.ws35{word-spacing:-11.869101pt;}
.ws6e{word-spacing:-11.530049pt;}
.ws6c{word-spacing:-11.403646pt;}
.ws60{word-spacing:-11.229100pt;}
.ws67{word-spacing:-11.112737pt;}
.ws1f{word-spacing:-10.938191pt;}
.ws70{word-spacing:-10.892443pt;}
.ws2b{word-spacing:-10.880009pt;}
.ws61{word-spacing:-10.821827pt;}
.ws31{word-spacing:-10.705463pt;}
.ws6f{word-spacing:-10.525819pt;}
.ws24{word-spacing:-10.201702pt;}
.ws4c{word-spacing:-10.181827pt;}
.ws69{word-spacing:-10.148569pt;}
.ws50{word-spacing:-10.123645pt;}
.ws57{word-spacing:-10.065463pt;}
.ws49{word-spacing:-10.007281pt;}
.ws32{word-spacing:-9.989167pt;}
.ws3e{word-spacing:-9.949099pt;}
.ws22{word-spacing:-9.890917pt;}
.ws2f{word-spacing:-9.832735pt;}
.ws36{word-spacing:-9.774554pt;}
.ws15{word-spacing:-9.716372pt;}
.ws17{word-spacing:-9.658190pt;}
.ws21{word-spacing:-9.600008pt;}
.ws3d{word-spacing:-9.541826pt;}
.ws1d{word-spacing:-9.483644pt;}
.ws72{word-spacing:-9.463142pt;}
.ws6{word-spacing:-9.454172pt;}
.ws2c{word-spacing:-9.425462pt;}
.ws2d{word-spacing:-9.367281pt;}
.ws2e{word-spacing:-9.309099pt;}
.ws11{word-spacing:-9.192159pt;}
.wse{word-spacing:-9.085891pt;}
.wsd{word-spacing:-9.032757pt;}
.ws1e{word-spacing:-9.018189pt;}
.ws4{word-spacing:-8.873356pt;}
.ws6b{word-spacing:-8.843644pt;}
.ws43{word-spacing:-8.820222pt;}
.ws10{word-spacing:-8.713954pt;}
.ws5f{word-spacing:-8.669098pt;}
.ws62{word-spacing:-8.610916pt;}
.wsf{word-spacing:-8.607686pt;}
.ws3c{word-spacing:-8.494553pt;}
.ws14{word-spacing:-8.378189pt;}
.ws71{word-spacing:-8.347330pt;}
.ws7{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws6d{word-spacing:-8.134795pt;}
.ws42{word-spacing:-7.912734pt;}
.ws73{word-spacing:-7.869126pt;}
.ws5b{word-spacing:-7.621825pt;}
.ws44{word-spacing:-7.214551pt;}
.ws64{word-spacing:-7.156370pt;}
.ws20{word-spacing:-7.098188pt;}
.ws39{word-spacing:-6.594504pt;}
.ws56{word-spacing:-6.574551pt;}
.ws37{word-spacing:-6.446551pt;}
.ws5e{word-spacing:-6.341823pt;}
.ws13{word-spacing:-5.876369pt;}
.ws5a{word-spacing:-5.818187pt;}
.ws1b{word-spacing:-5.352732pt;}
.ws16{word-spacing:-5.178186pt;}
.ws48{word-spacing:-4.887277pt;}
.ws46{word-spacing:-4.829095pt;}
.ws5c{word-spacing:-4.770913pt;}
.ws6a{word-spacing:-4.538186pt;}
.wsb{word-spacing:-4.468558pt;}
.ws66{word-spacing:-4.072731pt;}
.ws47{word-spacing:-3.549094pt;}
.ws41{word-spacing:-3.432730pt;}
.ws40{word-spacing:-3.258185pt;}
.ws52{word-spacing:-3.246548pt;}
.ws23{word-spacing:-2.850911pt;}
.ws65{word-spacing:-2.676366pt;}
.ws53{word-spacing:-2.327275pt;}
.ws2{word-spacing:-0.076513pt;}
.ws4f{word-spacing:-0.053134pt;}
.ws4b{word-spacing:-0.046545pt;}
.ws8{word-spacing:0.000000pt;}
.ws29{word-spacing:0.011636pt;}
.ws9{word-spacing:2.385457pt;}
.ws3f{word-spacing:3.037093pt;}
.ws58{word-spacing:5.279986pt;}
.ws38{word-spacing:5.568395pt;}
.wsa{word-spacing:10.159221pt;}
.ws59{word-spacing:16.186195pt;}
.ws1{word-spacing:20.722347pt;}
.ws1a{word-spacing:30.551973pt;}
.ws19{word-spacing:2025.083389pt;}
._31{margin-left:-16.177013pt;}
._3{margin-left:-9.564133pt;}
._1{margin-left:-7.192228pt;}
._4{margin-left:-5.228407pt;}
._8{margin-left:-3.457924pt;}
._2{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._7{width:1.262476pt;}
._0{width:2.371905pt;}
._3c{width:3.596206pt;}
._30{width:6.377164pt;}
._38{width:9.699149pt;}
._37{width:15.792793pt;}
._5{width:18.630868pt;}
._2d{width:20.299884pt;}
._35{width:21.478819pt;}
._a{width:22.705121pt;}
._9{width:23.697705pt;}
._b{width:24.606303pt;}
._20{width:25.863684pt;}
._45{width:26.781184pt;}
._2e{width:27.677046pt;}
._2c{width:29.290968pt;}
._3e{width:30.365347pt;}
._32{width:31.767299pt;}
._3d{width:33.006644pt;}
._36{width:34.451632pt;}
._39{width:49.189166pt;}
._2f{width:61.541755pt;}
._42{width:76.759318pt;}
._34{width:131.200254pt;}
._43{width:141.297847pt;}
._33{width:166.228209pt;}
._40{width:280.559553pt;}
._3f{width:288.006846pt;}
._3a{width:335.786918pt;}
._44{width:343.119392pt;}
._41{width:374.765899pt;}
._3b{width:476.963602pt;}
._17{width:623.251960pt;}
._11{width:731.684614pt;}
._21{width:921.845138pt;}
._26{width:984.303139pt;}
._1f{width:1074.126376pt;}
._15{width:1087.351185pt;}
._1e{width:1102.868218pt;}
._19{width:1143.306217pt;}
._18{width:1167.521807pt;}
._25{width:1182.338747pt;}
._2a{width:1190.691742pt;}
._13{width:1238.031886pt;}
._e{width:1263.942712pt;}
._2b{width:1299.404966pt;}
._1b{width:1336.875686pt;}
._1a{width:1340.816590pt;}
._28{width:1355.212535pt;}
._14{width:1394.793730pt;}
._f{width:1404.267813pt;}
._12{width:1471.448746pt;}
._22{width:1481.618619pt;}
._d{width:1528.740030pt;}
._24{width:1612.452093pt;}
._10{width:1669.627343pt;}
._1d{width:1675.521237pt;}
._27{width:1692.915722pt;}
._23{width:1715.358290pt;}
._1c{width:1734.092851pt;}
._16{width:1744.449223pt;}
._29{width:1791.568575pt;}
._c{width:2032.682350pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:142.501333pt;}
.y2b{bottom:154.156000pt;}
.y46{bottom:169.600000pt;}
.y60{bottom:175.885333pt;}
.ye2{bottom:181.652000pt;}
.y76{bottom:184.185333pt;}
.y2a{bottom:188.382667pt;}
.y45{bottom:196.698667pt;}
.y5f{bottom:202.984000pt;}
.ya3{bottom:205.241333pt;}
.ycc{bottom:214.845333pt;}
.ya2{bottom:215.218667pt;}
.y29{bottom:215.481333pt;}
.yb9{bottom:215.596000pt;}
.yf9{bottom:215.993333pt;}
.y8e{bottom:217.876000pt;}
.ye1{bottom:218.340000pt;}
.y44{bottom:224.440000pt;}
.y10d{bottom:226.188000pt;}
.y75{bottom:230.181333pt;}
.y5e{bottom:234.100000pt;}
.y5d{bottom:237.696000pt;}
.yd{bottom:242.930667pt;}
.ye0{bottom:245.438667pt;}
.y8d{bottom:249.342667pt;}
.y43{bottom:251.538667pt;}
.y10c{bottom:253.285333pt;}
.y28{bottom:257.125333pt;}
.ycb{bottom:260.090667pt;}
.ya1{bottom:260.838667pt;}
.yc{bottom:267.505333pt;}
.y5c{bottom:272.408000pt;}
.yf8{bottom:272.409333pt;}
.ydf{bottom:272.537333pt;}
.y8c{bottom:273.253333pt;}
.y42{bottom:278.637333pt;}
.y10b{bottom:280.384000pt;}
.y27{bottom:284.222667pt;}
.y74{bottom:284.324000pt;}
.yca{bottom:287.189333pt;}
.yb8{bottom:287.372000pt;}
.ya0{bottom:287.937333pt;}
.yb{bottom:292.078667pt;}
.y8b{bottom:297.164000pt;}
.yf7{bottom:299.506667pt;}
.y41{bottom:305.734667pt;}
.y26{bottom:311.321333pt;}
.yc9{bottom:314.288000pt;}
.y73{bottom:316.030667pt;}
.ya{bottom:316.653333pt;}
.y5b{bottom:318.404000pt;}
.yde{bottom:318.533333pt;}
.yb7{bottom:318.840000pt;}
.y8a{bottom:321.073333pt;}
.y10a{bottom:326.380000pt;}
.yf6{bottom:326.605333pt;}
.y9f{bottom:333.556000pt;}
.y72{bottom:335.849333pt;}
.y25{bottom:338.420000pt;}
.yb6{bottom:342.749333pt;}
.y89{bottom:345.516000pt;}
.y40{bottom:352.374667pt;}
.yf5{bottom:354.101333pt;}
.yc8{bottom:361.461333pt;}
.y24{bottom:365.518667pt;}
.yb5{bottom:366.660000pt;}
.y71{bottom:367.693333pt;}
.y5a{bottom:371.452000pt;}
.y9e{bottom:379.176000pt;}
.y109{bottom:379.748000pt;}
.yf4{bottom:381.200000pt;}
.yb4{bottom:390.570667pt;}
.ydd{bottom:390.890667pt;}
.y23{bottom:392.617333pt;}
.y70{bottom:394.790667pt;}
.y59{bottom:398.549333pt;}
.y88{bottom:402.785333pt;}
.y9d{bottom:406.273333pt;}
.y108{bottom:406.846667pt;}
.yf3{bottom:408.297333pt;}
.y3f{bottom:410.198667pt;}
.yb3{bottom:414.481333pt;}
.yc7{bottom:422.342667pt;}
.ydc{bottom:422.357333pt;}
.y58{bottom:425.648000pt;}
.y6f{bottom:426.498667pt;}
.y22{bottom:434.261333pt;}
.yf2{bottom:435.396000pt;}
.y9{bottom:436.676000pt;}
.yb2{bottom:438.922667pt;}
.y107{bottom:440.002667pt;}
.y106{bottom:443.598667pt;}
.ydb{bottom:446.268000pt;}
.y6e{bottom:446.316000pt;}
.yc6{bottom:449.441333pt;}
.y57{bottom:452.746667pt;}
.y3e{bottom:453.128000pt;}
.y9c{bottom:453.573333pt;}
.y87{bottom:456.913333pt;}
.y21{bottom:461.358667pt;}
.yf1{bottom:462.494667pt;}
.yda{bottom:470.178667pt;}
.y6d{bottom:478.160000pt;}
.y105{bottom:480.350667pt;}
.y8{bottom:483.264000pt;}
.y86{bottom:484.012000pt;}
.y20{bottom:488.457333pt;}
.yb1{bottom:493.336000pt;}
.yd9{bottom:494.089333pt;}
.yc5{bottom:495.714667pt;}
.y3d{bottom:496.058667pt;}
.y56{bottom:498.742667pt;}
.y6c{bottom:505.258667pt;}
.y7{bottom:507.173333pt;}
.y104{bottom:507.449333pt;}
.yf0{bottom:508.888000pt;}
.y85{bottom:511.110667pt;}
.y9b{bottom:515.165333pt;}
.y1f{bottom:515.556000pt;}
.yd8{bottom:517.998667pt;}
.y6{bottom:531.084000pt;}
.y84{bottom:538.209333pt;}
.y3c{bottom:538.989333pt;}
.yc4{bottom:541.988000pt;}
.yd7{bottom:542.441333pt;}
.yb0{bottom:546.792000pt;}
.y6b{bottom:551.254667pt;}
.y55{bottom:551.789333pt;}
.y103{bottom:553.445333pt;}
.y1e{bottom:557.200000pt;}
.y9a{bottom:560.785333pt;}
.yef{bottom:565.304000pt;}
.y3b{bottom:566.732000pt;}
.yaf{bottom:573.889333pt;}
.y54{bottom:578.888000pt;}
.y83{bottom:584.205333pt;}
.yc3{bottom:588.262667pt;}
.yee{bottom:592.401333pt;}
.y3a{bottom:594.473333pt;}
.yd6{bottom:597.324000pt;}
.yae{bottom:600.988000pt;}
.y1d{bottom:603.196000pt;}
.y6a{bottom:605.397333pt;}
.y99{bottom:606.404000pt;}
.y102{bottom:606.813333pt;}
.y53{bottom:612.272000pt;}
.yed{bottom:619.500000pt;}
.y39{bottom:622.214667pt;}
.y69{bottom:632.494667pt;}
.y101{bottom:633.910667pt;}
.yc2{bottom:634.536000pt;}
.yad{bottom:638.300000pt;}
.y82{bottom:638.333333pt;}
.yec{bottom:646.598667pt;}
.y52{bottom:646.984000pt;}
.y38{bottom:649.957333pt;}
.yd5{bottom:650.890667pt;}
.y98{bottom:652.024000pt;}
.y1c{bottom:657.105333pt;}
.y68{bottom:659.593333pt;}
.yc1{bottom:661.634667pt;}
.y5{bottom:665.378667pt;}
.y81{bottom:665.432000pt;}
.y100{bottom:669.334667pt;}
.yeb{bottom:674.094667pt;}
.yac{bottom:675.612000pt;}
.yd4{bottom:677.989333pt;}
.y51{bottom:681.696000pt;}
.y1b{bottom:684.204000pt;}
.y67{bottom:686.692000pt;}
.yc0{bottom:688.733333pt;}
.y80{bottom:692.530667pt;}
.y37{bottom:692.888000pt;}
.y97{bottom:697.642667pt;}
.yea{bottom:701.192000pt;}
.yab{bottom:702.709333pt;}
.yd3{bottom:705.088000pt;}
.yff{bottom:708.064000pt;}
.y50{bottom:708.794667pt;}
.y7f{bottom:719.629333pt;}
.y36{bottom:720.629333pt;}
.y96{bottom:724.741333pt;}
.ye9{bottom:728.290667pt;}
.yd2{bottom:732.185333pt;}
.y66{bottom:732.688000pt;}
.y1a{bottom:735.212000pt;}
.ybf{bottom:735.906667pt;}
.yfe{bottom:746.793333pt;}
.y35{bottom:748.370667pt;}
.yaa{bottom:748.705333pt;}
.y95{bottom:751.840000pt;}
.y4f{bottom:754.790667pt;}
.ye8{bottom:755.389333pt;}
.y19{bottom:759.122667pt;}
.yd1{bottom:759.284000pt;}
.y7e{bottom:765.625333pt;}
.y116{bottom:774.133333pt;}
.y34{bottom:776.113333pt;}
.y65{bottom:777.761333pt;}
.ye7{bottom:782.488000pt;}
.y18{bottom:783.033333pt;}
.yfd{bottom:785.522667pt;}
.ybe{bottom:796.788000pt;}
.y4e{bottom:797.598667pt;}
.y115{bottom:798.042667pt;}
.y94{bottom:799.138667pt;}
.y64{bottom:801.670667pt;}
.ya9{bottom:802.161333pt;}
.y4{bottom:802.264000pt;}
.y33{bottom:803.854667pt;}
.yd0{bottom:805.280000pt;}
.y17{bottom:806.942667pt;}
.y7d{bottom:819.753333pt;}
.y114{bottom:821.953333pt;}
.ybd{bottom:823.886667pt;}
.yfc{bottom:824.252000pt;}
.ye6{bottom:828.881333pt;}
.ya8{bottom:829.260000pt;}
.y3{bottom:830.158667pt;}
.y16{bottom:830.853333pt;}
.y32{bottom:831.596000pt;}
.y113{bottom:845.864000pt;}
.y63{bottom:846.406667pt;}
.y4d{bottom:850.645333pt;}
.ybc{bottom:850.984000pt;}
.y7c{bottom:851.372000pt;}
.y15{bottom:854.764000pt;}
.ycf{bottom:858.846667pt;}
.y31{bottom:859.338667pt;}
.yfb{bottom:859.676000pt;}
.y93{bottom:860.732000pt;}
.ya7{bottom:865.242667pt;}
.y112{bottom:869.774667pt;}
.y7b{bottom:871.189333pt;}
.ye5{bottom:872.085333pt;}
.y4c{bottom:877.744000pt;}
.ybb{bottom:878.082667pt;}
.y14{bottom:878.674667pt;}
.yce{bottom:885.945333pt;}
.y92{bottom:887.830667pt;}
.y2{bottom:888.702667pt;}
.y111{bottom:893.684000pt;}
.y30{bottom:902.269333pt;}
.y7a{bottom:902.945333pt;}
.ya6{bottom:904.158667pt;}
.y4b{bottom:904.842667pt;}
.yfa{bottom:905.672000pt;}
.ycd{bottom:913.044000pt;}
.y13{bottom:913.078667pt;}
.y91{bottom:914.928000pt;}
.y110{bottom:917.594667pt;}
.y12{bottom:917.898667pt;}
.y1{bottom:924.568000pt;}
.yba{bottom:925.257333pt;}
.ye4{bottom:928.501333pt;}
.y62{bottom:929.518667pt;}
.y2f{bottom:930.010667pt;}
.y79{bottom:930.044000pt;}
.y4a{bottom:931.941333pt;}
.ya5{bottom:940.141333pt;}
.y10f{bottom:941.505333pt;}
.y10{bottom:941.637333pt;}
.y90{bottom:942.026667pt;}
.y11{bottom:946.916000pt;}
.y2e{bottom:957.752000pt;}
.y49{bottom:959.040000pt;}
.y78{bottom:961.662667pt;}
.y10e{bottom:965.416000pt;}
.ya4{bottom:967.240000pt;}
.ye3{bottom:970.869333pt;}
.y77{bottom:981.480000pt;}
.yf{bottom:985.341333pt;}
.y2d{bottom:985.494667pt;}
.y48{bottom:986.137333pt;}
.y8f{bottom:989.325333pt;}
.y61{bottom:1012.410667pt;}
.ye{bottom:1013.236000pt;}
.y2c{bottom:1059.728000pt;}
.hd{height:14.824448pt;}
.hb{height:25.403229pt;}
.ha{height:29.499997pt;}
.h8{height:33.713664pt;}
.h7{height:35.865600pt;}
.hc{height:38.043849pt;}
.h6{height:39.850400pt;}
.h9{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.he{height:53.521330pt;}
.h2{height:53.559147pt;}
.hf{height:58.020400pt;}
.h4{height:59.756892pt;}
.h13{height:82.996400pt;}
.h10{height:83.545733pt;}
.h12{height:118.216021pt;}
.h11{height:122.905733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x17{left:101.656000pt;}
.x16{left:107.313333pt;}
.x13{left:115.925333pt;}
.x77{left:117.992000pt;}
.x18{left:122.785333pt;}
.x19{left:123.796000pt;}
.x75{left:128.004000pt;}
.x54{left:136.686667pt;}
.x33{left:137.721333pt;}
.x12{left:141.164000pt;}
.x4a{left:143.742667pt;}
.x1{left:146.178667pt;}
.x76{left:150.704000pt;}
.x34{left:152.082667pt;}
.xc{left:153.446667pt;}
.x11{left:154.448000pt;}
.x55{left:156.734667pt;}
.x2f{left:163.064000pt;}
.x1f{left:164.589333pt;}
.x2{left:165.708000pt;}
.x4b{left:167.852000pt;}
.x64{left:169.364000pt;}
.x6f{left:179.262667pt;}
.x43{left:182.160000pt;}
.xf{left:190.597333pt;}
.x44{left:193.805333pt;}
.x10{left:196.556000pt;}
.x66{left:202.717333pt;}
.x6d{left:205.700000pt;}
.x61{left:208.605333pt;}
.x73{left:212.596000pt;}
.x65{left:214.122667pt;}
.x47{left:220.072000pt;}
.x70{left:226.337333pt;}
.x3f{left:230.484000pt;}
.x1d{left:234.621333pt;}
.x42{left:236.349333pt;}
.xb{left:239.254667pt;}
.x63{left:240.366667pt;}
.x40{left:242.288000pt;}
.x3{left:244.284000pt;}
.x26{left:245.788000pt;}
.x49{left:246.876000pt;}
.x68{left:250.238667pt;}
.x36{left:256.417333pt;}
.x27{left:257.446667pt;}
.x1e{left:259.312000pt;}
.x60{left:266.792000pt;}
.x5f{left:269.053333pt;}
.x5a{left:270.392000pt;}
.x72{left:274.752000pt;}
.x3e{left:276.881333pt;}
.x25{left:278.596000pt;}
.x57{left:279.521333pt;}
.x46{left:284.017333pt;}
.x2e{left:287.097333pt;}
.x39{left:290.870667pt;}
.x78{left:292.042667pt;}
.x7{left:293.149333pt;}
.x38{left:294.280000pt;}
.x53{left:296.208000pt;}
.x79{left:308.582667pt;}
.x6e{left:310.381333pt;}
.x4{left:313.856000pt;}
.x71{left:320.052000pt;}
.x62{left:322.269333pt;}
.x45{left:323.496000pt;}
.x37{left:326.928000pt;}
.x48{left:330.537333pt;}
.x1c{left:331.561333pt;}
.x52{left:335.094667pt;}
.x6{left:339.008000pt;}
.xd{left:340.090667pt;}
.x35{left:344.082667pt;}
.x8{left:349.013333pt;}
.x5{left:350.718667pt;}
.x2d{left:356.196000pt;}
.x32{left:357.928000pt;}
.x22{left:359.934667pt;}
.x9{left:360.858667pt;}
.x15{left:363.736000pt;}
.x59{left:365.093333pt;}
.x2b{left:366.505333pt;}
.x3d{left:370.550667pt;}
.x74{left:377.352000pt;}
.x56{left:380.696000pt;}
.x2c{left:382.660000pt;}
.x5b{left:397.140000pt;}
.x5c{left:418.553333pt;}
.x69{left:429.000000pt;}
.x6a{left:451.184000pt;}
.xe{left:454.897333pt;}
.x58{left:465.521333pt;}
.x3a{left:466.413333pt;}
.x4c{left:470.286667pt;}
.x28{left:473.290667pt;}
.x3b{left:479.702667pt;}
.x30{left:482.669333pt;}
.x3c{left:485.934667pt;}
.x4d{left:504.970667pt;}
.x29{left:512.586667pt;}
.x2a{left:524.264000pt;}
.x20{left:536.830667pt;}
.x31{left:540.441333pt;}
.x4e{left:545.690667pt;}
.x4f{left:568.449333pt;}
.x21{left:571.516000pt;}
.x41{left:584.616000pt;}
.x50{left:590.985333pt;}
.x51{left:608.913333pt;}
.x5d{left:664.669333pt;}
.x6b{left:665.692000pt;}
.x23{left:667.549333pt;}
.x5e{left:671.486667pt;}
.x6c{left:683.849333pt;}
.x24{left:689.141333pt;}
.x67{left:703.122667pt;}
.x1b{left:710.396000pt;}
}




    .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; }
  