
    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_6daee530ab127e4b1bc1b31a.woff2')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_353e684135f21b37221b6ee0.woff2')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_c524861139ff38fe3f9e4c87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_dbfe3ef88996076e01f685b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_018c26adacf1f5e68007caf0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.934000;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_58a29c16edc4f50400d0f654.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_388f630e6bb2589f588be262.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_194781210b37ad71f27cfa80.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9a1f7416fa1b906a5e85f703.woff2')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_c0dfc2b8fd768dffc691389b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_29ba4fe61de45c4d96d2b51e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_58c737b72e22a4ca2239f071.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.997000;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_5bf9dd83889b63069bb293af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_8cf7621ab34ff3a15db02043.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3348b0ab3a39fa440f9962ad.woff2')format("woff");}.fff{font-family:fff;line-height:0.230000;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_9e5af046215b78732ee9006d.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.m5{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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.065300px;}
.v2{vertical-align:9.525595px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000006px;}
.ls8{letter-spacing:0.000012px;}
.ls3{letter-spacing:0.000066px;}
.ls5{letter-spacing:0.000126px;}
.ls4{letter-spacing:0.000186px;}
.ls9{letter-spacing:0.000192px;}
.ls0{letter-spacing:1.478295px;}
.ls6{letter-spacing:3.615186px;}
.lsf{letter-spacing:10.463147px;}
.ls15{letter-spacing:10.680908px;}
.lsc{letter-spacing:10.797891px;}
.ls1b{letter-spacing:10.853057px;}
.ls1a{letter-spacing:10.868359px;}
.ls17{letter-spacing:11.762285px;}
.ls18{letter-spacing:12.097982px;}
.ls16{letter-spacing:12.102286px;}
.lsa{letter-spacing:13.179357px;}
.lsb{letter-spacing:13.184139px;}
.ls11{letter-spacing:14.197936px;}
.ls10{letter-spacing:17.263237px;}
.ls1{letter-spacing:19.038201px;}
.lsd{letter-spacing:19.644702px;}
.ls12{letter-spacing:20.026702px;}
.ls13{letter-spacing:20.030527px;}
.lse{letter-spacing:21.327988px;}
.ls19{letter-spacing:21.686642px;}
.ls14{letter-spacing:106.131956px;}
.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;}
}
.wsc{word-spacing:-38.256000px;}
.ws36{word-spacing:-38.255400px;}
.ws23{word-spacing:-33.617882px;}
.ws18{word-spacing:-24.674733px;}
.ws6{word-spacing:-24.230394px;}
.ws1e{word-spacing:-23.752492px;}
.ws1d{word-spacing:-23.412966px;}
.ws22{word-spacing:-21.538128px;}
.wsb{word-spacing:-21.270336px;}
.ws2{word-spacing:-14.011436px;}
.ws5{word-spacing:-13.437589px;}
.ws24{word-spacing:-12.610134px;}
.ws0{word-spacing:-12.375441px;}
.ws9{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.208832px;}
.ws19{word-spacing:-9.563850px;}
.wsa{word-spacing:-3.916507px;}
.ws35{word-spacing:-2.553620px;}
.ws1a{word-spacing:-0.772759px;}
.ws10{word-spacing:-0.602540px;}
.ws16{word-spacing:-0.539401px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:1.941014px;}
.ws8{word-spacing:3.227890px;}
.wsf{word-spacing:15.842965px;}
.ws3{word-spacing:15.900350px;}
.wse{word-spacing:16.058157px;}
.wsd{word-spacing:16.177704px;}
.ws1{word-spacing:16.182491px;}
.ws29{word-spacing:56.564434px;}
.ws2e{word-spacing:56.667724px;}
.ws2c{word-spacing:56.744235px;}
.ws30{word-spacing:56.904908px;}
.ws31{word-spacing:58.832980px;}
.ws2a{word-spacing:62.004352px;}
.ws33{word-spacing:80.370770px;}
.ws32{word-spacing:80.374595px;}
.ws34{word-spacing:85.477866px;}
.ws2b{word-spacing:91.598730px;}
.ws2d{word-spacing:114.050824px;}
.ws28{word-spacing:121.655998px;}
.ws2f{word-spacing:126.074496px;}
.ws27{word-spacing:142.252705px;}
.ws25{word-spacing:155.642095px;}
.ws11{word-spacing:158.897629px;}
.ws26{word-spacing:170.856267px;}
.ws1f{word-spacing:199.850035px;}
.ws21{word-spacing:224.907322px;}
.ws20{word-spacing:228.002184px;}
.ws14{word-spacing:251.494825px;}
.ws1c{word-spacing:477.679878px;}
.ws1b{word-spacing:690.280438px;}
.ws13{word-spacing:731.558014px;}
.ws15{word-spacing:742.269526px;}
.ws17{word-spacing:806.156044px;}
._1c{margin-left:-900.799904px;}
._3{margin-left:-17.343592px;}
._11{margin-left:-12.555654px;}
._19{margin-left:-5.130600px;}
._d{margin-left:-4.031387px;}
._6{margin-left:-2.926584px;}
._5{margin-left:-1.824811px;}
._2{width:1.040469px;}
._1{width:2.114261px;}
._0{width:3.534529px;}
._4{width:4.947152px;}
._7{width:6.612854px;}
._a{width:7.976476px;}
._b{width:9.525864px;}
._c{width:11.190020px;}
._12{width:12.294676px;}
._13{width:13.700602px;}
._e{width:15.369541px;}
._f{width:16.775466px;}
._9{width:17.918379px;}
._8{width:19.056509px;}
._10{width:20.318240px;}
._5f{width:21.428411px;}
._15{width:22.562494px;}
._16{width:23.805829px;}
._17{width:24.870759px;}
._1a{width:25.989762px;}
._14{width:30.380427px;}
._18{width:32.321944px;}
._61{width:34.182165px;}
._60{width:35.396808px;}
._1d{width:67.696756px;}
._51{width:73.213185px;}
._53{width:75.749518px;}
._5a{width:80.171842px;}
._56{width:85.627062px;}
._5e{width:91.579602px;}
._55{width:102.807562px;}
._52{width:106.208467px;}
._5b{width:111.311737px;}
._4e{width:119.857994px;}
._54{width:125.259656px;}
._5c{width:126.277250px;}
._5d{width:140.902289px;}
._59{width:148.775251px;}
._42{width:153.733150px;}
._4d{width:156.085858px;}
._4f{width:158.297020px;}
._57{width:160.504356px;}
._58{width:163.059817px;}
._4c{width:170.324517px;}
._48{width:172.879978px;}
._50{width:177.348209px;}
._47{width:182.065100px;}
._4a{width:193.564673px;}
._38{width:210.033623px;}
._37{width:211.563839px;}
._46{width:214.823199px;}
._4b{width:229.926431px;}
._3e{width:239.211016px;}
._44{width:240.974590px;}
._45{width:243.786362px;}
._40{width:249.505544px;}
._3f{width:251.904158px;}
._29{width:263.273741px;}
._36{width:267.715115px;}
._49{width:269.034926px;}
._3d{width:272.650061px;}
._3a{width:297.714999px;}
._3b{width:298.843534px;}
._3c{width:300.545899px;}
._2e{width:321.452553px;}
._39{width:326.291783px;}
._20{width:343.001742px;}
._1e{width:345.178474px;}
._21{width:363.965701px;}
._43{width:365.312291px;}
._41{width:380.308408px;}
._25{width:385.966382px;}
._35{width:387.029882px;}
._27{width:407.737530px;}
._32{width:417.029766px;}
._34{width:426.046642px;}
._28{width:462.094628px;}
._1b{width:473.410575px;}
._1f{width:489.516098px;}
._31{width:509.527498px;}
._30{width:524.523615px;}
._33{width:531.639119px;}
._2f{width:546.061405px;}
._2c{width:574.255635px;}
._2d{width:656.577430px;}
._2b{width:661.439692px;}
._23{width:725.444801px;}
._26{width:741.703346px;}
._2a{width:750.349067px;}
._22{width:763.891478px;}
._24{width:774.449969px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:26.761800px;}
.fsc{font-size:30.108600px;}
.fs4{font-size:38.255400px;}
.fs9{font-size:38.256000px;}
.fsb{font-size:40.933200px;}
.fs5{font-size:41.842200px;}
.fs2{font-size:42.237000px;}
.fs6{font-size:43.038000px;}
.fs7{font-size:47.820600px;}
.fsa{font-size:51.168000px;}
.fs1{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fs8{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:47.430000px;}
.y224{bottom:78.412613px;}
.y9b{bottom:78.416181px;}
.y9f{bottom:78.491250px;}
.y81{bottom:79.351073px;}
.y182{bottom:80.107918px;}
.y176{bottom:83.596076px;}
.y27a{bottom:84.705627px;}
.y14a{bottom:85.296225px;}
.ycd{bottom:85.474501px;}
.ya1{bottom:85.804650px;}
.y160{bottom:89.889896px;}
.y16c{bottom:89.972698px;}
.y223{bottom:90.402812px;}
.y3e{bottom:93.494940px;}
.y3f{bottom:93.495030px;}
.y9a{bottom:94.147962px;}
.y80{bottom:95.082855px;}
.y181{bottom:95.754818px;}
.y279{bottom:96.695825px;}
.y149{bottom:98.222725px;}
.y175{bottom:99.327858px;}
.ycc{bottom:101.206283px;}
.y222{bottom:102.308849px;}
.y15f{bottom:105.536796px;}
.y16b{bottom:105.619598px;}
.y3d{bottom:105.629970px;}
.y278{bottom:108.600906px;}
.y99{bottom:109.794863px;}
.y7f{bottom:110.730951px;}
.y148{bottom:111.063150px;}
.y180{bottom:111.486600px;}
.y221{bottom:114.299048px;}
.y174{bottom:114.974758px;}
.y1a9{bottom:116.418750px;}
.ycb{bottom:116.853183px;}
.y3b{bottom:119.905636px;}
.y277{bottom:120.592061px;}
.y1a8{bottom:121.181100px;}
.y15e{bottom:121.268578px;}
.y16a{bottom:121.352576px;}
.y147{bottom:123.903575px;}
.y98{bottom:125.526645px;}
.y220{bottom:126.204128px;}
.y7e{bottom:126.462733px;}
.y173{bottom:130.706540px;}
.y1a7{bottom:130.790550px;}
.y276{bottom:132.582260px;}
.yca{bottom:132.584965px;}
.y3a{bottom:134.192100px;}
.y1a6{bottom:135.552750px;}
.y146{bottom:136.744956px;}
.y15d{bottom:136.915478px;}
.y169{bottom:136.999476px;}
.y21f{bottom:138.194327px;}
.y97{bottom:141.174740px;}
.y7d{bottom:142.109633px;}
.y275{bottom:144.487340px;}
.y1a5{bottom:145.077150px;}
.y172{bottom:146.354636px;}
.yc9{bottom:148.233061px;}
.y145{bottom:149.585381px;}
.y1a4{bottom:149.924400px;}
.y21e{bottom:150.185482px;}
.y15c{bottom:152.648456px;}
.y168{bottom:152.731258px;}
.y274{bottom:156.477539px;}
.y96{bottom:156.906522px;}
.y7c{bottom:157.841415px;}
.y36{bottom:159.703536px;}
.y171{bottom:162.086417px;}
.y21d{bottom:162.090563px;}
.y144{bottom:162.426762px;}
.yc8{bottom:163.964843px;}
.y1b3{bottom:166.337269px;}
.y1a3{bottom:166.339039px;}
.y15b{bottom:168.295356px;}
.y167{bottom:168.378158px;}
.y273{bottom:168.383576px;}
.y95{bottom:172.553423px;}
.y7b{bottom:173.574392px;}
.y35{bottom:174.075000px;}
.y21c{bottom:174.080761px;}
.y143{bottom:175.267187px;}
.y170{bottom:177.733318px;}
.y1b2{bottom:179.178650px;}
.y1a2{bottom:179.180420px;}
.yc7{bottom:179.611743px;}
.y272{bottom:180.373775px;}
.y15a{bottom:184.027138px;}
.y166{bottom:184.111136px;}
.y21b{bottom:185.985842px;}
.y142{bottom:188.107613px;}
.y94{bottom:188.285205px;}
.y7a{bottom:189.221293px;}
.y1b0{bottom:192.019800px;}
.y1a1{bottom:192.020845px;}
.y271{bottom:192.278855px;}
.y16f{bottom:193.465100px;}
.yc6{bottom:195.343525px;}
.y21a{bottom:197.976997px;}
.y159{bottom:199.674038px;}
.y165{bottom:199.758036px;}
.y141{bottom:201.034112px;}
.y93{bottom:203.933300px;}
.y270{bottom:204.270010px;}
.y1b1{bottom:204.859500px;}
.y1af{bottom:204.860225px;}
.y1a0{bottom:204.861270px;}
.y79{bottom:204.953075px;}
.y16e{bottom:209.112000px;}
.y219{bottom:209.967196px;}
.y140{bottom:213.874537px;}
.y34{bottom:214.217116px;}
.y158{bottom:215.407016px;}
.y164{bottom:215.489818px;}
.y26f{bottom:216.260209px;}
.y1ae{bottom:217.700650px;}
.y19f{bottom:217.702652px;}
.yad{bottom:219.665082px;}
.y78{bottom:220.599975px;}
.y2f{bottom:221.104478px;}
.y218{bottom:221.872276px;}
.y13f{bottom:226.715919px;}
.yc5{bottom:226.723403px;}
.y26e{bottom:228.165289px;}
.y33{bottom:229.948898px;}
.y1ad{bottom:230.627150px;}
.y19e{bottom:230.628195px;}
.y157{bottom:231.053916px;}
.y163{bottom:231.136718px;}
.y217{bottom:233.863431px;}
.y92{bottom:235.311983px;}
.y123{bottom:235.822467px;}
.y1d5{bottom:236.077112px;}
.y77{bottom:236.332952px;}
.y2e{bottom:236.837456px;}
.y13e{bottom:239.556344px;}
.y26d{bottom:240.155488px;}
.y1ac{bottom:243.467575px;}
.y19d{bottom:243.469576px;}
.y32{bottom:245.595799px;}
.y216{bottom:245.768512px;}
.y156{bottom:246.785698px;}
.y162{bottom:246.868500px;}
.y17e{bottom:249.675884px;}
.y91{bottom:251.043764px;}
.y122{bottom:251.469368px;}
.y1d4{bottom:251.810090px;}
.y76{bottom:251.979853px;}
.y26c{bottom:252.061525px;}
.y13d{bottom:252.396769px;}
.y2d{bottom:252.484356px;}
.y1ab{bottom:256.308000px;}
.y19c{bottom:256.310001px;}
.y215{bottom:257.758710px;}
.yc4{bottom:258.102085px;}
.y1aa{bottom:260.560500px;}
.y155{bottom:262.432598px;}
.y17d{bottom:262.516309px;}
.y26b{bottom:264.051724px;}
.y13c{bottom:265.238150px;}
.y90{bottom:266.691860px;}
.y121{bottom:267.201150px;}
.y1d3{bottom:267.456990px;}
.y75{bottom:267.711635px;}
.y2c{bottom:268.216138px;}
.y214{bottom:269.663791px;}
.y17c{bottom:275.357690px;}
.y19b{bottom:276.039268px;}
.y26a{bottom:276.041922px;}
.y31{bottom:276.975676px;}
.y13b{bottom:278.078575px;}
.y154{bottom:278.165576px;}
.y16d{bottom:280.545000px;}
.y213{bottom:281.654946px;}
.y8f{bottom:282.423642px;}
.y120{bottom:282.848050px;}
.y1d2{bottom:283.188772px;}
.y74{bottom:283.358535px;}
.y2b{bottom:283.863038px;}
.y269{bottom:287.947003px;}
.y19a{bottom:288.879693px;}
.yc3{bottom:289.481963px;}
.y13a{bottom:290.919000px;}
.y139{bottom:290.923224px;}
.y212{bottom:293.645145px;}
.y153{bottom:293.812476px;}
.y17b{bottom:295.086000px;}
.y8e{bottom:298.070543px;}
.y11f{bottom:298.581027px;}
.y1d1{bottom:298.835672px;}
.y73{bottom:299.091512px;}
.y2a{bottom:299.596016px;}
.y268{bottom:299.938158px;}
.y138{bottom:303.848767px;}
.yc2{bottom:305.213745px;}
.y211{bottom:305.550225px;}
.y199{bottom:308.608959px;}
.y152{bottom:309.544258px;}
.y267{bottom:311.843239px;}
.y8d{bottom:313.802324px;}
.y11e{bottom:314.227928px;}
.y1d0{bottom:314.567454px;}
.y72{bottom:314.738413px;}
.y17a{bottom:314.815536px;}
.y29{bottom:315.242916px;}
.y137{bottom:316.689192px;}
.y210{bottom:317.540424px;}
.yc1{bottom:320.860645px;}
.y198{bottom:321.449384px;}
.y266{bottom:323.833437px;}
.y151{bottom:325.191158px;}
.y179{bottom:329.187000px;}
.y20f{bottom:329.446461px;}
.y8c{bottom:329.449225px;}
.y136{bottom:329.530574px;}
.y11d{bottom:329.959710px;}
.y1cf{bottom:330.215550px;}
.y71{bottom:330.470195px;}
.y28{bottom:330.974698px;}
.y197{bottom:334.289809px;}
.y265{bottom:335.739474px;}
.yc0{bottom:336.592427px;}
.y150{bottom:340.924136px;}
.y20e{bottom:341.436660px;}
.y135{bottom:342.370999px;}
.y1e7{bottom:345.182202px;}
.y11c{bottom:345.606610px;}
.y1ce{bottom:345.947332px;}
.y70{bottom:346.117095px;}
.y27{bottom:346.621598px;}
.y196{bottom:347.131190px;}
.y264{bottom:347.729673px;}
.ybf{bottom:352.240523px;}
.y20d{bottom:353.426858px;}
.yac{bottom:353.940545px;}
.y134{bottom:355.212380px;}
.y14f{bottom:356.571036px;}
.y263{bottom:359.719872px;}
.y8b{bottom:360.829102px;}
.y11b{bottom:361.339587px;}
.y1cd{bottom:361.679114px;}
.y6f{bottom:361.848877px;}
.y26{bottom:362.354576px;}
.y20c{bottom:365.332895px;}
.y195{bottom:366.859500px;}
.ybe{bottom:367.972305px;}
.y133{bottom:368.052805px;}
.yab{bottom:369.673522px;}
.y262{bottom:371.624952px;}
.y14e{bottom:372.302818px;}
.y178{bottom:373.068000px;}
.y8a{bottom:376.560884px;}
.y11a{bottom:377.071369px;}
.y20b{bottom:377.323094px;}
.y1cc{bottom:377.326014px;}
.y6e{bottom:377.496973px;}
.y25{bottom:378.001476px;}
.y132{bottom:380.893230px;}
.y261{bottom:383.616107px;}
.ybd{bottom:383.619205px;}
.yaa{bottom:385.320423px;}
.y194{bottom:386.588536px;}
.y14d{bottom:387.949718px;}
.y20a{bottom:389.228174px;}
.y89{bottom:392.207785px;}
.y119{bottom:392.718270px;}
.y1cb{bottom:393.058991px;}
.y6d{bottom:393.228754px;}
.y24{bottom:393.733258px;}
.y131{bottom:393.819730px;}
.y260{bottom:395.521188px;}
.ybc{bottom:399.350987px;}
.y193{bottom:400.875000px;}
.ya9{bottom:401.052205px;}
.y209{bottom:401.218373px;}
.y14c{bottom:403.681500px;}
.y130{bottom:406.660155px;}
.y25f{bottom:407.511387px;}
.y88{bottom:407.940762px;}
.y118{bottom:408.450051px;}
.y1ca{bottom:408.705892px;}
.ya7{bottom:408.870158px;}
.y6c{bottom:408.875655px;}
.y23{bottom:409.380158px;}
.y208{bottom:413.124410px;}
.ybb{bottom:414.999083px;}
.ya8{bottom:416.699105px;}
.y12f{bottom:419.500580px;}
.y25e{bottom:419.501585px;}
.y87{bottom:423.587662px;}
.y117{bottom:424.098147px;}
.y1c9{bottom:424.437674px;}
.ya6{bottom:424.603136px;}
.y6b{bottom:424.607437px;}
.y22{bottom:425.113136px;}
.y207{bottom:425.114609px;}
.yba{bottom:430.730864px;}
.y25d{bottom:431.407622px;}
.y12e{bottom:432.341961px;}
.y206{bottom:437.104808px;}
.y161{bottom:437.358000px;}
.y86{bottom:439.319444px;}
.y116{bottom:439.829929px;}
.y1c8{bottom:440.084574px;}
.ya5{bottom:440.250036px;}
.y6a{bottom:440.255532px;}
.y21{bottom:440.760036px;}
.y25c{bottom:443.397821px;}
.y12d{bottom:445.182386px;}
.yb9{bottom:446.377765px;}
.y205{bottom:449.009888px;}
.y192{bottom:450.881071px;}
.y85{bottom:454.966345px;}
.y25b{bottom:455.302901px;}
.y115{bottom:455.476829px;}
.y1c7{bottom:455.817551px;}
.ya4{bottom:455.981818px;}
.y69{bottom:455.987314px;}
.y20{bottom:456.491818px;}
.y12c{bottom:458.023768px;}
.y204{bottom:461.001043px;}
.yb8{bottom:462.109547px;}
.y191{bottom:463.721496px;}
.y25a{bottom:467.293100px;}
.y84{bottom:470.699322px;}
.y12b{bottom:470.864193px;}
.y114{bottom:471.208611px;}
.y1c6{bottom:471.464452px;}
.ya3{bottom:471.628718px;}
.y68{bottom:471.634215px;}
.y30{bottom:472.138718px;}
.y203{bottom:472.906124px;}
.y190{bottom:476.561921px;}
.yb7{bottom:477.757643px;}
.y259{bottom:479.284255px;}
.y12a{bottom:483.704618px;}
.y202{bottom:484.896322px;}
.y83{bottom:486.346222px;}
.y113{bottom:486.856707px;}
.y1c5{bottom:487.196233px;}
.ya2{bottom:487.360500px;}
.y67{bottom:487.365997px;}
.y1f{bottom:487.870500px;}
.y18f{bottom:489.403303px;}
.y258{bottom:491.189336px;}
.yb6{bottom:493.489424px;}
.y129{bottom:496.631117px;}
.y201{bottom:496.886521px;}
.y1e6{bottom:502.078004px;}
.y18e{bottom:502.243728px;}
.y112{bottom:502.588489px;}
.y1c4{bottom:502.843134px;}
.y66{bottom:503.014092px;}
.y257{bottom:503.179534px;}
.y200{bottom:508.792558px;}
.yb5{bottom:509.136325px;}
.y128{bottom:509.471542px;}
.y18d{bottom:515.085109px;}
.y256{bottom:515.085571px;}
.y82{bottom:517.724904px;}
.y111{bottom:518.235389px;}
.y1c3{bottom:518.576111px;}
.y65{bottom:518.745874px;}
.y1ff{bottom:520.782757px;}
.yb4{bottom:524.868107px;}
.y255{bottom:527.075770px;}
.y18c{bottom:527.925534px;}
.y127{bottom:529.200808px;}
.y1fe{bottom:532.687837px;}
.y1e5{bottom:533.457882px;}
.y110{bottom:533.967171px;}
.y1c2{bottom:534.223011px;}
.y64{bottom:534.392775px;}
.y254{bottom:538.980851px;}
.yb3{bottom:540.515007px;}
.y18b{bottom:540.851077px;}
.y1fd{bottom:544.678992px;}
.y1e{bottom:547.400930px;}
.y126{bottom:548.844000px;}
.y1e4{bottom:549.189664px;}
.y10f{bottom:549.614072px;}
.y1c1{bottom:549.954793px;}
.y63{bottom:550.124557px;}
.y253{bottom:550.971049px;}
.y18a{bottom:553.692459px;}
.yb2{bottom:556.247984px;}
.y1fc{bottom:556.584073px;}
.ya0{bottom:558.538500px;}
.y1d{bottom:561.687394px;}
.y252{bottom:562.962204px;}
.y1e3{bottom:564.836564px;}
.y10e{bottom:565.347049px;}
.y1c0{bottom:565.601694px;}
.y62{bottom:565.771457px;}
.y189{bottom:566.532884px;}
.y125{bottom:568.573536px;}
.y1fb{bottom:568.574272px;}
.yb1{bottom:571.894885px;}
.y251{bottom:574.867285px;}
.y1c{bottom:576.058859px;}
.y188{bottom:579.373309px;}
.y1fa{bottom:580.564470px;}
.y1e2{bottom:580.568346px;}
.y1bf{bottom:581.333476px;}
.y61{bottom:581.504434px;}
.y124{bottom:582.945000px;}
.y250{bottom:586.857484px;}
.yb0{bottom:587.626667px;}
.y1b{bottom:590.430323px;}
.y187{bottom:592.214690px;}
.y1f9{bottom:592.470507px;}
.y1e1{bottom:596.215246px;}
.y10d{bottom:596.725731px;}
.y1be{bottom:596.981571px;}
.y60{bottom:597.151335px;}
.y24f{bottom:598.762564px;}
.yaf{bottom:603.273567px;}
.y1f8{bottom:604.460706px;}
.y1a{bottom:604.716787px;}
.y24e{bottom:610.753719px;}
.y186{bottom:611.943000px;}
.y1e0{bottom:611.948224px;}
.y1bd{bottom:612.713353px;}
.y5f{bottom:612.883116px;}
.y1f7{bottom:616.365786px;}
.y10c{bottom:616.965800px;}
.yae{bottom:619.006544px;}
.y19{bottom:619.088251px;}
.y24d{bottom:622.743918px;}
.y1df{bottom:627.595124px;}
.y1f6{bottom:628.355985px;}
.y1bc{bottom:628.360254px;}
.y5e{bottom:628.530017px;}
.y177{bottom:630.822000px;}
.y185{bottom:631.672536px;}
.y10b{bottom:632.697582px;}
.y18{bottom:633.459715px;}
.y24c{bottom:634.648998px;}
.y1f5{bottom:640.347140px;}
.y1de{bottom:643.326906px;}
.y11{bottom:643.918919px;}
.y1bb{bottom:644.092036px;}
.y5d{bottom:644.262994px;}
.y184{bottom:646.044000px;}
.y24b{bottom:646.639197px;}
.y17{bottom:647.746179px;}
.y10a{bottom:648.344482px;}
.y1f4{bottom:652.252221px;}
.y10{bottom:656.760300px;}
.y24a{bottom:658.545234px;}
.y1dd{bottom:658.973806px;}
.yef{bottom:659.484990px;}
.y1ba{bottom:659.740131px;}
.y5c{bottom:659.909894px;}
.y16{bottom:662.117643px;}
.y109{bottom:664.076264px;}
.y1f3{bottom:664.242420px;}
.yf{bottom:669.600725px;}
.y249{bottom:670.535433px;}
.yee{bottom:672.411490px;}
.y1dc{bottom:674.706784px;}
.y1b9{bottom:675.471913px;}
.y5b{bottom:675.641676px;}
.y1f2{bottom:676.147500px;}
.y15{bottom:676.489108px;}
.y108{bottom:679.723165px;}
.y248{bottom:682.439557px;}
.ye{bottom:682.441150px;}
.yed{bottom:685.251915px;}
.y183{bottom:690.009000px;}
.y1db{bottom:690.353684px;}
.y14{bottom:690.860572px;}
.y1b8{bottom:691.118814px;}
.y5a{bottom:691.288577px;}
.y247{bottom:694.430712px;}
.yd{bottom:695.282532px;}
.y107{bottom:695.456142px;}
.yec{bottom:698.092340px;}
.y1f1{bottom:703.704000px;}
.y13{bottom:705.147036px;}
.y1da{bottom:706.085466px;}
.y246{bottom:706.420911px;}
.y1b7{bottom:706.850595px;}
.y59{bottom:707.021554px;}
.yc{bottom:708.122957px;}
.yeb{bottom:710.933721px;}
.y106{bottom:711.103042px;}
.y245{bottom:718.325991px;}
.y12{bottom:719.518500px;}
.yb{bottom:721.048500px;}
.y1d9{bottom:721.732366px;}
.y1b6{bottom:722.498691px;}
.y58{bottom:722.753336px;}
.yea{bottom:723.774146px;}
.y105{bottom:726.834824px;}
.y244{bottom:730.316190px;}
.ye9{bottom:736.615528px;}
.y1d8{bottom:737.465344px;}
.y1f0{bottom:738.145592px;}
.y57{bottom:738.400236px;}
.y243{bottom:742.222227px;}
.y104{bottom:742.481724px;}
.ya{bottom:748.771500px;}
.ye8{bottom:749.455953px;}
.y1d7{bottom:753.112244px;}
.y1b5{bottom:753.877373px;}
.y56{bottom:754.132018px;}
.y242{bottom:754.212426px;}
.y103{bottom:758.214702px;}
.ye7{bottom:762.296378px;}
.y241{bottom:766.202624px;}
.y1ef{bottom:769.524274px;}
.y55{bottom:769.780114px;}
.y102{bottom:773.861602px;}
.ye6{bottom:775.222877px;}
.y240{bottom:778.107705px;}
.y1d6{bottom:784.490926px;}
.y1b4{bottom:785.256056px;}
.y54{bottom:785.511896px;}
.ye5{bottom:788.063302px;}
.y101{bottom:789.593384px;}
.y23f{bottom:790.098860px;}
.y9{bottom:798.264000px;}
.ye4{bottom:800.903727px;}
.y1ee{bottom:800.904152px;}
.y53{bottom:801.158796px;}
.y23e{bottom:802.003940px;}
.y8{bottom:802.516500px;}
.y100{bottom:805.240284px;}
.y7{bottom:811.105500px;}
.ye3{bottom:813.745109px;}
.y23d{bottom:813.994139px;}
.y6{bottom:815.358000px;}
.y1ed{bottom:816.635933px;}
.y52{bottom:816.890578px;}
.yff{bottom:820.973262px;}
.y23c{bottom:825.900176px;}
.ye2{bottom:826.585534px;}
.y1ec{bottom:832.282834px;}
.y51{bottom:832.537478px;}
.y4{bottom:835.767000px;}
.yfe{bottom:836.620162px;}
.y23b{bottom:837.890375px;}
.y292{bottom:837.895910px;}
.ye1{bottom:839.426915px;}
.y5{bottom:842.824500px;}
.y1eb{bottom:848.014616px;}
.y50{bottom:848.270456px;}
.y23a{bottom:849.880574px;}
.y291{bottom:849.886109px;}
.ye0{bottom:852.267340px;}
.yfd{bottom:852.351944px;}
.y239{bottom:861.785654px;}
.y290{bottom:861.791189px;}
.y4f{bottom:863.917356px;}
.ydf{bottom:865.107765px;}
.yfc{bottom:867.998844px;}
.y3{bottom:873.270932px;}
.y238{bottom:873.776809px;}
.y28f{bottom:873.781388px;}
.yde{bottom:878.034265px;}
.y1ea{bottom:879.394493px;}
.y4e{bottom:879.649138px;}
.yfb{bottom:883.731822px;}
.y237{bottom:885.681890px;}
.y28e{bottom:885.687425px;}
.ydd{bottom:890.874690px;}
.y4d{bottom:895.296038px;}
.y236{bottom:897.672088px;}
.y28d{bottom:897.677624px;}
.y2{bottom:899.122216px;}
.yfa{bottom:899.378722px;}
.ydc{bottom:903.716071px;}
.y235{bottom:909.662287px;}
.y28c{bottom:909.667822px;}
.y4c{bottom:911.029016px;}
.y1e9{bottom:913.834889px;}
.yf9{bottom:915.110504px;}
.ydb{bottom:916.556496px;}
.y234{bottom:921.568324px;}
.y28b{bottom:921.572903px;}
.y1{bottom:924.973500px;}
.y4b{bottom:926.675916px;}
.yda{bottom:929.396921px;}
.yf8{bottom:930.757404px;}
.y233{bottom:933.558523px;}
.y28a{bottom:933.564058px;}
.yd9{bottom:942.238303px;}
.y4a{bottom:942.407698px;}
.y1e8{bottom:945.214767px;}
.y232{bottom:945.463603px;}
.y289{bottom:945.469138px;}
.yf7{bottom:946.489186px;}
.yd8{bottom:955.078728px;}
.y231{bottom:957.453802px;}
.y288{bottom:957.459337px;}
.y49{bottom:958.054598px;}
.yf6{bottom:962.222164px;}
.yd7{bottom:967.920109px;}
.y230{bottom:969.359839px;}
.y287{bottom:969.365374px;}
.y48{bottom:973.787576px;}
.yf5{bottom:977.869064px;}
.yd6{bottom:980.845652px;}
.y22f{bottom:981.350038px;}
.y286{bottom:981.355573px;}
.y47{bottom:989.434476px;}
.y22e{bottom:993.340236px;}
.y285{bottom:993.345772px;}
.yf4{bottom:993.600846px;}
.yd5{bottom:993.686077px;}
.y39{bottom:1003.719000px;}
.y46{bottom:1005.166258px;}
.y22d{bottom:1005.246273px;}
.y284{bottom:1005.250852px;}
.yd4{bottom:1006.527459px;}
.yf3{bottom:1009.247746px;}
.y22c{bottom:1017.236472px;}
.y283{bottom:1017.242007px;}
.yd3{bottom:1019.367884px;}
.y45{bottom:1020.813158px;}
.yf2{bottom:1024.980723px;}
.y22b{bottom:1029.141552px;}
.y282{bottom:1029.147088px;}
.yd2{bottom:1032.208309px;}
.y44{bottom:1036.546136px;}
.y22a{bottom:1041.131751px;}
.y281{bottom:1041.137286px;}
.yd1{bottom:1045.049690px;}
.y38{bottom:1045.474500px;}
.y43{bottom:1052.193036px;}
.y229{bottom:1053.122906px;}
.y280{bottom:1053.127485px;}
.yf1{bottom:1056.359406px;}
.yd0{bottom:1064.778000px;}
.y228{bottom:1065.027987px;}
.y27f{bottom:1065.033522px;}
.y42{bottom:1067.924818px;}
.y227{bottom:1077.018186px;}
.y27e{bottom:1077.023721px;}
.y41{bottom:1083.571718px;}
.ycf{bottom:1084.507536px;}
.y37{bottom:1087.312500px;}
.y226{bottom:1088.923266px;}
.y27d{bottom:1088.928801px;}
.yce{bottom:1098.879000px;}
.y40{bottom:1099.303500px;}
.y225{bottom:1100.914421px;}
.y27c{bottom:1100.919000px;}
.y3c{bottom:1127.504970px;}
.y9d{bottom:1128.629970px;}
.y14b{bottom:1128.631924px;}
.y17f{bottom:1128.632911px;}
.y27b{bottom:1128.636197px;}
.y293{bottom:1128.640776px;}
.yf0{bottom:1128.641565px;}
.y9c{bottom:1128.642000px;}
.h5{height:23.521113px;}
.hf{height:26.462637px;}
.he{height:27.957376px;}
.h6{height:33.622910px;}
.hc{height:33.623438px;}
.hd{height:34.947744px;}
.hb{height:35.100320px;}
.h10{height:36.227864px;}
.h7{height:36.775371px;}
.h4{height:37.122363px;}
.h8{height:37.826367px;}
.h9{height:42.029824px;}
.h3{height:55.689609px;}
.h2{height:70.925098px;}
.ha{height:73.551270px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.x28{left:57.826650px;}
.x9{left:62.758950px;}
.xe{left:63.949500px;}
.x20{left:65.395200px;}
.xb{left:74.323389px;}
.x34{left:78.151050px;}
.x33{left:82.233000px;}
.x2b{left:132.491250px;}
.x41{left:133.850198px;}
.x2c{left:143.800599px;}
.x32{left:151.198237px;}
.x42{left:159.446886px;}
.x27{left:160.470000px;}
.x11{left:172.119000px;}
.x2f{left:192.357222px;}
.x2{left:200.182500px;}
.x22{left:214.894500px;}
.x3{left:216.424500px;}
.x23{left:219.657000px;}
.x10{left:227.224500px;}
.x2d{left:234.876186px;}
.x2a{left:255.714000px;}
.x19{left:272.211000px;}
.x18{left:274.507500px;}
.x21{left:286.664434px;}
.x24{left:290.154000px;}
.x12{left:291.255000px;}
.x30{left:293.042565px;}
.xa{left:302.995500px;}
.x26{left:317.962500px;}
.x2e{left:335.561529px;}
.xf{left:342.624000px;}
.x4{left:345.940500px;}
.x5{left:353.083500px;}
.x31{left:398.490706px;}
.x29{left:441.629970px;}
.x17{left:444.315030px;}
.xc{left:459.888932px;}
.x15{left:462.269202px;}
.x25{left:466.436767px;}
.x6{left:467.631000px;}
.x1d{left:468.907500px;}
.x3e{left:471.969000px;}
.x7{left:474.180000px;}
.xd{left:477.831221px;}
.x45{left:513.887949px;}
.x46{left:538.379056px;}
.x1e{left:549.268706px;}
.x3c{left:555.820186px;}
.x14{left:557.087888px;}
.x3f{left:561.430500px;}
.x8{left:568.147500px;}
.x40{left:569.508000px;}
.x16{left:574.425015px;}
.x1c{left:594.681000px;}
.x37{left:597.060221px;}
.x13{left:609.689985px;}
.x35{left:639.664303px;}
.x44{left:648.502963px;}
.x3d{left:663.901500px;}
.x3a{left:671.215500px;}
.x43{left:692.978691px;}
.x38{left:699.021382px;}
.x1f{left:705.398557px;}
.x36{left:746.131951px;}
.x3b{left:777.769500px;}
.x1a{left:791.802000px;}
.x1b{left:797.839500px;}
.x39{left:801.917888px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.724712pt;}
.v2{vertical-align:8.467195pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000005pt;}
.ls8{letter-spacing:0.000011pt;}
.ls3{letter-spacing:0.000059pt;}
.ls5{letter-spacing:0.000112pt;}
.ls4{letter-spacing:0.000165pt;}
.ls9{letter-spacing:0.000171pt;}
.ls0{letter-spacing:1.314040pt;}
.ls6{letter-spacing:3.213499pt;}
.lsf{letter-spacing:9.300575pt;}
.ls15{letter-spacing:9.494140pt;}
.lsc{letter-spacing:9.598126pt;}
.ls1b{letter-spacing:9.647162pt;}
.ls1a{letter-spacing:9.660764pt;}
.ls17{letter-spacing:10.455365pt;}
.ls18{letter-spacing:10.753762pt;}
.ls16{letter-spacing:10.757587pt;}
.lsa{letter-spacing:11.714984pt;}
.lsb{letter-spacing:11.719235pt;}
.ls11{letter-spacing:12.620388pt;}
.ls10{letter-spacing:15.345099pt;}
.ls1{letter-spacing:16.922845pt;}
.lsd{letter-spacing:17.461958pt;}
.ls12{letter-spacing:17.801513pt;}
.ls13{letter-spacing:17.804913pt;}
.lse{letter-spacing:18.958211pt;}
.ls19{letter-spacing:19.277015pt;}
.ls14{letter-spacing:94.339517pt;}
.wsc{word-spacing:-34.005333pt;}
.ws36{word-spacing:-34.004800pt;}
.ws23{word-spacing:-29.882562pt;}
.ws18{word-spacing:-21.933096pt;}
.ws6{word-spacing:-21.538128pt;}
.ws1e{word-spacing:-21.113326pt;}
.ws1d{word-spacing:-20.811525pt;}
.ws22{word-spacing:-19.145003pt;}
.wsb{word-spacing:-18.906965pt;}
.ws2{word-spacing:-12.454610pt;}
.ws5{word-spacing:-11.944523pt;}
.ws24{word-spacing:-11.209008pt;}
.ws0{word-spacing:-11.000392pt;}
.ws9{word-spacing:-10.626800pt;}
.ws12{word-spacing:-9.963406pt;}
.ws19{word-spacing:-8.501200pt;}
.wsa{word-spacing:-3.481340pt;}
.ws35{word-spacing:-2.269884pt;}
.ws1a{word-spacing:-0.686897pt;}
.ws10{word-spacing:-0.535591pt;}
.ws16{word-spacing:-0.479468pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:1.725346pt;}
.ws8{word-spacing:2.869236pt;}
.wsf{word-spacing:14.082635pt;}
.ws3{word-spacing:14.133644pt;}
.wse{word-spacing:14.273918pt;}
.wsd{word-spacing:14.380182pt;}
.ws1{word-spacing:14.384436pt;}
.ws29{word-spacing:50.279497pt;}
.ws2e{word-spacing:50.371310pt;}
.ws2c{word-spacing:50.439320pt;}
.ws30{word-spacing:50.582140pt;}
.ws31{word-spacing:52.295982pt;}
.ws2a{word-spacing:55.114980pt;}
.ws33{word-spacing:71.440684pt;}
.ws32{word-spacing:71.444085pt;}
.ws34{word-spacing:75.980325pt;}
.ws2b{word-spacing:81.421093pt;}
.ws2d{word-spacing:101.378510pt;}
.ws28{word-spacing:108.138664pt;}
.ws2f{word-spacing:112.066219pt;}
.ws27{word-spacing:126.446849pt;}
.ws25{word-spacing:138.348529pt;}
.ws11{word-spacing:141.242337pt;}
.ws26{word-spacing:151.872238pt;}
.ws1f{word-spacing:177.644476pt;}
.ws21{word-spacing:199.917620pt;}
.ws20{word-spacing:202.668608pt;}
.ws14{word-spacing:223.550956pt;}
.ws1c{word-spacing:424.604336pt;}
.ws1b{word-spacing:613.582611pt;}
.ws13{word-spacing:650.273790pt;}
.ws15{word-spacing:659.795134pt;}
.ws17{word-spacing:716.583150pt;}
._1c{margin-left:-800.711026pt;}
._3{margin-left:-15.416526pt;}
._11{margin-left:-11.160581pt;}
._19{margin-left:-4.560533pt;}
._d{margin-left:-3.583455pt;}
._6{margin-left:-2.601408pt;}
._5{margin-left:-1.622054pt;}
._2{width:0.924861pt;}
._1{width:1.879343pt;}
._0{width:3.141803pt;}
._4{width:4.397469pt;}
._7{width:5.878093pt;}
._a{width:7.090201pt;}
._b{width:8.467434pt;}
._c{width:9.946685pt;}
._12{width:10.928601pt;}
._13{width:12.178313pt;}
._e{width:13.661814pt;}
._f{width:14.911526pt;}
._9{width:15.927448pt;}
._8{width:16.939119pt;}
._10{width:18.060658pt;}
._5f{width:19.047476pt;}
._15{width:20.055550pt;}
._16{width:21.160737pt;}
._17{width:22.107342pt;}
._1a{width:23.102010pt;}
._14{width:27.004824pt;}
._18{width:28.730616pt;}
._61{width:30.384147pt;}
._60{width:31.463829pt;}
._1d{width:60.174894pt;}
._51{width:65.078386pt;}
._53{width:67.332904pt;}
._5a{width:71.263859pt;}
._56{width:76.112944pt;}
._5e{width:81.404091pt;}
._55{width:91.384500pt;}
._52{width:94.407526pt;}
._5b{width:98.943767pt;}
._4e{width:106.540439pt;}
._54{width:111.341917pt;}
._5c{width:112.246444pt;}
._5d{width:125.246479pt;}
._59{width:132.244667pt;}
._42{width:136.651689pt;}
._4d{width:138.742984pt;}
._4f{width:140.708462pt;}
._57{width:142.670539pt;}
._58{width:144.942060pt;}
._4c{width:151.399571pt;}
._48{width:153.671092pt;}
._50{width:157.642852pt;}
._47{width:161.835644pt;}
._4a{width:172.057487pt;}
._38{width:186.696553pt;}
._37{width:188.056745pt;}
._46{width:190.953954pt;}
._4b{width:204.379049pt;}
._3e{width:212.632014pt;}
._44{width:214.199636pt;}
._45{width:216.698988pt;}
._40{width:221.782706pt;}
._3f{width:223.914807pt;}
._29{width:234.021103pt;}
._36{width:237.968991pt;}
._49{width:239.142156pt;}
._3d{width:242.355610pt;}
._3a{width:264.635555pt;}
._3b{width:265.638697pt;}
._3c{width:267.151910pt;}
._2e{width:285.735603pt;}
._39{width:290.037141pt;}
._20{width:304.890437pt;}
._1e{width:306.825310pt;}
._21{width:323.525068pt;}
._43{width:324.722037pt;}
._41{width:338.051918pt;}
._25{width:343.081228pt;}
._35{width:344.026562pt;}
._27{width:362.433360pt;}
._32{width:370.693126pt;}
._34{width:378.708126pt;}
._28{width:410.750780pt;}
._1b{width:420.809400pt;}
._1f{width:435.125421pt;}
._31{width:452.913332pt;}
._30{width:466.243213pt;}
._33{width:472.568106pt;}
._2f{width:485.387916pt;}
._2c{width:510.449453pt;}
._2d{width:583.624382pt;}
._2b{width:587.946392pt;}
._23{width:644.839823pt;}
._26{width:659.291863pt;}
._2a{width:666.976948pt;}
._22{width:679.014647pt;}
._24{width:688.399972pt;}
.fs3{font-size:23.788267pt;}
.fsc{font-size:26.763200pt;}
.fs4{font-size:34.004800pt;}
.fs9{font-size:34.005333pt;}
.fsb{font-size:36.385067pt;}
.fs5{font-size:37.193067pt;}
.fs2{font-size:37.544000pt;}
.fs6{font-size:38.256000pt;}
.fs7{font-size:42.507200pt;}
.fsa{font-size:45.482667pt;}
.fs1{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fs8{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:42.160000pt;}
.y224{bottom:69.700101pt;}
.y9b{bottom:69.703272pt;}
.y9f{bottom:69.770000pt;}
.y81{bottom:70.534287pt;}
.y182{bottom:71.207038pt;}
.y176{bottom:74.307623pt;}
.y27a{bottom:75.293890pt;}
.y14a{bottom:75.818867pt;}
.ycd{bottom:75.977334pt;}
.ya1{bottom:76.270800pt;}
.y160{bottom:79.902130pt;}
.y16c{bottom:79.975732pt;}
.y223{bottom:80.358055pt;}
.y3e{bottom:83.106613pt;}
.y3f{bottom:83.106693pt;}
.y9a{bottom:83.687078pt;}
.y80{bottom:84.518093pt;}
.y181{bottom:85.115394pt;}
.y279{bottom:85.951845pt;}
.y149{bottom:87.309089pt;}
.y175{bottom:88.291429pt;}
.ycc{bottom:89.961140pt;}
.y222{bottom:90.941199pt;}
.y15f{bottom:93.810486pt;}
.y16b{bottom:93.884087pt;}
.y3d{bottom:93.893307pt;}
.y278{bottom:96.534139pt;}
.y99{bottom:97.595434pt;}
.y7f{bottom:98.427512pt;}
.y148{bottom:98.722800pt;}
.y180{bottom:99.099200pt;}
.y221{bottom:101.599153pt;}
.y174{bottom:102.199785pt;}
.y1a9{bottom:103.483333pt;}
.ycb{bottom:103.869496pt;}
.y3b{bottom:106.582787pt;}
.y277{bottom:107.192943pt;}
.y1a8{bottom:107.716533pt;}
.y15e{bottom:107.794292pt;}
.y16a{bottom:107.868956pt;}
.y147{bottom:110.136511pt;}
.y98{bottom:111.579240pt;}
.y220{bottom:112.181447pt;}
.y7e{bottom:112.411318pt;}
.y173{bottom:116.183591pt;}
.y1a7{bottom:116.258267pt;}
.y276{bottom:117.850898pt;}
.yca{bottom:117.853302pt;}
.y3a{bottom:119.281867pt;}
.y1a6{bottom:120.491333pt;}
.y146{bottom:121.551072pt;}
.y15d{bottom:121.702647pt;}
.y169{bottom:121.777312pt;}
.y21f{bottom:122.839402pt;}
.y97{bottom:125.488658pt;}
.y7d{bottom:126.319674pt;}
.y275{bottom:128.433191pt;}
.y1a5{bottom:128.957467pt;}
.y172{bottom:130.093009pt;}
.yc9{bottom:131.762721pt;}
.y145{bottom:132.964783pt;}
.y1a4{bottom:133.266133pt;}
.y21e{bottom:133.498206pt;}
.y15c{bottom:135.687516pt;}
.y168{bottom:135.761118pt;}
.y274{bottom:139.091146pt;}
.y96{bottom:139.472464pt;}
.y7c{bottom:140.303480pt;}
.y36{bottom:141.958699pt;}
.y171{bottom:144.076816pt;}
.y21d{bottom:144.080500pt;}
.y144{bottom:144.379344pt;}
.yc8{bottom:145.746527pt;}
.y1b3{bottom:147.855350pt;}
.y1a3{bottom:147.856924pt;}
.y15b{bottom:149.595872pt;}
.y167{bottom:149.669474pt;}
.y273{bottom:149.674290pt;}
.y95{bottom:153.380820pt;}
.y7b{bottom:154.288349pt;}
.y35{bottom:154.733333pt;}
.y21c{bottom:154.738454pt;}
.y143{bottom:155.793056pt;}
.y170{bottom:157.985171pt;}
.y1b2{bottom:159.269911pt;}
.y1a2{bottom:159.271485pt;}
.yc7{bottom:159.654883pt;}
.y272{bottom:160.332244pt;}
.y15a{bottom:163.579678pt;}
.y166{bottom:163.654343pt;}
.y21b{bottom:165.320748pt;}
.y142{bottom:167.206767pt;}
.y94{bottom:167.364626pt;}
.y7a{bottom:168.196705pt;}
.y1b0{bottom:170.684267pt;}
.y1a1{bottom:170.685196pt;}
.y271{bottom:170.914538pt;}
.y16f{bottom:171.968977pt;}
.yc6{bottom:173.638689pt;}
.y21a{bottom:175.979553pt;}
.y159{bottom:177.488034pt;}
.y165{bottom:177.562699pt;}
.y141{bottom:178.696989pt;}
.y93{bottom:181.274045pt;}
.y270{bottom:181.573342pt;}
.y1b1{bottom:182.097333pt;}
.y1af{bottom:182.097978pt;}
.y1a0{bottom:182.098907pt;}
.y79{bottom:182.180511pt;}
.y16e{bottom:185.877333pt;}
.y219{bottom:186.637507pt;}
.y140{bottom:190.110700pt;}
.y34{bottom:190.415215pt;}
.y158{bottom:191.472903pt;}
.y164{bottom:191.546505pt;}
.y26f{bottom:192.231297pt;}
.y1ae{bottom:193.511689pt;}
.y19f{bottom:193.513468pt;}
.yad{bottom:195.257851pt;}
.y78{bottom:196.088867pt;}
.y2f{bottom:196.537314pt;}
.y218{bottom:197.219801pt;}
.y13f{bottom:201.525261pt;}
.yc5{bottom:201.531914pt;}
.y26e{bottom:202.813591pt;}
.y33{bottom:204.399021pt;}
.y1ad{bottom:205.001911pt;}
.y19e{bottom:205.002840pt;}
.y157{bottom:205.381259pt;}
.y163{bottom:205.454861pt;}
.y217{bottom:207.878606pt;}
.y92{bottom:209.166207pt;}
.y123{bottom:209.619971pt;}
.y1d5{bottom:209.846322pt;}
.y77{bottom:210.073735pt;}
.y2e{bottom:210.522183pt;}
.y13e{bottom:212.938972pt;}
.y26d{bottom:213.471545pt;}
.y1ac{bottom:216.415622pt;}
.y19d{bottom:216.417401pt;}
.y32{bottom:218.307377pt;}
.y216{bottom:218.460899pt;}
.y156{bottom:219.365065pt;}
.y162{bottom:219.438667pt;}
.y17e{bottom:221.934119pt;}
.y91{bottom:223.150013pt;}
.y122{bottom:223.528327pt;}
.y1d4{bottom:223.831191pt;}
.y76{bottom:223.982091pt;}
.y26c{bottom:224.054689pt;}
.y13d{bottom:224.352683pt;}
.y2d{bottom:224.430539pt;}
.y1ab{bottom:227.829333pt;}
.y19c{bottom:227.831112pt;}
.y215{bottom:229.118854pt;}
.yc4{bottom:229.424076pt;}
.y1aa{bottom:231.609333pt;}
.y155{bottom:233.273421pt;}
.y17d{bottom:233.347830pt;}
.y26b{bottom:234.712643pt;}
.y13c{bottom:235.767244pt;}
.y90{bottom:237.059431pt;}
.y121{bottom:237.512133pt;}
.y1d3{bottom:237.739547pt;}
.y75{bottom:237.965897pt;}
.y2c{bottom:238.414345pt;}
.y214{bottom:239.701147pt;}
.y17c{bottom:244.762391pt;}
.y19b{bottom:245.368238pt;}
.y26a{bottom:245.370598pt;}
.y31{bottom:246.200601pt;}
.y13b{bottom:247.180956pt;}
.y154{bottom:247.258289pt;}
.y16d{bottom:249.373333pt;}
.y213{bottom:250.359952pt;}
.y8f{bottom:251.043238pt;}
.y120{bottom:251.420489pt;}
.y1d2{bottom:251.723353pt;}
.y74{bottom:251.874253pt;}
.y2b{bottom:252.322701pt;}
.y269{bottom:255.952892pt;}
.y19a{bottom:256.781949pt;}
.yc3{bottom:257.317300pt;}
.y13a{bottom:258.594667pt;}
.y139{bottom:258.598421pt;}
.y212{bottom:261.017906pt;}
.y153{bottom:261.166645pt;}
.y17b{bottom:262.298667pt;}
.y8e{bottom:264.951593pt;}
.y11f{bottom:265.405358pt;}
.y1d1{bottom:265.631709pt;}
.y73{bottom:265.859122pt;}
.y2a{bottom:266.307570pt;}
.y268{bottom:266.611696pt;}
.y138{bottom:270.087793pt;}
.yc2{bottom:271.301106pt;}
.y211{bottom:271.600200pt;}
.y199{bottom:274.319074pt;}
.y152{bottom:275.150451pt;}
.y267{bottom:277.193990pt;}
.y8d{bottom:278.935399pt;}
.y11e{bottom:279.313714pt;}
.y1d0{bottom:279.615515pt;}
.y72{bottom:279.767478pt;}
.y17a{bottom:279.836032pt;}
.y29{bottom:280.215925pt;}
.y137{bottom:281.501504pt;}
.y210{bottom:282.258155pt;}
.yc1{bottom:285.209462pt;}
.y198{bottom:285.732786pt;}
.y266{bottom:287.851944pt;}
.y151{bottom:289.058807pt;}
.y179{bottom:292.610667pt;}
.y20f{bottom:292.841299pt;}
.y8c{bottom:292.843755pt;}
.y136{bottom:292.916066pt;}
.y11d{bottom:293.297520pt;}
.y1cf{bottom:293.524933pt;}
.y71{bottom:293.751284pt;}
.y28{bottom:294.199732pt;}
.y197{bottom:297.146497pt;}
.y265{bottom:298.435088pt;}
.yc0{bottom:299.193268pt;}
.y150{bottom:303.043676pt;}
.y20e{bottom:303.499253pt;}
.y135{bottom:304.329777pt;}
.y1e7{bottom:306.828624pt;}
.y11c{bottom:307.205876pt;}
.y1ce{bottom:307.508739pt;}
.y70{bottom:307.659640pt;}
.y27{bottom:308.108087pt;}
.y196{bottom:308.561058pt;}
.y264{bottom:309.093043pt;}
.ybf{bottom:313.102687pt;}
.y20d{bottom:314.157207pt;}
.yac{bottom:314.613818pt;}
.y134{bottom:315.744338pt;}
.y14f{bottom:316.952032pt;}
.y263{bottom:319.750997pt;}
.y8b{bottom:320.736980pt;}
.y11b{bottom:321.190744pt;}
.y1cd{bottom:321.492545pt;}
.y6f{bottom:321.643446pt;}
.y26{bottom:322.092956pt;}
.y20c{bottom:324.740351pt;}
.y195{bottom:326.097333pt;}
.ybe{bottom:327.086493pt;}
.y133{bottom:327.158049pt;}
.yab{bottom:328.598687pt;}
.y262{bottom:330.333291pt;}
.y14e{bottom:330.935838pt;}
.y178{bottom:331.616000pt;}
.y8a{bottom:334.720786pt;}
.y11a{bottom:335.174550pt;}
.y20b{bottom:335.398306pt;}
.y1cc{bottom:335.400901pt;}
.y6e{bottom:335.552865pt;}
.y25{bottom:336.001312pt;}
.y132{bottom:338.571760pt;}
.y261{bottom:340.992095pt;}
.ybd{bottom:340.994849pt;}
.yaa{bottom:342.507042pt;}
.y194{bottom:343.634254pt;}
.y14d{bottom:344.844194pt;}
.y20a{bottom:345.980600pt;}
.y89{bottom:348.629142pt;}
.y119{bottom:349.082906pt;}
.y1cb{bottom:349.385770pt;}
.y6d{bottom:349.536671pt;}
.y24{bottom:349.985118pt;}
.y131{bottom:350.061982pt;}
.y260{bottom:351.574389pt;}
.ybc{bottom:354.978655pt;}
.y193{bottom:356.333333pt;}
.ya9{bottom:356.490849pt;}
.y209{bottom:356.638554pt;}
.y14c{bottom:358.828000pt;}
.y130{bottom:361.475693pt;}
.y25f{bottom:362.232344pt;}
.y88{bottom:362.614011pt;}
.y118{bottom:363.066712pt;}
.y1ca{bottom:363.294126pt;}
.ya7{bottom:363.440141pt;}
.y6c{bottom:363.445026pt;}
.y23{bottom:363.893474pt;}
.y208{bottom:367.221698pt;}
.ybb{bottom:368.888073pt;}
.ya8{bottom:370.399204pt;}
.y12f{bottom:372.889404pt;}
.y25e{bottom:372.890298pt;}
.y87{bottom:376.522367pt;}
.y117{bottom:376.976131pt;}
.y1c9{bottom:377.277932pt;}
.ya6{bottom:377.425009pt;}
.y6b{bottom:377.428833pt;}
.y22{bottom:377.878343pt;}
.y207{bottom:377.879652pt;}
.yba{bottom:382.871880pt;}
.y25d{bottom:383.473442pt;}
.y12e{bottom:384.303966pt;}
.y206{bottom:388.537607pt;}
.y161{bottom:388.762667pt;}
.y86{bottom:390.506173pt;}
.y116{bottom:390.959937pt;}
.y1c8{bottom:391.186288pt;}
.ya5{bottom:391.333365pt;}
.y6a{bottom:391.338251pt;}
.y21{bottom:391.786699pt;}
.y25c{bottom:394.131396pt;}
.y12d{bottom:395.717677pt;}
.yb9{bottom:396.780235pt;}
.y205{bottom:399.119900pt;}
.y192{bottom:400.783174pt;}
.y85{bottom:404.414529pt;}
.y25b{bottom:404.713690pt;}
.y115{bottom:404.868293pt;}
.y1c7{bottom:405.171157pt;}
.ya4{bottom:405.317171pt;}
.y69{bottom:405.322057pt;}
.y20{bottom:405.770505pt;}
.y12c{bottom:407.132238pt;}
.y204{bottom:409.778705pt;}
.yb8{bottom:410.764042pt;}
.y191{bottom:412.196886pt;}
.y25a{bottom:415.371645pt;}
.y84{bottom:418.399397pt;}
.y12b{bottom:418.545949pt;}
.y114{bottom:418.852099pt;}
.y1c6{bottom:419.079513pt;}
.ya3{bottom:419.225527pt;}
.y68{bottom:419.230413pt;}
.y30{bottom:419.678861pt;}
.y203{bottom:420.360999pt;}
.y190{bottom:423.610597pt;}
.yb7{bottom:424.673460pt;}
.y259{bottom:426.030449pt;}
.y12a{bottom:429.959660pt;}
.y202{bottom:431.018953pt;}
.y83{bottom:432.307753pt;}
.y113{bottom:432.761518pt;}
.y1c5{bottom:433.063319pt;}
.ya2{bottom:433.209333pt;}
.y67{bottom:433.214219pt;}
.y1f{bottom:433.662667pt;}
.y18f{bottom:435.025158pt;}
.y258{bottom:436.612743pt;}
.yb6{bottom:438.657266pt;}
.y129{bottom:441.449882pt;}
.y201{bottom:441.676908pt;}
.y1e6{bottom:446.291559pt;}
.y18e{bottom:446.438869pt;}
.y112{bottom:446.745324pt;}
.y1c4{bottom:446.971674pt;}
.y66{bottom:447.123638pt;}
.y257{bottom:447.270697pt;}
.y200{bottom:452.260052pt;}
.yb5{bottom:452.565622pt;}
.y128{bottom:452.863593pt;}
.y18d{bottom:457.853430pt;}
.y256{bottom:457.853841pt;}
.y82{bottom:460.199915pt;}
.y111{bottom:460.653679pt;}
.y1c3{bottom:460.956543pt;}
.y65{bottom:461.107444pt;}
.y1ff{bottom:462.918006pt;}
.yb4{bottom:466.549428pt;}
.y255{bottom:468.511796pt;}
.y18c{bottom:469.267141pt;}
.y127{bottom:470.400719pt;}
.y1fe{bottom:473.500300pt;}
.y1e5{bottom:474.184784pt;}
.y110{bottom:474.637486pt;}
.y1c2{bottom:474.864899pt;}
.y64{bottom:475.015800pt;}
.y254{bottom:479.094089pt;}
.yb3{bottom:480.457784pt;}
.y18b{bottom:480.756513pt;}
.y1fd{bottom:484.159104pt;}
.y1e{bottom:486.578605pt;}
.y126{bottom:487.861333pt;}
.y1e4{bottom:488.168590pt;}
.y10f{bottom:488.545841pt;}
.y1c1{bottom:488.848705pt;}
.y63{bottom:488.999606pt;}
.y253{bottom:489.752044pt;}
.y18a{bottom:492.171074pt;}
.yb2{bottom:494.442653pt;}
.y1fc{bottom:494.741398pt;}
.ya0{bottom:496.478667pt;}
.y1d{bottom:499.277684pt;}
.y252{bottom:500.410848pt;}
.y1e3{bottom:502.076946pt;}
.y10e{bottom:502.530710pt;}
.y1c0{bottom:502.757061pt;}
.y62{bottom:502.907962pt;}
.y189{bottom:503.584786pt;}
.y125{bottom:505.398699pt;}
.y1fb{bottom:505.399353pt;}
.yb1{bottom:508.351009pt;}
.y251{bottom:510.993142pt;}
.y1c{bottom:512.052319pt;}
.y188{bottom:514.998497pt;}
.y1fa{bottom:516.057307pt;}
.y1e2{bottom:516.060752pt;}
.y1bf{bottom:516.740867pt;}
.y61{bottom:516.892830pt;}
.y124{bottom:518.173333pt;}
.y250{bottom:521.651097pt;}
.yb0{bottom:522.334815pt;}
.y1b{bottom:524.826954pt;}
.y187{bottom:526.413058pt;}
.y1f9{bottom:526.640451pt;}
.y1e1{bottom:529.969108pt;}
.y10d{bottom:530.422872pt;}
.y1be{bottom:530.650286pt;}
.y60{bottom:530.801186pt;}
.y24f{bottom:532.233390pt;}
.yaf{bottom:536.243171pt;}
.y1f8{bottom:537.298405pt;}
.y1a{bottom:537.526033pt;}
.y24e{bottom:542.892195pt;}
.y186{bottom:543.949333pt;}
.y1e0{bottom:543.953977pt;}
.y1bd{bottom:544.634092pt;}
.y5f{bottom:544.784992pt;}
.y1f7{bottom:547.880699pt;}
.y10c{bottom:548.414045pt;}
.yae{bottom:550.228039pt;}
.y19{bottom:550.300668pt;}
.y24d{bottom:553.550149pt;}
.y1df{bottom:557.862332pt;}
.y1f6{bottom:558.538653pt;}
.y1bc{bottom:558.542448pt;}
.y5e{bottom:558.693348pt;}
.y177{bottom:560.730667pt;}
.y185{bottom:561.486699pt;}
.y10b{bottom:562.397851pt;}
.y18{bottom:563.075302pt;}
.y24c{bottom:564.132443pt;}
.y1f5{bottom:569.197458pt;}
.y1de{bottom:571.846139pt;}
.y11{bottom:572.372372pt;}
.y1bb{bottom:572.526254pt;}
.y5d{bottom:572.678217pt;}
.y184{bottom:574.261333pt;}
.y24b{bottom:574.790398pt;}
.y17{bottom:575.774382pt;}
.y10a{bottom:576.306207pt;}
.y1f4{bottom:579.779752pt;}
.y10{bottom:583.786934pt;}
.y24a{bottom:585.373541pt;}
.y1dd{bottom:585.754494pt;}
.yef{bottom:586.208880pt;}
.y1ba{bottom:586.435672pt;}
.y5c{bottom:586.586573pt;}
.y16{bottom:588.549016pt;}
.y109{bottom:590.290013pt;}
.y1f3{bottom:590.437706pt;}
.yf{bottom:595.200645pt;}
.y249{bottom:596.031496pt;}
.yee{bottom:597.699102pt;}
.y1dc{bottom:599.739363pt;}
.y1b9{bottom:600.419478pt;}
.y5b{bottom:600.570379pt;}
.y1f2{bottom:601.020000pt;}
.y15{bottom:601.323651pt;}
.y108{bottom:604.198369pt;}
.y248{bottom:606.612939pt;}
.ye{bottom:606.614356pt;}
.yed{bottom:609.112813pt;}
.y183{bottom:613.341333pt;}
.y1db{bottom:613.647719pt;}
.y14{bottom:614.098286pt;}
.y1b8{bottom:614.327834pt;}
.y5a{bottom:614.478735pt;}
.y247{bottom:617.271744pt;}
.yd{bottom:618.028917pt;}
.y107{bottom:618.183237pt;}
.yec{bottom:620.526524pt;}
.y1f1{bottom:625.514667pt;}
.y13{bottom:626.797365pt;}
.y1da{bottom:627.631525pt;}
.y246{bottom:627.929698pt;}
.y1b7{bottom:628.311640pt;}
.y59{bottom:628.463604pt;}
.yc{bottom:629.442628pt;}
.yeb{bottom:631.941086pt;}
.y106{bottom:632.091593pt;}
.y245{bottom:638.511992pt;}
.y12{bottom:639.572000pt;}
.yb{bottom:640.932000pt;}
.y1d9{bottom:641.539881pt;}
.y1b6{bottom:642.221059pt;}
.y58{bottom:642.447410pt;}
.yea{bottom:643.354797pt;}
.y105{bottom:646.075399pt;}
.y244{bottom:649.169947pt;}
.ye9{bottom:654.769358pt;}
.y1d8{bottom:655.524750pt;}
.y1f0{bottom:656.129415pt;}
.y57{bottom:656.355766pt;}
.y243{bottom:659.753091pt;}
.y104{bottom:659.983755pt;}
.ya{bottom:665.574667pt;}
.ye8{bottom:666.183069pt;}
.y1d7{bottom:669.433106pt;}
.y1b5{bottom:670.113221pt;}
.y56{bottom:670.339572pt;}
.y242{bottom:670.411045pt;}
.y103{bottom:673.968624pt;}
.ye7{bottom:677.596780pt;}
.y241{bottom:681.068999pt;}
.y1ef{bottom:684.021577pt;}
.y55{bottom:684.248990pt;}
.y102{bottom:687.876980pt;}
.ye6{bottom:689.087002pt;}
.y240{bottom:691.651293pt;}
.y1d6{bottom:697.325268pt;}
.y1b4{bottom:698.005383pt;}
.y54{bottom:698.232796pt;}
.ye5{bottom:700.500713pt;}
.y101{bottom:701.860786pt;}
.y23f{bottom:702.310098pt;}
.y9{bottom:709.568000pt;}
.ye4{bottom:711.914424pt;}
.y1ee{bottom:711.914801pt;}
.y53{bottom:712.141152pt;}
.y23e{bottom:712.892392pt;}
.y8{bottom:713.348000pt;}
.y100{bottom:715.769142pt;}
.y7{bottom:720.982667pt;}
.ye3{bottom:723.328986pt;}
.y23d{bottom:723.550346pt;}
.y6{bottom:724.762667pt;}
.y1ed{bottom:725.898607pt;}
.y52{bottom:726.124958pt;}
.yff{bottom:729.754011pt;}
.y23c{bottom:734.133490pt;}
.ye2{bottom:734.742697pt;}
.y1ec{bottom:739.806963pt;}
.y51{bottom:740.033314pt;}
.y4{bottom:742.904000pt;}
.yfe{bottom:743.662366pt;}
.y23b{bottom:744.791444pt;}
.y292{bottom:744.796365pt;}
.ye1{bottom:746.157258pt;}
.y5{bottom:749.177333pt;}
.y1eb{bottom:753.790769pt;}
.y50{bottom:754.018183pt;}
.y23a{bottom:755.449399pt;}
.y291{bottom:755.454319pt;}
.ye0{bottom:757.570969pt;}
.yfd{bottom:757.646172pt;}
.y239{bottom:766.031692pt;}
.y290{bottom:766.036613pt;}
.y4f{bottom:767.926539pt;}
.ydf{bottom:768.984680pt;}
.yfc{bottom:771.554528pt;}
.y3{bottom:776.240829pt;}
.y238{bottom:776.690497pt;}
.y28f{bottom:776.694567pt;}
.yde{bottom:780.474902pt;}
.y1ea{bottom:781.683994pt;}
.y4e{bottom:781.910345pt;}
.yfb{bottom:785.539397pt;}
.y237{bottom:787.272791pt;}
.y28e{bottom:787.277711pt;}
.ydd{bottom:791.888613pt;}
.y4d{bottom:795.818701pt;}
.y236{bottom:797.930745pt;}
.y28d{bottom:797.935665pt;}
.y2{bottom:799.219748pt;}
.yfa{bottom:799.447753pt;}
.ydc{bottom:803.303174pt;}
.y235{bottom:808.588700pt;}
.y28c{bottom:808.593620pt;}
.y4c{bottom:809.803570pt;}
.y1e9{bottom:812.297680pt;}
.yf9{bottom:813.431559pt;}
.ydb{bottom:814.716886pt;}
.y234{bottom:819.171844pt;}
.y28b{bottom:819.175914pt;}
.y1{bottom:822.198667pt;}
.y4b{bottom:823.711925pt;}
.yda{bottom:826.130597pt;}
.yf8{bottom:827.339915pt;}
.y233{bottom:829.829798pt;}
.y28a{bottom:829.834718pt;}
.yd9{bottom:837.545158pt;}
.y4a{bottom:837.695732pt;}
.y1e8{bottom:840.190904pt;}
.y232{bottom:840.412092pt;}
.y289{bottom:840.417012pt;}
.yf7{bottom:841.323721pt;}
.yd8{bottom:848.958869pt;}
.y231{bottom:851.070046pt;}
.y288{bottom:851.074966pt;}
.y49{bottom:851.604087pt;}
.yf6{bottom:855.308590pt;}
.yd7{bottom:860.373430pt;}
.y230{bottom:861.653190pt;}
.y287{bottom:861.658110pt;}
.y48{bottom:865.588956pt;}
.yf5{bottom:869.216946pt;}
.yd6{bottom:871.862802pt;}
.y22f{bottom:872.311145pt;}
.y286{bottom:872.316065pt;}
.y47{bottom:879.497312pt;}
.y22e{bottom:882.969099pt;}
.y285{bottom:882.974019pt;}
.yf4{bottom:883.200752pt;}
.yd5{bottom:883.276513pt;}
.y39{bottom:892.194667pt;}
.y46{bottom:893.481118pt;}
.y22d{bottom:893.552243pt;}
.y284{bottom:893.556313pt;}
.yd4{bottom:894.691074pt;}
.yf3{bottom:897.109108pt;}
.y22c{bottom:904.210197pt;}
.y283{bottom:904.215118pt;}
.yd3{bottom:906.104786pt;}
.y45{bottom:907.389474pt;}
.yf2{bottom:911.093976pt;}
.y22b{bottom:914.792491pt;}
.y282{bottom:914.797411pt;}
.yd2{bottom:917.518497pt;}
.y44{bottom:921.374343pt;}
.y22a{bottom:925.450445pt;}
.y281{bottom:925.455366pt;}
.yd1{bottom:928.933058pt;}
.y38{bottom:929.310667pt;}
.y43{bottom:935.282699pt;}
.y229{bottom:936.109250pt;}
.y280{bottom:936.113320pt;}
.yf1{bottom:938.986138pt;}
.yd0{bottom:946.469333pt;}
.y228{bottom:946.691544pt;}
.y27f{bottom:946.696464pt;}
.y42{bottom:949.266505pt;}
.y227{bottom:957.349498pt;}
.y27e{bottom:957.354418pt;}
.y41{bottom:963.174861pt;}
.ycf{bottom:964.006699pt;}
.y37{bottom:966.500000pt;}
.y226{bottom:967.931792pt;}
.y27d{bottom:967.936712pt;}
.yce{bottom:976.781333pt;}
.y40{bottom:977.158667pt;}
.y225{bottom:978.590597pt;}
.y27c{bottom:978.594667pt;}
.y3c{bottom:1002.226640pt;}
.y9d{bottom:1003.226640pt;}
.y14b{bottom:1003.228377pt;}
.y17f{bottom:1003.229254pt;}
.y27b{bottom:1003.232175pt;}
.y293{bottom:1003.236245pt;}
.yf0{bottom:1003.236946pt;}
.y9c{bottom:1003.237333pt;}
.h5{height:20.907656pt;}
.hf{height:23.522344pt;}
.he{height:24.851001pt;}
.h6{height:29.887031pt;}
.hc{height:29.887500pt;}
.hd{height:31.064661pt;}
.hb{height:31.200285pt;}
.h10{height:32.202546pt;}
.h7{height:32.689219pt;}
.h4{height:32.997656pt;}
.h8{height:33.623437pt;}
.h9{height:37.359844pt;}
.h3{height:49.501875pt;}
.h2{height:63.044531pt;}
.ha{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.x28{left:51.401467pt;}
.x9{left:55.785733pt;}
.xe{left:56.844000pt;}
.x20{left:58.129067pt;}
.xb{left:66.065235pt;}
.x34{left:69.467600pt;}
.x33{left:73.096000pt;}
.x2b{left:117.770000pt;}
.x41{left:118.977954pt;}
.x2c{left:127.822754pt;}
.x32{left:134.398433pt;}
.x42{left:141.730565pt;}
.x27{left:142.640000pt;}
.x11{left:152.994667pt;}
.x2f{left:170.984197pt;}
.x2{left:177.940000pt;}
.x22{left:191.017333pt;}
.x3{left:192.377333pt;}
.x23{left:195.250667pt;}
.x10{left:201.977333pt;}
.x2d{left:208.778832pt;}
.x2a{left:227.301333pt;}
.x19{left:241.965333pt;}
.x18{left:244.006667pt;}
.x21{left:254.812830pt;}
.x24{left:257.914667pt;}
.x12{left:258.893333pt;}
.x30{left:260.482280pt;}
.xa{left:269.329333pt;}
.x26{left:282.633333pt;}
.x2e{left:298.276915pt;}
.xf{left:304.554667pt;}
.x4{left:307.502667pt;}
.x5{left:313.852000pt;}
.x31{left:354.213961pt;}
.x29{left:392.559973pt;}
.x17{left:394.946693pt;}
.xc{left:408.790162pt;}
.x15{left:410.905957pt;}
.x25{left:414.610460pt;}
.x6{left:415.672000pt;}
.x1d{left:416.806667pt;}
.x3e{left:419.528000pt;}
.x7{left:421.493333pt;}
.xd{left:424.738863pt;}
.x45{left:456.789288pt;}
.x46{left:478.559161pt;}
.x1e{left:488.238850pt;}
.x3c{left:494.062388pt;}
.x14{left:495.189234pt;}
.x3f{left:499.049333pt;}
.x8{left:505.020000pt;}
.x40{left:506.229333pt;}
.x16{left:510.600013pt;}
.x1c{left:528.605333pt;}
.x37{left:530.720196pt;}
.x13{left:541.946653pt;}
.x35{left:568.590492pt;}
.x44{left:576.447078pt;}
.x3d{left:590.134667pt;}
.x3a{left:596.636000pt;}
.x43{left:615.981059pt;}
.x38{left:621.352340pt;}
.x1f{left:627.020940pt;}
.x36{left:663.228401pt;}
.x3b{left:691.350667pt;}
.x1a{left:703.824000pt;}
.x1b{left:709.190667pt;}
.x39{left:712.815900pt;}
}




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