
    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_d54aad83660a9c4cb0516c77.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_8f1d5d4ce0ba87b7c7fde734.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_1e719864285e7964c3d166dc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_74343d26692c571d28d24de3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.896000;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_aef9e1aba9c7923e615660ae.woff')format("woff");}.ff5{font-family:ff5;line-height:0.804000;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_17e5fc46140e3e9cbe15560b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_87984e608d5d8fb7edf71ab9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_373719cd0efbe583c3f7a9a0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_bf2ddbd09def6a0eb608e107.woff')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_ee773e7d000bdb9a3ca77192.woff')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_cec0172395c31bf8c7af93ef.woff')format("woff");}.ffb{font-family:ffb;line-height:0.578000;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_23d72aa0f3f1b413ba5fee3f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.022949;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_8ed6f4f5b5722494ac45b6af.woff')format("woff");}.ffd{font-family:ffd;line-height:0.878906;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_ec9cf86550b6b236e6bb0b5b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.022949;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_8b471cdcad719f042d3f6fb4.woff')format("woff");}.fff{font-family:fff;line-height:0.090000;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;}
.m4{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m3{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:-15.648000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.383311px;}
.v1{vertical-align:3.738382px;}
.v2{vertical-align:15.638852px;}
.v4{vertical-align:17.340969px;}
.v5{vertical-align:25.852999px;}
.v6{vertical-align:51.365526px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000006px;}
.lsc{letter-spacing:0.000012px;}
.ls19{letter-spacing:0.374903px;}
.ls1{letter-spacing:0.411856px;}
.ls0{letter-spacing:1.478295px;}
.ls18{letter-spacing:1.558952px;}
.ls3{letter-spacing:1.613453px;}
.ls2{letter-spacing:1.976692px;}
.ls6{letter-spacing:2.967000px;}
.ls9{letter-spacing:2.991600px;}
.ls5{letter-spacing:10.742285px;}
.ls16{letter-spacing:12.782286px;}
.lsa{letter-spacing:14.202718px;}
.lsf{letter-spacing:14.876989px;}
.ls10{letter-spacing:18.621342px;}
.ls11{letter-spacing:18.626124px;}
.ls12{letter-spacing:18.960868px;}
.ls4{letter-spacing:19.038201px;}
.ls14{letter-spacing:19.984229px;}
.ls13{letter-spacing:20.323755px;}
.lsb{letter-spacing:21.002808px;}
.lsd{letter-spacing:23.723800px;}
.ls17{letter-spacing:266.911751px;}
.lse{letter-spacing:331.911501px;}
.ls15{letter-spacing:389.022988px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws26{word-spacing:-43.038000px;}
.wsd{word-spacing:-38.256000px;}
.ws20{word-spacing:-38.255400px;}
.wsa{word-spacing:-30.844287px;}
.ws23{word-spacing:-24.674733px;}
.ws8{word-spacing:-24.230394px;}
.wsc{word-spacing:-21.270336px;}
.ws4{word-spacing:-14.011436px;}
.ws7{word-spacing:-13.437589px;}
.ws1{word-spacing:-12.610134px;}
.ws0{word-spacing:-12.375441px;}
.ws5{word-spacing:-11.955150px;}
.ws1c{word-spacing:-11.208832px;}
.ws2{word-spacing:-10.759500px;}
.wsf{word-spacing:-9.563850px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:1.928102px;}
.ws31{word-spacing:12.674014px;}
.ws30{word-spacing:12.781129px;}
.wsb{word-spacing:15.842965px;}
.ws3{word-spacing:16.182491px;}
.ws21{word-spacing:56.744235px;}
.ws24{word-spacing:56.969942px;}
.ws27{word-spacing:57.080882px;}
.ws14{word-spacing:63.090806px;}
.ws2e{word-spacing:74.169570px;}
.ws1e{word-spacing:104.448719px;}
.ws10{word-spacing:138.453944px;}
.ws11{word-spacing:154.750744px;}
.ws12{word-spacing:177.857006px;}
.ws2d{word-spacing:190.297662px;}
.ws16{word-spacing:194.383338px;}
.ws2a{word-spacing:196.380270px;}
.ws19{word-spacing:199.149961px;}
.ws29{word-spacing:206.827820px;}
.ws25{word-spacing:208.419245px;}
.ws2c{word-spacing:210.075704px;}
.ws28{word-spacing:226.575258px;}
.ws15{word-spacing:239.830754px;}
.ws2b{word-spacing:255.702919px;}
.wse{word-spacing:260.067860px;}
.ws13{word-spacing:272.386099px;}
.ws17{word-spacing:274.513099px;}
.ws2f{word-spacing:284.956824px;}
.ws1a{word-spacing:290.809900px;}
.ws1f{word-spacing:294.455639px;}
.ws1b{word-spacing:313.916161px;}
.ws22{word-spacing:356.276366px;}
.ws1d{word-spacing:368.805009px;}
.ws18{word-spacing:373.013103px;}
._3{margin-left:-17.343592px;}
._d{margin-left:-12.484391px;}
._f{margin-left:-5.446766px;}
._e{margin-left:-3.988238px;}
._7{margin-left:-2.732850px;}
._0{margin-left:-1.694637px;}
._2{width:1.723457px;}
._1{width:3.324716px;}
._4{width:4.473769px;}
._6{width:5.694113px;}
._5{width:6.817219px;}
._9{width:8.375385px;}
._11{width:9.686455px;}
._10{width:10.984392px;}
._8{width:12.485959px;}
._b{width:15.666029px;}
._a{width:16.718082px;}
._3e{width:17.884171px;}
._12{width:19.018986px;}
._c{width:20.318240px;}
._15{width:21.375808px;}
._17{width:22.428595px;}
._45{width:24.277785px;}
._14{width:30.193927px;}
._16{width:31.609417px;}
._13{width:33.326176px;}
._26{width:66.801579px;}
._43{width:67.949241px;}
._47{width:74.502391px;}
._56{width:85.810688px;}
._41{width:91.422755px;}
._42{width:99.926930px;}
._19{width:114.544319px;}
._40{width:120.550416px;}
._4b{width:126.005637px;}
._4a{width:127.666785px;}
._4c{width:129.039290px;}
._46{width:167.344422px;}
._2e{width:173.687167px;}
._55{width:182.596850px;}
._31{width:202.967850px;}
._29{width:216.758922px;}
._4e{width:237.784090px;}
._48{width:239.302829px;}
._4f{width:244.964628px;}
._30{width:250.603474px;}
._49{width:259.321880px;}
._50{width:265.955366px;}
._4d{width:267.043768px;}
._2f{width:271.138973px;}
._51{width:286.739525px;}
._3f{width:288.441890px;}
._54{width:296.165656px;}
._38{width:309.746323px;}
._39{width:341.651326px;}
._2d{width:343.445505px;}
._52{width:362.833341px;}
._44{width:367.829419px;}
._28{width:384.765162px;}
._3b{width:387.098742px;}
._53{width:391.165291px;}
._2a{width:406.226442px;}
._34{width:407.335848px;}
._22{width:419.386299px;}
._1a{width:423.058818px;}
._25{width:427.764232px;}
._24{width:430.017475px;}
._23{width:433.682342px;}
._1b{width:435.518601px;}
._1c{width:438.307420px;}
._2b{width:441.842219px;}
._1d{width:444.596608px;}
._1e{width:457.056391px;}
._2c{width:459.845210px;}
._20{width:466.134398px;}
._21{width:481.551324px;}
._27{width:487.672188px;}
._1f{width:492.094512px;}
._57{width:556.252322px;}
._3c{width:580.013073px;}
._3d{width:606.137685px;}
._32{width:618.306728px;}
._33{width:630.429864px;}
._35{width:640.112306px;}
._37{width:651.967654px;}
._36{width:661.382308px;}
._3a{width:682.920099px;}
._18{width:709.595589px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:26.761800px;}
.fse{font-size:30.108600px;}
.fs7{font-size:30.126000px;}
.fsa{font-size:33.472800px;}
.fsc{font-size:35.867400px;}
.fs4{font-size:38.255400px;}
.fsd{font-size:38.256000px;}
.fsf{font-size:40.933200px;}
.fs5{font-size:41.842200px;}
.fs2{font-size:42.237000px;}
.fs6{font-size:43.038000px;}
.fs8{font-size:47.820600px;}
.fsb{font-size:51.168000px;}
.fs1{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fs9{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:47.430000px;}
.yc2{bottom:78.409146px;}
.y220{bottom:78.410050px;}
.y82{bottom:78.416181px;}
.y1e0{bottom:78.491250px;}
.y1c8{bottom:78.753973px;}
.y17f{bottom:79.344316px;}
.y139{bottom:79.857596px;}
.ycd{bottom:81.723858px;}
.y1df{bottom:83.253450px;}
.y1fa{bottom:89.551054px;}
.y42{bottom:91.199985px;}
.yc1{bottom:94.140927px;}
.y21f{bottom:94.143027px;}
.y81{bottom:94.147962px;}
.y1c7{bottom:94.400873px;}
.y17e{bottom:95.076098px;}
.y138{bottom:95.504497px;}
.ycc{bottom:97.370758px;}
.y1de{bottom:99.669034px;}
.y1f9{bottom:105.197954px;}
.y41{bottom:105.629970px;}
.yc0{bottom:109.787828px;}
.y21e{bottom:109.789928px;}
.y80{bottom:109.794863px;}
.y1c6{bottom:110.132655px;}
.y17d{bottom:110.724194px;}
.y137{bottom:111.237474px;}
.y1dd{bottom:112.510415px;}
.ycb{bottom:113.102540px;}
.y3f{bottom:119.905636px;}
.y1f8{bottom:120.929736px;}
.y1dc{bottom:125.350840px;}
.ybf{bottom:125.520805px;}
.y21d{bottom:125.521709px;}
.y7f{bottom:125.526645px;}
.y1c5{bottom:125.779555px;}
.y17c{bottom:126.455976px;}
.y136{bottom:126.884374px;}
.yca{bottom:128.750636px;}
.y3e{bottom:134.192100px;}
.y1f7{bottom:136.576637px;}
.y1db{bottom:138.191265px;}
.ybe{bottom:141.167706px;}
.y21c{bottom:141.168610px;}
.y7e{bottom:141.174740px;}
.y1c4{bottom:141.512532px;}
.y17b{bottom:142.102876px;}
.y135{bottom:142.616156px;}
.yc9{bottom:144.482417px;}
.y1da{bottom:144.654515px;}
.y1f6{bottom:152.309614px;}
.y21b{bottom:156.901587px;}
.y1c3{bottom:157.159433px;}
.y17a{bottom:157.834658px;}
.y134{bottom:158.263057px;}
.y3a{bottom:159.703536px;}
.yc8{bottom:160.129318px;}
.y1d9{bottom:163.958190px;}
.y1f5{bottom:167.956514px;}
.y1d8{bottom:170.336321px;}
.ybd{bottom:172.546388px;}
.y7d{bottom:172.553423px;}
.y1c2{bottom:172.891215px;}
.y179{bottom:173.567636px;}
.y133{bottom:173.996034px;}
.y39{bottom:174.075000px;}
.yc7{bottom:175.861100px;}
.y1f4{bottom:183.688296px;}
.y24b{bottom:184.877873px;}
.y21a{bottom:188.280269px;}
.y1c1{bottom:188.622997px;}
.y178{bottom:189.214536px;}
.y1d7{bottom:189.639996px;}
.y132{bottom:189.642934px;}
.yc6{bottom:191.508000px;}
.y24a{bottom:196.783910px;}
.y1f3{bottom:199.335197px;}
.y1d6{bottom:202.480421px;}
.y1c0{bottom:204.271092px;}
.ybc{bottom:204.946040px;}
.y177{bottom:204.946318px;}
.y7c{bottom:204.953075px;}
.y131{bottom:205.374716px;}
.y249{bottom:208.774109px;}
.y1d5{bottom:208.943671px;}
.y1f2{bottom:215.066978px;}
.y37{bottom:215.916798px;}
.y296{bottom:216.256865px;}
.y219{bottom:219.660147px;}
.y1bf{bottom:220.002874px;}
.y176{bottom:220.593218px;}
.ybb{bottom:220.594136px;}
.y7b{bottom:220.599975px;}
.y248{bottom:220.679189px;}
.y130{bottom:221.021616px;}
.y110{bottom:225.184500px;}
.y1d4{bottom:228.162228px;}
.y295{bottom:228.162902px;}
.y10f{bottom:229.947000px;}
.y1f1{bottom:230.715074px;}
.y36{bottom:231.563698px;}
.y247{bottom:232.669388px;}
.y218{bottom:235.307047px;}
.y1be{bottom:235.649775px;}
.y174{bottom:236.325000px;}
.yba{bottom:236.325917px;}
.y173{bottom:236.326076px;}
.y7a{bottom:236.332952px;}
.y12f{bottom:236.754594px;}
.y294{bottom:240.153101px;}
.y1d3{bottom:241.087771px;}
.y175{bottom:241.597500px;}
.y246{bottom:244.575425px;}
.y10e{bottom:246.359921px;}
.y1f0{bottom:246.446856px;}
.y35{bottom:247.295480px;}
.y1d2{bottom:247.465903px;}
.y217{bottom:251.038829px;}
.y1bd{bottom:251.381557px;}
.yb9{bottom:251.972818px;}
.y172{bottom:251.972976px;}
.y79{bottom:251.979853px;}
.y293{bottom:252.058181px;}
.y12e{bottom:252.401494px;}
.y245{bottom:256.565624px;}
.y10d{bottom:259.201303px;}
.y1ef{bottom:262.093756px;}
.y34{bottom:262.943576px;}
.y292{bottom:264.049336px;}
.y1d1{bottom:266.769577px;}
.y1bc{bottom:267.028457px;}
.yb8{bottom:267.704600px;}
.y171{bottom:267.704758px;}
.y78{bottom:267.711635px;}
.y12d{bottom:268.133276px;}
.y244{bottom:268.555822px;}
.y10c{bottom:272.126846px;}
.y291{bottom:276.039535px;}
.y1ee{bottom:277.825538px;}
.y33{bottom:278.675358px;}
.y1d0{bottom:279.610959px;}
.y243{bottom:280.460903px;}
.y216{bottom:282.417511px;}
.y1bb{bottom:282.761434px;}
.yb6{bottom:283.351500px;}
.y170{bottom:283.351658px;}
.yb5{bottom:283.354016px;}
.y77{bottom:283.358535px;}
.y12c{bottom:283.780176px;}
.y10b{bottom:284.967271px;}
.y290{bottom:287.944615px;}
.yb7{bottom:288.708000px;}
.y1cf{bottom:292.451384px;}
.y242{bottom:292.452058px;}
.y1ed{bottom:293.473634px;}
.y32{bottom:294.322258px;}
.y10a{bottom:297.808652px;}
.y1ba{bottom:298.408335px;}
.y16f{bottom:299.084636px;}
.yb4{bottom:299.085798px;}
.y76{bottom:299.091512px;}
.y12b{bottom:299.511958px;}
.y28f{bottom:299.934814px;}
.y104{bottom:304.186784px;}
.y241{bottom:304.357138px;}
.y1ec{bottom:309.205416px;}
.y31{bottom:310.054040px;}
.y109{bottom:310.649077px;}
.y28e{bottom:311.840851px;}
.y1ce{bottom:312.180650px;}
.y215{bottom:313.797389px;}
.y1b9{bottom:314.140116px;}
.y16e{bottom:314.731536px;}
.yb3{bottom:314.732698px;}
.y75{bottom:314.738413px;}
.y12a{bottom:315.160054px;}
.y240{bottom:316.347337px;}
.y108{bottom:323.490459px;}
.y28d{bottom:323.831050px;}
.y1eb{bottom:324.852316px;}
.y1cd{bottom:325.021075px;}
.y30{bottom:325.702136px;}
.y23f{bottom:328.338492px;}
.y214{bottom:329.529171px;}
.y1b8{bottom:329.787017px;}
.y16d{bottom:330.463318px;}
.yb2{bottom:330.464480px;}
.y74{bottom:330.470195px;}
.y129{bottom:330.891836px;}
.y28c{bottom:335.736130px;}
.y107{bottom:336.330884px;}
.y1cc{bottom:337.861500px;}
.y23e{bottom:340.243573px;}
.y1ea{bottom:340.584098px;}
.y2f{bottom:341.433917px;}
.y213{bottom:345.176071px;}
.y1b7{bottom:345.519994px;}
.y16c{bottom:346.110218px;}
.yb1{bottom:346.112576px;}
.y73{bottom:346.117095px;}
.y128{bottom:346.538736px;}
.y28b{bottom:347.726329px;}
.y106{bottom:349.171309px;}
.y23d{bottom:352.233772px;}
.y1e9{bottom:356.232194px;}
.y2e{bottom:357.080818px;}
.y1cb{bottom:357.591036px;}
.y28a{bottom:359.717484px;}
.y212{bottom:360.909049px;}
.y1b6{bottom:361.166894px;}
.y16a{bottom:361.842000px;}
.yb0{bottom:361.844358px;}
.y169{bottom:361.846110px;}
.y72{bottom:361.848877px;}
.y105{bottom:362.012690px;}
.y127{bottom:362.270518px;}
.y23c{bottom:364.138852px;}
.y16b{bottom:367.114500px;}
.y289{bottom:371.622565px;}
.y1ca{bottom:371.962500px;}
.y1e8{bottom:371.963976px;}
.y38{bottom:372.812600px;}
.y23b{bottom:376.130007px;}
.y211{bottom:376.555949px;}
.y1b5{bottom:376.898676px;}
.yaf{bottom:377.491258px;}
.y168{bottom:377.493011px;}
.y71{bottom:377.496973px;}
.y126{bottom:377.918614px;}
.y103{bottom:381.741000px;}
.y288{bottom:383.612763px;}
.y1e7{bottom:387.610876px;}
.y23a{bottom:388.120206px;}
.y2d{bottom:388.459500px;}
.y210{bottom:392.287731px;}
.y1b4{bottom:392.545577px;}
.yae{bottom:393.223040px;}
.y167{bottom:393.224793px;}
.y70{bottom:393.228754px;}
.y125{bottom:393.650396px;}
.y287{bottom:395.518800px;}
.y239{bottom:400.025286px;}
.y102{bottom:401.470536px;}
.y1e6{bottom:403.342658px;}
.y286{bottom:407.508999px;}
.y20f{bottom:407.934631px;}
.y1b3{bottom:408.278554px;}
.yad{bottom:408.871136px;}
.y166{bottom:408.871693px;}
.y6f{bottom:408.875655px;}
.y124{bottom:409.297296px;}
.y238{bottom:412.015485px;}
.y101{bottom:415.842000px;}
.y1e5{bottom:418.989559px;}
.y285{bottom:419.499198px;}
.y20e{bottom:423.667609px;}
.y237{bottom:423.921522px;}
.y1b2{bottom:423.925454px;}
.yac{bottom:424.602917px;}
.y165{bottom:424.604670px;}
.y6e{bottom:424.607437px;}
.y123{bottom:425.029078px;}
.y284{bottom:431.404278px;}
.y1e4{bottom:434.722536px;}
.y236{bottom:435.911721px;}
.y20d{bottom:439.314509px;}
.y1b1{bottom:439.657236px;}
.yab{bottom:440.249818px;}
.y164{bottom:440.251571px;}
.y6d{bottom:440.255532px;}
.y122{bottom:440.675978px;}
.y283{bottom:443.395433px;}
.y235{bottom:447.816801px;}
.y2c{bottom:447.987715px;}
.y1e3{bottom:450.369436px;}
.y20c{bottom:455.046291px;}
.y282{bottom:455.300514px;}
.y1b0{bottom:455.304137px;}
.yaa{bottom:455.981600px;}
.y163{bottom:455.983352px;}
.y6c{bottom:455.987314px;}
.y121{bottom:456.408956px;}
.y234{bottom:459.807000px;}
.y2b{bottom:462.359179px;}
.y1e2{bottom:466.101218px;}
.y100{bottom:466.702640px;}
.y281{bottom:467.289756px;}
.y1af{bottom:471.037114px;}
.ya9{bottom:471.628718px;}
.y162{bottom:471.630253px;}
.y6b{bottom:471.634215px;}
.y120{bottom:472.055856px;}
.yff{bottom:473.165890px;}
.y2a{bottom:476.645643px;}
.y280{bottom:479.279955px;}
.y1e1{bottom:481.833000px;}
.y20b{bottom:486.424973px;}
.y1ae{bottom:486.684014px;}
.ya8{bottom:487.360500px;}
.ya7{bottom:487.361600px;}
.y161{bottom:487.363230px;}
.y6a{bottom:487.365997px;}
.y11f{bottom:487.787638px;}
.y29{bottom:491.017108px;}
.y27f{bottom:491.185992px;}
.yfe{bottom:492.469565px;}
.y1ad{bottom:502.415796px;}
.ya6{bottom:503.008500px;}
.ya5{bottom:503.008718px;}
.y160{bottom:503.010131px;}
.y69{bottom:503.014092px;}
.y27e{bottom:503.176191px;}
.y11e{bottom:503.520615px;}
.yfd{bottom:505.310946px;}
.y28{bottom:505.388572px;}
.y27d{bottom:515.081271px;}
.y233{bottom:515.423608px;}
.y20a{bottom:517.803655px;}
.y1ac{bottom:518.062697px;}
.yfc{bottom:518.151371px;}
.ya3{bottom:518.740100px;}
.ya4{bottom:518.740500px;}
.y15f{bottom:518.741912px;}
.y68{bottom:518.745874px;}
.y11d{bottom:519.167516px;}
.y27{bottom:519.675036px;}
.y27c{bottom:527.071470px;}
.y232{bottom:529.795072px;}
.yf8{bottom:530.991796px;}
.y209{bottom:533.535437px;}
.y1ab{bottom:533.794478px;}
.y26{bottom:534.048787px;}
.ya2{bottom:534.387000px;}
.ya1{bottom:534.387218px;}
.y15e{bottom:534.388813px;}
.y67{bottom:534.392775px;}
.y11c{bottom:534.899298px;}
.y27b{bottom:538.977507px;}
.yfb{bottom:543.833178px;}
.y231{bottom:544.166536px;}
.y25{bottom:548.420251px;}
.y208{bottom:549.183533px;}
.y1aa{bottom:549.442574px;}
.ya0{bottom:550.119000px;}
.y9f{bottom:550.121516px;}
.y15d{bottom:550.121790px;}
.y66{bottom:550.124557px;}
.y11b{bottom:550.546198px;}
.y27a{bottom:550.967705px;}
.yfa{bottom:556.673603px;}
.y230{bottom:558.453000px;}
.y24{bottom:562.791715px;}
.y279{bottom:562.957904px;}
.y207{bottom:564.915315px;}
.y1a9{bottom:565.174356px;}
.y9e{bottom:565.768416px;}
.y15c{bottom:565.768690px;}
.y65{bottom:565.771457px;}
.y11a{bottom:566.277980px;}
.yf9{bottom:569.514984px;}
.y1d{bottom:573.252037px;}
.y278{bottom:574.863941px;}
.y23{bottom:577.078179px;}
.y22f{bottom:579.714080px;}
.y206{bottom:580.562215px;}
.y1a8{bottom:580.821256px;}
.y9d{bottom:581.500198px;}
.y15b{bottom:581.500472px;}
.y64{bottom:581.504434px;}
.y119{bottom:581.926076px;}
.yf7{bottom:582.440527px;}
.y1c{bottom:586.093419px;}
.y277{bottom:586.854140px;}
.y22{bottom:591.449643px;}
.y22e{bottom:592.555461px;}
.yf6{bottom:595.280952px;}
.y205{bottom:596.293997px;}
.y1a7{bottom:596.553038px;}
.y9c{bottom:597.147098px;}
.y15a{bottom:597.147373px;}
.y63{bottom:597.151335px;}
.y118{bottom:597.657858px;}
.y276{bottom:598.759220px;}
.y1b{bottom:598.933844px;}
.y22d{bottom:605.395886px;}
.y21{bottom:605.821108px;}
.yf5{bottom:608.122334px;}
.y275{bottom:610.749419px;}
.y1a{bottom:611.774269px;}
.y204{bottom:611.940897px;}
.y1a6{bottom:612.201134px;}
.y159{bottom:612.879155px;}
.y9b{bottom:612.880076px;}
.y62{bottom:612.883116px;}
.y117{bottom:613.304758px;}
.y22c{bottom:618.237268px;}
.y20{bottom:620.107572px;}
.yf4{bottom:620.962759px;}
.y274{bottom:622.740574px;}
.y19{bottom:624.615650px;}
.yef{bottom:627.426009px;}
.y203{bottom:627.673875px;}
.y1a5{bottom:627.932916px;}
.y9a{bottom:628.526976px;}
.y158{bottom:628.527250px;}
.y61{bottom:628.530017px;}
.y116{bottom:629.036540px;}
.y22b{bottom:631.077693px;}
.yf3{bottom:633.803184px;}
.y1f{bottom:634.479036px;}
.y273{bottom:634.645655px;}
.y18{bottom:637.456075px;}
.y202{bottom:643.320775px;}
.y1a4{bottom:643.579816px;}
.y22a{bottom:643.918118px;}
.y99{bottom:644.258758px;}
.y157{bottom:644.259032px;}
.y60{bottom:644.262994px;}
.y115{bottom:644.684636px;}
.y272{bottom:646.635853px;}
.yf2{bottom:646.644565px;}
.y1e{bottom:648.850500px;}
.y17{bottom:650.296500px;}
.y229{bottom:656.844617px;}
.y271{bottom:658.540934px;}
.y201{bottom:659.052557px;}
.y1a3{bottom:659.311598px;}
.yf1{bottom:659.484990px;}
.y98{bottom:659.905658px;}
.y156{bottom:659.905933px;}
.y5f{bottom:659.909894px;}
.y114{bottom:660.416417px;}
.y270{bottom:670.532089px;}
.yf0{bottom:672.411490px;}
.y200{bottom:674.699457px;}
.y1a2{bottom:674.959694px;}
.y155{bottom:675.637714px;}
.y97{bottom:675.638636px;}
.y5e{bottom:675.641676px;}
.y113{bottom:676.063318px;}
.y228{bottom:676.572927px;}
.y16{bottom:678.103500px;}
.y26f{bottom:682.437169px;}
.yee{bottom:685.251915px;}
.y227{bottom:689.414308px;}
.y1ff{bottom:690.432435px;}
.y1a1{bottom:690.691476px;}
.y96{bottom:691.285536px;}
.y154{bottom:691.285810px;}
.y5d{bottom:691.288577px;}
.y112{bottom:691.795100px;}
.y26e{bottom:694.427368px;}
.y226{bottom:696.217075px;}
.yed{bottom:698.092340px;}
.y1fe{bottom:706.079335px;}
.y26d{bottom:706.418523px;}
.y1a0{bottom:706.423258px;}
.y95{bottom:707.017318px;}
.y153{bottom:707.017592px;}
.y5c{bottom:707.021554px;}
.y111{bottom:707.442000px;}
.y225{bottom:709.057500px;}
.yea{bottom:710.933721px;}
.y26c{bottom:718.323604px;}
.y1fd{bottom:721.811117px;}
.y19f{bottom:722.070158px;}
.y152{bottom:722.748179px;}
.y94{bottom:722.749100px;}
.y5b{bottom:722.753336px;}
.ye9{bottom:723.774146px;}
.y15{bottom:727.597500px;}
.y224{bottom:728.787036px;}
.y26b{bottom:730.313803px;}
.y14{bottom:731.848500px;}
.yec{bottom:736.615528px;}
.y1fc{bottom:737.458017px;}
.y19e{bottom:737.803136px;}
.y151{bottom:738.395079px;}
.y93{bottom:738.398978px;}
.y5a{bottom:738.400236px;}
.y13{bottom:740.437500px;}
.y199{bottom:741.118500px;}
.y26a{bottom:742.218883px;}
.y223{bottom:743.158500px;}
.y12{bottom:744.690000px;}
.yeb{bottom:749.455953px;}
.y1fb{bottom:753.190995px;}
.y11{bottom:753.278575px;}
.y19d{bottom:753.450036px;}
.y150{bottom:754.128056px;}
.y92{bottom:754.131956px;}
.y59{bottom:754.132018px;}
.y269{bottom:754.210038px;}
.ye8{bottom:762.296378px;}
.y198{bottom:762.296684px;}
.y10{bottom:766.119000px;}
.y268{bottom:766.200237px;}
.y19c{bottom:769.181818px;}
.y14f{bottom:769.774957px;}
.y91{bottom:769.778856px;}
.y58{bottom:769.780114px;}
.yf{bottom:770.371500px;}
.y197{bottom:775.222227px;}
.ye7{bottom:775.222877px;}
.y267{bottom:778.105317px;}
.ye{bottom:778.960500px;}
.yd{bottom:783.213000px;}
.y19b{bottom:784.828718px;}
.y14e{bottom:785.506738px;}
.y90{bottom:785.510638px;}
.y57{bottom:785.511896px;}
.y222{bottom:786.869536px;}
.ye6{bottom:788.063302px;}
.y196{bottom:788.063609px;}
.y266{bottom:790.095516px;}
.yc{bottom:791.802000px;}
.yb{bottom:796.053000px;}
.y19a{bottom:800.560500px;}
.ye2{bottom:800.903727px;}
.y195{bottom:800.904034px;}
.y14d{bottom:801.153639px;}
.y221{bottom:801.156000px;}
.y8f{bottom:801.157538px;}
.y56{bottom:801.158796px;}
.y265{bottom:802.001553px;}
.ya{bottom:804.727500px;}
.y9{bottom:808.980000px;}
.ye5{bottom:813.745109px;}
.y194{bottom:813.745415px;}
.y264{bottom:813.991752px;}
.y14c{bottom:816.886616px;}
.y8e{bottom:816.890516px;}
.y55{bottom:816.890578px;}
.y8{bottom:817.569000px;}
.y7{bottom:821.820000px;}
.y263{bottom:825.896832px;}
.ye4{bottom:826.585534px;}
.y193{bottom:826.585840px;}
.y14b{bottom:832.533517px;}
.y8d{bottom:832.537416px;}
.y54{bottom:832.537478px;}
.y1c9{bottom:834.151500px;}
.y262{bottom:837.887031px;}
.y192{bottom:839.426265px;}
.ye3{bottom:839.426915px;}
.y5{bottom:842.232190px;}
.y14a{bottom:848.265298px;}
.y8c{bottom:848.269198px;}
.y53{bottom:848.270456px;}
.y6{bottom:849.202500px;}
.y261{bottom:849.878186px;}
.ye1{bottom:852.267340px;}
.y191{bottom:852.267647px;}
.y3{bottom:861.619500px;}
.y260{bottom:861.783267px;}
.y149{bottom:863.912199px;}
.y8b{bottom:863.916098px;}
.y52{bottom:863.917356px;}
.ye0{bottom:865.107765px;}
.y190{bottom:865.108072px;}
.y4{bottom:868.677000px;}
.y25f{bottom:873.773465px;}
.ydf{bottom:878.034265px;}
.y18f{bottom:878.034571px;}
.y148{bottom:879.643981px;}
.y8a{bottom:879.649076px;}
.y51{bottom:879.649138px;}
.y25e{bottom:885.679502px;}
.yde{bottom:890.874690px;}
.y18e{bottom:890.874996px;}
.y147{bottom:895.292076px;}
.y89{bottom:895.295976px;}
.y50{bottom:895.296038px;}
.yd9{bottom:897.252821px;}
.y25d{bottom:897.669701px;}
.y2{bottom:899.122216px;}
.y18d{bottom:903.715421px;}
.ydd{bottom:903.716071px;}
.y25c{bottom:909.659900px;}
.y146{bottom:911.023858px;}
.y88{bottom:911.027758px;}
.y4f{bottom:911.029016px;}
.ydc{bottom:916.556496px;}
.y18c{bottom:916.556803px;}
.y25b{bottom:921.564980px;}
.y1{bottom:924.973500px;}
.y145{bottom:926.670759px;}
.y87{bottom:926.674658px;}
.y4e{bottom:926.675916px;}
.ydb{bottom:929.396921px;}
.y18b{bottom:929.397228px;}
.y25a{bottom:933.556135px;}
.yda{bottom:942.238303px;}
.y18a{bottom:942.238609px;}
.y144{bottom:942.402541px;}
.y86{bottom:942.407636px;}
.y4d{bottom:942.407698px;}
.y259{bottom:945.461216px;}
.yd8{bottom:955.078728px;}
.y189{bottom:955.079034px;}
.y258{bottom:957.451415px;}
.y143{bottom:958.050636px;}
.y85{bottom:958.054536px;}
.y4c{bottom:958.054598px;}
.y188{bottom:967.919459px;}
.yd7{bottom:967.920109px;}
.y257{bottom:969.356495px;}
.y142{bottom:973.782418px;}
.y84{bottom:973.786318px;}
.y4b{bottom:973.787576px;}
.yd6{bottom:980.845652px;}
.y187{bottom:980.845959px;}
.y256{bottom:981.347650px;}
.y141{bottom:989.429319px;}
.y83{bottom:989.433218px;}
.y4a{bottom:989.434476px;}
.y255{bottom:993.337849px;}
.yd2{bottom:993.686077px;}
.y186{bottom:993.686384px;}
.y3d{bottom:1003.719000px;}
.y140{bottom:1005.161100px;}
.y49{bottom:1005.166258px;}
.y254{bottom:1005.242929px;}
.y185{bottom:1006.526809px;}
.yd5{bottom:1006.527459px;}
.y253{bottom:1017.233128px;}
.yd4{bottom:1019.367884px;}
.y184{bottom:1019.368190px;}
.y13f{bottom:1020.809196px;}
.y48{bottom:1020.813158px;}
.y252{bottom:1029.139165px;}
.yd3{bottom:1032.208309px;}
.y13e{bottom:1036.540978px;}
.y47{bottom:1036.546136px;}
.y181{bottom:1039.096500px;}
.y180{bottom:1039.097150px;}
.y251{bottom:1041.129364px;}
.y183{bottom:1045.134159px;}
.y3c{bottom:1045.474500px;}
.yd1{bottom:1051.937575px;}
.y13d{bottom:1052.187878px;}
.y46{bottom:1052.193036px;}
.y250{bottom:1053.119562px;}
.y182{bottom:1064.777350px;}
.yd0{bottom:1064.778000px;}
.y24f{bottom:1065.025599px;}
.y13c{bottom:1067.919660px;}
.y45{bottom:1067.924818px;}
.y24e{bottom:1077.015798px;}
.y13b{bottom:1083.566561px;}
.y44{bottom:1083.571718px;}
.ycf{bottom:1084.507536px;}
.y3b{bottom:1087.312500px;}
.y24d{bottom:1088.920879px;}
.yce{bottom:1098.879000px;}
.y13a{bottom:1099.299538px;}
.y43{bottom:1099.303500px;}
.y24c{bottom:1100.911077px;}
.y40{bottom:1127.504970px;}
.yc4{bottom:1128.629970px;}
.y297{bottom:1128.633809px;}
.yc3{bottom:1128.642000px;}
.h5{height:23.521113px;}
.h10{height:26.462637px;}
.h12{height:27.670843px;}
.hd{height:31.524082px;}
.h11{height:31.848520px;}
.h6{height:33.622910px;}
.he{height:33.623438px;}
.hb{height:34.478653px;}
.hc{height:34.589568px;}
.h7{height:36.775371px;}
.h4{height:37.122363px;}
.h8{height:37.826367px;}
.h9{height:42.029824px;}
.h3{height:55.689609px;}
.h14{height:59.135436px;}
.hf{height:59.475909px;}
.h2{height:70.925098px;}
.ha{height:73.551270px;}
.h15{height:84.984610px;}
.h13{height:84.988436px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.xf{left:61.398300px;}
.xe{left:62.758950px;}
.x14{left:63.949500px;}
.xc{left:66.335797px;}
.x11{left:74.323389px;}
.x39{left:77.810034px;}
.x4c{left:80.956305px;}
.x37{left:109.529499px;}
.x35{left:116.333221px;}
.x38{left:126.792248px;}
.x3c{left:134.275960px;}
.x3a{left:138.613166px;}
.x2{left:145.672350px;}
.x3b{left:152.303818px;}
.xd{left:160.639500px;}
.x3{left:161.914500px;}
.x3d{left:163.784263px;}
.x48{left:169.396330px;}
.x43{left:199.670698px;}
.x44{left:222.718500px;}
.x45{left:227.736000px;}
.x4a{left:240.913844px;}
.x49{left:244.995696px;}
.x47{left:269.914500px;}
.x36{left:273.398417px;}
.x4{left:301.804500px;}
.x10{left:302.995500px;}
.x5{left:308.947500px;}
.x15{left:342.624000px;}
.x4b{left:356.226140px;}
.x31{left:359.628002px;}
.x17{left:373.695000px;}
.x46{left:383.950970px;}
.x16{left:395.008500px;}
.x6{left:419.329500px;}
.x7{left:426.472500px;}
.x30{left:444.315030px;}
.x12{left:459.888932px;}
.x2c{left:464.400000px;}
.x2d{left:470.352000px;}
.x2e{left:475.455000px;}
.x13{left:477.831221px;}
.x20{left:482.343000px;}
.x4d{left:484.463744px;}
.x32{left:486.930496px;}
.x21{left:488.635500px;}
.x4e{left:491.097230px;}
.x4f{left:503.598139px;}
.x26{left:507.430500px;}
.x27{left:513.723000px;}
.x1a{left:547.824000px;}
.x1b{left:554.116500px;}
.x2a{left:561.769500px;}
.x2b{left:568.063500px;}
.x8{left:571.464000px;}
.x9{left:577.503000px;}
.x22{left:581.584500px;}
.x23{left:587.877000px;}
.x3e{left:593.659500px;}
.x3f{left:603.439500px;}
.x33{left:606.579042px;}
.x28{left:646.980000px;}
.x1c{left:651.402000px;}
.x29{left:653.272500px;}
.x1d{left:657.694500px;}
.x34{left:684.984440px;}
.x24{left:692.646000px;}
.x25{left:698.938500px;}
.x2f{left:711.914985px;}
.xa{left:714.330000px;}
.xb{left:721.474500px;}
.x1e{left:753.279000px;}
.x1f{left:759.571500px;}
.x40{left:812.041500px;}
.x41{left:818.079000px;}
.x18{left:819.439500px;}
.x19{left:825.732000px;}
.x42{left:827.263500px;}
@media print{
.v3{vertical-align:-13.909333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.118499pt;}
.v1{vertical-align:3.323006pt;}
.v2{vertical-align:13.901202pt;}
.v4{vertical-align:15.414194pt;}
.v5{vertical-align:22.980444pt;}
.v6{vertical-align:45.658245pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000005pt;}
.lsc{letter-spacing:0.000011pt;}
.ls19{letter-spacing:0.333247pt;}
.ls1{letter-spacing:0.366094pt;}
.ls0{letter-spacing:1.314040pt;}
.ls18{letter-spacing:1.385735pt;}
.ls3{letter-spacing:1.434181pt;}
.ls2{letter-spacing:1.757059pt;}
.ls6{letter-spacing:2.637333pt;}
.ls9{letter-spacing:2.659200pt;}
.ls5{letter-spacing:9.548698pt;}
.ls16{letter-spacing:11.362032pt;}
.lsa{letter-spacing:12.624638pt;}
.lsf{letter-spacing:13.223990pt;}
.ls10{letter-spacing:16.552304pt;}
.ls11{letter-spacing:16.556554pt;}
.ls12{letter-spacing:16.854105pt;}
.ls4{letter-spacing:16.922845pt;}
.ls14{letter-spacing:17.763759pt;}
.ls13{letter-spacing:18.065560pt;}
.lsb{letter-spacing:18.669162pt;}
.lsd{letter-spacing:21.087822pt;}
.ls17{letter-spacing:237.254890pt;}
.lse{letter-spacing:295.032446pt;}
.ls15{letter-spacing:345.798212pt;}
.ws26{word-spacing:-38.256000pt;}
.wsd{word-spacing:-34.005333pt;}
.ws20{word-spacing:-34.004800pt;}
.wsa{word-spacing:-27.417144pt;}
.ws23{word-spacing:-21.933096pt;}
.ws8{word-spacing:-21.538128pt;}
.wsc{word-spacing:-18.906965pt;}
.ws4{word-spacing:-12.454610pt;}
.ws7{word-spacing:-11.944523pt;}
.ws1{word-spacing:-11.209008pt;}
.ws0{word-spacing:-11.000392pt;}
.ws5{word-spacing:-10.626800pt;}
.ws1c{word-spacing:-9.963406pt;}
.ws2{word-spacing:-9.564000pt;}
.wsf{word-spacing:-8.501200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:1.713869pt;}
.ws31{word-spacing:11.265790pt;}
.ws30{word-spacing:11.361004pt;}
.wsb{word-spacing:14.082635pt;}
.ws3{word-spacing:14.384436pt;}
.ws21{word-spacing:50.439320pt;}
.ws24{word-spacing:50.639948pt;}
.ws27{word-spacing:50.738562pt;}
.ws14{word-spacing:56.080716pt;}
.ws2e{word-spacing:65.928506pt;}
.ws1e{word-spacing:92.843305pt;}
.ws10{word-spacing:123.070172pt;}
.ws11{word-spacing:137.556217pt;}
.ws12{word-spacing:158.095116pt;}
.ws2d{word-spacing:169.153477pt;}
.ws16{word-spacing:172.785190pt;}
.ws2a{word-spacing:174.560240pt;}
.ws19{word-spacing:177.022188pt;}
.ws29{word-spacing:183.846951pt;}
.ws25{word-spacing:185.261551pt;}
.ws2c{word-spacing:186.733959pt;}
.ws28{word-spacing:201.400229pt;}
.ws15{word-spacing:213.182892pt;}
.ws2b{word-spacing:227.291484pt;}
.wse{word-spacing:231.171431pt;}
.ws13{word-spacing:242.120977pt;}
.ws17{word-spacing:244.011644pt;}
.ws2f{word-spacing:253.294954pt;}
.ws1a{word-spacing:258.497689pt;}
.ws1f{word-spacing:261.738346pt;}
.ws1b{word-spacing:279.036588pt;}
.ws22{word-spacing:316.690103pt;}
.ws1d{word-spacing:327.826675pt;}
.ws18{word-spacing:331.567203pt;}
._3{margin-left:-15.416526pt;}
._d{margin-left:-11.097237pt;}
._f{margin-left:-4.841570pt;}
._e{margin-left:-3.545100pt;}
._7{margin-left:-2.429200pt;}
._0{margin-left:-1.506344pt;}
._2{width:1.531962pt;}
._1{width:2.955303pt;}
._4{width:3.976684pt;}
._6{width:5.061434pt;}
._5{width:6.059750pt;}
._9{width:7.444787pt;}
._11{width:8.610182pt;}
._10{width:9.763904pt;}
._8{width:11.098630pt;}
._b{width:13.925359pt;}
._a{width:14.860517pt;}
._3e{width:15.897041pt;}
._12{width:16.905765pt;}
._c{width:18.060658pt;}
._15{width:19.000718pt;}
._17{width:19.936528pt;}
._45{width:21.580254pt;}
._14{width:26.839046pt;}
._16{width:28.097259pt;}
._13{width:29.623268pt;}
._26{width:59.379182pt;}
._43{width:60.399326pt;}
._47{width:66.224348pt;}
._56{width:76.276167pt;}
._41{width:81.264671pt;}
._42{width:88.823938pt;}
._19{width:101.817172pt;}
._40{width:107.155926pt;}
._4b{width:112.005010pt;}
._4a{width:113.481587pt;}
._4c{width:114.701591pt;}
._46{width:148.750597pt;}
._2e{width:154.388593pt;}
._55{width:162.308311pt;}
._31{width:180.415867pt;}
._29{width:192.674597pt;}
._4e{width:211.363635pt;}
._48{width:212.713626pt;}
._4f{width:217.746336pt;}
._30{width:222.758644pt;}
._49{width:230.508338pt;}
._50{width:236.404770pt;}
._4d{width:237.372238pt;}
._2f{width:241.012420pt;}
._51{width:254.879578pt;}
._3f{width:256.392792pt;}
._54{width:263.258361pt;}
._38{width:275.330065pt;}
._39{width:303.690068pt;}
._2d{width:305.284893pt;}
._52{width:322.518526pt;}
._44{width:326.959484pt;}
._28{width:342.013477pt;}
._3b{width:344.087770pt;}
._53{width:347.702480pt;}
._2a{width:361.090170pt;}
._34{width:362.076309pt;}
._22{width:372.787821pt;}
._1a{width:376.052282pt;}
._25{width:380.234873pt;}
._24{width:382.237755pt;}
._23{width:385.495415pt;}
._1b{width:387.127646pt;}
._1c{width:389.606596pt;}
._2b{width:392.748639pt;}
._1d{width:395.196985pt;}
._1e{width:406.272348pt;}
._2c{width:408.751298pt;}
._20{width:414.341687pt;}
._21{width:428.045621pt;}
._27{width:433.486389pt;}
._1f{width:437.417344pt;}
._57{width:494.446508pt;}
._3c{width:515.567176pt;}
._3d{width:538.789054pt;}
._32{width:549.605980pt;}
._33{width:560.382102pt;}
._35{width:568.988716pt;}
._37{width:579.526804pt;}
._36{width:587.895385pt;}
._3a{width:607.040088pt;}
._18{width:630.751635pt;}
.fs3{font-size:23.788267pt;}
.fse{font-size:26.763200pt;}
.fs7{font-size:26.778667pt;}
.fsa{font-size:29.753600pt;}
.fsc{font-size:31.882133pt;}
.fs4{font-size:34.004800pt;}
.fsd{font-size:34.005333pt;}
.fsf{font-size:36.385067pt;}
.fs5{font-size:37.193067pt;}
.fs2{font-size:37.544000pt;}
.fs6{font-size:38.256000pt;}
.fs8{font-size:42.507200pt;}
.fsb{font-size:45.482667pt;}
.fs1{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fs9{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:42.160000pt;}
.yc2{bottom:69.697018pt;}
.y220{bottom:69.697822pt;}
.y82{bottom:69.703272pt;}
.y1e0{bottom:69.770000pt;}
.y1c8{bottom:70.003531pt;}
.y17f{bottom:70.528281pt;}
.y139{bottom:70.984530pt;}
.ycd{bottom:72.643429pt;}
.y1df{bottom:74.003067pt;}
.y1fa{bottom:79.600937pt;}
.y42{bottom:81.066653pt;}
.yc1{bottom:83.680824pt;}
.y21f{bottom:83.682691pt;}
.y81{bottom:83.687078pt;}
.y1c7{bottom:83.911887pt;}
.y17e{bottom:84.512087pt;}
.y138{bottom:84.892886pt;}
.ycc{bottom:86.551785pt;}
.y1de{bottom:88.594697pt;}
.y1f9{bottom:93.509293pt;}
.y41{bottom:93.893307pt;}
.yc0{bottom:97.589180pt;}
.y21e{bottom:97.591047pt;}
.y80{bottom:97.595434pt;}
.y1c6{bottom:97.895693pt;}
.y17d{bottom:98.421506pt;}
.y137{bottom:98.877755pt;}
.y1dd{bottom:100.009258pt;}
.ycb{bottom:100.535591pt;}
.y3f{bottom:106.582787pt;}
.y1f8{bottom:107.493099pt;}
.y1dc{bottom:111.422969pt;}
.ybf{bottom:111.574049pt;}
.y21d{bottom:111.574853pt;}
.y7f{bottom:111.579240pt;}
.y1c5{bottom:111.804049pt;}
.y17c{bottom:112.405312pt;}
.y136{bottom:112.786110pt;}
.yca{bottom:114.445009pt;}
.y3e{bottom:119.281867pt;}
.y1f7{bottom:121.401455pt;}
.y1db{bottom:122.836680pt;}
.ybe{bottom:125.482405pt;}
.y21c{bottom:125.483209pt;}
.y7e{bottom:125.488658pt;}
.y1c4{bottom:125.788918pt;}
.y17b{bottom:126.313668pt;}
.y135{bottom:126.769917pt;}
.yc9{bottom:128.428816pt;}
.y1da{bottom:128.581791pt;}
.y1f6{bottom:135.386324pt;}
.y21b{bottom:139.468077pt;}
.y1c3{bottom:139.697274pt;}
.y17a{bottom:140.297474pt;}
.y134{bottom:140.678272pt;}
.y3a{bottom:141.958699pt;}
.yc8{bottom:142.337171pt;}
.y1d9{bottom:145.740613pt;}
.y1f5{bottom:149.294679pt;}
.y1d8{bottom:151.410064pt;}
.ybd{bottom:153.374567pt;}
.y7d{bottom:153.380820pt;}
.y1c2{bottom:153.681080pt;}
.y179{bottom:154.282343pt;}
.y133{bottom:154.663141pt;}
.y39{bottom:154.733333pt;}
.yc7{bottom:156.320977pt;}
.y1f4{bottom:163.278486pt;}
.y24b{bottom:164.335887pt;}
.y21a{bottom:167.360239pt;}
.y1c1{bottom:167.664886pt;}
.y178{bottom:168.190699pt;}
.y1d7{bottom:168.568886pt;}
.y132{bottom:168.571497pt;}
.yc6{bottom:170.229333pt;}
.y24a{bottom:174.919031pt;}
.y1f3{bottom:177.186841pt;}
.y1d6{bottom:179.982597pt;}
.y1c0{bottom:181.574304pt;}
.ybc{bottom:182.174258pt;}
.y177{bottom:182.174505pt;}
.y7c{bottom:182.180511pt;}
.y131{bottom:182.555303pt;}
.y249{bottom:185.576986pt;}
.y1d5{bottom:185.727708pt;}
.y1f2{bottom:191.170647pt;}
.y37{bottom:191.926042pt;}
.y296{bottom:192.228324pt;}
.y219{bottom:195.253464pt;}
.y1bf{bottom:195.558110pt;}
.y176{bottom:196.082861pt;}
.ybb{bottom:196.083676pt;}
.y7b{bottom:196.088867pt;}
.y248{bottom:196.159279pt;}
.y130{bottom:196.463659pt;}
.y110{bottom:200.164000pt;}
.y1d4{bottom:202.810869pt;}
.y295{bottom:202.811468pt;}
.y10f{bottom:204.397333pt;}
.y1f1{bottom:205.080066pt;}
.y36{bottom:205.834398pt;}
.y247{bottom:206.817234pt;}
.y218{bottom:209.161820pt;}
.y1be{bottom:209.466466pt;}
.y174{bottom:210.066667pt;}
.yba{bottom:210.067482pt;}
.y173{bottom:210.067623pt;}
.y7a{bottom:210.073735pt;}
.y12f{bottom:210.448528pt;}
.y294{bottom:213.469423pt;}
.y1d3{bottom:214.300241pt;}
.y175{bottom:214.753333pt;}
.y246{bottom:217.400378pt;}
.y10e{bottom:218.986597pt;}
.y1f0{bottom:219.063872pt;}
.y35{bottom:219.818204pt;}
.y1d2{bottom:219.969691pt;}
.y217{bottom:223.145626pt;}
.y1bd{bottom:223.450272pt;}
.yb9{bottom:223.975838pt;}
.y172{bottom:223.975979pt;}
.y79{bottom:223.982091pt;}
.y293{bottom:224.051717pt;}
.y12e{bottom:224.356884pt;}
.y245{bottom:228.058332pt;}
.y10d{bottom:230.401158pt;}
.y1ef{bottom:232.972228pt;}
.y34{bottom:233.727623pt;}
.y292{bottom:234.710521pt;}
.y1d1{bottom:237.128513pt;}
.y1bc{bottom:237.358628pt;}
.yb8{bottom:237.959644pt;}
.y171{bottom:237.959785pt;}
.y78{bottom:237.965897pt;}
.y12d{bottom:238.340690pt;}
.y244{bottom:238.716287pt;}
.y10c{bottom:241.890530pt;}
.y291{bottom:245.368476pt;}
.y1ee{bottom:246.956034pt;}
.y33{bottom:247.711429pt;}
.y1d0{bottom:248.543074pt;}
.y243{bottom:249.298580pt;}
.y216{bottom:251.037788pt;}
.y1bb{bottom:251.343497pt;}
.yb6{bottom:251.868000pt;}
.y170{bottom:251.868141pt;}
.yb5{bottom:251.870236pt;}
.y77{bottom:251.874253pt;}
.y12c{bottom:252.249046pt;}
.y10b{bottom:253.304241pt;}
.y290{bottom:255.950769pt;}
.yb7{bottom:256.629333pt;}
.y1cf{bottom:259.956786pt;}
.y242{bottom:259.957385pt;}
.y1ed{bottom:260.865453pt;}
.y32{bottom:261.619785pt;}
.y10a{bottom:264.718802pt;}
.y1ba{bottom:265.251853pt;}
.y16f{bottom:265.853009pt;}
.yb4{bottom:265.854042pt;}
.y76{bottom:265.859122pt;}
.y12b{bottom:266.232852pt;}
.y28f{bottom:266.608724pt;}
.y104{bottom:270.388252pt;}
.y241{bottom:270.539679pt;}
.y1ec{bottom:274.849259pt;}
.y31{bottom:275.603591pt;}
.y109{bottom:276.132513pt;}
.y28e{bottom:277.191868pt;}
.y1ce{bottom:277.493911pt;}
.y215{bottom:278.931013pt;}
.y1b9{bottom:279.235659pt;}
.y16e{bottom:279.761365pt;}
.yb3{bottom:279.762398pt;}
.y75{bottom:279.767478pt;}
.y12a{bottom:280.142270pt;}
.y240{bottom:281.197633pt;}
.y108{bottom:287.547074pt;}
.y28d{bottom:287.849822pt;}
.y1eb{bottom:288.757615pt;}
.y1cd{bottom:288.907622pt;}
.y30{bottom:289.513009pt;}
.y23f{bottom:291.856438pt;}
.y214{bottom:292.914819pt;}
.y1b8{bottom:293.144015pt;}
.y16d{bottom:293.745171pt;}
.yb2{bottom:293.746204pt;}
.y74{bottom:293.751284pt;}
.y129{bottom:294.126076pt;}
.y28c{bottom:298.432116pt;}
.y107{bottom:298.960786pt;}
.y1cc{bottom:300.321333pt;}
.y23e{bottom:302.438731pt;}
.y1ea{bottom:302.741421pt;}
.y2f{bottom:303.496816pt;}
.y213{bottom:306.823175pt;}
.y1b7{bottom:307.128884pt;}
.y16c{bottom:307.653527pt;}
.yb1{bottom:307.655623pt;}
.y73{bottom:307.659640pt;}
.y128{bottom:308.034432pt;}
.y28b{bottom:309.090070pt;}
.y106{bottom:310.374497pt;}
.y23d{bottom:313.096686pt;}
.y1e9{bottom:316.650839pt;}
.y2e{bottom:317.405171pt;}
.y1cb{bottom:317.858699pt;}
.y28a{bottom:319.748875pt;}
.y212{bottom:320.808043pt;}
.y1b6{bottom:321.037240pt;}
.y16a{bottom:321.637333pt;}
.yb0{bottom:321.639429pt;}
.y169{bottom:321.640987pt;}
.y72{bottom:321.643446pt;}
.y105{bottom:321.789058pt;}
.y127{bottom:322.018238pt;}
.y23c{bottom:323.678980pt;}
.y16b{bottom:326.324000pt;}
.y289{bottom:330.331169pt;}
.y1ca{bottom:330.633333pt;}
.y1e8{bottom:330.634645pt;}
.y38{bottom:331.388977pt;}
.y23b{bottom:334.337784pt;}
.y211{bottom:334.716399pt;}
.y1b5{bottom:335.021046pt;}
.yaf{bottom:335.547785pt;}
.y168{bottom:335.549343pt;}
.y71{bottom:335.552865pt;}
.y126{bottom:335.927657pt;}
.y103{bottom:339.325333pt;}
.y288{bottom:340.989123pt;}
.y1e7{bottom:344.543001pt;}
.y23a{bottom:344.995739pt;}
.y2d{bottom:345.297333pt;}
.y210{bottom:348.700205pt;}
.y1b4{bottom:348.929401pt;}
.yae{bottom:349.531591pt;}
.y167{bottom:349.533149pt;}
.y70{bottom:349.536671pt;}
.y125{bottom:349.911463pt;}
.y287{bottom:351.572267pt;}
.y239{bottom:355.578032pt;}
.y102{bottom:356.862699pt;}
.y1e6{bottom:358.526807pt;}
.y286{bottom:362.230221pt;}
.y20f{bottom:362.608561pt;}
.y1b3{bottom:362.914270pt;}
.yad{bottom:363.441009pt;}
.y166{bottom:363.441505pt;}
.y6f{bottom:363.445026pt;}
.y124{bottom:363.819819pt;}
.y238{bottom:366.235987pt;}
.y101{bottom:369.637333pt;}
.y1e5{bottom:372.435163pt;}
.y285{bottom:372.888176pt;}
.y20e{bottom:376.593430pt;}
.y237{bottom:376.819131pt;}
.y1b2{bottom:376.822626pt;}
.yac{bottom:377.424816pt;}
.y165{bottom:377.426374pt;}
.y6e{bottom:377.428833pt;}
.y123{bottom:377.803625pt;}
.y284{bottom:383.470470pt;}
.y1e4{bottom:386.420032pt;}
.y236{bottom:387.477085pt;}
.y20d{bottom:390.501786pt;}
.y1b1{bottom:390.806432pt;}
.yab{bottom:391.333171pt;}
.y164{bottom:391.334729pt;}
.y6d{bottom:391.338251pt;}
.y122{bottom:391.711981pt;}
.y283{bottom:394.129274pt;}
.y235{bottom:398.059379pt;}
.y2c{bottom:398.211302pt;}
.y1e3{bottom:400.328388pt;}
.y20c{bottom:404.485592pt;}
.y282{bottom:404.711568pt;}
.y1b0{bottom:404.714788pt;}
.yaa{bottom:405.316977pt;}
.y163{bottom:405.318536pt;}
.y6c{bottom:405.322057pt;}
.y121{bottom:405.696850pt;}
.y234{bottom:408.717333pt;}
.y2b{bottom:410.985937pt;}
.y1e2{bottom:414.312194pt;}
.y100{bottom:414.846791pt;}
.y281{bottom:415.368672pt;}
.y1af{bottom:418.699657pt;}
.ya9{bottom:419.225527pt;}
.y162{bottom:419.226891pt;}
.y6b{bottom:419.230413pt;}
.y120{bottom:419.605205pt;}
.yff{bottom:420.591902pt;}
.y2a{bottom:423.685016pt;}
.y280{bottom:426.026627pt;}
.y1e1{bottom:428.296000pt;}
.y20b{bottom:432.377754pt;}
.y1ae{bottom:432.608013pt;}
.ya8{bottom:433.209333pt;}
.ya7{bottom:433.210311pt;}
.y161{bottom:433.211760pt;}
.y6a{bottom:433.214219pt;}
.y11f{bottom:433.589012pt;}
.y29{bottom:436.459651pt;}
.y27f{bottom:436.609771pt;}
.yfe{bottom:437.750724pt;}
.y1ad{bottom:446.591819pt;}
.ya6{bottom:447.118667pt;}
.ya5{bottom:447.118861pt;}
.y160{bottom:447.120116pt;}
.y69{bottom:447.123638pt;}
.y27e{bottom:447.267725pt;}
.y11e{bottom:447.573880pt;}
.yfd{bottom:449.165286pt;}
.y28{bottom:449.234286pt;}
.y27d{bottom:457.850019pt;}
.y233{bottom:458.154318pt;}
.y20a{bottom:460.269916pt;}
.y1ac{bottom:460.500175pt;}
.yfc{bottom:460.578997pt;}
.ya3{bottom:461.102311pt;}
.ya4{bottom:461.102667pt;}
.y15f{bottom:461.103922pt;}
.y68{bottom:461.107444pt;}
.y11d{bottom:461.482236pt;}
.y27{bottom:461.933365pt;}
.y27c{bottom:468.507973pt;}
.y232{bottom:470.928953pt;}
.yf8{bottom:471.992708pt;}
.y209{bottom:474.253722pt;}
.y1ab{bottom:474.483981pt;}
.y26{bottom:474.710033pt;}
.ya2{bottom:475.010667pt;}
.ya1{bottom:475.010861pt;}
.y15e{bottom:475.012278pt;}
.y67{bottom:475.015800pt;}
.y11c{bottom:475.466042pt;}
.y27b{bottom:479.091117pt;}
.yfb{bottom:483.407269pt;}
.y231{bottom:483.703587pt;}
.y25{bottom:487.484668pt;}
.y208{bottom:488.163140pt;}
.y1aa{bottom:488.393399pt;}
.ya0{bottom:488.994667pt;}
.y9f{bottom:488.996903pt;}
.y15d{bottom:488.997147pt;}
.y66{bottom:488.999606pt;}
.y11b{bottom:489.374398pt;}
.y27a{bottom:489.749071pt;}
.yfa{bottom:494.820980pt;}
.y230{bottom:496.402667pt;}
.y24{bottom:500.259302pt;}
.y279{bottom:500.407026pt;}
.y207{bottom:502.146947pt;}
.y1a9{bottom:502.377205pt;}
.y9e{bottom:502.905259pt;}
.y15c{bottom:502.905503pt;}
.y65{bottom:502.907962pt;}
.y11a{bottom:503.358204pt;}
.yf9{bottom:506.235541pt;}
.y1d{bottom:509.557366pt;}
.y278{bottom:510.990170pt;}
.y23{bottom:512.958382pt;}
.y22f{bottom:515.301404pt;}
.y206{bottom:516.055302pt;}
.y1a8{bottom:516.285561pt;}
.y9d{bottom:516.889065pt;}
.y15b{bottom:516.889309pt;}
.y64{bottom:516.892830pt;}
.y119{bottom:517.267623pt;}
.yf7{bottom:517.724913pt;}
.y1c{bottom:520.971928pt;}
.y277{bottom:521.648124pt;}
.y22{bottom:525.733016pt;}
.y22e{bottom:526.715966pt;}
.yf6{bottom:529.138624pt;}
.y205{bottom:530.039109pt;}
.y1a7{bottom:530.269367pt;}
.y9c{bottom:530.797421pt;}
.y15a{bottom:530.797665pt;}
.y63{bottom:530.801186pt;}
.y118{bottom:531.251429pt;}
.y276{bottom:532.230418pt;}
.y1b{bottom:532.385639pt;}
.y22d{bottom:538.129677pt;}
.y21{bottom:538.507651pt;}
.yf5{bottom:540.553186pt;}
.y275{bottom:542.888372pt;}
.y1a{bottom:543.799350pt;}
.y204{bottom:543.947464pt;}
.y1a6{bottom:544.178786pt;}
.y159{bottom:544.781471pt;}
.y9b{bottom:544.782289pt;}
.y62{bottom:544.784992pt;}
.y117{bottom:545.159785pt;}
.y22c{bottom:549.544238pt;}
.y20{bottom:551.206730pt;}
.yf4{bottom:551.966897pt;}
.y274{bottom:553.547177pt;}
.y19{bottom:555.213911pt;}
.yef{bottom:557.712008pt;}
.y203{bottom:557.932333pt;}
.y1a5{bottom:558.162592pt;}
.y9a{bottom:558.690645pt;}
.y158{bottom:558.690889pt;}
.y61{bottom:558.693348pt;}
.y116{bottom:559.143591pt;}
.y22b{bottom:560.957949pt;}
.yf3{bottom:563.380608pt;}
.y1f{bottom:563.981365pt;}
.y273{bottom:564.129471pt;}
.y18{bottom:566.627622pt;}
.y202{bottom:571.840689pt;}
.y1a4{bottom:572.070948pt;}
.y22a{bottom:572.371660pt;}
.y99{bottom:572.674451pt;}
.y157{bottom:572.674695pt;}
.y60{bottom:572.678217pt;}
.y115{bottom:573.053009pt;}
.y272{bottom:574.787425pt;}
.yf2{bottom:574.795169pt;}
.y1e{bottom:576.756000pt;}
.y17{bottom:578.041333pt;}
.y229{bottom:583.861882pt;}
.y271{bottom:585.369719pt;}
.y201{bottom:585.824495pt;}
.y1a3{bottom:586.054754pt;}
.yf1{bottom:586.208880pt;}
.y98{bottom:586.582807pt;}
.y156{bottom:586.583051pt;}
.y5f{bottom:586.586573pt;}
.y114{bottom:587.036816pt;}
.y270{bottom:596.028524pt;}
.yf0{bottom:597.699102pt;}
.y200{bottom:599.732851pt;}
.y1a2{bottom:599.964173pt;}
.y155{bottom:600.566857pt;}
.y97{bottom:600.567676pt;}
.y5e{bottom:600.570379pt;}
.y113{bottom:600.945171pt;}
.y228{bottom:601.398157pt;}
.y16{bottom:602.758667pt;}
.y26f{bottom:606.610817pt;}
.yee{bottom:609.112813pt;}
.y227{bottom:612.812719pt;}
.y1ff{bottom:613.717720pt;}
.y1a1{bottom:613.947979pt;}
.y96{bottom:614.476032pt;}
.y154{bottom:614.476276pt;}
.y5d{bottom:614.478735pt;}
.y112{bottom:614.928977pt;}
.y26e{bottom:617.268772pt;}
.y226{bottom:618.859622pt;}
.yed{bottom:620.526524pt;}
.y1fe{bottom:627.626076pt;}
.y26d{bottom:627.927576pt;}
.y1a0{bottom:627.931785pt;}
.y95{bottom:628.459838pt;}
.y153{bottom:628.460082pt;}
.y5c{bottom:628.463604pt;}
.y111{bottom:628.837333pt;}
.y225{bottom:630.273333pt;}
.yea{bottom:631.941086pt;}
.y26c{bottom:638.509870pt;}
.y1fd{bottom:641.609882pt;}
.y19f{bottom:641.840141pt;}
.y152{bottom:642.442825pt;}
.y94{bottom:642.443644pt;}
.y5b{bottom:642.447410pt;}
.ye9{bottom:643.354797pt;}
.y15{bottom:646.753333pt;}
.y224{bottom:647.810699pt;}
.y26b{bottom:649.167824pt;}
.y14{bottom:650.532000pt;}
.yec{bottom:654.769358pt;}
.y1fc{bottom:655.518238pt;}
.y19e{bottom:655.825009pt;}
.y151{bottom:656.351181pt;}
.y93{bottom:656.354647pt;}
.y5a{bottom:656.355766pt;}
.y13{bottom:658.166667pt;}
.y199{bottom:658.772000pt;}
.y26a{bottom:659.750118pt;}
.y223{bottom:660.585333pt;}
.y12{bottom:661.946667pt;}
.yeb{bottom:666.183069pt;}
.y1fb{bottom:669.503106pt;}
.y11{bottom:669.580956pt;}
.y19d{bottom:669.733365pt;}
.y150{bottom:670.336050pt;}
.y92{bottom:670.339516pt;}
.y59{bottom:670.339572pt;}
.y269{bottom:670.408923pt;}
.ye8{bottom:677.596780pt;}
.y198{bottom:677.597053pt;}
.y10{bottom:680.994667pt;}
.y268{bottom:681.066877pt;}
.y19c{bottom:683.717171pt;}
.y14f{bottom:684.244406pt;}
.y91{bottom:684.247872pt;}
.y58{bottom:684.248990pt;}
.yf{bottom:684.774667pt;}
.y197{bottom:689.086424pt;}
.ye7{bottom:689.087002pt;}
.y267{bottom:691.649171pt;}
.ye{bottom:692.409333pt;}
.yd{bottom:696.189333pt;}
.y19b{bottom:697.625527pt;}
.y14e{bottom:698.228212pt;}
.y90{bottom:698.231678pt;}
.y57{bottom:698.232796pt;}
.y222{bottom:699.439587pt;}
.ye6{bottom:700.500713pt;}
.y196{bottom:700.500986pt;}
.y266{bottom:702.307125pt;}
.yc{bottom:703.824000pt;}
.yb{bottom:707.602667pt;}
.y19a{bottom:711.609333pt;}
.ye2{bottom:711.914424pt;}
.y195{bottom:711.914697pt;}
.y14d{bottom:712.136568pt;}
.y221{bottom:712.138667pt;}
.y8f{bottom:712.140034pt;}
.y56{bottom:712.141152pt;}
.y265{bottom:712.890269pt;}
.ya{bottom:715.313333pt;}
.y9{bottom:719.093333pt;}
.ye5{bottom:723.328986pt;}
.y194{bottom:723.329258pt;}
.y264{bottom:723.548224pt;}
.y14c{bottom:726.121437pt;}
.y8e{bottom:726.124903pt;}
.y55{bottom:726.124958pt;}
.y8{bottom:726.728000pt;}
.y7{bottom:730.506667pt;}
.y263{bottom:734.130518pt;}
.ye4{bottom:734.742697pt;}
.y193{bottom:734.742969pt;}
.y14b{bottom:740.029792pt;}
.y8d{bottom:740.033259pt;}
.y54{bottom:740.033314pt;}
.y1c9{bottom:741.468000pt;}
.y262{bottom:744.788472pt;}
.y192{bottom:746.156680pt;}
.ye3{bottom:746.157258pt;}
.y5{bottom:748.650835pt;}
.y14a{bottom:754.013599pt;}
.y8c{bottom:754.017065pt;}
.y53{bottom:754.018183pt;}
.y6{bottom:754.846667pt;}
.y261{bottom:755.447277pt;}
.ye1{bottom:757.570969pt;}
.y191{bottom:757.571241pt;}
.y3{bottom:765.884000pt;}
.y260{bottom:766.029570pt;}
.y149{bottom:767.921954pt;}
.y8b{bottom:767.925421pt;}
.y52{bottom:767.926539pt;}
.ye0{bottom:768.984680pt;}
.y190{bottom:768.984953pt;}
.y4{bottom:772.157333pt;}
.y25f{bottom:776.687525pt;}
.ydf{bottom:780.474902pt;}
.y18f{bottom:780.475174pt;}
.y148{bottom:781.905761pt;}
.y8a{bottom:781.910289pt;}
.y51{bottom:781.910345pt;}
.y25e{bottom:787.270669pt;}
.yde{bottom:791.888613pt;}
.y18e{bottom:791.888886pt;}
.y147{bottom:795.815179pt;}
.y89{bottom:795.818645pt;}
.y50{bottom:795.818701pt;}
.yd9{bottom:797.558064pt;}
.y25d{bottom:797.928623pt;}
.y2{bottom:799.219748pt;}
.y18d{bottom:803.302597pt;}
.ydd{bottom:803.303174pt;}
.y25c{bottom:808.586577pt;}
.y146{bottom:809.798985pt;}
.y88{bottom:809.802451pt;}
.y4f{bottom:809.803570pt;}
.ydc{bottom:814.716886pt;}
.y18c{bottom:814.717158pt;}
.y25b{bottom:819.168871pt;}
.y1{bottom:822.198667pt;}
.y145{bottom:823.707341pt;}
.y87{bottom:823.710807pt;}
.y4e{bottom:823.711925pt;}
.ydb{bottom:826.130597pt;}
.y18b{bottom:826.130869pt;}
.y25a{bottom:829.827676pt;}
.yda{bottom:837.545158pt;}
.y18a{bottom:837.545430pt;}
.y144{bottom:837.691147pt;}
.y86{bottom:837.695676pt;}
.y4d{bottom:837.695732pt;}
.y259{bottom:840.409970pt;}
.yd8{bottom:848.958869pt;}
.y189{bottom:848.959141pt;}
.y258{bottom:851.067924pt;}
.y143{bottom:851.600566pt;}
.y85{bottom:851.604032pt;}
.y4c{bottom:851.604087pt;}
.y188{bottom:860.372853pt;}
.yd7{bottom:860.373430pt;}
.y257{bottom:861.650218pt;}
.y142{bottom:865.584372pt;}
.y84{bottom:865.587838pt;}
.y4b{bottom:865.588956pt;}
.yd6{bottom:871.862802pt;}
.y187{bottom:871.863074pt;}
.y256{bottom:872.309022pt;}
.y141{bottom:879.492728pt;}
.y83{bottom:879.496194pt;}
.y4a{bottom:879.497312pt;}
.y255{bottom:882.966977pt;}
.yd2{bottom:883.276513pt;}
.y186{bottom:883.276786pt;}
.y3d{bottom:892.194667pt;}
.y140{bottom:893.476534pt;}
.y49{bottom:893.481118pt;}
.y254{bottom:893.549271pt;}
.y185{bottom:894.690497pt;}
.yd5{bottom:894.691074pt;}
.y253{bottom:904.207225pt;}
.yd4{bottom:906.104786pt;}
.y184{bottom:906.105058pt;}
.y13f{bottom:907.385952pt;}
.y48{bottom:907.389474pt;}
.y252{bottom:914.790369pt;}
.yd3{bottom:917.518497pt;}
.y13e{bottom:921.369758pt;}
.y47{bottom:921.374343pt;}
.y181{bottom:923.641333pt;}
.y180{bottom:923.641911pt;}
.y251{bottom:925.448323pt;}
.y183{bottom:929.008141pt;}
.y3c{bottom:929.310667pt;}
.yd1{bottom:935.055622pt;}
.y13d{bottom:935.278114pt;}
.y46{bottom:935.282699pt;}
.y250{bottom:936.106278pt;}
.y182{bottom:946.468756pt;}
.yd0{bottom:946.469333pt;}
.y24f{bottom:946.689422pt;}
.y13c{bottom:949.261920pt;}
.y45{bottom:949.266505pt;}
.y24e{bottom:957.347376pt;}
.y13b{bottom:963.170276pt;}
.y44{bottom:963.174861pt;}
.ycf{bottom:964.006699pt;}
.y3b{bottom:966.500000pt;}
.y24d{bottom:967.929670pt;}
.yce{bottom:976.781333pt;}
.y13a{bottom:977.155145pt;}
.y43{bottom:977.158667pt;}
.y24c{bottom:978.587624pt;}
.y40{bottom:1002.226640pt;}
.yc4{bottom:1003.226640pt;}
.y297{bottom:1003.230053pt;}
.yc3{bottom:1003.237333pt;}
.h5{height:20.907656pt;}
.h10{height:23.522344pt;}
.h12{height:24.596305pt;}
.hd{height:28.021406pt;}
.h11{height:28.309795pt;}
.h6{height:29.887031pt;}
.he{height:29.887500pt;}
.hb{height:30.647691pt;}
.hc{height:30.746283pt;}
.h7{height:32.689219pt;}
.h4{height:32.997656pt;}
.h8{height:33.623437pt;}
.h9{height:37.359844pt;}
.h3{height:49.501875pt;}
.h14{height:52.564832pt;}
.hf{height:52.867475pt;}
.h2{height:63.044531pt;}
.ha{height:65.378906pt;}
.h15{height:75.541876pt;}
.h13{height:75.545276pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.xf{left:54.576267pt;}
.xe{left:55.785733pt;}
.x14{left:56.844000pt;}
.xc{left:58.965153pt;}
.x11{left:66.065235pt;}
.x39{left:69.164474pt;}
.x4c{left:71.961160pt;}
.x37{left:97.359554pt;}
.x35{left:103.407308pt;}
.x38{left:112.704220pt;}
.x3c{left:119.356409pt;}
.x3a{left:123.211704pt;}
.x2{left:129.486533pt;}
.x3b{left:135.381171pt;}
.xd{left:142.790667pt;}
.x3{left:143.924000pt;}
.x3d{left:145.586012pt;}
.x48{left:150.574516pt;}
.x43{left:177.485065pt;}
.x44{left:197.972000pt;}
.x45{left:202.432000pt;}
.x4a{left:214.145639pt;}
.x49{left:217.773952pt;}
.x47{left:239.924000pt;}
.x36{left:243.020815pt;}
.x4{left:268.270667pt;}
.x10{left:269.329333pt;}
.x5{left:274.620000pt;}
.x15{left:304.554667pt;}
.x4b{left:316.645458pt;}
.x31{left:319.669335pt;}
.x17{left:332.173333pt;}
.x46{left:341.289751pt;}
.x16{left:351.118667pt;}
.x6{left:372.737333pt;}
.x7{left:379.086667pt;}
.x30{left:394.946693pt;}
.x12{left:408.790162pt;}
.x2c{left:412.800000pt;}
.x2d{left:418.090667pt;}
.x2e{left:422.626667pt;}
.x13{left:424.738863pt;}
.x20{left:428.749333pt;}
.x4d{left:430.634439pt;}
.x32{left:432.827108pt;}
.x21{left:434.342667pt;}
.x4e{left:436.530871pt;}
.x4f{left:447.642790pt;}
.x26{left:451.049333pt;}
.x27{left:456.642667pt;}
.x1a{left:486.954667pt;}
.x1b{left:492.548000pt;}
.x2a{left:499.350667pt;}
.x2b{left:504.945333pt;}
.x8{left:507.968000pt;}
.x9{left:513.336000pt;}
.x22{left:516.964000pt;}
.x23{left:522.557333pt;}
.x3e{left:527.697333pt;}
.x3f{left:536.390667pt;}
.x33{left:539.181370pt;}
.x28{left:575.093333pt;}
.x1c{left:579.024000pt;}
.x29{left:580.686667pt;}
.x1d{left:584.617333pt;}
.x34{left:608.875058pt;}
.x24{left:615.685333pt;}
.x25{left:621.278667pt;}
.x2f{left:632.813320pt;}
.xa{left:634.960000pt;}
.xb{left:641.310667pt;}
.x1e{left:669.581333pt;}
.x1f{left:675.174667pt;}
.x40{left:721.814667pt;}
.x41{left:727.181333pt;}
.x18{left:728.390667pt;}
.x19{left:733.984000pt;}
.x42{left:735.345333pt;}
}




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