
    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_cddf7f3a2265b4b8c66b561b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_6ee1210cd67de9349d8086c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_8da94a3251b5bd545401724f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_caef92c65e5b1bfca94df751.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675000;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_a37a8350839ca5a62c6c11ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_ef26a4c56a88c4147615a319.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_e81c9f84ce4fb1b228a45abc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_6faa89213b696d28c8ba92fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;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_50ec52b304f96155b8837ba6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967773;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_1f5132bae22afe67eaa3b863.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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_23ede316c0fe3c0ef546fe92.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.979980;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_7aa3a5e19356e8e04fcfdde6.woff2')format("woff");}.fff{font-family:fff;line-height:0.936523;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_fb154b173e8d78b353afad7e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;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_23ede316c0fe3c0ef546fe92.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.979980;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_7aa3a5e19356e8e04fcfdde6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936523;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_c588ab9765830e37ba1618f2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.967773;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_23ede316c0fe3c0ef546fe92.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.967773;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_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.979980;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_6c286b9a740338a9fb709ace.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.936523;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_e71e96c3e0e2c29647634e23.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.967773;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_e71e96c3e0e2c29647634e23.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.967773;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;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_4df3f2fe0831e2667f1b2029.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.205000;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_d2df7c9825d66079844a4905.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.945000;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_1474bb0f02c2b6ff3c6a746a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.887000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-5.304000px;}
.v4{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.234945px;}
.v2{vertical-align:4.254000px;}
.v5{vertical-align:10.505160px;}
.v6{vertical-align:48.212100px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001064px;}
.ls8{letter-spacing:5.977575px;}
.ls7{letter-spacing:14.941368px;}
.ls6{letter-spacing:14.947368px;}
.ls3{letter-spacing:16.363650px;}
.ls5{letter-spacing:23.580720px;}
.ls1{letter-spacing:52.499421px;}
.ls4{letter-spacing:231.235351px;}
.ls2{letter-spacing:475.687485px;}
.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;}
}
.ws30{word-spacing:-37.180650px;}
.ws1{word-spacing:-16.363650px;}
.ws22{word-spacing:-14.943900px;}
.ws13{word-spacing:-13.165589px;}
.ws2{word-spacing:-12.981900px;}
.wsa{word-spacing:-12.622966px;}
.ws28{word-spacing:-11.249686px;}
.wsb{word-spacing:-11.045078px;}
.wse{word-spacing:-10.866286px;}
.ws1c{word-spacing:-8.880362px;}
.wsd{word-spacing:-8.149715px;}
.ws1b{word-spacing:-7.104724px;}
.ws12{word-spacing:-6.847958px;}
.ws11{word-spacing:-5.869709px;}
.ws7{word-spacing:-1.701820px;}
.ws37{word-spacing:-0.523637px;}
.ws4{word-spacing:-0.196364px;}
.ws1f{word-spacing:-0.130909px;}
.ws2f{word-spacing:-0.107597px;}
.ws1e{word-spacing:-0.059776px;}
.wsc{word-spacing:-0.029316px;}
.ws14{word-spacing:-0.021870px;}
.ws38{word-spacing:-0.004195px;}
.ws2c{word-spacing:-0.002812px;}
.ws6{word-spacing:-0.002694px;}
.ws2d{word-spacing:-0.001769px;}
.ws3{word-spacing:-0.001761px;}
.ws36{word-spacing:-0.001209px;}
.ws0{word-spacing:0.000000px;}
.ws35{word-spacing:0.000324px;}
.ws8{word-spacing:0.001568px;}
.ws1d{word-spacing:2.238096px;}
.ws2e{word-spacing:2.241158px;}
.ws17{word-spacing:2.492964px;}
.ws5{word-spacing:2.749093px;}
.ws39{word-spacing:16.296881px;}
.ws1a{word-spacing:30.557363px;}
.ws15{word-spacing:31.581317px;}
.ws16{word-spacing:31.581324px;}
.ws20{word-spacing:34.377178px;}
.ws18{word-spacing:41.825489px;}
.ws24{word-spacing:53.798175px;}
.ws23{word-spacing:59.775750px;}
.ws21{word-spacing:68.808154px;}
.ws9{word-spacing:69.236131px;}
.wsf{word-spacing:82.427008px;}
.ws27{word-spacing:113.430463px;}
.ws26{word-spacing:150.778352px;}
.ws29{word-spacing:156.005157px;}
.ws2b{word-spacing:156.782432px;}
.ws19{word-spacing:161.869226px;}
.ws2a{word-spacing:181.878633px;}
.ws10{word-spacing:240.947204px;}
.ws25{word-spacing:246.036987px;}
.ws34{word-spacing:558.131374px;}
.ws33{word-spacing:601.724138px;}
.ws31{word-spacing:719.411509px;}
.ws32{word-spacing:724.647877px;}
._15{margin-left:-577.085783px;}
._e{margin-left:-8.770916px;}
._10{margin-left:-7.461824px;}
._1f{margin-left:-5.825459px;}
._a{margin-left:-4.385458px;}
._7{margin-left:-2.880002px;}
._0{margin-left:-1.505456px;}
._9{width:1.112728px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._12{width:5.724659px;}
._2{width:7.094247px;}
._c{width:8.245321px;}
._1c{width:10.637538px;}
._1d{width:12.852629px;}
._2a{width:15.224947px;}
._17{width:16.976270px;}
._8{width:18.589106px;}
._b{width:19.636380px;}
._16{width:25.262763px;}
._13{width:27.167577px;}
._1b{width:45.538773px;}
._1a{width:64.294952px;}
._1e{width:68.861952px;}
._18{width:71.738242px;}
._19{width:76.743913px;}
._6{width:80.410675px;}
._26{width:98.127871px;}
._29{width:125.385613px;}
._23{width:135.475760px;}
._24{width:140.496923px;}
._25{width:162.733502px;}
._34{width:168.872868px;}
._d{width:184.451063px;}
._33{width:205.069262px;}
._30{width:207.229264px;}
._31{width:221.891094px;}
._20{width:230.734395px;}
._21{width:235.755558px;}
._22{width:257.992137px;}
._32{width:264.763857px;}
._27{width:266.838948px;}
._2f{width:310.516622px;}
._2c{width:318.763902px;}
._28{width:388.064169px;}
._2e{width:455.433107px;}
._2d{width:480.633128px;}
._36{width:520.378817px;}
._11{width:597.716450px;}
._35{width:866.108786px;}
._14{width:996.506688px;}
._5{width:1013.186688px;}
._2b{width:1029.860688px;}
._f{width:1153.048234px;}
.fcc{color:rgb(210,32,39);}
.fcb{color:rgb(232,103,88);}
.fc6{color:rgb(254,250,248);}
.fc5{color:rgb(224,45,48);}
.fc4{color:rgb(252,230,223);}
.fc9{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc8{color:rgb(255,0,0);}
.fc2{color:rgb(82,86,109);}
.fca{color:rgb(180,68,57);}
.fc7{color:rgb(249,206,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:18.516433px;}
.fs10{font-size:21.602392px;}
.fs12{font-size:21.869749px;}
.fs16{font-size:22.412377px;}
.fs1a{font-size:23.530320px;}
.fsf{font-size:26.058240px;}
.fs14{font-size:26.742241px;}
.fs8{font-size:27.204766px;}
.fs15{font-size:28.013760px;}
.fsb{font-size:29.315520px;}
.fs13{font-size:30.562561px;}
.fsa{font-size:31.738730px;}
.fse{font-size:32.572800px;}
.fs4{font-size:35.865600px;}
.fs9{font-size:36.272891px;}
.fsc{font-size:39.087360px;}
.fs7{font-size:42.351660px;}
.fs18{font-size:44.998744px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs17{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:75.476160px;}
.fs0{font-size:86.077200px;}
.fsd{font-size:124.069189px;}
.fs19{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y15e{bottom:2.626290px;}
.y11{bottom:3.871500px;}
.ya{bottom:3.873000px;}
.y1c8{bottom:9.482338px;}
.yed{bottom:12.574588px;}
.y15c{bottom:14.837855px;}
.y8{bottom:15.108000px;}
.yff{bottom:15.374646px;}
.y1ca{bottom:15.508852px;}
.y3c{bottom:16.317131px;}
.yfb{bottom:16.324967px;}
.yb4{bottom:19.451197px;}
.y9{bottom:20.397402px;}
.y1a7{bottom:21.270000px;}
.y1c7{bottom:21.535364px;}
.y1c6{bottom:21.535366px;}
.y100{bottom:21.876000px;}
.yec{bottom:22.125389px;}
.y219{bottom:22.444500px;}
.y8c{bottom:22.466975px;}
.y150{bottom:22.980038px;}
.yfa{bottom:23.159264px;}
.y1da{bottom:23.559000px;}
.yb8{bottom:24.084000px;}
.y246{bottom:24.663452px;}
.y4a{bottom:25.428000px;}
.y11e{bottom:25.533000px;}
.y17a{bottom:25.543500px;}
.y4d{bottom:25.753500px;}
.y50{bottom:26.850000px;}
.y1c9{bottom:27.561878px;}
.yb3{bottom:27.594397px;}
.y17{bottom:28.083000px;}
.y5d{bottom:29.184000px;}
.y9a{bottom:29.488500px;}
.yf9{bottom:29.993561px;}
.y1b5{bottom:32.272500px;}
.y1c3{bottom:32.322000px;}
.y3a{bottom:32.433000px;}
.y32{bottom:32.883000px;}
.y151{bottom:33.310795px;}
.yb7{bottom:33.450000px;}
.y23e{bottom:34.405500px;}
.y24a{bottom:34.612500px;}
.y5c{bottom:35.367000px;}
.yb2{bottom:35.737597px;}
.y137{bottom:35.949000px;}
.yf8{bottom:36.827857px;}
.y1d2{bottom:37.119000px;}
.yf4{bottom:37.365091px;}
.y1fa{bottom:37.714500px;}
.y1f0{bottom:38.698500px;}
.y243{bottom:39.003000px;}
.y1c5{bottom:40.016671px;}
.y22c{bottom:41.667000px;}
.y1d9{bottom:42.987000px;}
.yf7{bottom:43.662154px;}
.y152{bottom:43.682590px;}
.yb1{bottom:43.880797px;}
.yf3{bottom:44.199388px;}
.yf0{bottom:44.272207px;}
.y49{bottom:45.751500px;}
.y4c{bottom:46.077000px;}
.y1b4{bottom:46.470000px;}
.y1c2{bottom:46.518000px;}
.y241{bottom:47.005500px;}
.y4f{bottom:47.173500px;}
.ya9{bottom:47.472090px;}
.y8b{bottom:47.569738px;}
.y14f{bottom:47.800500px;}
.ya3{bottom:47.926426px;}
.y16c{bottom:48.033000px;}
.y191{bottom:48.351000px;}
.y8e{bottom:49.750663px;}
.y11d{bottom:50.340000px;}
.y179{bottom:50.350500px;}
.y12a{bottom:50.404500px;}
.yaf{bottom:51.805554px;}
.yb0{bottom:52.023997px;}
.y15d{bottom:52.300104px;}
.yf6{bottom:52.546740px;}
.y1a6{bottom:52.816500px;}
.yf2{bottom:53.083973px;}
.yef{bottom:53.156793px;}
.yb6{bottom:53.775000px;}
.y153{bottom:54.013347px;}
.y99{bottom:54.295500px;}
.ya6{bottom:56.079133px;}
.y1d1{bottom:57.442500px;}
.y39{bottom:57.634500px;}
.y31{bottom:58.518000px;}
.ya8{bottom:58.934837px;}
.y23d{bottom:59.212500px;}
.y218{bottom:59.223000px;}
.yf5{bottom:59.381036px;}
.yf1{bottom:59.918270px;}
.yee{bottom:59.991090px;}
.y5b{bottom:60.174000px;}
.y1b3{bottom:60.666000px;}
.y1c1{bottom:60.715500px;}
.y136{bottom:60.754500px;}
.y8d{bottom:61.086068px;}
.y1ef{bottom:61.114500px;}
.y6e{bottom:61.984248px;}
.y1d8{bottom:62.413500px;}
.y1f9{bottom:62.521500px;}
.ya2{bottom:63.408013px;}
.yad{bottom:63.741727px;}
.y183{bottom:64.147500px;}
.y154{bottom:64.344105px;}
.y190{bottom:64.789500px;}
.y22b{bottom:66.474000px;}
.y206{bottom:67.525500px;}
.y148{bottom:67.996500px;}
.y240{bottom:71.812500px;}
.y1a5{bottom:73.140000px;}
.y6d{bottom:73.319653px;}
.yae{bottom:74.017330px;}
.yb5{bottom:74.098500px;}
.y155{bottom:74.715898px;}
.y1b2{bottom:74.863500px;}
.y1c0{bottom:74.911500px;}
.y178{bottom:75.157500px;}
.y129{bottom:75.211500px;}
.ya5{bottom:76.233553px;}
.y248{bottom:76.787670px;}
.y1ee{bottom:77.553000px;}
.y98{bottom:79.102500px;}
.y29{bottom:79.245000px;}
.y217{bottom:79.546500px;}
.y18f{bottom:81.228000px;}
.y1d0{bottom:82.249500px;}
.ye5{bottom:83.193698px;}
.y23c{bottom:84.019500px;}
.yc3{bottom:84.089086px;}
.y135{bottom:84.321000px;}
.y182{bottom:84.471000px;}
.y5a{bottom:84.981000px;}
.y156{bottom:85.046657px;}
.y22a{bottom:86.797500px;}
.y1f8{bottom:87.249000px;}
.y205{bottom:87.849000px;}
.y147{bottom:88.320000px;}
.ycc{bottom:89.041583px;}
.y1b1{bottom:89.059500px;}
.y1bf{bottom:89.109000px;}
.y1e3{bottom:90.007500px;}
.ye4{bottom:90.027994px;}
.yc9{bottom:90.565228px;}
.yaa{bottom:90.673358px;}
.yc2{bottom:90.923383px;}
.y10{bottom:91.023000px;}
.y20{bottom:93.795000px;}
.y177{bottom:94.078500px;}
.y157{bottom:95.384639px;}
.y128{bottom:95.535000px;}
.y23f{bottom:96.540000px;}
.y1a4{bottom:96.705000px;}
.ye3{bottom:96.862291px;}
.yc8{bottom:97.399525px;}
.y19a{bottom:97.561500px;}
.y18e{bottom:97.666500px;}
.yc1{bottom:97.757680px;}
.ycb{bottom:97.926169px;}
.y216{bottom:99.870000px;}
.y1ed{bottom:99.969000px;}
.y36{bottom:101.178000px;}
.y1b0{bottom:103.257000px;}
.y1be{bottom:103.305000px;}
.y247{bottom:103.695571px;}
.ye2{bottom:103.696588px;}
.y1d7{bottom:103.875000px;}
.y97{bottom:103.911000px;}
.yc7{bottom:104.233822px;}
.yc0{bottom:104.591976px;}
.yca{bottom:104.760466px;}
.y181{bottom:104.794500px;}
.y9b{bottom:105.456000px;}
.y158{bottom:105.715397px;}
.y1cf{bottom:107.058000px;}
.y146{bottom:108.645000px;}
.y23b{bottom:109.221000px;}
.y59{bottom:109.788000px;}
.ye1{bottom:110.530885px;}
.yc6{bottom:111.068118px;}
.ybf{bottom:111.426273px;}
.y229{bottom:111.604500px;}
.y204{bottom:112.656000px;}
.y9e{bottom:113.299486px;}
.y7f{bottom:113.299818px;}
.y199{bottom:113.998500px;}
.y18d{bottom:114.103500px;}
.y1f{bottom:114.118500px;}
.y28{bottom:114.595500px;}
.y1e2{bottom:114.814500px;}
.y20d{bottom:114.865500px;}
.y159{bottom:116.046154px;}
.y1af{bottom:118.051500px;}
.y1bd{bottom:118.099500px;}
.ye0{bottom:119.415470px;}
.yc5{bottom:119.952704px;}
.ybe{bottom:120.310859px;}
.y127{bottom:120.342000px;}
.y215{bottom:120.792000px;}
.ya4{bottom:121.428313px;}
.y134{bottom:122.388000px;}
.y7e{bottom:123.218425px;}
.y1d6{bottom:124.198500px;}
.y1ec{bottom:124.260000px;}
.y180{bottom:125.118000px;}
.y35{bottom:125.985000px;}
.ydf{bottom:126.249767px;}
.y15a{bottom:126.421368px;}
.y6a{bottom:126.668534px;}
.yc4{bottom:126.787001px;}
.y80{bottom:126.880404px;}
.ybd{bottom:127.145155px;}
.y7{bottom:127.908000px;}
.y145{bottom:128.968500px;}
.y18c{bottom:130.542000px;}
.y1a3{bottom:130.756500px;}
.y228{bottom:131.928000px;}
.y1f7{bottom:133.186500px;}
.y58{bottom:134.598000px;}
.y27{bottom:134.919000px;}
.y1e1{bottom:135.138000px;}
.y20c{bottom:135.189000px;}
.y176{bottom:136.398000px;}
.y69{bottom:136.709636px;}
.y15b{bottom:136.748706px;}
.y203{bottom:137.463000px;}
.yf{bottom:139.753500px;}
.y1ae{bottom:141.580500px;}
.y1bc{bottom:141.630000px;}
.ydb{bottom:144.336036px;}
.y17f{bottom:145.441500px;}
.y198{bottom:146.875500px;}
.y133{bottom:147.195000px;}
.y6{bottom:148.231500px;}
.y1d5{bottom:149.005500px;}
.y16{bottom:149.025000px;}
.y144{bottom:149.292000px;}
.y34{bottom:150.792000px;}
.y1a2{bottom:151.080000px;}
.yda{bottom:151.170333px;}
.yd3{bottom:151.243152px;}
.y1ce{bottom:151.602000px;}
.ya7{bottom:152.190612px;}
.y126{bottom:152.622000px;}
.y77{bottom:153.464239px;}
.y1e{bottom:154.035000px;}
.y7d{bottom:154.970405px;}
.yac{bottom:155.013419px;}
.y26{bottom:155.242500px;}
.y214{bottom:155.335500px;}
.y18{bottom:156.408421px;}
.y175{bottom:156.723000px;}
.y227{bottom:156.735000px;}
.y1f6{bottom:156.751500px;}
.yd9{bottom:158.004629px;}
.yeb{bottom:158.077445px;}
.yd2{bottom:158.077449px;}
.y5f{bottom:158.640324px;}
.y1e0{bottom:159.945000px;}
.y20b{bottom:159.997500px;}
.y4e{bottom:161.064000px;}
.y249{bottom:162.139347px;}
.y4b{bottom:162.159000px;}
.y48{bottom:162.484500px;}
.y197{bottom:163.314000px;}
.y76{bottom:163.382846px;}
.y18b{bottom:163.419000px;}
.yd8{bottom:164.838926px;}
.y7c{bottom:164.889012px;}
.yea{bottom:164.911742px;}
.yd1{bottom:164.911745px;}
.y83{bottom:168.468162px;}
.y5e{bottom:168.681426px;}
.y1d4{bottom:169.329000px;}
.y9f{bottom:169.676773px;}
.y143{bottom:170.214000px;}
.y125{bottom:170.554500px;}
.y1eb{bottom:170.721000px;}
.yd7{bottom:171.673223px;}
.ye9{bottom:171.746039px;}
.yd0{bottom:171.746042px;}
.y132{bottom:172.002000px;}
.y15{bottom:173.832000px;}
.y202{bottom:174.204000px;}
.y1a1{bottom:174.253500px;}
.y68{bottom:174.865838px;}
.y33{bottom:175.600500px;}
.y1cd{bottom:176.409000px;}
.yde{bottom:177.684950px;}
.y57{bottom:177.777000px;}
.y82{bottom:178.386753px;}
.yd6{bottom:178.507519px;}
.ye8{bottom:178.580335px;}
.ycf{bottom:178.580339px;}
.y1d{bottom:178.842000px;}
.y25{bottom:179.529000px;}
.y196{bottom:179.752500px;}
.y18a{bottom:179.857500px;}
.y213{bottom:180.537000px;}
.y226{bottom:181.545000px;}
.ya0{bottom:182.502313px;}
.y86{bottom:182.784260px;}
.y89{bottom:183.523293px;}
.y174{bottom:184.518000px;}
.y1df{bottom:184.755000px;}
.y1bb{bottom:185.829000px;}
.y1ad{bottom:185.860500px;}
.ydd{bottom:186.569536px;}
.y61{bottom:186.915169px;}
.y5{bottom:187.191000px;}
.yd5{bottom:187.392105px;}
.ye7{bottom:187.464921px;}
.yce{bottom:187.464925px;}
.y8a{bottom:188.145212px;}
.y81{bottom:188.304860px;}
.ye{bottom:188.485500px;}
.y1ea{bottom:191.046000px;}
.y124{bottom:191.476500px;}
.ydc{bottom:193.403833px;}
.y245{bottom:193.670368px;}
.y85{bottom:194.119665px;}
.y1d3{bottom:194.137500px;}
.yd4{bottom:194.226402px;}
.ye6{bottom:194.299218px;}
.ycd{bottom:194.299221px;}
.y88{bottom:194.858698px;}
.y66{bottom:194.948050px;}
.y201{bottom:195.126000px;}
.y131{bottom:195.175500px;}
.y195{bottom:196.191000px;}
.y189{bottom:196.296000px;}
.y62{bottom:196.956272px;}
.y14{bottom:198.639000px;}
.y20a{bottom:200.053500px;}
.ya1{bottom:200.213773px;}
.y1cc{bottom:201.216000px;}
.y4{bottom:201.387000px;}
.yab{bottom:202.491472px;}
.y56{bottom:202.584000px;}
.y1f5{bottom:202.690500px;}
.y92{bottom:203.017500px;}
.y1c{bottom:203.649000px;}
.y67{bottom:204.989152px;}
.y173{bottom:205.440000px;}
.y84{bottom:205.455071px;}
.y87{bottom:206.194104px;}
.y3e{bottom:206.229000px;}
.y60{bottom:206.997381px;}
.y1a0{bottom:208.305000px;}
.y1fb{bottom:209.694000px;}
.y17e{bottom:209.776500px;}
.y1ba{bottom:210.636000px;}
.y1ac{bottom:210.667500px;}
.y123{bottom:213.892500px;}
.y14e{bottom:214.369500px;}
.y16b{bottom:214.602000px;}
.y200{bottom:215.449500px;}
.y1e9{bottom:215.853000px;}
.y70{bottom:219.047717px;}
.y9d{bottom:219.146715px;}
.y13c{bottom:219.165000px;}
.y209{bottom:220.377000px;}
.y24{bottom:222.708000px;}
.y212{bottom:222.922500px;}
.y13{bottom:223.446000px;}
.y7b{bottom:223.751976px;}
.y117{bottom:224.950263px;}
.y110{bottom:225.487496px;}
.y109{bottom:225.560316px;}
.y1cb{bottom:226.023000px;}
.y63{bottom:227.079586px;}
.y55{bottom:227.391000px;}
.y1de{bottom:227.460000px;}
.y1f4{bottom:227.499000px;}
.y91{bottom:227.824500px;}
.y172{bottom:227.856000px;}
.y130{bottom:228.385500px;}
.y1b{bottom:228.456000px;}
.y14d{bottom:228.565500px;}
.y19f{bottom:228.628500px;}
.y16a{bottom:228.799500px;}
.y21e{bottom:228.814500px;}
.y194{bottom:229.068000px;}
.y188{bottom:229.173000px;}
.y6f{bottom:230.383123px;}
.y3d{bottom:230.956500px;}
.y1b9{bottom:230.959500px;}
.y1ab{bottom:230.992500px;}
.y116{bottom:231.784559px;}
.y10f{bottom:232.321793px;}
.y108{bottom:232.394613px;}
.y118{bottom:232.799164px;}
.y7a{bottom:233.670575px;}
.y75{bottom:233.793081px;}
.y9c{bottom:234.415213px;}
.y17d{bottom:234.583500px;}
.y3{bottom:235.102500px;}
.y64{bottom:235.112976px;}
.y1ff{bottom:235.773000px;}
.y1e8{bottom:236.176500px;}
.yd{bottom:237.217500px;}
.y115{bottom:238.618856px;}
.y122{bottom:238.699500px;}
.y10e{bottom:239.156090px;}
.y107{bottom:239.228909px;}
.y13b{bottom:239.488500px;}
.y208{bottom:240.700500px;}
.y14c{bottom:242.763000px;}
.y169{bottom:242.995500px;}
.y23{bottom:243.031500px;}
.y211{bottom:243.246000px;}
.y74{bottom:243.711680px;}
.y114{bottom:245.453153px;}
.y193{bottom:245.506500px;}
.y187{bottom:245.611500px;}
.y10d{bottom:245.990386px;}
.y106{bottom:246.063206px;}
.y12f{bottom:246.319500px;}
.y171{bottom:246.775500px;}
.y1dd{bottom:247.783500px;}
.y12{bottom:248.253000px;}
.y21d{bottom:249.138000px;}
.y54{bottom:252.198000px;}
.y113{bottom:252.287449px;}
.y90{bottom:252.631500px;}
.y10c{bottom:252.824683px;}
.y105{bottom:252.897503px;}
.y1a{bottom:253.263000px;}
.y19e{bottom:253.747500px;}
.y65{bottom:255.194685px;}
.y1b8{bottom:255.687000px;}
.y1aa{bottom:255.718500px;}
.y1fe{bottom:256.098000px;}
.y2f{bottom:256.530000px;}
.y14b{bottom:256.960500px;}
.y168{bottom:257.193000px;}
.y13a{bottom:259.812000px;}
.y1e7{bottom:260.983500px;}
.y207{bottom:261.025500px;}
.y112{bottom:261.172035px;}
.y10b{bottom:261.709269px;}
.y104{bottom:261.782088px;}
.y1c4{bottom:262.490527px;}
.y22{bottom:263.355000px;}
.y121{bottom:263.506500px;}
.y210{bottom:263.569500px;}
.y12e{bottom:264.252000px;}
.y11a{bottom:266.515769px;}
.y79{bottom:267.932839px;}
.y111{bottom:268.006332px;}
.y1dc{bottom:268.107000px;}
.y3b{bottom:268.480500px;}
.y10a{bottom:268.543566px;}
.y103{bottom:268.616385px;}
.y1f3{bottom:273.438000px;}
.y21c{bottom:273.945000px;}
.y119{bottom:274.872720px;}
.y1fd{bottom:276.421500px;}
.y53{bottom:277.005000px;}
.y78{bottom:277.851438px;}
.y19{bottom:277.941000px;}
.y192{bottom:278.383500px;}
.y186{bottom:278.487000px;}
.y139{bottom:280.135500px;}
.y17c{bottom:281.106000px;}
.y1e6{bottom:281.307000px;}
.y12d{bottom:282.184500px;}
.y170{bottom:283.888500px;}
.y73{bottom:283.998607px;}
.y20f{bottom:284.491500px;}
.y14a{bottom:284.605500px;}
.y167{bottom:284.839500px;}
.yc{bottom:285.948000px;}
.y19d{bottom:287.109000px;}
.y21{bottom:287.640000px;}
.y120{bottom:288.313500px;}
.y1db{bottom:291.279000px;}
.y6c{bottom:293.827843px;}
.y72{bottom:293.917206px;}
.y185{bottom:294.925500px;}
.y1fc{bottom:297.343500px;}
.y1f2{bottom:298.245000px;}
.y102{bottom:298.627115px;}
.y2{bottom:298.713000px;}
.y21b{bottom:298.752000px;}
.y1b7{bottom:298.866000px;}
.y101{bottom:298.883404px;}
.y1a9{bottom:298.899000px;}
.y16f{bottom:300.327000px;}
.y138{bottom:300.459000px;}
.y52{bottom:300.570000px;}
.y17b{bottom:301.429500px;}
.y2b{bottom:301.474500px;}
.y1e5{bottom:301.630500px;}
.y71{bottom:304.119976px;}
.y6b{bottom:305.163249px;}
.yfe{bottom:305.461453px;}
.yfc{bottom:305.717739px;}
.yfd{bottom:305.717741px;}
.y19c{bottom:306.535500px;}
.y149{bottom:309.415500px;}
.y166{bottom:309.648000px;}
.y184{bottom:311.364000px;}
.ybc{bottom:312.295708px;}
.ybb{bottom:312.295710px;}
.yba{bottom:312.551994px;}
.y11f{bottom:313.120500px;}
.y242{bottom:315.219000px;}
.y16e{bottom:316.765500px;}
.y12c{bottom:317.182500px;}
.yb9{bottom:319.130005px;}
.y244{bottom:319.608000px;}
.y1f1{bottom:323.052000px;}
.y21a{bottom:323.560500px;}
.y1b6{bottom:323.674500px;}
.y1a8{bottom:323.707500px;}
.y1{bottom:324.417000px;}
.y19b{bottom:325.963500px;}
.y1e4{bottom:326.439000px;}
.y2a{bottom:327.109500px;}
.y20e{bottom:327.253500px;}
.y51{bottom:332.125500px;}
.y16d{bottom:333.204000px;}
.y8f{bottom:337.000500px;}
.y12b{bottom:337.506000px;}
.yb{bottom:362.751000px;}
.y41{bottom:3025.466685px;}
.y11c{bottom:3025.571685px;}
.y44{bottom:3025.792185px;}
.y47{bottom:3026.888685px;}
.y96{bottom:3029.527185px;}
.y38{bottom:3032.471685px;}
.y2e{bottom:3032.921685px;}
.y237{bottom:3034.444185px;}
.y225{bottom:3041.705685px;}
.y40{bottom:3045.790185px;}
.y43{bottom:3046.115685px;}
.y230{bottom:3046.639185px;}
.y23a{bottom:3047.044185px;}
.y46{bottom:3047.212185px;}
.y165{bottom:3048.071685px;}
.y11b{bottom:3050.378685px;}
.y95{bottom:3054.334185px;}
.y37{bottom:3057.673185px;}
.y2d{bottom:3058.556685px;}
.y233{bottom:3059.239185px;}
.y236{bottom:3059.251185px;}
.y224{bottom:3066.512685px;}
.y142{bottom:3068.035185px;}
.y22f{bottom:3071.446185px;}
.y239{bottom:3071.851185px;}
.y94{bottom:3079.141185px;}
.y232{bottom:3084.046185px;}
.y235{bottom:3084.058185px;}
.y223{bottom:3086.836185px;}
.y141{bottom:3088.358685px;}
.y22e{bottom:3096.253185px;}
.y238{bottom:3096.578685px;}
.y93{bottom:3103.949685px;}
.y140{bottom:3108.683685px;}
.y231{bottom:3108.772185px;}
.y234{bottom:3109.259685px;}
.y222{bottom:3111.643185px;}
.y22d{bottom:3121.454685px;}
.y13f{bottom:3129.007185px;}
.y221{bottom:3131.966685px;}
.y13e{bottom:3149.330685px;}
.y220{bottom:3156.773685px;}
.y45{bottom:3161.102685px;}
.y42{bottom:3162.197685px;}
.y3f{bottom:3162.523185px;}
.y13d{bottom:3170.252685px;}
.y21f{bottom:3181.583685px;}
.y164{bottom:3214.640685px;}
.y163{bottom:3228.838185px;}
.y162{bottom:3243.034185px;}
.y2c{bottom:3256.568685px;}
.y161{bottom:3257.231685px;}
.y30{bottom:3257.632185px;}
.y160{bottom:3284.878185px;}
.y15f{bottom:3309.686685px;}
.h2c{height:-2665.394685px;}
.h1e{height:14.068149px;}
.h23{height:15.387598px;}
.h22{height:15.387610px;}
.h1d{height:16.412755px;}
.h38{height:16.518285px;}
.h20{height:16.615884px;}
.h1f{height:16.733348px;}
.h1b{height:19.798155px;}
.h24{height:20.317835px;}
.h12{height:20.669246px;}
.h29{height:21.283892px;}
.h17{height:21.722800px;}
.h16{height:22.272924px;}
.h21{height:23.220383px;}
.h14{height:24.113996px;}
.h8{height:25.392845px;}
.h36{height:26.648141px;}
.h1a{height:27.371390px;}
.h2b{height:27.398067px;}
.h2a{height:27.533314px;}
.h13{height:27.558896px;}
.h10{height:28.206206px;}
.h18{height:28.963734px;}
.h4{height:33.856985px;}
.h7{height:35.259465px;}
.h5{height:35.530706px;}
.h2d{height:38.089267px;}
.h34{height:39.595622px;}
.h2e{height:39.972211px;}
.h9{height:41.037857px;}
.h31{height:41.578840px;}
.h25{height:42.321125px;}
.h26{height:44.413271px;}
.h3{height:46.341857px;}
.hc{height:48.174586px;}
.h27{height:48.632768px;}
.he{height:50.595857px;}
.hb{height:53.210693px;}
.h30{height:60.666893px;}
.h2{height:60.942658px;}
.h2f{height:62.181870px;}
.hd{height:63.352819px;}
.hf{height:72.840146px;}
.h32{height:89.790940px;}
.h6{height:91.054594px;}
.h19{height:91.935269px;}
.h35{height:105.295601px;}
.h33{height:138.003049px;}
.h28{height:148.823100px;}
.h37{height:205.400085px;}
.h15{height:246.630013px;}
.h11{height:312.275865px;}
.ha{height:314.484000px;}
.h1c{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w9{width:-2674.055685px;}
.wb{width:291.677925px;}
.w8{width:297.646200px;}
.w4{width:333.363113px;}
.w3{width:416.691300px;}
.w2{width:416.724081px;}
.w5{width:583.333957px;}
.w7{width:595.267192px;}
.w6{width:595.276717px;}
.wa{width:656.488095px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x59{left:4.433202px;}
.x2c{left:6.145841px;}
.x68{left:7.176011px;}
.x77{left:9.366417px;}
.x54{left:14.106881px;}
.xa{left:18.136500px;}
.x75{left:20.107533px;}
.x74{left:22.002018px;}
.x65{left:23.520573px;}
.x73{left:26.457820px;}
.x70{left:28.347000px;}
.x72{left:30.913622px;}
.x71{left:33.143233px;}
.x1a{left:36.141000px;}
.x66{left:37.465116px;}
.x67{left:39.189710px;}
.x10{left:42.237000px;}
.xb{left:43.275000px;}
.x76{left:44.291287px;}
.x41{left:45.470220px;}
.x1d{left:48.475500px;}
.x7b{left:53.536500px;}
.x7c{left:54.792000px;}
.x58{left:60.995158px;}
.x6e{left:63.465000px;}
.x2f{left:72.515952px;}
.x8a{left:73.596000px;}
.xc{left:75.247500px;}
.x64{left:76.922058px;}
.x82{left:86.380013px;}
.x6b{left:92.069107px;}
.x87{left:95.410500px;}
.x15{left:96.786303px;}
.x51{left:98.638558px;}
.x47{left:100.108156px;}
.x6d{left:107.974500px;}
.x50{left:108.998260px;}
.x4d{left:112.735681px;}
.x9{left:120.988740px;}
.x32{left:126.453163px;}
.x33{left:129.382179px;}
.x48{left:130.472405px;}
.x8{left:131.812500px;}
.x2{left:135.441000px;}
.x4e{left:137.083325px;}
.x34{left:139.423284px;}
.x16{left:141.831000px;}
.x4b{left:143.272681px;}
.x30{left:145.590030px;}
.x31{left:149.464385px;}
.x78{left:155.053700px;}
.x3b{left:159.505492px;}
.x3a{left:161.186963px;}
.x5a{left:165.708040px;}
.x42{left:168.848572px;}
.xd{left:174.376661px;}
.x55{left:191.216674px;}
.x14{left:193.065000px;}
.x5c{left:203.041017px;}
.x4c{left:204.346681px;}
.x5{left:206.259000px;}
.x27{left:208.656567px;}
.x26{left:218.697670px;}
.x4a{left:219.865680px;}
.x5b{left:224.969974px;}
.x4{left:227.187000px;}
.x24{left:230.173402px;}
.x2a{left:233.964587px;}
.x2b{left:238.835211px;}
.x25{left:240.214505px;}
.x28{left:245.218740px;}
.x1b{left:250.866000px;}
.x1e{left:252.216513px;}
.x12{left:253.971000px;}
.x29{left:255.259842px;}
.x23{left:258.288494px;}
.x1{left:259.869000px;}
.x22{left:263.680989px;}
.x1f{left:265.269952px;}
.x62{left:267.492704px;}
.x20{left:273.722098px;}
.x3{left:278.695500px;}
.x21{left:283.763201px;}
.x49{left:293.478826px;}
.x7{left:299.314500px;}
.x6{left:304.689000px;}
.x80{left:308.691000px;}
.x43{left:316.363173px;}
.x81{left:321.696000px;}
.x39{left:324.531684px;}
.x38{left:326.910541px;}
.x37{left:330.729966px;}
.x3c{left:332.895275px;}
.x53{left:335.157015px;}
.x36{left:337.116520px;}
.x44{left:338.293500px;}
.x35{left:344.865230px;}
.x40{left:354.223729px;}
.x91{left:358.813500px;}
.x52{left:362.978784px;}
.x7d{left:364.252500px;}
.x7a{left:369.633000px;}
.x45{left:371.020500px;}
.x8b{left:384.298500px;}
.x89{left:385.387500px;}
.x7e{left:389.520000px;}
.x88{left:401.551500px;}
.x5f{left:403.703647px;}
.x7f{left:404.799000px;}
.x6a{left:406.091375px;}
.x5d{left:407.740153px;}
.x5e{left:411.392232px;}
.x90{left:413.862000px;}
.x84{left:415.427599px;}
.x83{left:423.864718px;}
.x2d{left:442.176875px;}
.x4f{left:446.079652px;}
.x3f{left:460.755042px;}
.x3d{left:462.785210px;}
.x1c{left:465.589500px;}
.x2e{left:469.815476px;}
.x3e{left:485.752395px;}
.x57{left:487.238394px;}
.x61{left:492.609352px;}
.x69{left:508.178734px;}
.x63{left:513.123337px;}
.x6c{left:514.190183px;}
.x60{left:516.420894px;}
.x56{left:517.763165px;}
.x86{left:594.615900px;}
.x85{left:607.070698px;}
.x8c{left:3028.385685px;}
.x17{left:3036.179685px;}
.xe{left:3042.275685px;}
.x8d{left:3061.112685px;}
.x46{left:3075.286185px;}
.x13{left:3193.103685px;}
.x18{left:3250.904685px;}
.xf{left:3254.009685px;}
.x6f{left:3273.212685px;}
.x79{left:3354.370185px;}
.x11{left:3370.243185px;}
.x8e{left:3413.900685px;}
.x8f{left:3446.627685px;}
.x19{left:3465.628185px;}
@media print{
.v1{vertical-align:-4.714667pt;}
.v4{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.875507pt;}
.v2{vertical-align:3.781333pt;}
.v5{vertical-align:9.337920pt;}
.v6{vertical-align:42.855200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000946pt;}
.ls8{letter-spacing:5.313400pt;}
.ls7{letter-spacing:13.281216pt;}
.ls6{letter-spacing:13.286549pt;}
.ls3{letter-spacing:14.545467pt;}
.ls5{letter-spacing:20.960640pt;}
.ls1{letter-spacing:46.666152pt;}
.ls4{letter-spacing:205.542534pt;}
.ls2{letter-spacing:422.833320pt;}
.ws30{word-spacing:-33.049467pt;}
.ws1{word-spacing:-14.545467pt;}
.ws22{word-spacing:-13.283467pt;}
.ws13{word-spacing:-11.702746pt;}
.ws2{word-spacing:-11.539466pt;}
.wsa{word-spacing:-11.220414pt;}
.ws28{word-spacing:-9.999721pt;}
.wsb{word-spacing:-9.817847pt;}
.wse{word-spacing:-9.658921pt;}
.ws1c{word-spacing:-7.893655pt;}
.wsd{word-spacing:-7.244191pt;}
.ws1b{word-spacing:-6.315310pt;}
.ws12{word-spacing:-6.087074pt;}
.ws11{word-spacing:-5.217519pt;}
.ws7{word-spacing:-1.512729pt;}
.ws37{word-spacing:-0.465455pt;}
.ws4{word-spacing:-0.174546pt;}
.ws1f{word-spacing:-0.116364pt;}
.ws2f{word-spacing:-0.095642pt;}
.ws1e{word-spacing:-0.053134pt;}
.wsc{word-spacing:-0.026058pt;}
.ws14{word-spacing:-0.019440pt;}
.ws38{word-spacing:-0.003729pt;}
.ws2c{word-spacing:-0.002499pt;}
.ws6{word-spacing:-0.002395pt;}
.ws2d{word-spacing:-0.001572pt;}
.ws3{word-spacing:-0.001565pt;}
.ws36{word-spacing:-0.001075pt;}
.ws0{word-spacing:0.000000pt;}
.ws35{word-spacing:0.000288pt;}
.ws8{word-spacing:0.001394pt;}
.ws1d{word-spacing:1.989419pt;}
.ws2e{word-spacing:1.992141pt;}
.ws17{word-spacing:2.215968pt;}
.ws5{word-spacing:2.443638pt;}
.ws39{word-spacing:14.486117pt;}
.ws1a{word-spacing:27.162101pt;}
.ws15{word-spacing:28.072282pt;}
.ws16{word-spacing:28.072288pt;}
.ws20{word-spacing:30.557491pt;}
.ws18{word-spacing:37.178213pt;}
.ws24{word-spacing:47.820600pt;}
.ws23{word-spacing:53.134000pt;}
.ws21{word-spacing:61.162803pt;}
.ws9{word-spacing:61.543227pt;}
.wsf{word-spacing:73.268451pt;}
.ws27{word-spacing:100.827078pt;}
.ws26{word-spacing:134.025202pt;}
.ws29{word-spacing:138.671250pt;}
.ws2b{word-spacing:139.362162pt;}
.ws19{word-spacing:143.883756pt;}
.ws2a{word-spacing:161.669896pt;}
.ws10{word-spacing:214.175293pt;}
.ws25{word-spacing:218.699544pt;}
.ws34{word-spacing:496.116777pt;}
.ws33{word-spacing:534.865900pt;}
.ws31{word-spacing:639.476897pt;}
.ws32{word-spacing:644.131446pt;}
._15{margin-left:-512.965140pt;}
._e{margin-left:-7.796370pt;}
._10{margin-left:-6.632733pt;}
._1f{margin-left:-5.178186pt;}
._a{margin-left:-3.898185pt;}
._7{margin-left:-2.560002pt;}
._0{margin-left:-1.338183pt;}
._9{width:0.989092pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._12{width:5.088586pt;}
._2{width:6.305997pt;}
._c{width:7.329174pt;}
._1c{width:9.455590pt;}
._1d{width:11.424559pt;}
._2a{width:13.533286pt;}
._17{width:15.090018pt;}
._8{width:16.523650pt;}
._b{width:17.454560pt;}
._16{width:22.455789pt;}
._13{width:24.148957pt;}
._1b{width:40.478909pt;}
._1a{width:57.151068pt;}
._1e{width:61.210624pt;}
._18{width:63.767326pt;}
._19{width:68.216811pt;}
._6{width:71.476156pt;}
._26{width:87.224774pt;}
._29{width:111.453878pt;}
._23{width:120.422898pt;}
._24{width:124.886154pt;}
._25{width:144.652002pt;}
._34{width:150.109216pt;}
._d{width:163.956500pt;}
._33{width:182.283788pt;}
._30{width:184.203790pt;}
._31{width:197.236528pt;}
._20{width:205.097240pt;}
._21{width:209.560496pt;}
._22{width:229.326344pt;}
._32{width:235.345651pt;}
._27{width:237.190176pt;}
._2f{width:276.014775pt;}
._2c{width:283.345691pt;}
._28{width:344.945928pt;}
._2e{width:404.829428pt;}
._2d{width:427.229447pt;}
._36{width:462.558949pt;}
._11{width:531.303511pt;}
._35{width:769.874477pt;}
._14{width:885.783723pt;}
._5{width:900.610389pt;}
._2b{width:915.431723pt;}
._f{width:1024.931763pt;}
.fs11{font-size:16.459052pt;}
.fs10{font-size:19.202126pt;}
.fs12{font-size:19.439777pt;}
.fs16{font-size:19.922113pt;}
.fs1a{font-size:20.915840pt;}
.fsf{font-size:23.162880pt;}
.fs14{font-size:23.770881pt;}
.fs8{font-size:24.182015pt;}
.fs15{font-size:24.901120pt;}
.fsb{font-size:26.058240pt;}
.fs13{font-size:27.166721pt;}
.fsa{font-size:28.212204pt;}
.fse{font-size:28.953600pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:32.242570pt;}
.fsc{font-size:34.744320pt;}
.fs7{font-size:37.645920pt;}
.fs18{font-size:39.998884pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs17{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:67.089920pt;}
.fs0{font-size:76.513067pt;}
.fsd{font-size:110.283724pt;}
.fs19{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:2.334480pt;}
.y11{bottom:3.441333pt;}
.ya{bottom:3.442667pt;}
.y1c8{bottom:8.428745pt;}
.yed{bottom:11.177412pt;}
.y15c{bottom:13.189204pt;}
.y8{bottom:13.429333pt;}
.yff{bottom:13.666352pt;}
.y1ca{bottom:13.785646pt;}
.y3c{bottom:14.504117pt;}
.yfb{bottom:14.511082pt;}
.yb4{bottom:17.289953pt;}
.y9{bottom:18.131024pt;}
.y1a7{bottom:18.906667pt;}
.y1c7{bottom:19.142546pt;}
.y1c6{bottom:19.142547pt;}
.y100{bottom:19.445333pt;}
.yec{bottom:19.667012pt;}
.y219{bottom:19.950667pt;}
.y8c{bottom:19.970645pt;}
.y150{bottom:20.426700pt;}
.yfa{bottom:20.586012pt;}
.y1da{bottom:20.941333pt;}
.yb8{bottom:21.408000pt;}
.y246{bottom:21.923068pt;}
.y4a{bottom:22.602667pt;}
.y11e{bottom:22.696000pt;}
.y17a{bottom:22.705333pt;}
.y4d{bottom:22.892000pt;}
.y50{bottom:23.866667pt;}
.y1c9{bottom:24.499447pt;}
.yb3{bottom:24.528353pt;}
.y17{bottom:24.962667pt;}
.y5d{bottom:25.941333pt;}
.y9a{bottom:26.212000pt;}
.yf9{bottom:26.660943pt;}
.y1b5{bottom:28.686667pt;}
.y1c3{bottom:28.730667pt;}
.y3a{bottom:28.829333pt;}
.y32{bottom:29.229333pt;}
.y151{bottom:29.609596pt;}
.yb7{bottom:29.733333pt;}
.y23e{bottom:30.582667pt;}
.y24a{bottom:30.766667pt;}
.y5c{bottom:31.437333pt;}
.yb2{bottom:31.766753pt;}
.y137{bottom:31.954667pt;}
.yf8{bottom:32.735873pt;}
.y1d2{bottom:32.994667pt;}
.yf4{bottom:33.213415pt;}
.y1fa{bottom:33.524000pt;}
.y1f0{bottom:34.398667pt;}
.y243{bottom:34.669333pt;}
.y1c5{bottom:35.570374pt;}
.y22c{bottom:37.037333pt;}
.y1d9{bottom:38.210667pt;}
.yf7{bottom:38.810804pt;}
.y152{bottom:38.828969pt;}
.yb1{bottom:39.005153pt;}
.yf3{bottom:39.288345pt;}
.yf0{bottom:39.353073pt;}
.y49{bottom:40.668000pt;}
.y4c{bottom:40.957333pt;}
.y1b4{bottom:41.306667pt;}
.y1c2{bottom:41.349333pt;}
.y241{bottom:41.782667pt;}
.y4f{bottom:41.932000pt;}
.ya9{bottom:42.197413pt;}
.y8b{bottom:42.284212pt;}
.y14f{bottom:42.489333pt;}
.ya3{bottom:42.601267pt;}
.y16c{bottom:42.696000pt;}
.y191{bottom:42.978667pt;}
.y8e{bottom:44.222812pt;}
.y11d{bottom:44.746667pt;}
.y179{bottom:44.756000pt;}
.y12a{bottom:44.804000pt;}
.yaf{bottom:46.049381pt;}
.yb0{bottom:46.243553pt;}
.y15d{bottom:46.488981pt;}
.yf6{bottom:46.708213pt;}
.y1a6{bottom:46.948000pt;}
.yf2{bottom:47.185754pt;}
.yef{bottom:47.250483pt;}
.yb6{bottom:47.800000pt;}
.y153{bottom:48.011864pt;}
.y99{bottom:48.262667pt;}
.ya6{bottom:49.848118pt;}
.y1d1{bottom:51.060000pt;}
.y39{bottom:51.230667pt;}
.y31{bottom:52.016000pt;}
.ya8{bottom:52.386522pt;}
.y23d{bottom:52.633333pt;}
.y218{bottom:52.642667pt;}
.yf5{bottom:52.783144pt;}
.yf1{bottom:53.260685pt;}
.yee{bottom:53.325413pt;}
.y5b{bottom:53.488000pt;}
.y1b3{bottom:53.925333pt;}
.y1c1{bottom:53.969333pt;}
.y136{bottom:54.004000pt;}
.y8d{bottom:54.298728pt;}
.y1ef{bottom:54.324000pt;}
.y6e{bottom:55.097109pt;}
.y1d8{bottom:55.478667pt;}
.y1f9{bottom:55.574667pt;}
.ya2{bottom:56.362678pt;}
.yad{bottom:56.659313pt;}
.y183{bottom:57.020000pt;}
.y154{bottom:57.194760pt;}
.y190{bottom:57.590667pt;}
.y22b{bottom:59.088000pt;}
.y206{bottom:60.022667pt;}
.y148{bottom:60.441333pt;}
.y240{bottom:63.833333pt;}
.y1a5{bottom:65.013333pt;}
.y6d{bottom:65.173025pt;}
.yae{bottom:65.793182pt;}
.yb5{bottom:65.865333pt;}
.y155{bottom:66.414132pt;}
.y1b2{bottom:66.545333pt;}
.y1c0{bottom:66.588000pt;}
.y178{bottom:66.806667pt;}
.y129{bottom:66.854667pt;}
.ya5{bottom:67.763158pt;}
.y248{bottom:68.255706pt;}
.y1ee{bottom:68.936000pt;}
.y98{bottom:70.313333pt;}
.y29{bottom:70.440000pt;}
.y217{bottom:70.708000pt;}
.y18f{bottom:72.202667pt;}
.y1d0{bottom:73.110667pt;}
.ye5{bottom:73.949954pt;}
.y23c{bottom:74.684000pt;}
.yc3{bottom:74.745854pt;}
.y135{bottom:74.952000pt;}
.y182{bottom:75.085333pt;}
.y5a{bottom:75.538667pt;}
.y156{bottom:75.597029pt;}
.y22a{bottom:77.153333pt;}
.y1f8{bottom:77.554667pt;}
.y205{bottom:78.088000pt;}
.y147{bottom:78.506667pt;}
.ycc{bottom:79.148074pt;}
.y1b1{bottom:79.164000pt;}
.y1bf{bottom:79.208000pt;}
.y1e3{bottom:80.006667pt;}
.ye4{bottom:80.024884pt;}
.yc9{bottom:80.502425pt;}
.yaa{bottom:80.598540pt;}
.yc2{bottom:80.820785pt;}
.y10{bottom:80.909333pt;}
.y20{bottom:83.373333pt;}
.y177{bottom:83.625333pt;}
.y157{bottom:84.786346pt;}
.y128{bottom:84.920000pt;}
.y23f{bottom:85.813333pt;}
.y1a4{bottom:85.960000pt;}
.ye3{bottom:86.099814pt;}
.yc8{bottom:86.577356pt;}
.y19a{bottom:86.721333pt;}
.y18e{bottom:86.814667pt;}
.yc1{bottom:86.895715pt;}
.ycb{bottom:87.045484pt;}
.y216{bottom:88.773333pt;}
.y1ed{bottom:88.861333pt;}
.y36{bottom:89.936000pt;}
.y1b0{bottom:91.784000pt;}
.y1be{bottom:91.826667pt;}
.y247{bottom:92.173841pt;}
.ye2{bottom:92.174745pt;}
.y1d7{bottom:92.333333pt;}
.y97{bottom:92.365333pt;}
.yc7{bottom:92.652286pt;}
.yc0{bottom:92.970646pt;}
.yca{bottom:93.120414pt;}
.y181{bottom:93.150667pt;}
.y9b{bottom:93.738667pt;}
.y158{bottom:93.969241pt;}
.y1cf{bottom:95.162667pt;}
.y146{bottom:96.573333pt;}
.y23b{bottom:97.085333pt;}
.y59{bottom:97.589333pt;}
.ye1{bottom:98.249675pt;}
.yc6{bottom:98.727216pt;}
.ybf{bottom:99.045576pt;}
.y229{bottom:99.204000pt;}
.y204{bottom:100.138667pt;}
.y9e{bottom:100.710654pt;}
.y7f{bottom:100.710950pt;}
.y199{bottom:101.332000pt;}
.y18d{bottom:101.425333pt;}
.y1f{bottom:101.438667pt;}
.y28{bottom:101.862667pt;}
.y1e2{bottom:102.057333pt;}
.y20d{bottom:102.102667pt;}
.y159{bottom:103.152137pt;}
.y1af{bottom:104.934667pt;}
.y1bd{bottom:104.977333pt;}
.ye0{bottom:106.147085pt;}
.yc5{bottom:106.624626pt;}
.ybe{bottom:106.942985pt;}
.y127{bottom:106.970667pt;}
.y215{bottom:107.370667pt;}
.ya4{bottom:107.936278pt;}
.y134{bottom:108.789333pt;}
.y7e{bottom:109.527489pt;}
.y1d6{bottom:110.398667pt;}
.y1ec{bottom:110.453333pt;}
.y180{bottom:111.216000pt;}
.y35{bottom:111.986667pt;}
.ydf{bottom:112.222015pt;}
.y15a{bottom:112.374549pt;}
.y6a{bottom:112.594252pt;}
.yc4{bottom:112.699556pt;}
.y80{bottom:112.782581pt;}
.ybd{bottom:113.017916pt;}
.y7{bottom:113.696000pt;}
.y145{bottom:114.638667pt;}
.y18c{bottom:116.037333pt;}
.y1a3{bottom:116.228000pt;}
.y228{bottom:117.269333pt;}
.y1f7{bottom:118.388000pt;}
.y58{bottom:119.642667pt;}
.y27{bottom:119.928000pt;}
.y1e1{bottom:120.122667pt;}
.y20c{bottom:120.168000pt;}
.y176{bottom:121.242667pt;}
.y69{bottom:121.519677pt;}
.y15b{bottom:121.554406pt;}
.y203{bottom:122.189333pt;}
.yf{bottom:124.225333pt;}
.y1ae{bottom:125.849333pt;}
.y1bc{bottom:125.893333pt;}
.ydb{bottom:128.298699pt;}
.y17f{bottom:129.281333pt;}
.y198{bottom:130.556000pt;}
.y133{bottom:130.840000pt;}
.y6{bottom:131.761333pt;}
.y1d5{bottom:132.449333pt;}
.y16{bottom:132.466667pt;}
.y144{bottom:132.704000pt;}
.y34{bottom:134.037333pt;}
.y1a2{bottom:134.293333pt;}
.yda{bottom:134.373629pt;}
.yd3{bottom:134.438357pt;}
.y1ce{bottom:134.757333pt;}
.ya7{bottom:135.280544pt;}
.y126{bottom:135.664000pt;}
.y77{bottom:136.412657pt;}
.y1e{bottom:136.920000pt;}
.y7d{bottom:137.751471pt;}
.yac{bottom:137.789706pt;}
.y26{bottom:137.993333pt;}
.y214{bottom:138.076000pt;}
.y18{bottom:139.029707pt;}
.y175{bottom:139.309333pt;}
.y227{bottom:139.320000pt;}
.y1f6{bottom:139.334667pt;}
.yd9{bottom:140.448559pt;}
.yeb{bottom:140.513285pt;}
.yd2{bottom:140.513288pt;}
.y5f{bottom:141.013621pt;}
.y1e0{bottom:142.173333pt;}
.y20b{bottom:142.220000pt;}
.y4e{bottom:143.168000pt;}
.y249{bottom:144.123864pt;}
.y4b{bottom:144.141333pt;}
.y48{bottom:144.430667pt;}
.y197{bottom:145.168000pt;}
.y76{bottom:145.229197pt;}
.y18b{bottom:145.261333pt;}
.yd8{bottom:146.523490pt;}
.y7c{bottom:146.568011pt;}
.yea{bottom:146.588215pt;}
.yd1{bottom:146.588218pt;}
.y83{bottom:149.749477pt;}
.y5e{bottom:149.939045pt;}
.y1d4{bottom:150.514667pt;}
.y9f{bottom:150.823798pt;}
.y143{bottom:151.301333pt;}
.y125{bottom:151.604000pt;}
.y1eb{bottom:151.752000pt;}
.yd7{bottom:152.598420pt;}
.ye9{bottom:152.663146pt;}
.yd0{bottom:152.663149pt;}
.y132{bottom:152.890667pt;}
.y15{bottom:154.517333pt;}
.y202{bottom:154.848000pt;}
.y1a1{bottom:154.892000pt;}
.y68{bottom:155.436300pt;}
.y33{bottom:156.089333pt;}
.y1cd{bottom:156.808000pt;}
.yde{bottom:157.942178pt;}
.y57{bottom:158.024000pt;}
.y82{bottom:158.566003pt;}
.yd6{bottom:158.673351pt;}
.ye8{bottom:158.738076pt;}
.ycf{bottom:158.738079pt;}
.y1d{bottom:158.970667pt;}
.y25{bottom:159.581333pt;}
.y196{bottom:159.780000pt;}
.y18a{bottom:159.873333pt;}
.y213{bottom:160.477333pt;}
.y226{bottom:161.373333pt;}
.ya0{bottom:162.224278pt;}
.y86{bottom:162.474898pt;}
.y89{bottom:163.131816pt;}
.y174{bottom:164.016000pt;}
.y1df{bottom:164.226667pt;}
.y1bb{bottom:165.181333pt;}
.y1ad{bottom:165.209333pt;}
.ydd{bottom:165.839588pt;}
.y61{bottom:166.146817pt;}
.y5{bottom:166.392000pt;}
.yd5{bottom:166.570760pt;}
.ye7{bottom:166.635485pt;}
.yce{bottom:166.635488pt;}
.y8a{bottom:167.240188pt;}
.y81{bottom:167.382098pt;}
.ye{bottom:167.542667pt;}
.y1ea{bottom:169.818667pt;}
.y124{bottom:170.201333pt;}
.ydc{bottom:171.914518pt;}
.y245{bottom:172.151438pt;}
.y85{bottom:172.550814pt;}
.y1d3{bottom:172.566667pt;}
.yd4{bottom:172.645691pt;}
.ye6{bottom:172.710416pt;}
.ycd{bottom:172.710419pt;}
.y88{bottom:173.207732pt;}
.y66{bottom:173.287155pt;}
.y201{bottom:173.445333pt;}
.y131{bottom:173.489333pt;}
.y195{bottom:174.392000pt;}
.y189{bottom:174.485333pt;}
.y62{bottom:175.072241pt;}
.y14{bottom:176.568000pt;}
.y20a{bottom:177.825333pt;}
.ya1{bottom:177.967798pt;}
.y1cc{bottom:178.858667pt;}
.y4{bottom:179.010667pt;}
.yab{bottom:179.992420pt;}
.y56{bottom:180.074667pt;}
.y1f5{bottom:180.169333pt;}
.y92{bottom:180.460000pt;}
.y1c{bottom:181.021333pt;}
.y67{bottom:182.212580pt;}
.y173{bottom:182.613333pt;}
.y84{bottom:182.626729pt;}
.y87{bottom:183.283648pt;}
.y3e{bottom:183.314667pt;}
.y60{bottom:183.997672pt;}
.y1a0{bottom:185.160000pt;}
.y1fb{bottom:186.394667pt;}
.y17e{bottom:186.468000pt;}
.y1ba{bottom:187.232000pt;}
.y1ac{bottom:187.260000pt;}
.y123{bottom:190.126667pt;}
.y14e{bottom:190.550667pt;}
.y16b{bottom:190.757333pt;}
.y200{bottom:191.510667pt;}
.y1e9{bottom:191.869333pt;}
.y70{bottom:194.709082pt;}
.y9d{bottom:194.797080pt;}
.y13c{bottom:194.813333pt;}
.y209{bottom:195.890667pt;}
.y24{bottom:197.962667pt;}
.y212{bottom:198.153333pt;}
.y13{bottom:198.618667pt;}
.y7b{bottom:198.890645pt;}
.y117{bottom:199.955789pt;}
.y110{bottom:200.433330pt;}
.y109{bottom:200.498059pt;}
.y1cb{bottom:200.909333pt;}
.y63{bottom:201.848521pt;}
.y55{bottom:202.125333pt;}
.y1de{bottom:202.186667pt;}
.y1f4{bottom:202.221333pt;}
.y91{bottom:202.510667pt;}
.y172{bottom:202.538667pt;}
.y130{bottom:203.009333pt;}
.y1b{bottom:203.072000pt;}
.y14d{bottom:203.169333pt;}
.y19f{bottom:203.225333pt;}
.y16a{bottom:203.377333pt;}
.y21e{bottom:203.390667pt;}
.y194{bottom:203.616000pt;}
.y188{bottom:203.709333pt;}
.y6f{bottom:204.784998pt;}
.y3d{bottom:205.294667pt;}
.y1b9{bottom:205.297333pt;}
.y1ab{bottom:205.326667pt;}
.y116{bottom:206.030719pt;}
.y10f{bottom:206.508261pt;}
.y108{bottom:206.572989pt;}
.y118{bottom:206.932591pt;}
.y7a{bottom:207.707178pt;}
.y75{bottom:207.816072pt;}
.y9c{bottom:208.369078pt;}
.y17d{bottom:208.518667pt;}
.y3{bottom:208.980000pt;}
.y64{bottom:208.989312pt;}
.y1ff{bottom:209.576000pt;}
.y1e8{bottom:209.934667pt;}
.yd{bottom:210.860000pt;}
.y115{bottom:212.105650pt;}
.y122{bottom:212.177333pt;}
.y10e{bottom:212.583191pt;}
.y107{bottom:212.647919pt;}
.y13b{bottom:212.878667pt;}
.y208{bottom:213.956000pt;}
.y14c{bottom:215.789333pt;}
.y169{bottom:215.996000pt;}
.y23{bottom:216.028000pt;}
.y211{bottom:216.218667pt;}
.y74{bottom:216.632605pt;}
.y114{bottom:218.180580pt;}
.y193{bottom:218.228000pt;}
.y187{bottom:218.321333pt;}
.y10d{bottom:218.658121pt;}
.y106{bottom:218.722850pt;}
.y12f{bottom:218.950667pt;}
.y171{bottom:219.356000pt;}
.y1dd{bottom:220.252000pt;}
.y12{bottom:220.669333pt;}
.y21d{bottom:221.456000pt;}
.y54{bottom:224.176000pt;}
.y113{bottom:224.255511pt;}
.y90{bottom:224.561333pt;}
.y10c{bottom:224.733052pt;}
.y105{bottom:224.797780pt;}
.y1a{bottom:225.122667pt;}
.y19e{bottom:225.553333pt;}
.y65{bottom:226.839720pt;}
.y1b8{bottom:227.277333pt;}
.y1aa{bottom:227.305333pt;}
.y1fe{bottom:227.642667pt;}
.y2f{bottom:228.026667pt;}
.y14b{bottom:228.409333pt;}
.y168{bottom:228.616000pt;}
.y13a{bottom:230.944000pt;}
.y1e7{bottom:231.985333pt;}
.y207{bottom:232.022667pt;}
.y112{bottom:232.152920pt;}
.y10b{bottom:232.630461pt;}
.y104{bottom:232.695190pt;}
.y1c4{bottom:233.324913pt;}
.y22{bottom:234.093333pt;}
.y121{bottom:234.228000pt;}
.y210{bottom:234.284000pt;}
.y12e{bottom:234.890667pt;}
.y11a{bottom:236.902906pt;}
.y79{bottom:238.162523pt;}
.y111{bottom:238.227851pt;}
.y1dc{bottom:238.317333pt;}
.y3b{bottom:238.649333pt;}
.y10a{bottom:238.705392pt;}
.y103{bottom:238.770120pt;}
.y1f3{bottom:243.056000pt;}
.y21c{bottom:243.506667pt;}
.y119{bottom:244.331306pt;}
.y1fd{bottom:245.708000pt;}
.y53{bottom:246.226667pt;}
.y78{bottom:246.979056pt;}
.y19{bottom:247.058667pt;}
.y192{bottom:247.452000pt;}
.y186{bottom:247.544000pt;}
.y139{bottom:249.009333pt;}
.y17c{bottom:249.872000pt;}
.y1e6{bottom:250.050667pt;}
.y12d{bottom:250.830667pt;}
.y170{bottom:252.345333pt;}
.y73{bottom:252.443206pt;}
.y20f{bottom:252.881333pt;}
.y14a{bottom:252.982667pt;}
.y167{bottom:253.190667pt;}
.yc{bottom:254.176000pt;}
.y19d{bottom:255.208000pt;}
.y21{bottom:255.680000pt;}
.y120{bottom:256.278667pt;}
.y1db{bottom:258.914667pt;}
.y6c{bottom:261.180305pt;}
.y72{bottom:261.259739pt;}
.y185{bottom:262.156000pt;}
.y1fc{bottom:264.305333pt;}
.y1f2{bottom:265.106667pt;}
.y102{bottom:265.446324pt;}
.y2{bottom:265.522667pt;}
.y21b{bottom:265.557333pt;}
.y1b7{bottom:265.658667pt;}
.y101{bottom:265.674137pt;}
.y1a9{bottom:265.688000pt;}
.y16f{bottom:266.957333pt;}
.y138{bottom:267.074667pt;}
.y52{bottom:267.173333pt;}
.y17b{bottom:267.937333pt;}
.y2b{bottom:267.977333pt;}
.y1e5{bottom:268.116000pt;}
.y71{bottom:270.328868pt;}
.y6b{bottom:271.256221pt;}
.yfe{bottom:271.521292pt;}
.yfc{bottom:271.749102pt;}
.yfd{bottom:271.749103pt;}
.y19c{bottom:272.476000pt;}
.y149{bottom:275.036000pt;}
.y166{bottom:275.242667pt;}
.y184{bottom:276.768000pt;}
.ybc{bottom:277.596185pt;}
.ybb{bottom:277.596187pt;}
.yba{bottom:277.823995pt;}
.y11f{bottom:278.329333pt;}
.y242{bottom:280.194667pt;}
.y16e{bottom:281.569333pt;}
.y12c{bottom:281.940000pt;}
.yb9{bottom:283.671116pt;}
.y244{bottom:284.096000pt;}
.y1f1{bottom:287.157333pt;}
.y21a{bottom:287.609333pt;}
.y1b6{bottom:287.710667pt;}
.y1a8{bottom:287.740000pt;}
.y1{bottom:288.370667pt;}
.y19b{bottom:289.745333pt;}
.y1e4{bottom:290.168000pt;}
.y2a{bottom:290.764000pt;}
.y20e{bottom:290.892000pt;}
.y51{bottom:295.222667pt;}
.y16d{bottom:296.181333pt;}
.y8f{bottom:299.556000pt;}
.y12b{bottom:300.005333pt;}
.yb{bottom:322.445333pt;}
.y41{bottom:2689.303720pt;}
.y11c{bottom:2689.397053pt;}
.y44{bottom:2689.593053pt;}
.y47{bottom:2690.567720pt;}
.y96{bottom:2692.913053pt;}
.y38{bottom:2695.530387pt;}
.y2e{bottom:2695.930387pt;}
.y237{bottom:2697.283720pt;}
.y225{bottom:2703.738387pt;}
.y40{bottom:2707.369053pt;}
.y43{bottom:2707.658387pt;}
.y230{bottom:2708.123720pt;}
.y23a{bottom:2708.483720pt;}
.y46{bottom:2708.633053pt;}
.y165{bottom:2709.397053pt;}
.y11b{bottom:2711.447720pt;}
.y95{bottom:2714.963720pt;}
.y37{bottom:2717.931720pt;}
.y2d{bottom:2718.717053pt;}
.y233{bottom:2719.323720pt;}
.y236{bottom:2719.334387pt;}
.y224{bottom:2725.789053pt;}
.y142{bottom:2727.142387pt;}
.y22f{bottom:2730.174387pt;}
.y239{bottom:2730.534387pt;}
.y94{bottom:2737.014387pt;}
.y232{bottom:2741.374387pt;}
.y235{bottom:2741.385053pt;}
.y223{bottom:2743.854387pt;}
.y141{bottom:2745.207720pt;}
.y22e{bottom:2752.225053pt;}
.y238{bottom:2752.514387pt;}
.y93{bottom:2759.066387pt;}
.y140{bottom:2763.274387pt;}
.y231{bottom:2763.353053pt;}
.y234{bottom:2763.786387pt;}
.y222{bottom:2765.905053pt;}
.y22d{bottom:2774.626387pt;}
.y13f{bottom:2781.339720pt;}
.y221{bottom:2783.970387pt;}
.y13e{bottom:2799.405053pt;}
.y220{bottom:2806.021053pt;}
.y45{bottom:2809.869053pt;}
.y42{bottom:2810.842387pt;}
.y3f{bottom:2811.131720pt;}
.y13d{bottom:2818.002387pt;}
.y21f{bottom:2828.074387pt;}
.y164{bottom:2857.458387pt;}
.y163{bottom:2870.078387pt;}
.y162{bottom:2882.697053pt;}
.y2c{bottom:2894.727720pt;}
.y161{bottom:2895.317053pt;}
.y30{bottom:2895.673053pt;}
.y160{bottom:2919.891720pt;}
.y15f{bottom:2941.943720pt;}
.h2c{height:-2369.239720pt;}
.h1e{height:12.505022pt;}
.h23{height:13.677864pt;}
.h22{height:13.677876pt;}
.h1d{height:14.589115pt;}
.h38{height:14.682920pt;}
.h20{height:14.769675pt;}
.h1f{height:14.874087pt;}
.h1b{height:17.598360pt;}
.h24{height:18.060298pt;}
.h12{height:18.372663pt;}
.h29{height:18.919015pt;}
.h17{height:19.309156pt;}
.h16{height:19.798155pt;}
.h21{height:20.640341pt;}
.h14{height:21.434663pt;}
.h8{height:22.571418pt;}
.h36{height:23.687236pt;}
.h1a{height:24.330124pt;}
.h2b{height:24.353837pt;}
.h2a{height:24.474057pt;}
.h13{height:24.496796pt;}
.h10{height:25.072183pt;}
.h18{height:25.745541pt;}
.h4{height:30.095098pt;}
.h7{height:31.341747pt;}
.h5{height:31.582850pt;}
.h2d{height:33.857126pt;}
.h34{height:35.196109pt;}
.h2e{height:35.530854pt;}
.h9{height:36.478095pt;}
.h31{height:36.958969pt;}
.h25{height:37.618778pt;}
.h26{height:39.478463pt;}
.h3{height:41.192762pt;}
.hc{height:42.821854pt;}
.h27{height:43.229127pt;}
.he{height:44.974095pt;}
.hb{height:47.298394pt;}
.h30{height:53.926127pt;}
.h2{height:54.171251pt;}
.h2f{height:55.272773pt;}
.hd{height:56.313617pt;}
.hf{height:64.746796pt;}
.h32{height:79.814169pt;}
.h6{height:80.937417pt;}
.h19{height:81.720239pt;}
.h35{height:93.596090pt;}
.h33{height:122.669377pt;}
.h28{height:132.287200pt;}
.h37{height:182.577853pt;}
.h15{height:219.226678pt;}
.h11{height:277.578546pt;}
.ha{height:279.541333pt;}
.h1c{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w9{width:-2376.938387pt;}
.wb{width:259.269267pt;}
.w8{width:264.574400pt;}
.w4{width:296.322767pt;}
.w3{width:370.392267pt;}
.w2{width:370.421406pt;}
.w5{width:518.519073pt;}
.w7{width:529.126393pt;}
.w6{width:529.134860pt;}
.wa{width:583.544973pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x59{left:3.940624pt;}
.x2c{left:5.462969pt;}
.x68{left:6.378677pt;}
.x77{left:8.325704pt;}
.x54{left:12.539450pt;}
.xa{left:16.121333pt;}
.x75{left:17.873362pt;}
.x74{left:19.557349pt;}
.x65{left:20.907176pt;}
.x73{left:23.518062pt;}
.x70{left:25.197333pt;}
.x72{left:27.478775pt;}
.x71{left:29.460651pt;}
.x1a{left:32.125333pt;}
.x66{left:33.302325pt;}
.x67{left:34.835297pt;}
.x10{left:37.544000pt;}
.xb{left:38.466667pt;}
.x76{left:39.370033pt;}
.x41{left:40.417973pt;}
.x1d{left:43.089333pt;}
.x7b{left:47.588000pt;}
.x7c{left:48.704000pt;}
.x58{left:54.217918pt;}
.x6e{left:56.413333pt;}
.x2f{left:64.458624pt;}
.x8a{left:65.418667pt;}
.xc{left:66.886667pt;}
.x64{left:68.375163pt;}
.x82{left:76.782233pt;}
.x6b{left:81.839206pt;}
.x87{left:84.809333pt;}
.x15{left:86.032269pt;}
.x51{left:87.678718pt;}
.x47{left:88.985028pt;}
.x6d{left:95.977333pt;}
.x50{left:96.887342pt;}
.x4d{left:100.209495pt;}
.x9{left:107.545547pt;}
.x32{left:112.402811pt;}
.x33{left:115.006382pt;}
.x48{left:115.975471pt;}
.x8{left:117.166667pt;}
.x2{left:120.392000pt;}
.x4e{left:121.851844pt;}
.x34{left:123.931808pt;}
.x16{left:126.072000pt;}
.x4b{left:127.353495pt;}
.x30{left:129.413360pt;}
.x31{left:132.857231pt;}
.x78{left:137.825511pt;}
.x3b{left:141.782660pt;}
.x3a{left:143.277300pt;}
.x5a{left:147.296036pt;}
.x42{left:150.087619pt;}
.xd{left:155.001476pt;}
.x55{left:169.970377pt;}
.x14{left:171.613333pt;}
.x5c{left:180.480904pt;}
.x4c{left:181.641495pt;}
.x5{left:183.341333pt;}
.x27{left:185.472504pt;}
.x26{left:194.397929pt;}
.x4a{left:195.436160pt;}
.x5b{left:199.973310pt;}
.x4{left:201.944000pt;}
.x24{left:204.598580pt;}
.x2a{left:207.968522pt;}
.x2b{left:212.297966pt;}
.x25{left:213.524004pt;}
.x28{left:217.972213pt;}
.x1b{left:222.992000pt;}
.x1e{left:224.192456pt;}
.x12{left:225.752000pt;}
.x29{left:226.897637pt;}
.x23{left:229.589773pt;}
.x1{left:230.994667pt;}
.x22{left:234.383102pt;}
.x1f{left:235.795513pt;}
.x62{left:237.771292pt;}
.x20{left:243.308532pt;}
.x3{left:247.729333pt;}
.x21{left:252.233956pt;}
.x49{left:260.870068pt;}
.x7{left:266.057333pt;}
.x6{left:270.834667pt;}
.x80{left:274.392000pt;}
.x43{left:281.211709pt;}
.x81{left:285.952000pt;}
.x39{left:288.472608pt;}
.x38{left:290.587148pt;}
.x37{left:293.982192pt;}
.x3c{left:295.906911pt;}
.x53{left:297.917346pt;}
.x36{left:299.659129pt;}
.x44{left:300.705333pt;}
.x35{left:306.546871pt;}
.x40{left:314.865537pt;}
.x91{left:318.945333pt;}
.x52{left:322.647808pt;}
.x7d{left:323.780000pt;}
.x7a{left:328.562667pt;}
.x45{left:329.796000pt;}
.x8b{left:341.598667pt;}
.x89{left:342.566667pt;}
.x7e{left:346.240000pt;}
.x88{left:356.934667pt;}
.x5f{left:358.847686pt;}
.x7f{left:359.821333pt;}
.x6a{left:360.970111pt;}
.x5d{left:362.435692pt;}
.x5e{left:365.681984pt;}
.x90{left:367.877333pt;}
.x84{left:369.268977pt;}
.x83{left:376.768638pt;}
.x2d{left:393.046111pt;}
.x4f{left:396.515246pt;}
.x3f{left:409.560038pt;}
.x3d{left:411.364631pt;}
.x1c{left:413.857333pt;}
.x2e{left:417.613756pt;}
.x3e{left:431.779906pt;}
.x57{left:433.100795pt;}
.x61{left:437.874979pt;}
.x69{left:451.714430pt;}
.x63{left:456.109633pt;}
.x6c{left:457.057940pt;}
.x60{left:459.040795pt;}
.x56{left:460.233924pt;}
.x86{left:528.547467pt;}
.x85{left:539.618398pt;}
.x8c{left:2691.898387pt;}
.x17{left:2698.826387pt;}
.xe{left:2704.245053pt;}
.x8d{left:2720.989053pt;}
.x46{left:2733.587720pt;}
.x13{left:2838.314387pt;}
.x18{left:2889.693053pt;}
.xf{left:2892.453053pt;}
.x6f{left:2909.522387pt;}
.x79{left:2981.662387pt;}
.x11{left:2995.771720pt;}
.x8e{left:3034.578387pt;}
.x8f{left:3063.669053pt;}
.x19{left:3080.558387pt;}
}




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