
    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_fff7d9ff48c986f8cd03b504.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_885bb0d498d053d82b795477.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_a1e4b49548906cf9a6b8f8c5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7dc501a8cd4e5dfbee47f042.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_050faea1dee0afd550426881.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_2da84b6ccf4039c7ad888cba.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_cafbd6505488f6c6d1adfb5e.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_3fad46635689d4409fe030dd.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fffd497eeb03a9e6718e3676.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_ea0a2ac70dee35b9dc3f53a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_359bffbeb552537fea4d599a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6faa89213b696d28c8ba92fb.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f714220dfba003900c0d5ec9.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_b1ce544798504e4d7e1025ae.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_5e6136e24969453f4aaf9d88.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_24e0724a133bbea0344ba0c0.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_f19b10565564302224c18fc3.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_5e6136e24969453f4aaf9d88.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_24e0724a133bbea0344ba0c0.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b6bd647dae955b693c5f002b.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;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5e6136e24969453f4aaf9d88.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_689b43d35ca746f6bccc7574.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.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);}
.m4{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v3{vertical-align:-8.400000px;}
.v1{vertical-align:-5.304000px;}
.v6{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.234945px;}
.v2{vertical-align:4.254000px;}
.v4{vertical-align:14.136000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:6.428819px;}
.ls3{letter-spacing:8.181825px;}
.ls4{letter-spacing:16.363057px;}
.ls2{letter-spacing:16.363650px;}
.ls5{letter-spacing:29.716388px;}
.ls1{letter-spacing:52.499421px;}
.ls7{letter-spacing:231.235351px;}
.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;}
}
.ws1f{word-spacing:-24.545475px;}
.wsb{word-spacing:-16.363650px;}
.ws33{word-spacing:-13.165589px;}
.ws2e{word-spacing:-10.866286px;}
.ws2d{word-spacing:-8.149715px;}
.ws17{word-spacing:-7.110810px;}
.ws32{word-spacing:-6.847958px;}
.ws19{word-spacing:-6.379470px;}
.ws16{word-spacing:-6.221949px;}
.ws31{word-spacing:-5.869709px;}
.ws2a{word-spacing:-3.118266px;}
.ws7{word-spacing:-2.814548px;}
.wsa{word-spacing:-1.898183px;}
.ws3{word-spacing:-1.701820px;}
.ws10{word-spacing:-1.505456px;}
.ws9{word-spacing:-0.850910px;}
.ws8{word-spacing:-0.654546px;}
.ws24{word-spacing:-0.261818px;}
.ws4{word-spacing:-0.065455px;}
.ws13{word-spacing:-0.029514px;}
.ws2c{word-spacing:-0.029316px;}
.ws12{word-spacing:-0.026478px;}
.ws14{word-spacing:-0.025825px;}
.ws34{word-spacing:-0.021870px;}
.ws1e{word-spacing:-0.011346px;}
.ws21{word-spacing:-0.005701px;}
.ws1a{word-spacing:-0.005366px;}
.ws22{word-spacing:-0.005038px;}
.ws2{word-spacing:-0.002694px;}
.ws1d{word-spacing:-0.001775px;}
.wsc{word-spacing:-0.001716px;}
.ws1c{word-spacing:-0.000643px;}
.ws1b{word-spacing:-0.000038px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.001568px;}
.wsd{word-spacing:0.002633px;}
.ws20{word-spacing:0.005357px;}
.ws5{word-spacing:0.523637px;}
.wse{word-spacing:1.178183px;}
.ws25{word-spacing:2.238096px;}
.ws15{word-spacing:2.749093px;}
.ws29{word-spacing:7.069097px;}
.ws26{word-spacing:8.164273px;}
.ws27{word-spacing:8.169160px;}
.ws28{word-spacing:10.210918px;}
.ws23{word-spacing:13.418193px;}
.ws6{word-spacing:15.578195px;}
.ws2b{word-spacing:16.363650px;}
.ws1{word-spacing:30.557363px;}
.ws35{word-spacing:31.581317px;}
.ws36{word-spacing:31.581324px;}
.ws18{word-spacing:35.006416px;}
.ws11{word-spacing:57.454067px;}
.ws2f{word-spacing:82.427008px;}
.ws30{word-spacing:240.947204px;}
._23{margin-left:-577.085783px;}
._c{margin-left:-8.770916px;}
._1f{margin-left:-6.111481px;}
._8{margin-left:-4.385458px;}
._1{margin-left:-2.343209px;}
._0{margin-left:-1.047274px;}
._b{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._17{width:5.724659px;}
._3{width:7.094247px;}
._11{width:8.640007px;}
._21{width:13.581050px;}
._1d{width:15.278746px;}
._9{width:19.047289px;}
._13{width:20.920322px;}
._10{width:25.651006px;}
._1b{width:27.923964px;}
._1c{width:32.465482px;}
._20{width:33.643664px;}
._14{width:35.869121px;}
._7{width:80.410675px;}
._a{width:183.171131px;}
._f{width:184.176088px;}
._12{width:266.911823px;}
._15{width:289.500179px;}
._18{width:305.676836px;}
._d{width:475.622030px;}
._1e{width:521.216571px;}
._16{width:582.312258px;}
._1a{width:603.683895px;}
._19{width:1106.432688px;}
._6{width:1123.112688px;}
._22{width:1139.786688px;}
._e{width:1153.048234px;}
.fcd{color:rgb(210,32,39);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fca{color:rgb(82,87,109);}
.fce{color:rgb(180,68,57);}
.fc6{color:rgb(254,250,248);}
.fc4{color:rgb(252,230,223);}
.fc9{color:rgb(232,103,88);}
.fcb{color:rgb(81,86,109);}
.fcc{color:rgb(81,87,109);}
.fs13{font-size:9.836801px;}
.fs12{font-size:11.075400px;}
.fsf{font-size:11.345609px;}
.fsd{font-size:13.748908px;}
.fsb{font-size:17.879164px;}
.fse{font-size:18.331811px;}
.fs1b{font-size:18.516433px;}
.fs7{font-size:19.858838px;}
.fsc{font-size:20.433362px;}
.fs1a{font-size:21.602392px;}
.fs1c{font-size:21.869749px;}
.fs14{font-size:23.530320px;}
.fsa{font-size:25.824554px;}
.fs19{font-size:26.058240px;}
.fs8{font-size:26.478355px;}
.fs1e{font-size:26.742241px;}
.fs15{font-size:29.315520px;}
.fs9{font-size:29.513822px;}
.fs1d{font-size:30.562561px;}
.fs11{font-size:31.987601px;}
.fs18{font-size:32.572800px;}
.fs4{font-size:35.865600px;}
.fs16{font-size:39.087360px;}
.fs6{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs10{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs17{font-size:124.069189px;}
.y0{bottom:0.000000px;}
.y151{bottom:2.023260px;}
.y152{bottom:2.162779px;}
.ya{bottom:3.873000px;}
.y14f{bottom:11.746846px;}
.y150{bottom:11.886365px;}
.y1fa{bottom:12.574588px;}
.y20c{bottom:15.374646px;}
.y106{bottom:15.843955px;}
.y64{bottom:16.317131px;}
.y208{bottom:16.324967px;}
.y1c1{bottom:19.451197px;}
.y9{bottom:20.397402px;}
.y8{bottom:20.973000px;}
.y14d{bottom:21.483661px;}
.y14e{bottom:21.623180px;}
.y20d{bottom:21.876000px;}
.y1f9{bottom:22.125389px;}
.y8c{bottom:22.720500px;}
.y207{bottom:23.159264px;}
.y19b{bottom:23.899500px;}
.y1c5{bottom:24.084000px;}
.y72{bottom:25.428000px;}
.y75{bottom:25.753500px;}
.ye5{bottom:26.452500px;}
.y78{bottom:26.850000px;}
.y1c0{bottom:27.594397px;}
.y12f{bottom:29.065500px;}
.y170{bottom:29.121000px;}
.y5a{bottom:29.515500px;}
.y206{bottom:29.993561px;}
.y2c{bottom:30.402000px;}
.y175{bottom:30.916585px;}
.y62{bottom:32.433000px;}
.y23{bottom:32.883000px;}
.y178{bottom:32.908500px;}
.y1c4{bottom:33.450000px;}
.y105{bottom:34.916350px;}
.y1a7{bottom:35.367000px;}
.y1bf{bottom:35.737597px;}
.y205{bottom:36.827857px;}
.y201{bottom:37.365091px;}
.y18a{bottom:37.476000px;}
.y40{bottom:37.839000px;}
.y19a{bottom:38.095500px;}
.y169{bottom:39.168000px;}
.y16f{bottom:39.582000px;}
.y8b{bottom:41.884500px;}
.y85{bottom:43.533000px;}
.y88{bottom:43.557000px;}
.y204{bottom:43.662154px;}
.y1be{bottom:43.880797px;}
.y200{bottom:44.199388px;}
.y1fd{bottom:44.272207px;}
.y71{bottom:45.751500px;}
.y74{bottom:46.077000px;}
.yf0{bottom:46.177500px;}
.yf3{bottom:46.372500px;}
.ye4{bottom:46.776000px;}
.y16b{bottom:46.913807px;}
.y77{bottom:47.173500px;}
.y1b6{bottom:47.472090px;}
.y1b0{bottom:47.926426px;}
.ye1{bottom:48.523578px;}
.y12e{bottom:49.390500px;}
.y59{bottom:49.839000px;}
.yff{bottom:50.404500px;}
.y2b{bottom:50.725500px;}
.y1bc{bottom:51.805554px;}
.y1bd{bottom:52.023997px;}
.y199{bottom:52.293000px;}
.y203{bottom:52.546740px;}
.y1ff{bottom:53.083973px;}
.y165{bottom:53.131500px;}
.y1fc{bottom:53.156793px;}
.y1c3{bottom:53.775000px;}
.y16d{bottom:53.898000px;}
.y1b3{bottom:56.079133px;}
.y61{bottom:57.634500px;}
.y22{bottom:58.518000px;}
.y1b5{bottom:58.934837px;}
.y202{bottom:59.381036px;}
.y1fe{bottom:59.918270px;}
.y1fb{bottom:59.991090px;}
.y1a6{bottom:60.174000px;}
.y189{bottom:62.283000px;}
.ye0{bottom:62.664548px;}
.y1af{bottom:63.408013px;}
.y1ba{bottom:63.741727px;}
.yc1{bottom:63.878976px;}
.y168{bottom:63.975000px;}
.y174{bottom:64.628769px;}
.y8a{bottom:66.691500px;}
.ye3{bottom:67.099500px;}
.y84{bottom:68.340000px;}
.y87{bottom:68.364000px;}
.yac{bottom:69.270151px;}
.y58{bottom:70.162500px;}
.yc0{bottom:70.264473px;}
.yef{bottom:70.984500px;}
.y2a{bottom:71.049000px;}
.yf2{bottom:71.179500px;}
.y15{bottom:72.574500px;}
.y164{bottom:73.455000px;}
.y1bb{bottom:74.017330px;}
.y1c2{bottom:74.098500px;}
.y198{bottom:74.553000px;}
.yfe{bottom:75.211500px;}
.y1b2{bottom:76.233553px;}
.y16c{bottom:78.705000px;}
.y104{bottom:79.019323px;}
.y11a{bottom:79.309500px;}
.y117{bottom:79.354500px;}
.y3f{bottom:80.754000px;}
.yd2{bottom:82.097351px;}
.y1f2{bottom:83.193698px;}
.y1d0{bottom:84.089086px;}
.y1a5{bottom:84.981000px;}
.y188{bottom:87.090000px;}
.ye2{bottom:87.424500px;}
.yd1{bottom:88.482848px;}
.y197{bottom:88.750500px;}
.y167{bottom:88.782000px;}
.y1d9{bottom:89.041583px;}
.yab{bottom:89.695280px;}
.y1f1{bottom:90.027994px;}
.y57{bottom:90.487500px;}
.y1d6{bottom:90.565228px;}
.y1b7{bottom:90.673358px;}
.y1cf{bottom:90.923383px;}
.yae{bottom:91.449392px;}
.y89{bottom:91.500000px;}
.y12d{bottom:92.053500px;}
.y86{bottom:92.649000px;}
.y83{bottom:93.148500px;}
.y1a{bottom:93.681000px;}
.yfd{bottom:95.535000px;}
.yf1{bottom:95.907000px;}
.yee{bottom:96.186000px;}
.y1f0{bottom:96.862291px;}
.y14{bottom:97.381500px;}
.y103{bottom:97.397791px;}
.y1d5{bottom:97.399525px;}
.y1ce{bottom:97.757680px;}
.y1d8{bottom:97.926169px;}
.y119{bottom:99.633000px;}
.y116{bottom:99.678000px;}
.ydb{bottom:99.684761px;}
.yad{bottom:100.672565px;}
.y16a{bottom:100.843500px;}
.y163{bottom:101.070000px;}
.y3e{bottom:101.077500px;}
.y5e{bottom:101.178000px;}
.y196{bottom:102.946500px;}
.y1ef{bottom:103.696588px;}
.y1d4{bottom:104.233822px;}
.y1cd{bottom:104.591976px;}
.y1d7{bottom:104.760466px;}
.yda{bottom:105.272143px;}
.y1a8{bottom:105.456000px;}
.yce{bottom:105.701434px;}
.yba{bottom:107.335020px;}
.y1a4{bottom:109.788000px;}
.y1ee{bottom:110.530885px;}
.y176{bottom:110.689665px;}
.ycd{bottom:110.776068px;}
.y25{bottom:110.803500px;}
.y102{bottom:111.067664px;}
.y1d3{bottom:111.068118px;}
.y1cc{bottom:111.426273px;}
.y187{bottom:111.898500px;}
.y12c{bottom:112.608000px;}
.y1ab{bottom:113.299486px;}
.y166{bottom:115.899000px;}
.y9d{bottom:117.763900px;}
.y1ed{bottom:119.415470px;}
.y7{bottom:119.634000px;}
.y1d2{bottom:119.952704px;}
.y1cb{bottom:120.310859px;}
.yfc{bottom:120.342000px;}
.y1b1{bottom:121.428313px;}
.yc3{bottom:121.859526px;}
.y13{bottom:122.188500px;}
.yb3{bottom:122.220000px;}
.yd9{bottom:122.310312px;}
.yb9{bottom:123.158770px;}
.y3d{bottom:124.405500px;}
.y195{bottom:125.206500px;}
.y5d{bottom:125.985000px;}
.y1ec{bottom:126.249767px;}
.y1d1{bottom:126.787001px;}
.yc2{bottom:126.934160px;}
.y9c{bottom:126.987072px;}
.y1ca{bottom:127.145155px;}
.yd8{bottom:127.897694px;}
.yb8{bottom:128.746152px;}
.y12b{bottom:129.046500px;}
.ycc{bottom:130.059678px;}
.y24{bottom:131.127000px;}
.y56{bottom:131.134500px;}
.y79{bottom:132.946500px;}
.y1a3{bottom:134.598000px;}
.yc5{bottom:136.149238px;}
.yde{bottom:138.834030px;}
.ybd{bottom:139.250345px;}
.y194{bottom:139.404000px;}
.y6{bottom:139.957500px;}
.yca{bottom:140.208946px;}
.yc6{bottom:141.223873px;}
.ydf{bottom:141.853979px;}
.y19{bottom:141.969000px;}
.ya6{bottom:143.167045px;}
.y1e8{bottom:144.336036px;}
.ydd{bottom:145.219527px;}
.ycb{bottom:145.283580px;}
.y12a{bottom:145.485000px;}
.ybc{bottom:145.635842px;}
.yc4{bottom:146.298507px;}
.y12{bottom:146.995500px;}
.y118{bottom:150.288000px;}
.y5c{bottom:150.792000px;}
.y1e7{bottom:151.170333px;}
.ya5{bottom:151.237425px;}
.y1e0{bottom:151.243152px;}
.ydc{bottom:151.605025px;}
.y99{bottom:151.857491px;}
.ybb{bottom:152.021339px;}
.y1b4{bottom:152.190612px;}
.yfb{bottom:152.622000px;}
.y115{bottom:152.913000px;}
.y193{bottom:153.601500px;}
.y55{bottom:154.306500px;}
.y1b9{bottom:155.013419px;}
.y158{bottom:156.415500px;}
.yc7{bottom:156.447775px;}
.y186{bottom:157.284000px;}
.y162{bottom:157.348500px;}
.y1e6{bottom:158.004629px;}
.y1f8{bottom:158.077445px;}
.y1df{bottom:158.077449px;}
.y15c{bottom:158.919000px;}
.y98{bottom:159.187261px;}
.y5{bottom:160.282500px;}
.yc8{bottom:160.507739px;}
.y160{bottom:160.882500px;}
.y76{bottom:161.064000px;}
.yb7{bottom:161.905028px;}
.y129{bottom:161.923500px;}
.y73{bottom:162.159000px;}
.y3c{bottom:162.160500px;}
.y70{bottom:162.484500px;}
.y161{bottom:163.779000px;}
.y1e5{bottom:164.838926px;}
.y1f7{bottom:164.911742px;}
.y1de{bottom:164.911745px;}
.yb6{bottom:167.492405px;}
.yd7{bottom:167.561416px;}
.y34{bottom:168.118500px;}
.y1ac{bottom:169.676773px;}
.yfa{bottom:170.554500px;}
.y11{bottom:170.560500px;}
.yc9{bottom:170.656754px;}
.y1e4{bottom:171.673223px;}
.y1f6{bottom:171.746039px;}
.y1dd{bottom:171.746042px;}
.yd6{bottom:173.148793px;}
.y192{bottom:174.732000px;}
.y8e{bottom:175.196138px;}
.y5b{bottom:175.600500px;}
.ya4{bottom:175.847252px;}
.y1eb{bottom:177.684950px;}
.y1a2{bottom:177.777000px;}
.y1e3{bottom:178.507519px;}
.y1f5{bottom:178.580335px;}
.y1dc{bottom:178.580339px;}
.y15f{bottom:181.207500px;}
.y157{bottom:181.222500px;}
.y185{bottom:182.091000px;}
.y1ad{bottom:182.502313px;}
.y8d{bottom:182.525908px;}
.y15b{bottom:183.726000px;}
.ya3{bottom:183.917631px;}
.y1ea{bottom:186.569536px;}
.yb5{bottom:186.793134px;}
.y97{bottom:187.040387px;}
.y1e2{bottom:187.392105px;}
.y1f4{bottom:187.464921px;}
.y1db{bottom:187.464925px;}
.y33{bottom:188.442000px;}
.y191{bottom:188.928000px;}
.y101{bottom:188.988000px;}
.yd0{bottom:190.194093px;}
.y18{bottom:190.257000px;}
.yf9{bottom:191.476500px;}
.yb4{bottom:192.380512px;}
.y173{bottom:192.628219px;}
.y1e9{bottom:193.403833px;}
.y1e1{bottom:194.226402px;}
.y1f3{bottom:194.299218px;}
.y1da{bottom:194.299221px;}
.y128{bottom:195.607500px;}
.y90{bottom:195.836111px;}
.yd5{bottom:195.843355px;}
.ycf{bottom:195.922848px;}
.y54{bottom:196.821000px;}
.y4{bottom:199.240500px;}
.ya9{bottom:199.714008px;}
.y1ae{bottom:200.213773px;}
.yd4{bottom:201.430732px;}
.y95{bottom:201.699927px;}
.y1b8{bottom:202.491472px;}
.y1a1{bottom:202.584000px;}
.y190{bottom:203.125500px;}
.y91{bottom:203.165881px;}
.y15a{bottom:204.051000px;}
.yaa{bottom:204.076003px;}
.y15e{bottom:206.014500px;}
.y156{bottom:206.029500px;}
.y66{bottom:206.229000px;}
.y10{bottom:206.599500px;}
.y184{bottom:206.901000px;}
.yd3{bottom:207.185259px;}
.ybf{bottom:207.787096px;}
.y32{bottom:208.767000px;}
.ya8{bottom:208.937180px;}
.y96{bottom:209.029697px;}
.y8f{bottom:210.495651px;}
.yf8{bottom:213.892500px;}
.ybe{bottom:214.172481px;}
.y53{bottom:214.755000px;}
.ya7{bottom:218.160353px;}
.y1aa{bottom:219.146715px;}
.y224{bottom:224.950263px;}
.y92{bottom:225.155191px;}
.y21d{bottom:225.487496px;}
.y216{bottom:225.560316px;}
.y18f{bottom:226.146000px;}
.y1a0{bottom:227.391000px;}
.y108{bottom:227.515500px;}
.y31{bottom:229.090500px;}
.y15d{bottom:230.299500px;}
.y159{bottom:230.481000px;}
.y65{bottom:230.956500px;}
.y93{bottom:231.019378px;}
.y155{bottom:231.232500px;}
.yf{bottom:231.406500px;}
.y223{bottom:231.784559px;}
.y114{bottom:231.813000px;}
.y21c{bottom:232.321793px;}
.y215{bottom:232.394613px;}
.y225{bottom:232.799164px;}
.y3{bottom:233.176500px;}
.y11f{bottom:234.142500px;}
.y1a9{bottom:234.415213px;}
.y52{bottom:235.675500px;}
.y17{bottom:238.545000px;}
.y222{bottom:238.618856px;}
.yf7{bottom:238.699500px;}
.y21b{bottom:239.156090px;}
.y214{bottom:239.228909px;}
.ya2{bottom:241.207665px;}
.y221{bottom:245.453153px;}
.y94{bottom:245.678552px;}
.y21a{bottom:245.990386px;}
.y213{bottom:246.063206px;}
.y107{bottom:247.839000px;}
.ya1{bottom:249.278038px;}
.y113{bottom:252.136500px;}
.y19f{bottom:252.198000px;}
.y220{bottom:252.287449px;}
.y17c{bottom:252.367500px;}
.y219{bottom:252.824683px;}
.y212{bottom:252.897503px;}
.y11e{bottom:254.466000px;}
.ye{bottom:256.213500px;}
.y20{bottom:256.530000px;}
.y51{bottom:258.091500px;}
.y18e{bottom:260.821500px;}
.y21f{bottom:261.172035px;}
.y218{bottom:261.709269px;}
.y211{bottom:261.782088px;}
.y30{bottom:262.902000px;}
.yf6{bottom:263.506500px;}
.y227{bottom:266.515769px;}
.y21e{bottom:268.006332px;}
.y63{bottom:268.480500px;}
.y217{bottom:268.543566px;}
.y210{bottom:268.616385px;}
.y135{bottom:273.090000px;}
.y132{bottom:273.130500px;}
.y9b{bottom:273.898164px;}
.y226{bottom:274.872720px;}
.y19e{bottom:277.005000px;}
.y17b{bottom:277.174500px;}
.y11d{bottom:279.273000px;}
.yd{bottom:281.020500px;}
.ya0{bottom:282.057923px;}
.y9a{bottom:282.172742px;}
.y50{bottom:282.898500px;}
.y2f{bottom:283.225500px;}
.y18d{bottom:285.628500px;}
.y16{bottom:286.833000px;}
.yf5{bottom:288.313500px;}
.y9f{bottom:290.128296px;}
.y134{bottom:293.413500px;}
.y131{bottom:293.454000px;}
.y2{bottom:296.788500px;}
.y9e{bottom:298.440098px;}
.y20f{bottom:298.627115px;}
.y20e{bottom:298.883404px;}
.y19d{bottom:300.570000px;}
.y1c{bottom:301.474500px;}
.y17a{bottom:301.981500px;}
.y2e{bottom:303.549000px;}
.y11c{bottom:304.080000px;}
.y20b{bottom:305.461453px;}
.y209{bottom:305.717739px;}
.y20a{bottom:305.717741px;}
.yc{bottom:305.827500px;}
.y4f{bottom:307.705500px;}
.y18c{bottom:310.435500px;}
.y112{bottom:312.180000px;}
.y1c9{bottom:312.295708px;}
.y1c8{bottom:312.295710px;}
.y1c7{bottom:312.551994px;}
.yf4{bottom:313.120500px;}
.y100{bottom:315.810000px;}
.y130{bottom:318.337500px;}
.y1c6{bottom:319.130005px;}
.y133{bottom:320.046000px;}
.y177{bottom:321.862500px;}
.y1{bottom:322.491000px;}
.y16e{bottom:323.269500px;}
.y179{bottom:327.102000px;}
.y1b{bottom:327.109500px;}
.y2d{bottom:328.432500px;}
.y11b{bottom:328.888500px;}
.y3b{bottom:329.424000px;}
.y19c{bottom:332.125500px;}
.y41{bottom:332.587500px;}
.y18b{bottom:333.607500px;}
.yb{bottom:362.751000px;}
.yb2{bottom:2926.991685px;}
.yb1{bottom:2947.315185px;}
.yb0{bottom:2967.638685px;}
.yaf{bottom:2987.963685px;}
.y69{bottom:3025.466685px;}
.y6c{bottom:3025.792185px;}
.y6f{bottom:3026.888685px;}
.y127{bottom:3029.104185px;}
.y4e{bottom:3029.554185px;}
.y29{bottom:3030.440685px;}
.y60{bottom:3032.471685px;}
.y1f{bottom:3032.921685px;}
.y172{bottom:3032.947185px;}
.y183{bottom:3037.514685px;}
.y3a{bottom:3037.877685px;}
.y14a{bottom:3039.206685px;}
.y82{bottom:3041.923185px;}
.y7c{bottom:3043.571685px;}
.y7f{bottom:3043.595685px;}
.y68{bottom:3045.790185px;}
.y6b{bottom:3046.115685px;}
.ye8{bottom:3046.216185px;}
.yed{bottom:3046.411185px;}
.yeb{bottom:3046.412685px;}
.y14c{bottom:3046.952492px;}
.y6e{bottom:3047.212185px;}
.y126{bottom:3049.429185px;}
.y4d{bottom:3049.877685px;}
.y28{bottom:3050.764185px;}
.y146{bottom:3053.170185px;}
.y154{bottom:3053.936685px;}
.y5f{bottom:3057.673185px;}
.y1e{bottom:3058.556685px;}
.y182{bottom:3062.321685px;}
.y149{bottom:3064.013685px;}
.y81{bottom:3066.730185px;}
.y7b{bottom:3068.378685px;}
.y7e{bottom:3068.402685px;}
.y4c{bottom:3070.201185px;}
.ye7{bottom:3071.023185px;}
.y27{bottom:3071.087685px;}
.yec{bottom:3071.218185px;}
.yea{bottom:3071.219685px;}
.y145{bottom:3073.493685px;}
.y153{bottom:3078.743685px;}
.y111{bottom:3079.348185px;}
.y10e{bottom:3079.393185px;}
.y39{bottom:3080.792685px;}
.y181{bottom:3087.128685px;}
.y148{bottom:3088.820685px;}
.y4b{bottom:3090.526185px;}
.y80{bottom:3091.538685px;}
.y125{bottom:3092.092185px;}
.y7d{bottom:3092.687685px;}
.y7a{bottom:3093.187185px;}
.ye9{bottom:3095.945685px;}
.ye6{bottom:3096.224685px;}
.y110{bottom:3099.671685px;}
.y10d{bottom:3099.716685px;}
.y14b{bottom:3100.882185px;}
.y144{bottom:3101.108685px;}
.y38{bottom:3101.116185px;}
.y26{bottom:3108.742185px;}
.y180{bottom:3111.937185px;}
.y124{bottom:3112.646685px;}
.y147{bottom:3115.937685px;}
.y37{bottom:3124.444185px;}
.y123{bottom:3129.085185px;}
.y4a{bottom:3131.173185px;}
.y122{bottom:3145.523685px;}
.y10f{bottom:3150.326685px;}
.y10c{bottom:3152.951685px;}
.y49{bottom:3154.345185px;}
.y139{bottom:3156.454185px;}
.y17f{bottom:3157.322685px;}
.y143{bottom:3157.387185px;}
.y13d{bottom:3158.957685px;}
.y141{bottom:3160.921185px;}
.y6d{bottom:3161.102685px;}
.y121{bottom:3161.962185px;}
.y6a{bottom:3162.197685px;}
.y36{bottom:3162.199185px;}
.y67{bottom:3162.523185px;}
.y142{bottom:3163.817685px;}
.y140{bottom:3181.246185px;}
.y138{bottom:3181.261185px;}
.y17e{bottom:3182.129685px;}
.y13c{bottom:3183.764685px;}
.y120{bottom:3195.646185px;}
.y48{bottom:3196.859685px;}
.y13b{bottom:3204.089685px;}
.y13f{bottom:3206.053185px;}
.y137{bottom:3206.068185px;}
.y17d{bottom:3206.939685px;}
.y47{bottom:3214.793685px;}
.y13e{bottom:3230.338185px;}
.y13a{bottom:3230.519685px;}
.y136{bottom:3231.271185px;}
.y10b{bottom:3231.851685px;}
.y46{bottom:3235.714185px;}
.y10a{bottom:3252.175185px;}
.y1d{bottom:3256.568685px;}
.y21{bottom:3257.632185px;}
.y45{bottom:3258.130185px;}
.y44{bottom:3282.937185px;}
.y43{bottom:3307.744185px;}
.y109{bottom:3312.218685px;}
.y171{bottom:3321.901185px;}
.y35{bottom:3329.462685px;}
.y42{bottom:3332.561685px;}
.h1e{height:-2664.275492px;}
.h23{height:-2650.270185px;}
.h20{height:7.473663px;}
.h1a{height:8.620004px;}
.h17{height:10.445948px;}
.h15{height:13.583974px;}
.h18{height:13.927880px;}
.h2f{height:14.068149px;}
.h10{height:15.088062px;}
.h34{height:15.387598px;}
.h33{height:15.387610px;}
.h16{height:15.524566px;}
.h2e{height:16.412755px;}
.h31{height:16.615884px;}
.h24{height:16.706527px;}
.h30{height:16.733348px;}
.h13{height:19.620608px;}
.h2c{height:19.798155px;}
.h11{height:20.117344px;}
.h35{height:20.317835px;}
.h28{height:21.722800px;}
.h27{height:22.272924px;}
.h12{height:22.423587px;}
.h32{height:23.220383px;}
.h1f{height:24.303080px;}
.h22{height:26.074291px;}
.h7{height:26.791603px;}
.h2b{height:27.371390px;}
.he{height:28.206206px;}
.h29{height:28.963734px;}
.h6{height:35.259465px;}
.h4{height:35.721988px;}
.h1b{height:40.187405px;}
.h21{height:41.972997px;}
.h8{height:43.590586px;}
.hc{height:44.652373px;}
.hb{height:47.585494px;}
.h9{height:48.174586px;}
.h3{height:48.894586px;}
.ha{height:53.148586px;}
.h1c{height:62.181870px;}
.h1d{height:63.030586px;}
.h2{height:64.299668px;}
.hd{height:72.840146px;}
.h5{height:91.054594px;}
.h2a{height:91.935269px;}
.h19{height:113.222664px;}
.h25{height:205.400085px;}
.h14{height:223.891655px;}
.h26{height:246.630013px;}
.hf{height:323.387719px;}
.h2d{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w7{width:-2770.432185px;}
.w9{width:-2678.537685px;}
.w6{width:83.334192px;}
.w8{width:87.491199px;}
.wa{width:291.677925px;}
.w3{width:333.363113px;}
.w5{width:375.018529px;}
.w2{width:416.724081px;}
.w4{width:541.674439px;}
.wc{width:595.267192px;}
.wb{width:595.276717px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4b{left:1.002895px;}
.x65{left:4.625363px;}
.x4c{left:6.680845px;}
.xaa{left:14.106881px;}
.x16{left:16.441500px;}
.xb{left:18.136500px;}
.x77{left:20.947989px;}
.x12{left:22.393500px;}
.xb7{left:23.520573px;}
.x15{left:24.661500px;}
.x72{left:28.347000px;}
.x66{left:30.700410px;}
.x31{left:36.141000px;}
.xb8{left:37.465116px;}
.xb9{left:39.189710px;}
.x75{left:40.667533px;}
.xd{left:42.519000px;}
.x4d{left:44.343483px;}
.x76{left:46.356780px;}
.x1f{left:48.190500px;}
.xa0{left:50.175000px;}
.x3b{left:55.474500px;}
.x56{left:60.722394px;}
.x69{left:62.734478px;}
.x6a{left:66.103588px;}
.x40{left:69.307500px;}
.x67{left:71.864737px;}
.x68{left:74.047251px;}
.xc{left:75.247500px;}
.xb6{left:76.922058px;}
.x6c{left:79.703642px;}
.x6b{left:80.716327px;}
.x6e{left:84.966814px;}
.x50{left:88.230066px;}
.x51{left:90.613291px;}
.xbc{left:92.069107px;}
.x52{left:95.479613px;}
.x2c{left:96.786303px;}
.x53{left:98.783342px;}
.x59{left:100.438856px;}
.x4e{left:103.800980px;}
.x4f{left:106.953390px;}
.x74{left:107.974500px;}
.xa7{left:108.998260px;}
.x62{left:111.784898px;}
.x99{left:112.855500px;}
.x55{left:115.123447px;}
.x54{left:116.586162px;}
.x61{left:117.731291px;}
.x64{left:119.695774px;}
.x9{left:120.988740px;}
.x58{left:122.725539px;}
.x6d{left:124.875502px;}
.x63{left:126.903983px;}
.x5d{left:129.514762px;}
.x8{left:131.812500px;}
.x60{left:135.093958px;}
.xa{left:136.401000px;}
.x5e{left:140.296969px;}
.x2d{left:141.831000px;}
.xa3{left:143.272681px;}
.x5f{left:145.499981px;}
.xa1{left:149.380081px;}
.x2{left:153.604500px;}
.x7e{left:157.446000px;}
.x17{left:159.931500px;}
.x48{left:161.461414px;}
.x18{left:163.222500px;}
.xad{left:165.708040px;}
.x5c{left:168.065217px;}
.x47{left:170.050346px;}
.x2b{left:173.481000px;}
.x4a{left:176.533220px;}
.x1e{left:178.338000px;}
.x57{left:180.369402px;}
.x49{left:183.299327px;}
.x41{left:187.070320px;}
.x5a{left:189.392948px;}
.x46{left:191.092900px;}
.x2a{left:193.065000px;}
.x45{left:195.128875px;}
.x42{left:196.840076px;}
.x4{left:199.236000px;}
.x43{left:202.644073px;}
.xa4{left:204.346681px;}
.x6{left:208.348500px;}
.x44{left:210.159270px;}
.x27{left:213.285000px;}
.x5b{left:217.793646px;}
.xa2{left:219.865680px;}
.xae{left:224.969974px;}
.x93{left:238.957500px;}
.x3c{left:247.885500px;}
.x32{left:250.866000px;}
.x11{left:253.971000px;}
.xaf{left:255.177097px;}
.x1{left:259.869000px;}
.xa6{left:264.511018px;}
.xb4{left:267.492704px;}
.x3{left:278.695500px;}
.x3d{left:280.614000px;}
.x7{left:293.578500px;}
.xa5{left:299.402400px;}
.x5{left:300.885000px;}
.x9a{left:304.959000px;}
.xa9{left:335.157015px;}
.x9b{left:337.686000px;}
.x94{left:341.404500px;}
.x7c{left:354.330000px;}
.x9f{left:358.813500px;}
.xa8{left:362.978784px;}
.x83{left:384.096000px;}
.x1d{left:391.294500px;}
.x28{left:395.382000px;}
.xb1{left:403.703647px;}
.xbb{left:406.091375px;}
.x34{left:407.652000px;}
.xb0{left:411.392232px;}
.x1c{left:413.859000px;}
.x25{left:426.745500px;}
.x7f{left:441.759000px;}
.x73{left:446.589000px;}
.x9c{left:450.708000px;}
.x26{left:459.472500px;}
.x3e{left:461.125500px;}
.x33{left:465.589500px;}
.xac{left:487.238394px;}
.xb3{left:492.609352px;}
.x3f{left:493.852500px;}
.x95{left:498.318000px;}
.xba{left:508.178734px;}
.xb5{left:513.123337px;}
.xbd{left:514.190183px;}
.xb2{left:516.420894px;}
.xab{left:517.763165px;}
.x84{left:519.444000px;}
.x7d{left:525.099000px;}
.x96{left:552.988500px;}
.x97{left:558.054000px;}
.x98{left:564.162000px;}
.x9d{left:575.032500px;}
.x85{left:3018.322185px;}
.x8d{left:3021.296685px;}
.x35{left:3022.786185px;}
.x14{left:3024.700185px;}
.x6f{left:3028.385685px;}
.x2e{left:3036.179685px;}
.xe{left:3042.275685px;}
.x36{left:3055.513185px;}
.x70{left:3061.112685px;}
.x82{left:3062.908185px;}
.x80{left:3071.662185px;}
.x81{left:3075.286185px;}
.x86{left:3097.642185px;}
.x8e{left:3112.894185px;}
.x7a{left:3157.484685px;}
.x1b{left:3178.376685px;}
.x29{left:3193.103685px;}
.x23{left:3213.323685px;}
.x87{left:3238.996185px;}
.x37{left:3247.924185px;}
.x2f{left:3250.904685px;}
.xf{left:3254.009685px;}
.x38{left:3280.652685px;}
.x8f{left:3304.997685px;}
.x90{left:3337.724685px;}
.x88{left:3341.443185px;}
.x78{left:3354.368685px;}
.x9e{left:3358.852185px;}
.x13{left:3360.322185px;}
.x10{left:3370.243185px;}
.x1a{left:3391.333185px;}
.x20{left:3394.057185px;}
.x24{left:3395.420685px;}
.x19{left:3413.897685px;}
.x21{left:3426.784185px;}
.x7b{left:3441.797685px;}
.x71{left:3446.627685px;}
.x91{left:3450.746685px;}
.x22{left:3459.511185px;}
.x39{left:3461.164185px;}
.x30{left:3465.628185px;}
.x3a{left:3493.891185px;}
.x89{left:3498.356685px;}
.x79{left:3525.137685px;}
.x8a{left:3553.027185px;}
.x8b{left:3558.092685px;}
.x8c{left:3564.200685px;}
.x92{left:3575.071185px;}
@media print{
.v3{vertical-align:-7.466667pt;}
.v1{vertical-align:-4.714667pt;}
.v6{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.875507pt;}
.v2{vertical-align:3.781333pt;}
.v4{vertical-align:12.565333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:5.714506pt;}
.ls3{letter-spacing:7.272733pt;}
.ls4{letter-spacing:14.544939pt;}
.ls2{letter-spacing:14.545467pt;}
.ls5{letter-spacing:26.414567pt;}
.ls1{letter-spacing:46.666152pt;}
.ls7{letter-spacing:205.542534pt;}
.ws1f{word-spacing:-21.818200pt;}
.wsb{word-spacing:-14.545467pt;}
.ws33{word-spacing:-11.702746pt;}
.ws2e{word-spacing:-9.658921pt;}
.ws2d{word-spacing:-7.244191pt;}
.ws17{word-spacing:-6.320720pt;}
.ws32{word-spacing:-6.087074pt;}
.ws19{word-spacing:-5.670640pt;}
.ws16{word-spacing:-5.530621pt;}
.ws31{word-spacing:-5.217519pt;}
.ws2a{word-spacing:-2.771792pt;}
.ws7{word-spacing:-2.501820pt;}
.wsa{word-spacing:-1.687274pt;}
.ws3{word-spacing:-1.512729pt;}
.ws10{word-spacing:-1.338183pt;}
.ws9{word-spacing:-0.756364pt;}
.ws8{word-spacing:-0.581819pt;}
.ws24{word-spacing:-0.232727pt;}
.ws4{word-spacing:-0.058182pt;}
.ws13{word-spacing:-0.026235pt;}
.ws2c{word-spacing:-0.026058pt;}
.ws12{word-spacing:-0.023536pt;}
.ws14{word-spacing:-0.022955pt;}
.ws34{word-spacing:-0.019440pt;}
.ws1e{word-spacing:-0.010085pt;}
.ws21{word-spacing:-0.005067pt;}
.ws1a{word-spacing:-0.004770pt;}
.ws22{word-spacing:-0.004478pt;}
.ws2{word-spacing:-0.002395pt;}
.ws1d{word-spacing:-0.001578pt;}
.wsc{word-spacing:-0.001525pt;}
.ws1c{word-spacing:-0.000572pt;}
.ws1b{word-spacing:-0.000034pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.001394pt;}
.wsd{word-spacing:0.002340pt;}
.ws20{word-spacing:0.004762pt;}
.ws5{word-spacing:0.465455pt;}
.wse{word-spacing:1.047274pt;}
.ws25{word-spacing:1.989419pt;}
.ws15{word-spacing:2.443638pt;}
.ws29{word-spacing:6.283642pt;}
.ws26{word-spacing:7.257131pt;}
.ws27{word-spacing:7.261476pt;}
.ws28{word-spacing:9.076371pt;}
.ws23{word-spacing:11.927283pt;}
.ws6{word-spacing:13.847284pt;}
.ws2b{word-spacing:14.545467pt;}
.ws1{word-spacing:27.162101pt;}
.ws35{word-spacing:28.072282pt;}
.ws36{word-spacing:28.072288pt;}
.ws18{word-spacing:31.116814pt;}
.ws11{word-spacing:51.070282pt;}
.ws2f{word-spacing:73.268451pt;}
.ws30{word-spacing:214.175293pt;}
._23{margin-left:-512.965140pt;}
._c{margin-left:-7.796370pt;}
._1f{margin-left:-5.432428pt;}
._8{margin-left:-3.898185pt;}
._1{margin-left:-2.082853pt;}
._0{margin-left:-0.930910pt;}
._b{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._17{width:5.088586pt;}
._3{width:6.305997pt;}
._11{width:7.680006pt;}
._21{width:12.072045pt;}
._1d{width:13.581107pt;}
._9{width:16.930923pt;}
._13{width:18.595842pt;}
._10{width:22.800894pt;}
._1b{width:24.821302pt;}
._1c{width:28.858206pt;}
._20{width:29.905479pt;}
._14{width:31.883663pt;}
._7{width:71.476156pt;}
._a{width:162.818783pt;}
._f{width:163.712078pt;}
._12{width:237.254954pt;}
._15{width:257.333493pt;}
._18{width:271.712743pt;}
._d{width:422.775138pt;}
._1e{width:463.303619pt;}
._16{width:517.610896pt;}
._1a{width:536.607907pt;}
._19{width:983.495723pt;}
._6{width:998.322389pt;}
._22{width:1013.143723pt;}
._e{width:1024.931763pt;}
.fs13{font-size:8.743823pt;}
.fs12{font-size:9.844800pt;}
.fsf{font-size:10.084986pt;}
.fsd{font-size:12.221252pt;}
.fsb{font-size:15.892590pt;}
.fse{font-size:16.294943pt;}
.fs1b{font-size:16.459052pt;}
.fs7{font-size:17.652300pt;}
.fsc{font-size:18.162989pt;}
.fs1a{font-size:19.202126pt;}
.fs1c{font-size:19.439777pt;}
.fs14{font-size:20.915840pt;}
.fsa{font-size:22.955159pt;}
.fs19{font-size:23.162880pt;}
.fs8{font-size:23.536315pt;}
.fs1e{font-size:23.770881pt;}
.fs15{font-size:26.058240pt;}
.fs9{font-size:26.234508pt;}
.fs1d{font-size:27.166721pt;}
.fs11{font-size:28.433423pt;}
.fs18{font-size:28.953600pt;}
.fs4{font-size:31.880533pt;}
.fs16{font-size:34.744320pt;}
.fs6{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs10{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs17{font-size:110.283724pt;}
.y0{bottom:0.000000pt;}
.y151{bottom:1.798454pt;}
.y152{bottom:1.922471pt;}
.ya{bottom:3.442667pt;}
.y14f{bottom:10.441641pt;}
.y150{bottom:10.565658pt;}
.y1fa{bottom:11.177412pt;}
.y20c{bottom:13.666352pt;}
.y106{bottom:14.083516pt;}
.y64{bottom:14.504117pt;}
.y208{bottom:14.511082pt;}
.y1c1{bottom:17.289953pt;}
.y9{bottom:18.131024pt;}
.y8{bottom:18.642667pt;}
.y14d{bottom:19.096588pt;}
.y14e{bottom:19.220605pt;}
.y20d{bottom:19.445333pt;}
.y1f9{bottom:19.667012pt;}
.y8c{bottom:20.196000pt;}
.y207{bottom:20.586012pt;}
.y19b{bottom:21.244000pt;}
.y1c5{bottom:21.408000pt;}
.y72{bottom:22.602667pt;}
.y75{bottom:22.892000pt;}
.ye5{bottom:23.513333pt;}
.y78{bottom:23.866667pt;}
.y1c0{bottom:24.528353pt;}
.y12f{bottom:25.836000pt;}
.y170{bottom:25.885333pt;}
.y5a{bottom:26.236000pt;}
.y206{bottom:26.660943pt;}
.y2c{bottom:27.024000pt;}
.y175{bottom:27.481409pt;}
.y62{bottom:28.829333pt;}
.y23{bottom:29.229333pt;}
.y178{bottom:29.252000pt;}
.y1c4{bottom:29.733333pt;}
.y105{bottom:31.036755pt;}
.y1a7{bottom:31.437333pt;}
.y1bf{bottom:31.766753pt;}
.y205{bottom:32.735873pt;}
.y201{bottom:33.213415pt;}
.y18a{bottom:33.312000pt;}
.y40{bottom:33.634667pt;}
.y19a{bottom:33.862667pt;}
.y169{bottom:34.816000pt;}
.y16f{bottom:35.184000pt;}
.y8b{bottom:37.230667pt;}
.y85{bottom:38.696000pt;}
.y88{bottom:38.717333pt;}
.y204{bottom:38.810804pt;}
.y1be{bottom:39.005153pt;}
.y200{bottom:39.288345pt;}
.y1fd{bottom:39.353073pt;}
.y71{bottom:40.668000pt;}
.y74{bottom:40.957333pt;}
.yf0{bottom:41.046667pt;}
.yf3{bottom:41.220000pt;}
.ye4{bottom:41.578667pt;}
.y16b{bottom:41.701162pt;}
.y77{bottom:41.932000pt;}
.y1b6{bottom:42.197413pt;}
.y1b0{bottom:42.601267pt;}
.ye1{bottom:43.132070pt;}
.y12e{bottom:43.902667pt;}
.y59{bottom:44.301333pt;}
.yff{bottom:44.804000pt;}
.y2b{bottom:45.089333pt;}
.y1bc{bottom:46.049381pt;}
.y1bd{bottom:46.243553pt;}
.y199{bottom:46.482667pt;}
.y203{bottom:46.708213pt;}
.y1ff{bottom:47.185754pt;}
.y165{bottom:47.228000pt;}
.y1fc{bottom:47.250483pt;}
.y1c3{bottom:47.800000pt;}
.y16d{bottom:47.909333pt;}
.y1b3{bottom:49.848118pt;}
.y61{bottom:51.230667pt;}
.y22{bottom:52.016000pt;}
.y1b5{bottom:52.386522pt;}
.y202{bottom:52.783144pt;}
.y1fe{bottom:53.260685pt;}
.y1fb{bottom:53.325413pt;}
.y1a6{bottom:53.488000pt;}
.y189{bottom:55.362667pt;}
.ye0{bottom:55.701820pt;}
.y1af{bottom:56.362678pt;}
.y1ba{bottom:56.659313pt;}
.yc1{bottom:56.781312pt;}
.y168{bottom:56.866667pt;}
.y174{bottom:57.447795pt;}
.y8a{bottom:59.281333pt;}
.ye3{bottom:59.644000pt;}
.y84{bottom:60.746667pt;}
.y87{bottom:60.768000pt;}
.yac{bottom:61.573467pt;}
.y58{bottom:62.366667pt;}
.yc0{bottom:62.457310pt;}
.yef{bottom:63.097333pt;}
.y2a{bottom:63.154667pt;}
.yf2{bottom:63.270667pt;}
.y15{bottom:64.510667pt;}
.y164{bottom:65.293333pt;}
.y1bb{bottom:65.793182pt;}
.y1c2{bottom:65.865333pt;}
.y198{bottom:66.269333pt;}
.yfe{bottom:66.854667pt;}
.y1b2{bottom:67.763158pt;}
.y16c{bottom:69.960000pt;}
.y104{bottom:70.239398pt;}
.y11a{bottom:70.497333pt;}
.y117{bottom:70.537333pt;}
.y3f{bottom:71.781333pt;}
.yd2{bottom:72.975423pt;}
.y1f2{bottom:73.949954pt;}
.y1d0{bottom:74.745854pt;}
.y1a5{bottom:75.538667pt;}
.y188{bottom:77.413333pt;}
.ye2{bottom:77.710667pt;}
.yd1{bottom:78.651421pt;}
.y197{bottom:78.889333pt;}
.y167{bottom:78.917333pt;}
.y1d9{bottom:79.148074pt;}
.yab{bottom:79.729137pt;}
.y1f1{bottom:80.024884pt;}
.y57{bottom:80.433333pt;}
.y1d6{bottom:80.502425pt;}
.y1b7{bottom:80.598540pt;}
.y1cf{bottom:80.820785pt;}
.yae{bottom:81.288349pt;}
.y89{bottom:81.333333pt;}
.y12d{bottom:81.825333pt;}
.y86{bottom:82.354667pt;}
.y83{bottom:82.798667pt;}
.y1a{bottom:83.272000pt;}
.yfd{bottom:84.920000pt;}
.yf1{bottom:85.250667pt;}
.yee{bottom:85.498667pt;}
.y1f0{bottom:86.099814pt;}
.y14{bottom:86.561333pt;}
.y103{bottom:86.575814pt;}
.y1d5{bottom:86.577356pt;}
.y1ce{bottom:86.895715pt;}
.y1d8{bottom:87.045484pt;}
.y119{bottom:88.562667pt;}
.y116{bottom:88.602667pt;}
.ydb{bottom:88.608676pt;}
.yad{bottom:89.486724pt;}
.y16a{bottom:89.638667pt;}
.y163{bottom:89.840000pt;}
.y3e{bottom:89.846667pt;}
.y5e{bottom:89.936000pt;}
.y196{bottom:91.508000pt;}
.y1ef{bottom:92.174745pt;}
.y1d4{bottom:92.652286pt;}
.y1cd{bottom:92.970646pt;}
.y1d7{bottom:93.120414pt;}
.yda{bottom:93.575238pt;}
.y1a8{bottom:93.738667pt;}
.yce{bottom:93.956830pt;}
.yba{bottom:95.408907pt;}
.y1a4{bottom:97.589333pt;}
.y1ee{bottom:98.249675pt;}
.y176{bottom:98.390813pt;}
.ycd{bottom:98.467616pt;}
.y25{bottom:98.492000pt;}
.y102{bottom:98.726812pt;}
.y1d3{bottom:98.727216pt;}
.y1cc{bottom:99.045576pt;}
.y187{bottom:99.465333pt;}
.y12c{bottom:100.096000pt;}
.y1ab{bottom:100.710654pt;}
.y166{bottom:103.021333pt;}
.y9d{bottom:104.679022pt;}
.y1ed{bottom:106.147085pt;}
.y7{bottom:106.341333pt;}
.y1d2{bottom:106.624626pt;}
.y1cb{bottom:106.942985pt;}
.yfc{bottom:106.970667pt;}
.y1b1{bottom:107.936278pt;}
.yc3{bottom:108.319578pt;}
.y13{bottom:108.612000pt;}
.yb3{bottom:108.640000pt;}
.yd9{bottom:108.720278pt;}
.yb9{bottom:109.474463pt;}
.y3d{bottom:110.582667pt;}
.y195{bottom:111.294667pt;}
.y5d{bottom:111.986667pt;}
.y1ec{bottom:112.222015pt;}
.y1d1{bottom:112.699556pt;}
.yc2{bottom:112.830364pt;}
.y9c{bottom:112.877398pt;}
.y1ca{bottom:113.017916pt;}
.yd8{bottom:113.686839pt;}
.yb8{bottom:114.441024pt;}
.y12b{bottom:114.708000pt;}
.ycc{bottom:115.608602pt;}
.y24{bottom:116.557333pt;}
.y56{bottom:116.564000pt;}
.y79{bottom:118.174667pt;}
.y1a3{bottom:119.642667pt;}
.yc5{bottom:121.021545pt;}
.yde{bottom:123.408027pt;}
.ybd{bottom:123.778084pt;}
.y194{bottom:123.914667pt;}
.y6{bottom:124.406667pt;}
.yca{bottom:124.630174pt;}
.yc6{bottom:125.532331pt;}
.ydf{bottom:126.092426pt;}
.y19{bottom:126.194667pt;}
.ya6{bottom:127.259596pt;}
.y1e8{bottom:128.298699pt;}
.ydd{bottom:129.084024pt;}
.ycb{bottom:129.140960pt;}
.y12a{bottom:129.320000pt;}
.ybc{bottom:129.454082pt;}
.yc4{bottom:130.043117pt;}
.y12{bottom:130.662667pt;}
.y118{bottom:133.589333pt;}
.y5c{bottom:134.037333pt;}
.y1e7{bottom:134.373629pt;}
.ya5{bottom:134.433267pt;}
.y1e0{bottom:134.438357pt;}
.ydc{bottom:134.760022pt;}
.y99{bottom:134.984436pt;}
.ybb{bottom:135.130079pt;}
.y1b4{bottom:135.280544pt;}
.yfb{bottom:135.664000pt;}
.y115{bottom:135.922667pt;}
.y193{bottom:136.534667pt;}
.y55{bottom:137.161333pt;}
.y1b9{bottom:137.789706pt;}
.y158{bottom:139.036000pt;}
.yc7{bottom:139.064689pt;}
.y186{bottom:139.808000pt;}
.y162{bottom:139.865333pt;}
.y1e6{bottom:140.448559pt;}
.y1f8{bottom:140.513285pt;}
.y1df{bottom:140.513288pt;}
.y15c{bottom:141.261333pt;}
.y98{bottom:141.499788pt;}
.y5{bottom:142.473333pt;}
.yc8{bottom:142.673546pt;}
.y160{bottom:143.006667pt;}
.y76{bottom:143.168000pt;}
.yb7{bottom:143.915580pt;}
.y129{bottom:143.932000pt;}
.y73{bottom:144.141333pt;}
.y3c{bottom:144.142667pt;}
.y70{bottom:144.430667pt;}
.y161{bottom:145.581333pt;}
.y1e5{bottom:146.523490pt;}
.y1f7{bottom:146.588215pt;}
.y1de{bottom:146.588218pt;}
.yb6{bottom:148.882138pt;}
.yd7{bottom:148.943480pt;}
.y34{bottom:149.438667pt;}
.y1ac{bottom:150.823798pt;}
.yfa{bottom:151.604000pt;}
.y11{bottom:151.609333pt;}
.yc9{bottom:151.694892pt;}
.y1e4{bottom:152.598420pt;}
.y1f6{bottom:152.663146pt;}
.y1dd{bottom:152.663149pt;}
.yd6{bottom:153.910038pt;}
.y192{bottom:155.317333pt;}
.y8e{bottom:155.729901pt;}
.y5b{bottom:156.089333pt;}
.ya4{bottom:156.308668pt;}
.y1eb{bottom:157.942178pt;}
.y1a2{bottom:158.024000pt;}
.y1e3{bottom:158.673351pt;}
.y1f5{bottom:158.738076pt;}
.y1dc{bottom:158.738079pt;}
.y15f{bottom:161.073333pt;}
.y157{bottom:161.086667pt;}
.y185{bottom:161.858667pt;}
.y1ad{bottom:162.224278pt;}
.y8d{bottom:162.245252pt;}
.y15b{bottom:163.312000pt;}
.ya3{bottom:163.482339pt;}
.y1ea{bottom:165.839588pt;}
.yb5{bottom:166.038342pt;}
.y97{bottom:166.258122pt;}
.y1e2{bottom:166.570760pt;}
.y1f4{bottom:166.635485pt;}
.y1db{bottom:166.635488pt;}
.y33{bottom:167.504000pt;}
.y191{bottom:167.936000pt;}
.y101{bottom:167.989333pt;}
.yd0{bottom:169.061416pt;}
.y18{bottom:169.117333pt;}
.yf9{bottom:170.201333pt;}
.yb4{bottom:171.004899pt;}
.y173{bottom:171.225084pt;}
.y1e9{bottom:171.914518pt;}
.y1e1{bottom:172.645691pt;}
.y1f3{bottom:172.710416pt;}
.y1da{bottom:172.710419pt;}
.y128{bottom:173.873333pt;}
.y90{bottom:174.076543pt;}
.yd5{bottom:174.082982pt;}
.ycf{bottom:174.153643pt;}
.y54{bottom:174.952000pt;}
.y4{bottom:177.102667pt;}
.ya9{bottom:177.523562pt;}
.y1ae{bottom:177.967798pt;}
.yd4{bottom:179.049540pt;}
.y95{bottom:179.288824pt;}
.y1b8{bottom:179.992420pt;}
.y1a1{bottom:180.074667pt;}
.y190{bottom:180.556000pt;}
.y91{bottom:180.591894pt;}
.y15a{bottom:181.378667pt;}
.yaa{bottom:181.400891pt;}
.y15e{bottom:183.124000pt;}
.y156{bottom:183.137333pt;}
.y66{bottom:183.314667pt;}
.y10{bottom:183.644000pt;}
.y184{bottom:183.912000pt;}
.yd3{bottom:184.164674pt;}
.ybf{bottom:184.699641pt;}
.y32{bottom:185.570667pt;}
.ya8{bottom:185.721938pt;}
.y96{bottom:185.804175pt;}
.y8f{bottom:187.107245pt;}
.yf8{bottom:190.126667pt;}
.ybe{bottom:190.375538pt;}
.y53{bottom:190.893333pt;}
.ya7{bottom:193.920314pt;}
.y1aa{bottom:194.797080pt;}
.y224{bottom:199.955789pt;}
.y92{bottom:200.137948pt;}
.y21d{bottom:200.433330pt;}
.y216{bottom:200.498059pt;}
.y18f{bottom:201.018667pt;}
.y1a0{bottom:202.125333pt;}
.y108{bottom:202.236000pt;}
.y31{bottom:203.636000pt;}
.y15d{bottom:204.710667pt;}
.y159{bottom:204.872000pt;}
.y65{bottom:205.294667pt;}
.y93{bottom:205.350558pt;}
.y155{bottom:205.540000pt;}
.yf{bottom:205.694667pt;}
.y223{bottom:206.030719pt;}
.y114{bottom:206.056000pt;}
.y21c{bottom:206.508261pt;}
.y215{bottom:206.572989pt;}
.y225{bottom:206.932591pt;}
.y3{bottom:207.268000pt;}
.y11f{bottom:208.126667pt;}
.y1a9{bottom:208.369078pt;}
.y52{bottom:209.489333pt;}
.y17{bottom:212.040000pt;}
.y222{bottom:212.105650pt;}
.yf7{bottom:212.177333pt;}
.y21b{bottom:212.583191pt;}
.y214{bottom:212.647919pt;}
.ya2{bottom:214.406813pt;}
.y221{bottom:218.180580pt;}
.y94{bottom:218.380935pt;}
.y21a{bottom:218.658121pt;}
.y213{bottom:218.722850pt;}
.y107{bottom:220.301333pt;}
.ya1{bottom:221.580478pt;}
.y113{bottom:224.121333pt;}
.y19f{bottom:224.176000pt;}
.y220{bottom:224.255511pt;}
.y17c{bottom:224.326667pt;}
.y219{bottom:224.733052pt;}
.y212{bottom:224.797780pt;}
.y11e{bottom:226.192000pt;}
.ye{bottom:227.745333pt;}
.y20{bottom:228.026667pt;}
.y51{bottom:229.414667pt;}
.y18e{bottom:231.841333pt;}
.y21f{bottom:232.152920pt;}
.y218{bottom:232.630461pt;}
.y211{bottom:232.695190pt;}
.y30{bottom:233.690667pt;}
.yf6{bottom:234.228000pt;}
.y227{bottom:236.902906pt;}
.y21e{bottom:238.227851pt;}
.y63{bottom:238.649333pt;}
.y217{bottom:238.705392pt;}
.y210{bottom:238.770120pt;}
.y135{bottom:242.746667pt;}
.y132{bottom:242.782667pt;}
.y9b{bottom:243.465034pt;}
.y226{bottom:244.331306pt;}
.y19e{bottom:246.226667pt;}
.y17b{bottom:246.377333pt;}
.y11d{bottom:248.242667pt;}
.yd{bottom:249.796000pt;}
.ya0{bottom:250.718154pt;}
.y9a{bottom:250.820215pt;}
.y50{bottom:251.465333pt;}
.y2f{bottom:251.756000pt;}
.y18d{bottom:253.892000pt;}
.y16{bottom:254.962667pt;}
.yf5{bottom:256.278667pt;}
.y9f{bottom:257.891819pt;}
.y134{bottom:260.812000pt;}
.y131{bottom:260.848000pt;}
.y2{bottom:263.812000pt;}
.y9e{bottom:265.280087pt;}
.y20f{bottom:265.446324pt;}
.y20e{bottom:265.674137pt;}
.y19d{bottom:267.173333pt;}
.y1c{bottom:267.977333pt;}
.y17a{bottom:268.428000pt;}
.y2e{bottom:269.821333pt;}
.y11c{bottom:270.293333pt;}
.y20b{bottom:271.521292pt;}
.y209{bottom:271.749102pt;}
.y20a{bottom:271.749103pt;}
.yc{bottom:271.846667pt;}
.y4f{bottom:273.516000pt;}
.y18c{bottom:275.942667pt;}
.y112{bottom:277.493333pt;}
.y1c9{bottom:277.596185pt;}
.y1c8{bottom:277.596187pt;}
.y1c7{bottom:277.823995pt;}
.yf4{bottom:278.329333pt;}
.y100{bottom:280.720000pt;}
.y130{bottom:282.966667pt;}
.y1c6{bottom:283.671116pt;}
.y133{bottom:284.485333pt;}
.y177{bottom:286.100000pt;}
.y1{bottom:286.658667pt;}
.y16e{bottom:287.350667pt;}
.y179{bottom:290.757333pt;}
.y1b{bottom:290.764000pt;}
.y2d{bottom:291.940000pt;}
.y11b{bottom:292.345333pt;}
.y3b{bottom:292.821333pt;}
.y19c{bottom:295.222667pt;}
.y41{bottom:295.633333pt;}
.y18b{bottom:296.540000pt;}
.yb{bottom:322.445333pt;}
.yb2{bottom:2601.770387pt;}
.yb1{bottom:2619.835720pt;}
.yb0{bottom:2637.901053pt;}
.yaf{bottom:2655.967720pt;}
.y69{bottom:2689.303720pt;}
.y6c{bottom:2689.593053pt;}
.y6f{bottom:2690.567720pt;}
.y127{bottom:2692.537053pt;}
.y4e{bottom:2692.937053pt;}
.y29{bottom:2693.725053pt;}
.y60{bottom:2695.530387pt;}
.y1f{bottom:2695.930387pt;}
.y172{bottom:2695.953053pt;}
.y183{bottom:2700.013053pt;}
.y3a{bottom:2700.335720pt;}
.y14a{bottom:2701.517053pt;}
.y82{bottom:2703.931720pt;}
.y7c{bottom:2705.397053pt;}
.y7f{bottom:2705.418387pt;}
.y68{bottom:2707.369053pt;}
.y6b{bottom:2707.658387pt;}
.ye8{bottom:2707.747720pt;}
.yed{bottom:2707.921053pt;}
.yeb{bottom:2707.922387pt;}
.y14c{bottom:2708.402215pt;}
.y6e{bottom:2708.633053pt;}
.y126{bottom:2710.603720pt;}
.y4d{bottom:2711.002387pt;}
.y28{bottom:2711.790387pt;}
.y146{bottom:2713.929053pt;}
.y154{bottom:2714.610387pt;}
.y5f{bottom:2717.931720pt;}
.y1e{bottom:2718.717053pt;}
.y182{bottom:2722.063720pt;}
.y149{bottom:2723.567720pt;}
.y81{bottom:2725.982387pt;}
.y7b{bottom:2727.447720pt;}
.y7e{bottom:2727.469053pt;}
.y4c{bottom:2729.067720pt;}
.ye7{bottom:2729.798387pt;}
.y27{bottom:2729.855720pt;}
.yec{bottom:2729.971720pt;}
.yea{bottom:2729.973053pt;}
.y145{bottom:2731.994387pt;}
.y153{bottom:2736.661053pt;}
.y111{bottom:2737.198387pt;}
.y10e{bottom:2737.238387pt;}
.y39{bottom:2738.482387pt;}
.y181{bottom:2744.114387pt;}
.y148{bottom:2745.618387pt;}
.y4b{bottom:2747.134387pt;}
.y80{bottom:2748.034387pt;}
.y125{bottom:2748.526387pt;}
.y7d{bottom:2749.055720pt;}
.y7a{bottom:2749.499720pt;}
.ye9{bottom:2751.951720pt;}
.ye6{bottom:2752.199720pt;}
.y110{bottom:2755.263720pt;}
.y10d{bottom:2755.303720pt;}
.y14b{bottom:2756.339720pt;}
.y144{bottom:2756.541053pt;}
.y38{bottom:2756.547720pt;}
.y26{bottom:2763.326387pt;}
.y180{bottom:2766.166387pt;}
.y124{bottom:2766.797053pt;}
.y147{bottom:2769.722387pt;}
.y37{bottom:2777.283720pt;}
.y123{bottom:2781.409053pt;}
.y4a{bottom:2783.265053pt;}
.y122{bottom:2796.021053pt;}
.y10f{bottom:2800.290387pt;}
.y10c{bottom:2802.623720pt;}
.y49{bottom:2803.862387pt;}
.y139{bottom:2805.737053pt;}
.y17f{bottom:2806.509053pt;}
.y143{bottom:2806.566387pt;}
.y13d{bottom:2807.962387pt;}
.y141{bottom:2809.707720pt;}
.y6d{bottom:2809.869053pt;}
.y121{bottom:2810.633053pt;}
.y6a{bottom:2810.842387pt;}
.y36{bottom:2810.843720pt;}
.y67{bottom:2811.131720pt;}
.y142{bottom:2812.282387pt;}
.y140{bottom:2827.774387pt;}
.y138{bottom:2827.787720pt;}
.y17e{bottom:2828.559720pt;}
.y13c{bottom:2830.013053pt;}
.y120{bottom:2840.574387pt;}
.y48{bottom:2841.653053pt;}
.y13b{bottom:2848.079720pt;}
.y13f{bottom:2849.825053pt;}
.y137{bottom:2849.838387pt;}
.y17d{bottom:2850.613053pt;}
.y47{bottom:2857.594387pt;}
.y13e{bottom:2871.411720pt;}
.y13a{bottom:2871.573053pt;}
.y136{bottom:2872.241053pt;}
.y10b{bottom:2872.757053pt;}
.y46{bottom:2876.190387pt;}
.y10a{bottom:2890.822387pt;}
.y1d{bottom:2894.727720pt;}
.y21{bottom:2895.673053pt;}
.y45{bottom:2896.115720pt;}
.y44{bottom:2918.166387pt;}
.y43{bottom:2940.217053pt;}
.y109{bottom:2944.194387pt;}
.y171{bottom:2952.801053pt;}
.y35{bottom:2959.522387pt;}
.y42{bottom:2962.277053pt;}
.h1e{height:-2368.244882pt;}
.h23{height:-2355.795720pt;}
.h20{height:6.643256pt;}
.h1a{height:7.662225pt;}
.h17{height:9.285287pt;}
.h15{height:12.074644pt;}
.h18{height:12.380338pt;}
.h2f{height:12.505022pt;}
.h10{height:13.411611pt;}
.h34{height:13.677864pt;}
.h33{height:13.677876pt;}
.h16{height:13.799614pt;}
.h2e{height:14.589115pt;}
.h31{height:14.769675pt;}
.h24{height:14.850246pt;}
.h30{height:14.874087pt;}
.h13{height:17.440541pt;}
.h2c{height:17.598360pt;}
.h11{height:17.882083pt;}
.h35{height:18.060298pt;}
.h28{height:19.309156pt;}
.h27{height:19.798155pt;}
.h12{height:19.932078pt;}
.h32{height:20.640341pt;}
.h1f{height:21.602738pt;}
.h22{height:23.177148pt;}
.h7{height:23.814758pt;}
.h2b{height:24.330124pt;}
.he{height:25.072183pt;}
.h29{height:25.745541pt;}
.h6{height:31.341747pt;}
.h4{height:31.752878pt;}
.h1b{height:35.722138pt;}
.h21{height:37.309331pt;}
.h8{height:38.747188pt;}
.hc{height:39.690998pt;}
.hb{height:42.298217pt;}
.h9{height:42.821854pt;}
.h3{height:43.461854pt;}
.ha{height:47.243188pt;}
.h1c{height:55.272773pt;}
.h1d{height:56.027188pt;}
.h2{height:57.155261pt;}
.hd{height:64.746796pt;}
.h5{height:80.937417pt;}
.h2a{height:81.720239pt;}
.h19{height:100.642368pt;}
.h25{height:182.577853pt;}
.h14{height:199.014805pt;}
.h26{height:219.226678pt;}
.hf{height:287.455750pt;}
.h2d{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w7{width:-2462.606387pt;}
.w9{width:-2380.922387pt;}
.w6{width:74.074838pt;}
.w8{width:77.769955pt;}
.wa{width:259.269267pt;}
.w3{width:296.322767pt;}
.w5{width:333.349804pt;}
.w2{width:370.421406pt;}
.w4{width:481.488390pt;}
.wc{width:529.126393pt;}
.wb{width:529.134860pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4b{left:0.891462pt;}
.x65{left:4.111433pt;}
.x4c{left:5.938529pt;}
.xaa{left:12.539450pt;}
.x16{left:14.614667pt;}
.xb{left:16.121333pt;}
.x77{left:18.620435pt;}
.x12{left:19.905333pt;}
.xb7{left:20.907176pt;}
.x15{left:21.921333pt;}
.x72{left:25.197333pt;}
.x66{left:27.289254pt;}
.x31{left:32.125333pt;}
.xb8{left:33.302325pt;}
.xb9{left:34.835297pt;}
.x75{left:36.148918pt;}
.xd{left:37.794667pt;}
.x4d{left:39.416429pt;}
.x76{left:41.206027pt;}
.x1f{left:42.836000pt;}
.xa0{left:44.600000pt;}
.x3b{left:49.310667pt;}
.x56{left:53.975461pt;}
.x69{left:55.763980pt;}
.x6a{left:58.758745pt;}
.x40{left:61.606667pt;}
.x67{left:63.879766pt;}
.x68{left:65.819779pt;}
.xc{left:66.886667pt;}
.xb6{left:68.375163pt;}
.x6c{left:70.847682pt;}
.x6b{left:71.747846pt;}
.x6e{left:75.526057pt;}
.x50{left:78.426725pt;}
.x51{left:80.545148pt;}
.xbc{left:81.839206pt;}
.x52{left:84.870767pt;}
.x2c{left:86.032269pt;}
.x53{left:87.807415pt;}
.x59{left:89.278983pt;}
.x4e{left:92.267538pt;}
.x4f{left:95.069680pt;}
.x74{left:95.977333pt;}
.xa7{left:96.887342pt;}
.x62{left:99.364354pt;}
.x99{left:100.316000pt;}
.x55{left:102.331952pt;}
.x54{left:103.632144pt;}
.x61{left:104.650036pt;}
.x64{left:106.396244pt;}
.x9{left:107.545547pt;}
.x58{left:109.089368pt;}
.x6d{left:111.000447pt;}
.x63{left:112.803541pt;}
.x5d{left:115.124233pt;}
.x8{left:117.166667pt;}
.x60{left:120.083518pt;}
.xa{left:121.245333pt;}
.x5e{left:124.708417pt;}
.x2d{left:126.072000pt;}
.xa3{left:127.353495pt;}
.x5f{left:129.333316pt;}
.xa1{left:132.782295pt;}
.x2{left:136.537333pt;}
.x7e{left:139.952000pt;}
.x17{left:142.161333pt;}
.x48{left:143.521257pt;}
.x18{left:145.086667pt;}
.xad{left:147.296036pt;}
.x5c{left:149.391304pt;}
.x47{left:151.155864pt;}
.x2b{left:154.205333pt;}
.x4a{left:156.918418pt;}
.x1e{left:158.522667pt;}
.x57{left:160.328357pt;}
.x49{left:162.932735pt;}
.x41{left:166.284729pt;}
.x5a{left:168.349287pt;}
.x46{left:169.860356pt;}
.x2a{left:171.613333pt;}
.x45{left:173.447889pt;}
.x42{left:174.968957pt;}
.x4{left:177.098667pt;}
.x43{left:180.128065pt;}
.xa4{left:181.641495pt;}
.x6{left:185.198667pt;}
.x44{left:186.808240pt;}
.x27{left:189.586667pt;}
.x5b{left:193.594352pt;}
.xa2{left:195.436160pt;}
.xae{left:199.973310pt;}
.x93{left:212.406667pt;}
.x3c{left:220.342667pt;}
.x32{left:222.992000pt;}
.x11{left:225.752000pt;}
.xaf{left:226.824087pt;}
.x1{left:230.994667pt;}
.xa6{left:235.120905pt;}
.xb4{left:237.771292pt;}
.x3{left:247.729333pt;}
.x3d{left:249.434667pt;}
.x7{left:260.958667pt;}
.xa5{left:266.135467pt;}
.x5{left:267.453333pt;}
.x9a{left:271.074667pt;}
.xa9{left:297.917346pt;}
.x9b{left:300.165333pt;}
.x94{left:303.470667pt;}
.x7c{left:314.960000pt;}
.x9f{left:318.945333pt;}
.xa8{left:322.647808pt;}
.x83{left:341.418667pt;}
.x1d{left:347.817333pt;}
.x28{left:351.450667pt;}
.xb1{left:358.847686pt;}
.xbb{left:360.970111pt;}
.x34{left:362.357333pt;}
.xb0{left:365.681984pt;}
.x1c{left:367.874667pt;}
.x25{left:379.329333pt;}
.x7f{left:392.674667pt;}
.x73{left:396.968000pt;}
.x9c{left:400.629333pt;}
.x26{left:408.420000pt;}
.x3e{left:409.889333pt;}
.x33{left:413.857333pt;}
.xac{left:433.100795pt;}
.xb3{left:437.874979pt;}
.x3f{left:438.980000pt;}
.x95{left:442.949333pt;}
.xba{left:451.714430pt;}
.xb5{left:456.109633pt;}
.xbd{left:457.057940pt;}
.xb2{left:459.040795pt;}
.xab{left:460.233924pt;}
.x84{left:461.728000pt;}
.x7d{left:466.754667pt;}
.x96{left:491.545333pt;}
.x97{left:496.048000pt;}
.x98{left:501.477333pt;}
.x9d{left:511.140000pt;}
.x85{left:2682.953053pt;}
.x8d{left:2685.597053pt;}
.x35{left:2686.921053pt;}
.x14{left:2688.622387pt;}
.x6f{left:2691.898387pt;}
.x2e{left:2698.826387pt;}
.xe{left:2704.245053pt;}
.x36{left:2716.011720pt;}
.x70{left:2720.989053pt;}
.x82{left:2722.585053pt;}
.x80{left:2730.366387pt;}
.x81{left:2733.587720pt;}
.x86{left:2753.459720pt;}
.x8e{left:2767.017053pt;}
.x7a{left:2806.653053pt;}
.x1b{left:2825.223720pt;}
.x29{left:2838.314387pt;}
.x23{left:2856.287720pt;}
.x87{left:2879.107720pt;}
.x37{left:2887.043720pt;}
.x2f{left:2889.693053pt;}
.xf{left:2892.453053pt;}
.x38{left:2916.135720pt;}
.x8f{left:2937.775720pt;}
.x90{left:2966.866387pt;}
.x88{left:2970.171720pt;}
.x78{left:2981.661053pt;}
.x9e{left:2985.646387pt;}
.x13{left:2986.953053pt;}
.x10{left:2995.771720pt;}
.x1a{left:3014.518387pt;}
.x20{left:3016.939720pt;}
.x24{left:3018.151720pt;}
.x19{left:3034.575720pt;}
.x21{left:3046.030387pt;}
.x7b{left:3059.375720pt;}
.x71{left:3063.669053pt;}
.x91{left:3067.330387pt;}
.x22{left:3075.121053pt;}
.x39{left:3076.590387pt;}
.x30{left:3080.558387pt;}
.x3a{left:3105.681053pt;}
.x89{left:3109.650387pt;}
.x79{left:3133.455720pt;}
.x8a{left:3158.246387pt;}
.x8b{left:3162.749053pt;}
.x8c{left:3168.178387pt;}
.x92{left:3177.841053pt;}
}




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