
    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_181458977a811670e351be3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_fc4af9a7e8555b831224a09e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918945;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_dd35a9dbdaaec40e1f02aba8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c6a225a33da82e8bdbb8d2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.788000;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_cd7262d860dd0898795ee160.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_ed92337cc835a3fcf61646c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_b172cde982d92dfd16f5deaa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962000;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_b2df2f76115f958ff3d835dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905762;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;}
.m3{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m2{transform:matrix(0.248083,0.030900,-0.030900,0.248083,0,0);-ms-transform:matrix(0.248083,0.030900,-0.030900,0.248083,0,0);-webkit-transform:matrix(0.248083,0.030900,-0.030900,0.248083,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1a{vertical-align:-81.642000px;}
.v1b{vertical-align:-66.498000px;}
.vf{vertical-align:-63.612000px;}
.v8{vertical-align:-51.024000px;}
.v12{vertical-align:-40.308000px;}
.v13{vertical-align:-38.436000px;}
.v1e{vertical-align:-36.054000px;}
.v2{vertical-align:-34.692000px;}
.v10{vertical-align:-33.162000px;}
.v6{vertical-align:-31.806000px;}
.v5{vertical-align:-30.612000px;}
.v4{vertical-align:-29.424000px;}
.v24{vertical-align:-25.170000px;}
.v9{vertical-align:-22.284000px;}
.v19{vertical-align:-19.218000px;}
.v15{vertical-align:-8.502000px;}
.v14{vertical-align:-1.872000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:1.194000px;}
.v3{vertical-align:3.060000px;}
.v18{vertical-align:4.080000px;}
.v22{vertical-align:29.424000px;}
.vc{vertical-align:33.504000px;}
.v1c{vertical-align:34.866000px;}
.v1d{vertical-align:36.054000px;}
.v23{vertical-align:37.758000px;}
.vd{vertical-align:39.462000px;}
.va{vertical-align:44.898000px;}
.vb{vertical-align:51.024000px;}
.v26{vertical-align:55.788000px;}
.v27{vertical-align:79.938000px;}
.v7{vertical-align:81.642000px;}
.v17{vertical-align:94.224000px;}
.v11{vertical-align:99.156000px;}
.v20{vertical-align:101.538000px;}
.v21{vertical-align:103.920000px;}
.v1{vertical-align:107.490000px;}
.v25{vertical-align:108.684000px;}
.ve{vertical-align:113.442000px;}
.v1f{vertical-align:118.206000px;}
.ls1{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.033630px;}
.ls1c{letter-spacing:0.034260px;}
.ls14{letter-spacing:0.042000px;}
.lsb{letter-spacing:0.045750px;}
.ls1d{letter-spacing:0.060000px;}
.ls23{letter-spacing:0.100386px;}
.ls4{letter-spacing:0.131982px;}
.ls12{letter-spacing:0.162699px;}
.ls25{letter-spacing:0.179940px;}
.ls21{letter-spacing:0.195480px;}
.ls2d{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.286530px;}
.ls0{letter-spacing:0.287784px;}
.ls27{letter-spacing:0.336840px;}
.ls1a{letter-spacing:0.354714px;}
.ls20{letter-spacing:0.380772px;}
.ls31{letter-spacing:0.390072px;}
.ls1f{letter-spacing:0.456492px;}
.ls1e{letter-spacing:0.541362px;}
.ls22{letter-spacing:0.566790px;}
.ls2b{letter-spacing:0.743178px;}
.ls33{letter-spacing:0.749178px;}
.lsc{letter-spacing:16.128000px;}
.ls29{letter-spacing:22.318176px;}
.ls30{letter-spacing:24.162714px;}
.ls1b{letter-spacing:24.622890px;}
.ls18{letter-spacing:24.846714px;}
.ls10{letter-spacing:48.699492px;}
.ls11{letter-spacing:50.596800px;}
.ls2e{letter-spacing:54.743748px;}
.ls3{letter-spacing:54.749748px;}
.ls9{letter-spacing:54.911748px;}
.ls2c{letter-spacing:54.917748px;}
.ls2{letter-spacing:55.601748px;}
.lsf{letter-spacing:57.039996px;}
.ls15{letter-spacing:57.045996px;}
.lse{letter-spacing:57.213996px;}
.ls2a{letter-spacing:58.931304px;}
.ls8{letter-spacing:58.937304px;}
.ls17{letter-spacing:59.099304px;}
.ls7{letter-spacing:59.105304px;}
.ls19{letter-spacing:59.789304px;}
.ls6{letter-spacing:61.366944px;}
.ls24{letter-spacing:61.528944px;}
.lsa{letter-spacing:61.534944px;}
.ls32{letter-spacing:63.258252px;}
.ls5{letter-spacing:63.420252px;}
.ls16{letter-spacing:63.426252px;}
.ls13{letter-spacing:64.110252px;}
.ls2f{letter-spacing:68.431200px;}
.ls26{letter-spacing:1152.612810px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 rgb(201,33,30),0 0.015em rgb(201,33,30),0.015em 0 rgb(201,33,30),0 -0.015em  rgb(201,33,30);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(201,33,30);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f{word-spacing:-60.048000px;}
.ws18{word-spacing:-46.796490px;}
.ws19{word-spacing:-35.089470px;}
.ws2e{word-spacing:-32.767020px;}
.ws15{word-spacing:-31.606380px;}
.wsc{word-spacing:-28.090530px;}
.wsa{word-spacing:-27.128790px;}
.ws8{word-spacing:-26.667984px;}
.ws4{word-spacing:-25.868472px;}
.ws5{word-spacing:-25.736490px;}
.ws1c{word-spacing:-24.575850px;}
.ws7{word-spacing:-23.415210px;}
.ws1b{word-spacing:-22.220640px;}
.ws0{word-spacing:-21.060000px;}
.ws9{word-spacing:-18.704790px;}
.wsb{word-spacing:-17.544150px;}
.ws3{word-spacing:-16.619526px;}
.ws1{word-spacing:-16.383510px;}
.ws12{word-spacing:-14.991210px;}
.ws6{word-spacing:-14.029470px;}
.ws1a{word-spacing:-12.867660px;}
.ws28{word-spacing:-12.171510px;}
.ws1e{word-spacing:-11.707020px;}
.ws17{word-spacing:-0.239982px;}
.ws2d{word-spacing:-0.150012px;}
.ws2c{word-spacing:-0.131982px;}
.ws1d{word-spacing:-0.126030px;}
.ws2b{word-spacing:-0.113952px;}
.ws27{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.069564px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:52.274118px;}
.wsf{word-spacing:98.433726px;}
.ws14{word-spacing:104.407794px;}
.ws10{word-spacing:149.961348px;}
.ws24{word-spacing:279.861030px;}
.wsd{word-spacing:299.048382px;}
.ws2f{word-spacing:366.828000px;}
.ws20{word-spacing:500.496000px;}
.ws11{word-spacing:561.685464px;}
.ws13{word-spacing:562.603794px;}
.ws21{word-spacing:622.272000px;}
.ws23{word-spacing:689.958000px;}
.ws25{word-spacing:782.776098px;}
.ws22{word-spacing:798.474000px;}
.ws26{word-spacing:1563.951030px;}
.ws30{word-spacing:2762.917212px;}
.ws29{word-spacing:3256.775766px;}
.ws2a{word-spacing:3520.742670px;}
._4f{margin-left:-2651.682738px;}
._42{margin-left:-1376.911050px;}
._38{margin-left:-1170.853524px;}
._28{margin-left:-477.240918px;}
._21{margin-left:-153.258408px;}
._3d{margin-left:-135.464022px;}
._2e{margin-left:-130.193850px;}
._2c{margin-left:-124.361256px;}
._3a{margin-left:-116.911440px;}
._47{margin-left:-111.931254px;}
._1a{margin-left:-11.905722px;}
._11{margin-left:-10.079244px;}
._8{margin-left:-8.140428px;}
._24{margin-left:-7.054158px;}
._c{margin-left:-5.759568px;}
._2{margin-left:-4.028976px;}
._6{margin-left:-2.879784px;}
._3{margin-left:-1.223082px;}
._0{width:1.510866px;}
._5{width:2.805894px;}
._f{width:4.241274px;}
._13{width:5.751954px;}
._43{width:6.912000px;}
._7{width:7.919406px;}
._37{width:19.724046px;}
._41{width:60.288552px;}
._27{width:90.457254px;}
._39{width:94.659984px;}
._2b{width:101.225754px;}
._35{width:105.249426px;}
._3c{width:110.377830px;}
._20{width:125.418240px;}
._15{width:169.568934px;}
._18{width:203.078934px;}
._4{width:411.028470px;}
._29{width:445.079838px;}
._14{width:460.601202px;}
._26{width:504.349260px;}
._1{width:577.223244px;}
._34{width:741.363924px;}
._25{width:831.375348px;}
._36{width:1108.130094px;}
._4b{width:1118.480340px;}
._a{width:1237.378128px;}
._1f{width:1272.202926px;}
._31{width:1279.250394px;}
._1d{width:1300.531908px;}
._50{width:1302.140340px;}
._1e{width:1303.216686px;}
._4d{width:1500.291504px;}
._10{width:1518.835734px;}
._3f{width:1528.618866px;}
._1c{width:1531.171398px;}
._2d{width:1623.678336px;}
._2f{width:1626.744330px;}
._4e{width:1823.616660px;}
._32{width:1964.565096px;}
._48{width:1994.103306px;}
._33{width:1998.755226px;}
._23{width:2037.773064px;}
._3b{width:2157.230538px;}
._e{width:2163.958068px;}
._40{width:2198.501082px;}
._2a{width:2265.073278px;}
._1b{width:2316.064230px;}
._22{width:2497.085154px;}
._17{width:2613.881892px;}
._d{width:2662.806756px;}
._19{width:2712.251340px;}
._4c{width:2776.167942px;}
._b{width:2846.005686px;}
._16{width:2874.959136px;}
._4a{width:2907.031170px;}
._12{width:2979.374478px;}
._3e{width:3029.092446px;}
._30{width:3196.683402px;}
._49{width:3250.347696px;}
._46{width:3324.284592px;}
._45{width:3386.196096px;}
._44{width:3470.898096px;}
._9{width:3655.469370px;}
.fce{color:rgb(255,99,71);}
.fc0{color:rgb(169,169,169);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fcb{color:rgb(255,20,147);}
.fc4{color:rgb(201,33,30);}
.fc6{color:rgb(220,20,60);}
.fc7{color:rgb(34,139,34);}
.fc5{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fca{color:rgb(255,0,0);}
.fcd{color:rgb(46,139,87);}
.fc3{color:rgb(76,166,255);}
.fc8{color:rgb(255,127,80);}
.fcc{color:rgb(255,140,0);}
.fs25{font-size:43.200000px;}
.fse{font-size:47.964000px;}
.fs8{font-size:48.642000px;}
.fsa{font-size:51.024000px;}
.fs24{font-size:52.212000px;}
.fsc{font-size:54.084000px;}
.fs17{font-size:56.466000px;}
.fs7{font-size:59.358000px;}
.fs1c{font-size:60.036000px;}
.fs20{font-size:62.418000px;}
.fs1b{font-size:64.800000px;}
.fs16{font-size:65.988000px;}
.fs19{font-size:67.182000px;}
.fs14{font-size:69.564000px;}
.fs0{font-size:71.946000px;}
.fs12{font-size:76.878000px;}
.fs5{font-size:84.018000px;}
.fsf{font-size:89.970000px;}
.fs9{font-size:95.922000px;}
.fs4{font-size:108.000000px;}
.fsb{font-size:113.952000px;}
.fs2{font-size:120.078000px;}
.fs1e{font-size:124.313893px;}
.fsd{font-size:126.030000px;}
.fs6{font-size:131.982000px;}
.fs11{font-size:137.934000px;}
.fs10{font-size:139.122000px;}
.fs3{font-size:144.054000px;}
.fs1a{font-size:150.012000px;}
.fs27{font-size:155.964000px;}
.fs13{font-size:162.084000px;}
.fs1f{font-size:168.036000px;}
.fs15{font-size:179.946000px;}
.fs1d{font-size:192.018000px;}
.fs18{font-size:203.922000px;}
.fs22{font-size:210.048000px;}
.fs23{font-size:216.000000px;}
.fs26{font-size:228.078000px;}
.fs1{font-size:239.982000px;}
.fs21{font-size:252.054000px;}
.y3{bottom:-11.395500px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.042000px;}
.y1{bottom:8.079000px;}
.y2{bottom:8.716500px;}
.y10b{bottom:39.118500px;}
.y62{bottom:42.562500px;}
.y15c{bottom:43.455000px;}
.ybb{bottom:44.944500px;}
.y29{bottom:47.665500px;}
.ycb{bottom:48.090000px;}
.y86{bottom:49.749000px;}
.y6d{bottom:50.344500px;}
.y1c{bottom:50.514000px;}
.y3b{bottom:54.723000px;}
.ydc{bottom:55.318500px;}
.yf2{bottom:55.446000px;}
.y9d{bottom:61.144500px;}
.y140{bottom:61.738500px;}
.yba{bottom:62.971500px;}
.y108{bottom:63.397500px;}
.y92{bottom:63.993000px;}
.y15b{bottom:69.393000px;}
.yc{bottom:71.944500px;}
.y1a4{bottom:74.367000px;}
.yca{bottom:74.962500px;}
.y167{bottom:75.090000px;}
.y10a{bottom:79.470000px;}
.y12d{bottom:79.597500px;}
.ydb{bottom:80.661000px;}
.y61{bottom:82.914000px;}
.y160{bottom:83.637000px;}
.y44{bottom:84.997500px;}
.y48{bottom:86.188500px;}
.y85{bottom:86.826000px;}
.y28{bottom:87.123000px;}
.y1b{bottom:87.718500px;}
.y3a{bottom:88.611000px;}
.y13{bottom:88.909500px;}
.yf1{bottom:89.377500px;}
.y13f{bottom:95.670000px;}
.y107{bottom:97.327500px;}
.y91{bottom:97.923000px;}
.y19c{bottom:98.221500px;}
.y9c{bottom:98.349000px;}
.yc9{bottom:101.793000px;}
.y178{bottom:103.153500px;}
.y18d{bottom:103.918500px;}
.yb9{bottom:104.938500px;}
.yda{bottom:106.171500px;}
.y15a{bottom:111.105000px;}
.y43{bottom:111.870000px;}
.y166{bottom:112.167000px;}
.y12c{bottom:113.527500px;}
.y5d{bottom:114.718500px;}
.y15f{bottom:117.397500px;}
.y158{bottom:117.567000px;}
.y1a3{bottom:121.309500px;}
.y1a{bottom:124.753500px;}
.y12{bottom:125.944500px;}
.y19b{bottom:128.494500px;}
.y13e{bottom:129.388500px;}
.y58{bottom:130.153500px;}
.y39{bottom:130.450500px;}
.y106{bottom:131.046000px;}
.yd9{bottom:131.514000px;}
.y90{bottom:131.641500px;}
.y177{bottom:137.041500px;}
.y8e{bottom:142.611000px;}
.y16{bottom:144.694500px;}
.y73{bottom:145.162500px;}
.yb{bottom:145.588500px;}
.y18c{bottom:145.927500px;}
.yb8{bottom:146.821500px;}
.y137{bottom:149.371500px;}
.y27{bottom:155.367000px;}
.yc8{bottom:155.494500px;}
.y4b{bottom:155.962500px;}
.yd8{bottom:156.855000px;}
.y165{bottom:158.046000px;}
.y79{bottom:158.514000px;}
.y19{bottom:161.788500px;}
.y11{bottom:163.021500px;}
.y60{bottom:163.446000px;}
.yf0{bottom:165.699000px;}
.y19a{bottom:165.997500px;}
.y1a2{bottom:168.250500px;}
.ya7{bottom:169.738500px;}
.y176{bottom:170.971500px;}
.y115{bottom:171.099000px;}
.y9b{bottom:172.461000px;}
.y6c{bottom:173.949000px;}
.y38{bottom:176.797500px;}
.y14a{bottom:177.988500px;}
.y136{bottom:179.646000px;}
.y12b{bottom:181.177500px;}
.yd7{bottom:182.197500px;}
.yc7{bottom:182.367000px;}
.y26{bottom:185.641500px;}
.ya{bottom:185.811000px;}
.y18b{bottom:187.767000px;}
.y8d{bottom:188.193000px;}
.yb7{bottom:188.788500px;}
.y5c{bottom:195.421500px;}
.y4c{bottom:197.206500px;}
.y78{bottom:198.694500px;}
.y18{bottom:198.865500px;}
.y10{bottom:200.055000px;}
.yef{bottom:200.949000px;}
.ya6{bottom:201.544500px;}
.y84{bottom:201.841500px;}
.y175{bottom:204.690000px;}
.y114{bottom:206.349000px;}
.yd6{bottom:207.538500px;}
.y9a{bottom:209.494500px;}
.y149{bottom:209.793000px;}
.y135{bottom:209.962500px;}
.y181{bottom:211.153500px;}
.y184{bottom:211.621500px;}
.y12a{bottom:215.065500px;}
.y1a1{bottom:215.193000px;}
.ye0{bottom:218.041500px;}
.y25{bottom:218.509500px;}
.y37{bottom:218.637000px;}
.y83{bottom:218.977500px;}
.y199{bottom:219.274500px;}
.y72{bottom:225.694500px;}
.y157{bottom:228.841500px;}
.y18a{bottom:229.777500px;}
.y80{bottom:233.050500px;}
.ya5{bottom:233.518500px;}
.y8c{bottom:233.646000px;}
.y118{bottom:234.709500px;}
.y5b{bottom:235.771500px;}
.y17{bottom:235.899000px;}
.yee{bottom:236.197500px;}
.yf{bottom:237.090000px;}
.yc6{bottom:237.388500px;}
.yb0{bottom:237.558000px;}
.ye1{bottom:238.450500px;}
.y134{bottom:240.237000px;}
.y180{bottom:241.470000px;}
.y148{bottom:241.597500px;}
.y5f{bottom:244.149000px;}
.y129{bottom:248.826000px;}
.y198{bottom:249.549000px;}
.y36{bottom:252.567000px;}
.yd5{bottom:258.393000px;}
.y103{bottom:261.114000px;}
.ya4{bottom:265.323000px;}
.y9{bottom:266.514000px;}
.y133{bottom:270.553500px;}
.y71{bottom:271.021500px;}
.y189{bottom:271.617000px;}
.y174{bottom:272.338500px;}
.yc5{bottom:272.637000px;}
.yaf{bottom:272.977500px;}
.y10d{bottom:273.105000px;}
.y46{bottom:273.997500px;}
.y156{bottom:274.593000px;}
.y7a{bottom:276.846000px;}
.y113{bottom:277.017000px;}
.y77{bottom:278.505000px;}
.y8b{bottom:279.270000px;}
.y197{bottom:279.865500px;}
.y128{bottom:282.714000px;}
.y99{bottom:283.777500px;}
.y35{bottom:286.327500px;}
.yf7{bottom:286.753500px;}
.y82{bottom:286.923000px;}
.y24{bottom:290.070000px;}
.y4e{bottom:291.090000px;}
.y102{bottom:295.002000px;}
.yb6{bottom:295.470000px;}
.y132{bottom:300.870000px;}
.yae{bottom:300.997500px;}
.y17f{bottom:301.890000px;}
.ya3{bottom:304.738500px;}
.y6b{bottom:305.377500px;}
.y173{bottom:306.270000px;}
.y8{bottom:306.694500px;}
.yc4{bottom:308.055000px;}
.y1a0{bottom:309.246000px;}
.y93{bottom:309.714000px;}
.y196{bottom:310.138500px;}
.y155{bottom:311.670000px;}
.y34{bottom:312.265500px;}
.y57{bottom:314.944500px;}
.y127{bottom:316.602000px;}
.yf6{bottom:317.070000px;}
.y4f{bottom:317.793000px;}
.y4d{bottom:317.962500px;}
.y76{bottom:318.855000px;}
.y23{bottom:320.344500px;}
.y8a{bottom:324.850500px;}
.y138{bottom:326.211000px;}
.y68{bottom:326.977500px;}
.ye2{bottom:327.997500px;}
.y101{bottom:328.762500px;}
.y7f{bottom:330.846000px;}
.y17e{bottom:332.206500px;}
.yad{bottom:336.246000px;}
.y147{bottom:337.138500px;}
.y81{bottom:337.905000px;}
.y6a{bottom:339.094500px;}
.y154{bottom:339.988500px;}
.y172{bottom:340.158000px;}
.ye9{bottom:344.070000px;}
.y33{bottom:346.153500px;}
.yb5{bottom:347.217000px;}
.yf5{bottom:347.344500px;}
.y112{bottom:347.514000px;}
.y195{bottom:347.641500px;}
.y22{bottom:350.661000px;}
.yc3{bottom:351.553500px;}
.yd4{bottom:352.446000px;}
.y19f{bottom:356.188500px;}
.y188{bottom:356.826000px;}
.y98{bottom:357.846000px;}
.y47{bottom:358.909500px;}
.y64{bottom:360.397500px;}
.ya2{bottom:360.865500px;}
.y17d{bottom:362.523000px;}
.y100{bottom:362.650500px;}
.y10c{bottom:366.690000px;}
.y89{bottom:370.305000px;}
.y1a5{bottom:373.026000px;}
.ydf{bottom:373.323000px;}
.y171{bottom:373.918500px;}
.ye8{bottom:375.237000px;}
.yf4{bottom:377.490000px;}
.yd3{bottom:377.788500px;}
.yc2{bottom:378.553500px;}
.yac{bottom:379.744500px;}
.y21{bottom:380.977500px;}
.y111{bottom:382.890000px;}
.y126{bottom:384.250500px;}
.y153{bottom:385.909500px;}
.y55{bottom:387.270000px;}
.y32{bottom:387.865500px;}
.y183{bottom:392.670000px;}
.y17c{bottom:392.797500px;}
.ybd{bottom:394.626000px;}
.y97{bottom:394.923000px;}
.y187{bottom:398.665500px;}
.ya1{bottom:400.323000px;}
.y194{bottom:400.918500px;}
.y19e{bottom:403.171500px;}
.yff{bottom:404.490000px;}
.y170{bottom:407.806500px;}
.yfc{bottom:408.274500px;}
.y146{bottom:408.571500px;}
.y54{bottom:412.738500px;}
.y20{bottom:413.802000px;}
.yc1{bottom:413.971500px;}
.y16d{bottom:414.099000px;}
.yab{bottom:415.162500px;}
.y88{bottom:415.927500px;}
.y110{bottom:418.138500px;}
.yd2{bottom:420.988500px;}
.y7e{bottom:421.158000px;}
.y31{bottom:421.753500px;}
.y152{bottom:422.944500px;}
.y17b{bottom:423.114000px;}
.y164{bottom:427.918500px;}
.y5e{bottom:428.514000px;}
.y67{bottom:428.938500px;}
.y1ae{bottom:430.171500px;}
.yfe{bottom:430.299000px;}
.y193{bottom:431.193000px;}
.y74{bottom:431.490000px;}
.y96{bottom:431.958000px;}
.y7{bottom:433.021500px;}
.y123{bottom:433.744500px;}
.y6e{bottom:435.571500px;}
.y53{bottom:438.123000px;}
.yfd{bottom:438.250500px;}
.y42{bottom:439.314000px;}
.y145{bottom:440.377500px;}
.y186{bottom:440.674500px;}
.y70{bottom:440.802000px;}
.y11c{bottom:441.270000px;}
.y13d{bottom:442.162500px;}
.y16c{bottom:445.138500px;}
.yd1{bottom:446.371500px;}
.y1f{bottom:448.327500px;}
.yc0{bottom:449.221500px;}
.yaa{bottom:450.411000px;}
.y117{bottom:452.070000px;}
.y182{bottom:453.261000px;}
.y10f{bottom:453.388500px;}
.y30{bottom:455.641500px;}
.y7d{bottom:458.193000px;}
.yd{bottom:459.553500px;}
.y151{bottom:460.021500px;}
.y6f{bottom:461.041500px;}
.y87{bottom:461.338500px;}
.y192{bottom:461.509500px;}
.y63{bottom:462.571500px;}
.yb4{bottom:462.997500px;}
.y52{bottom:463.465500px;}
.ya0{bottom:463.890000px;}
.y1ad{bottom:464.527500px;}
.y131{bottom:464.953500px;}
.ye7{bottom:466.017000px;}
.yed{bottom:466.144500px;}
.yd0{bottom:471.841500px;}
.y144{bottom:472.138500px;}
.yfb{bottom:473.202000px;}
.y16b{bottom:473.499000px;}
.y163{bottom:473.670000px;}
.y16f{bottom:475.455000px;}
.y122{bottom:476.050500px;}
.y41{bottom:476.518500px;}
.y13c{bottom:477.411000px;}
.y11f{bottom:478.177500px;}
.y1e{bottom:478.602000px;}
.y2f{bottom:481.450500px;}
.y14e{bottom:481.749000px;}
.y11b{bottom:482.344500px;}
.ybc{bottom:482.514000px;}
.y17a{bottom:483.577500px;}
.ya9{bottom:485.661000px;}
.y125{bottom:485.788500px;}
.y15e{bottom:488.338500px;}
.y10e{bottom:488.637000px;}
.y75{bottom:491.061000px;}
.y191{bottom:491.826000px;}
.ybf{bottom:492.718500px;}
.y7c{bottom:495.397500px;}
.ye6{bottom:496.290000px;}
.y150{bottom:497.055000px;}
.ycf{bottom:497.226000px;}
.yec{bottom:498.118500px;}
.y1ac{bottom:498.246000px;}
.y130{bottom:498.841500px;}
.y162{bottom:501.988500px;}
.y121{bottom:502.455000px;}
.yfa{bottom:503.518500px;}
.y143{bottom:503.944500px;}
.yb3{bottom:505.006500px;}
.y116{bottom:506.070000px;}
.y95{bottom:506.197500px;}
.y66{bottom:508.153500px;}
.y16e{bottom:509.344500px;}
.y1d{bottom:511.470000px;}
.y13b{bottom:512.661000px;}
.y40{bottom:513.553500px;}
.y179{bottom:513.850500px;}
.y14d{bottom:514.021500px;}
.y2e{bottom:515.338500px;}
.y105{bottom:516.997500px;}
.y4a{bottom:518.061000px;}
.y16a{bottom:519.250500px;}
.y124{bottom:519.718500px;}
.y1a7{bottom:519.846000px;}
.ya8{bottom:521.037000px;}
.y190{bottom:521.971500px;}
.yce{bottom:522.567000px;}
.y5a{bottom:522.865500px;}
.y185{bottom:524.523000px;}
.yf9{bottom:526.309500px;}
.ye5{bottom:526.606500px;}
.y51{bottom:527.797500px;}
.y8f{bottom:529.327500px;}
.yeb{bottom:529.923000px;}
.y1ab{bottom:532.177500px;}
.y7b{bottom:532.474500px;}
.y6{bottom:532.602000px;}
.y14f{bottom:534.090000px;}
.y142{bottom:535.918500px;}
.y1a6{bottom:536.046000px;}
.ycc{bottom:536.514000px;}
.y9f{bottom:541.914000px;}
.y109{bottom:542.806500px;}
.y94{bottom:543.274500px;}
.y11a{bottom:543.870000px;}
.y120{bottom:544.167000px;}
.y69{bottom:545.527500px;}
.y14c{bottom:545.826000px;}
.y169{bottom:546.718500px;}
.y161{bottom:547.738500px;}
.ycd{bottom:547.909500px;}
.y13a{bottom:548.037000px;}
.y65{bottom:548.505000px;}
.y18e{bottom:548.674500px;}
.y11e{bottom:548.802000px;}
.y49{bottom:549.865500px;}
.yf3{bottom:549.993000px;}
.y3f{bottom:550.588500px;}
.y141{bottom:552.417000px;}
.y15d{bottom:554.670000px;}
.ybe{bottom:555.094500px;}
.y159{bottom:555.393000px;}
.y3e{bottom:556.327500px;}
.y1a9{bottom:556.626000px;}
.yb2{bottom:556.923000px;}
.y2d{bottom:557.221500px;}
.y50{bottom:557.944500px;}
.y104{bottom:558.837000px;}
.y14b{bottom:559.305000px;}
.y18f{bottom:559.602000px;}
.y1a8{bottom:563.514000px;}
.yf8{bottom:563.938500px;}
.ye4{bottom:564.237000px;}
.y1aa{bottom:565.894500px;}
.ydd{bottom:566.193000px;}
.yde{bottom:566.958000px;}
.y2c{bottom:571.294500px;}
.y12e{bottom:577.162500px;}
.y2b{bottom:598.167000px;}
.y15{bottom:598.762500px;}
.y3d{bottom:599.527500px;}
.y59{bottom:601.738500px;}
.y5{bottom:604.588500px;}
.y11d{bottom:605.226000px;}
.yea{bottom:606.118500px;}
.y9e{bottom:606.417000px;}
.y19d{bottom:607.606500px;}
.ye{bottom:607.905000px;}
.y56{bottom:608.499000px;}
.y139{bottom:608.797500px;}
.y12f{bottom:609.393000px;}
.yb1{bottom:609.988500px;}
.ye3{bottom:611.221500px;}
.y168{bottom:611.518500px;}
.y1af{bottom:614.793000px;}
.y45{bottom:616.323000px;}
.y119{bottom:617.938500px;}
.y14{bottom:619.002000px;}
.y2a{bottom:624.997500px;}
.y3c{bottom:634.777500px;}
.h1c{height:34.755164px;}
.h37{height:47.128260px;}
.h49{height:50.128770px;}
.h3e{height:54.678000px;}
.h10{height:55.356000px;}
.h11{height:55.524000px;}
.h3c{height:55.530000px;}
.he{height:55.830096px;}
.h2{height:56.477610px;}
.h1e{height:58.834320px;}
.h12{height:58.840320px;}
.h2a{height:59.008320px;}
.h1d{height:59.344320px;}
.h29{height:59.518320px;}
.h47{height:60.812580px;}
.h15{height:62.455230px;}
.h16{height:62.461230px;}
.h17{height:62.623230px;}
.h4d{height:64.159230px;}
.h44{height:64.327230px;}
.h31{height:65.255550px;}
.h30{height:65.261550px;}
.h2d{height:65.429550px;}
.h2c{height:65.771550px;}
.h2e{height:65.933550px;}
.h2f{height:65.939550px;}
.h8{height:65.954130px;}
.h19{height:68.229870px;}
.hb{height:68.739870px;}
.hc{height:68.907870px;}
.ha{height:68.913870px;}
.h1f{height:70.626450px;}
.h14{height:74.435472px;}
.h36{height:74.646390px;}
.h1a{height:75.298770px;}
.h33{height:77.451420px;}
.h35{height:78.129420px;}
.h38{height:78.257812px;}
.h39{height:80.129812px;}
.hd{height:81.276390px;}
.h7{height:84.780000px;}
.h42{height:85.052130px;}
.h3a{height:85.369329px;}
.h13{height:89.452320px;}
.h25{height:89.981610px;}
.h2b{height:90.752580px;}
.h5{height:94.261230px;}
.h3f{height:97.586406px;}
.h1b{height:97.955391px;}
.h18{height:98.933550px;}
.hf{height:103.605870px;}
.h23{height:104.737230px;}
.h22{height:105.247230px;}
.h24{height:107.501610px;}
.h21{height:108.278190px;}
.h6{height:113.082390px;}
.h34{height:117.759420px;}
.h28{height:124.773870px;}
.h26{height:127.235940px;}
.h40{height:131.908260px;}
.h4c{height:140.568000px;}
.h41{height:147.948390px;}
.h3d{height:150.734130px;}
.h4a{height:164.887680px;}
.h48{height:169.560000px;}
.h4e{height:177.893391px;}
.h4{height:188.385870px;}
.h20{height:190.852770px;}
.h3b{height:192.179391px;}
.h32{height:197.111391px;}
.h45{height:199.493391px;}
.h46{height:201.875391px;}
.h9{height:205.445391px;}
.h4b{height:206.639391px;}
.h27{height:211.397391px;}
.h43{height:216.161391px;}
.h3{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.w3{width:1190.125500px;}
.w2{width:1190.167500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x0{left:0.000000px;}
.x5c{left:6.463500px;}
.x2{left:10.630500px;}
.xd{left:12.160500px;}
.x63{left:14.116500px;}
.x1c{left:15.307500px;}
.x19{left:17.092500px;}
.x2e{left:19.219500px;}
.x8{left:20.536500px;}
.x3e{left:25.341000px;}
.x57{left:26.404500px;}
.x4{left:29.083500px;}
.x28{left:30.316500px;}
.x46{left:31.635000px;}
.x5d{left:34.951500px;}
.x3f{left:36.141000px;}
.x5{left:37.630500px;}
.x55{left:39.160500px;}
.x35{left:41.839500px;}
.x62{left:45.156000px;}
.x12{left:46.813500px;}
.x67{left:49.365000px;}
.x51{left:51.321000px;}
.x38{left:54.595500px;}
.x7{left:55.786500px;}
.x3{left:58.635000px;}
.x5e{left:60.463500px;}
.x40{left:61.653000px;}
.x3b{left:63.141000px;}
.x25{left:64.630500px;}
.x3c{left:67.351500px;}
.x5f{left:71.688000px;}
.x39{left:80.107500px;}
.x1e{left:85.635000px;}
.x2a{left:89.716500px;}
.x2c{left:91.630500px;}
.x36{left:93.288000px;}
.x3a{left:105.619500px;}
.x4b{left:118.035000px;}
.x21{left:125.391000px;}
.x29{left:128.112000px;}
.x30{left:132.321000px;}
.x26{left:182.239500px;}
.x4c{left:189.595500px;}
.x66{left:199.630500px;}
.x53{left:208.347000px;}
.xb{left:212.556000px;}
.x4f{left:213.916500px;}
.x33{left:221.569500px;}
.x65{left:280.630500px;}
.x69{left:287.688000px;}
.x1a{left:303.463500px;}
.x6a{left:329.103000px;}
.x45{left:355.932000px;}
.x50{left:357.165000px;}
.x31{left:366.136500px;}
.x37{left:377.404500px;}
.x61{left:383.103000px;}
.x4d{left:391.053000px;}
.x16{left:392.839500px;}
.x4e{left:396.921000px;}
.x23{left:400.068000px;}
.x68{left:401.556000px;}
.x54{left:408.613500px;}
.x32{left:412.951500px;}
.x22{left:446.839500px;}
.x2f{left:489.741000px;}
.x34{left:493.653000px;}
.x27{left:496.630500px;}
.x2b{left:514.063500px;}
.xc{left:523.630500px;}
.x64{left:535.960500px;}
.x24{left:542.083500px;}
.x48{left:549.013500px;}
.x43{left:557.560500px;}
.x5a{left:599.995500px;}
.x42{left:604.332000px;}
.x44{left:627.888000px;}
.x60{left:648.000000px;}
.x3d{left:658.630500px;}
.xe{left:697.791000px;}
.x6{left:703.063500px;}
.xf{left:730.063500px;}
.x1f{left:739.630500px;}
.x10{left:749.409000px;}
.x56{left:752.088000px;}
.x1b{left:758.380500px;}
.x5b{left:759.444000px;}
.x47{left:773.560500px;}
.x49{left:781.341000px;}
.x59{left:796.351500px;}
.x52{left:897.165000px;}
.x18{left:898.780500px;}
.x2d{left:901.630500px;}
.x17{left:921.613500px;}
.x9{left:924.760500px;}
.xa{left:926.248500px;}
.x41{left:938.239500px;}
.x15{left:955.630500px;}
.x58{left:970.213500px;}
.x1d{left:972.000000px;}
.x11{left:982.630500px;}
.x13{left:1024.639500px;}
.x4a{left:1036.630500px;}
.x20{left:1131.619500px;}
.x1{left:1151.688000px;}
.x14{left:1153.048500px;}
@media print{
.v1a{vertical-align:-72.570667pt;}
.v1b{vertical-align:-59.109333pt;}
.vf{vertical-align:-56.544000pt;}
.v8{vertical-align:-45.354667pt;}
.v12{vertical-align:-35.829333pt;}
.v13{vertical-align:-34.165333pt;}
.v1e{vertical-align:-32.048000pt;}
.v2{vertical-align:-30.837333pt;}
.v10{vertical-align:-29.477333pt;}
.v6{vertical-align:-28.272000pt;}
.v5{vertical-align:-27.210667pt;}
.v4{vertical-align:-26.154667pt;}
.v24{vertical-align:-22.373333pt;}
.v9{vertical-align:-19.808000pt;}
.v19{vertical-align:-17.082667pt;}
.v15{vertical-align:-7.557333pt;}
.v14{vertical-align:-1.664000pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:1.061333pt;}
.v3{vertical-align:2.720000pt;}
.v18{vertical-align:3.626667pt;}
.v22{vertical-align:26.154667pt;}
.vc{vertical-align:29.781333pt;}
.v1c{vertical-align:30.992000pt;}
.v1d{vertical-align:32.048000pt;}
.v23{vertical-align:33.562667pt;}
.vd{vertical-align:35.077333pt;}
.va{vertical-align:39.909333pt;}
.vb{vertical-align:45.354667pt;}
.v26{vertical-align:49.589333pt;}
.v27{vertical-align:71.056000pt;}
.v7{vertical-align:72.570667pt;}
.v17{vertical-align:83.754667pt;}
.v11{vertical-align:88.138667pt;}
.v20{vertical-align:90.256000pt;}
.v21{vertical-align:92.373333pt;}
.v1{vertical-align:95.546667pt;}
.v25{vertical-align:96.608000pt;}
.ve{vertical-align:100.837333pt;}
.v1f{vertical-align:105.072000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.029893pt;}
.ls1c{letter-spacing:0.030453pt;}
.ls14{letter-spacing:0.037333pt;}
.lsb{letter-spacing:0.040667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls23{letter-spacing:0.089232pt;}
.ls4{letter-spacing:0.117317pt;}
.ls12{letter-spacing:0.144622pt;}
.ls25{letter-spacing:0.159947pt;}
.ls21{letter-spacing:0.173760pt;}
.ls2d{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.254693pt;}
.ls0{letter-spacing:0.255808pt;}
.ls27{letter-spacing:0.299413pt;}
.ls1a{letter-spacing:0.315301pt;}
.ls20{letter-spacing:0.338464pt;}
.ls31{letter-spacing:0.346731pt;}
.ls1f{letter-spacing:0.405771pt;}
.ls1e{letter-spacing:0.481211pt;}
.ls22{letter-spacing:0.503813pt;}
.ls2b{letter-spacing:0.660603pt;}
.ls33{letter-spacing:0.665936pt;}
.lsc{letter-spacing:14.336000pt;}
.ls29{letter-spacing:19.838379pt;}
.ls30{letter-spacing:21.477968pt;}
.ls1b{letter-spacing:21.887013pt;}
.ls18{letter-spacing:22.085968pt;}
.ls10{letter-spacing:43.288437pt;}
.ls11{letter-spacing:44.974933pt;}
.ls2e{letter-spacing:48.661109pt;}
.ls3{letter-spacing:48.666443pt;}
.ls9{letter-spacing:48.810443pt;}
.ls2c{letter-spacing:48.815776pt;}
.ls2{letter-spacing:49.423776pt;}
.lsf{letter-spacing:50.702219pt;}
.ls15{letter-spacing:50.707552pt;}
.lse{letter-spacing:50.856885pt;}
.ls2a{letter-spacing:52.383381pt;}
.ls8{letter-spacing:52.388715pt;}
.ls17{letter-spacing:52.532715pt;}
.ls7{letter-spacing:52.538048pt;}
.ls19{letter-spacing:53.146048pt;}
.ls6{letter-spacing:54.548395pt;}
.ls24{letter-spacing:54.692395pt;}
.lsa{letter-spacing:54.697728pt;}
.ls32{letter-spacing:56.229557pt;}
.ls5{letter-spacing:56.373557pt;}
.ls16{letter-spacing:56.378891pt;}
.ls13{letter-spacing:56.986891pt;}
.ls2f{letter-spacing:60.827733pt;}
.ls26{letter-spacing:1024.544720pt;}
.ws1f{word-spacing:-53.376000pt;}
.ws18{word-spacing:-41.596880pt;}
.ws19{word-spacing:-31.190640pt;}
.ws2e{word-spacing:-29.126240pt;}
.ws15{word-spacing:-28.094560pt;}
.wsc{word-spacing:-24.969360pt;}
.wsa{word-spacing:-24.114480pt;}
.ws8{word-spacing:-23.704875pt;}
.ws4{word-spacing:-22.994197pt;}
.ws5{word-spacing:-22.876880pt;}
.ws1c{word-spacing:-21.845200pt;}
.ws7{word-spacing:-20.813520pt;}
.ws1b{word-spacing:-19.751680pt;}
.ws0{word-spacing:-18.720000pt;}
.ws9{word-spacing:-16.626480pt;}
.wsb{word-spacing:-15.594800pt;}
.ws3{word-spacing:-14.772912pt;}
.ws1{word-spacing:-14.563120pt;}
.ws12{word-spacing:-13.325520pt;}
.ws6{word-spacing:-12.470640pt;}
.ws1a{word-spacing:-11.437920pt;}
.ws28{word-spacing:-10.819120pt;}
.ws1e{word-spacing:-10.406240pt;}
.ws17{word-spacing:-0.213317pt;}
.ws2d{word-spacing:-0.133344pt;}
.ws2c{word-spacing:-0.117317pt;}
.ws1d{word-spacing:-0.112027pt;}
.ws2b{word-spacing:-0.101291pt;}
.ws27{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.061835pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:46.465883pt;}
.wsf{word-spacing:87.496645pt;}
.ws14{word-spacing:92.806928pt;}
.ws10{word-spacing:133.298976pt;}
.ws24{word-spacing:248.765360pt;}
.wsd{word-spacing:265.820784pt;}
.ws2f{word-spacing:326.069333pt;}
.ws20{word-spacing:444.885333pt;}
.ws11{word-spacing:499.275968pt;}
.ws13{word-spacing:500.092261pt;}
.ws21{word-spacing:553.130667pt;}
.ws23{word-spacing:613.296000pt;}
.ws25{word-spacing:695.800976pt;}
.ws22{word-spacing:709.754667pt;}
.ws26{word-spacing:1390.178693pt;}
.ws30{word-spacing:2455.926411pt;}
.ws29{word-spacing:2894.911792pt;}
.ws2a{word-spacing:3129.549040pt;}
._4f{margin-left:-2357.051323pt;}
._42{margin-left:-1223.920933pt;}
._38{margin-left:-1040.758688pt;}
._28{margin-left:-424.214149pt;}
._21{margin-left:-136.229696pt;}
._3d{margin-left:-120.412464pt;}
._2e{margin-left:-115.727867pt;}
._2c{margin-left:-110.543339pt;}
._3a{margin-left:-103.921280pt;}
._47{margin-left:-99.494448pt;}
._1a{margin-left:-10.582864pt;}
._11{margin-left:-8.959328pt;}
._8{margin-left:-7.235936pt;}
._24{margin-left:-6.270363pt;}
._c{margin-left:-5.119616pt;}
._2{margin-left:-3.581312pt;}
._6{margin-left:-2.559808pt;}
._3{margin-left:-1.087184pt;}
._0{width:1.342992pt;}
._5{width:2.494128pt;}
._f{width:3.770021pt;}
._13{width:5.112848pt;}
._43{width:6.144000pt;}
._7{width:7.039472pt;}
._37{width:17.532485pt;}
._41{width:53.589824pt;}
._27{width:80.406448pt;}
._39{width:84.142208pt;}
._2b{width:89.978448pt;}
._35{width:93.555045pt;}
._3c{width:98.113627pt;}
._20{width:111.482880pt;}
._15{width:150.727941pt;}
._18{width:180.514608pt;}
._4{width:365.358640pt;}
._29{width:395.626523pt;}
._14{width:409.423291pt;}
._26{width:448.310453pt;}
._1{width:513.087328pt;}
._34{width:658.990155pt;}
._25{width:739.000309pt;}
._36{width:985.004528pt;}
._4b{width:994.204747pt;}
._a{width:1099.891669pt;}
._1f{width:1130.847045pt;}
._31{width:1137.111461pt;}
._1d{width:1156.028363pt;}
._50{width:1157.458080pt;}
._1e{width:1158.414832pt;}
._4d{width:1333.592448pt;}
._10{width:1350.076208pt;}
._3f{width:1358.772325pt;}
._1c{width:1361.041243pt;}
._2d{width:1443.269632pt;}
._2f{width:1445.994960pt;}
._4e{width:1620.992587pt;}
._32{width:1746.280085pt;}
._48{width:1772.536272pt;}
._33{width:1776.671312pt;}
._23{width:1811.353835pt;}
._3b{width:1917.538256pt;}
._e{width:1923.518283pt;}
._40{width:1954.223184pt;}
._2a{width:2013.398469pt;}
._1b{width:2058.723760pt;}
._22{width:2219.631248pt;}
._17{width:2323.450571pt;}
._d{width:2366.939339pt;}
._19{width:2410.890080pt;}
._4c{width:2467.704837pt;}
._b{width:2529.782832pt;}
._16{width:2555.519232pt;}
._4a{width:2584.027707pt;}
._12{width:2648.332869pt;}
._3e{width:2692.526619pt;}
._30{width:2841.496357pt;}
._49{width:2889.197952pt;}
._46{width:2954.919637pt;}
._45{width:3009.952085pt;}
._44{width:3085.242752pt;}
._9{width:3249.306107pt;}
.fs25{font-size:38.400000pt;}
.fse{font-size:42.634667pt;}
.fs8{font-size:43.237333pt;}
.fsa{font-size:45.354667pt;}
.fs24{font-size:46.410667pt;}
.fsc{font-size:48.074667pt;}
.fs17{font-size:50.192000pt;}
.fs7{font-size:52.762667pt;}
.fs1c{font-size:53.365333pt;}
.fs20{font-size:55.482667pt;}
.fs1b{font-size:57.600000pt;}
.fs16{font-size:58.656000pt;}
.fs19{font-size:59.717333pt;}
.fs14{font-size:61.834667pt;}
.fs0{font-size:63.952000pt;}
.fs12{font-size:68.336000pt;}
.fs5{font-size:74.682667pt;}
.fsf{font-size:79.973333pt;}
.fs9{font-size:85.264000pt;}
.fs4{font-size:96.000000pt;}
.fsb{font-size:101.290667pt;}
.fs2{font-size:106.736000pt;}
.fs1e{font-size:110.501238pt;}
.fsd{font-size:112.026667pt;}
.fs6{font-size:117.317333pt;}
.fs11{font-size:122.608000pt;}
.fs10{font-size:123.664000pt;}
.fs3{font-size:128.048000pt;}
.fs1a{font-size:133.344000pt;}
.fs27{font-size:138.634667pt;}
.fs13{font-size:144.074667pt;}
.fs1f{font-size:149.365333pt;}
.fs15{font-size:159.952000pt;}
.fs1d{font-size:170.682667pt;}
.fs18{font-size:181.264000pt;}
.fs22{font-size:186.709333pt;}
.fs23{font-size:192.000000pt;}
.fs26{font-size:202.736000pt;}
.fs1{font-size:213.317333pt;}
.fs21{font-size:224.048000pt;}
.y3{bottom:-10.129333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.037333pt;}
.y1{bottom:7.181333pt;}
.y2{bottom:7.748000pt;}
.y10b{bottom:34.772000pt;}
.y62{bottom:37.833333pt;}
.y15c{bottom:38.626667pt;}
.ybb{bottom:39.950667pt;}
.y29{bottom:42.369333pt;}
.ycb{bottom:42.746667pt;}
.y86{bottom:44.221333pt;}
.y6d{bottom:44.750667pt;}
.y1c{bottom:44.901333pt;}
.y3b{bottom:48.642667pt;}
.ydc{bottom:49.172000pt;}
.yf2{bottom:49.285333pt;}
.y9d{bottom:54.350667pt;}
.y140{bottom:54.878667pt;}
.yba{bottom:55.974667pt;}
.y108{bottom:56.353333pt;}
.y92{bottom:56.882667pt;}
.y15b{bottom:61.682667pt;}
.yc{bottom:63.950667pt;}
.y1a4{bottom:66.104000pt;}
.yca{bottom:66.633333pt;}
.y167{bottom:66.746667pt;}
.y10a{bottom:70.640000pt;}
.y12d{bottom:70.753333pt;}
.ydb{bottom:71.698667pt;}
.y61{bottom:73.701333pt;}
.y160{bottom:74.344000pt;}
.y44{bottom:75.553333pt;}
.y48{bottom:76.612000pt;}
.y85{bottom:77.178667pt;}
.y28{bottom:77.442667pt;}
.y1b{bottom:77.972000pt;}
.y3a{bottom:78.765333pt;}
.y13{bottom:79.030667pt;}
.yf1{bottom:79.446667pt;}
.y13f{bottom:85.040000pt;}
.y107{bottom:86.513333pt;}
.y91{bottom:87.042667pt;}
.y19c{bottom:87.308000pt;}
.y9c{bottom:87.421333pt;}
.yc9{bottom:90.482667pt;}
.y178{bottom:91.692000pt;}
.y18d{bottom:92.372000pt;}
.yb9{bottom:93.278667pt;}
.yda{bottom:94.374667pt;}
.y15a{bottom:98.760000pt;}
.y43{bottom:99.440000pt;}
.y166{bottom:99.704000pt;}
.y12c{bottom:100.913333pt;}
.y5d{bottom:101.972000pt;}
.y15f{bottom:104.353333pt;}
.y158{bottom:104.504000pt;}
.y1a3{bottom:107.830667pt;}
.y1a{bottom:110.892000pt;}
.y12{bottom:111.950667pt;}
.y19b{bottom:114.217333pt;}
.y13e{bottom:115.012000pt;}
.y58{bottom:115.692000pt;}
.y39{bottom:115.956000pt;}
.y106{bottom:116.485333pt;}
.yd9{bottom:116.901333pt;}
.y90{bottom:117.014667pt;}
.y177{bottom:121.814667pt;}
.y8e{bottom:126.765333pt;}
.y16{bottom:128.617333pt;}
.y73{bottom:129.033333pt;}
.yb{bottom:129.412000pt;}
.y18c{bottom:129.713333pt;}
.yb8{bottom:130.508000pt;}
.y137{bottom:132.774667pt;}
.y27{bottom:138.104000pt;}
.yc8{bottom:138.217333pt;}
.y4b{bottom:138.633333pt;}
.yd8{bottom:139.426667pt;}
.y165{bottom:140.485333pt;}
.y79{bottom:140.901333pt;}
.y19{bottom:143.812000pt;}
.y11{bottom:144.908000pt;}
.y60{bottom:145.285333pt;}
.yf0{bottom:147.288000pt;}
.y19a{bottom:147.553333pt;}
.y1a2{bottom:149.556000pt;}
.ya7{bottom:150.878667pt;}
.y176{bottom:151.974667pt;}
.y115{bottom:152.088000pt;}
.y9b{bottom:153.298667pt;}
.y6c{bottom:154.621333pt;}
.y38{bottom:157.153333pt;}
.y14a{bottom:158.212000pt;}
.y136{bottom:159.685333pt;}
.y12b{bottom:161.046667pt;}
.yd7{bottom:161.953333pt;}
.yc7{bottom:162.104000pt;}
.y26{bottom:165.014667pt;}
.ya{bottom:165.165333pt;}
.y18b{bottom:166.904000pt;}
.y8d{bottom:167.282667pt;}
.yb7{bottom:167.812000pt;}
.y5c{bottom:173.708000pt;}
.y4c{bottom:175.294667pt;}
.y78{bottom:176.617333pt;}
.y18{bottom:176.769333pt;}
.y10{bottom:177.826667pt;}
.yef{bottom:178.621333pt;}
.ya6{bottom:179.150667pt;}
.y84{bottom:179.414667pt;}
.y175{bottom:181.946667pt;}
.y114{bottom:183.421333pt;}
.yd6{bottom:184.478667pt;}
.y9a{bottom:186.217333pt;}
.y149{bottom:186.482667pt;}
.y135{bottom:186.633333pt;}
.y181{bottom:187.692000pt;}
.y184{bottom:188.108000pt;}
.y12a{bottom:191.169333pt;}
.y1a1{bottom:191.282667pt;}
.ye0{bottom:193.814667pt;}
.y25{bottom:194.230667pt;}
.y37{bottom:194.344000pt;}
.y83{bottom:194.646667pt;}
.y199{bottom:194.910667pt;}
.y72{bottom:200.617333pt;}
.y157{bottom:203.414667pt;}
.y18a{bottom:204.246667pt;}
.y80{bottom:207.156000pt;}
.ya5{bottom:207.572000pt;}
.y8c{bottom:207.685333pt;}
.y118{bottom:208.630667pt;}
.y5b{bottom:209.574667pt;}
.y17{bottom:209.688000pt;}
.yee{bottom:209.953333pt;}
.yf{bottom:210.746667pt;}
.yc6{bottom:211.012000pt;}
.yb0{bottom:211.162667pt;}
.ye1{bottom:211.956000pt;}
.y134{bottom:213.544000pt;}
.y180{bottom:214.640000pt;}
.y148{bottom:214.753333pt;}
.y5f{bottom:217.021333pt;}
.y129{bottom:221.178667pt;}
.y198{bottom:221.821333pt;}
.y36{bottom:224.504000pt;}
.yd5{bottom:229.682667pt;}
.y103{bottom:232.101333pt;}
.ya4{bottom:235.842667pt;}
.y9{bottom:236.901333pt;}
.y133{bottom:240.492000pt;}
.y71{bottom:240.908000pt;}
.y189{bottom:241.437333pt;}
.y174{bottom:242.078667pt;}
.yc5{bottom:242.344000pt;}
.yaf{bottom:242.646667pt;}
.y10d{bottom:242.760000pt;}
.y46{bottom:243.553333pt;}
.y156{bottom:244.082667pt;}
.y7a{bottom:246.085333pt;}
.y113{bottom:246.237333pt;}
.y77{bottom:247.560000pt;}
.y8b{bottom:248.240000pt;}
.y197{bottom:248.769333pt;}
.y128{bottom:251.301333pt;}
.y99{bottom:252.246667pt;}
.y35{bottom:254.513333pt;}
.yf7{bottom:254.892000pt;}
.y82{bottom:255.042667pt;}
.y24{bottom:257.840000pt;}
.y4e{bottom:258.746667pt;}
.y102{bottom:262.224000pt;}
.yb6{bottom:262.640000pt;}
.y132{bottom:267.440000pt;}
.yae{bottom:267.553333pt;}
.y17f{bottom:268.346667pt;}
.ya3{bottom:270.878667pt;}
.y6b{bottom:271.446667pt;}
.y173{bottom:272.240000pt;}
.y8{bottom:272.617333pt;}
.yc4{bottom:273.826667pt;}
.y1a0{bottom:274.885333pt;}
.y93{bottom:275.301333pt;}
.y196{bottom:275.678667pt;}
.y155{bottom:277.040000pt;}
.y34{bottom:277.569333pt;}
.y57{bottom:279.950667pt;}
.y127{bottom:281.424000pt;}
.yf6{bottom:281.840000pt;}
.y4f{bottom:282.482667pt;}
.y4d{bottom:282.633333pt;}
.y76{bottom:283.426667pt;}
.y23{bottom:284.750667pt;}
.y8a{bottom:288.756000pt;}
.y138{bottom:289.965333pt;}
.y68{bottom:290.646667pt;}
.ye2{bottom:291.553333pt;}
.y101{bottom:292.233333pt;}
.y7f{bottom:294.085333pt;}
.y17e{bottom:295.294667pt;}
.yad{bottom:298.885333pt;}
.y147{bottom:299.678667pt;}
.y81{bottom:300.360000pt;}
.y6a{bottom:301.417333pt;}
.y154{bottom:302.212000pt;}
.y172{bottom:302.362667pt;}
.ye9{bottom:305.840000pt;}
.y33{bottom:307.692000pt;}
.yb5{bottom:308.637333pt;}
.yf5{bottom:308.750667pt;}
.y112{bottom:308.901333pt;}
.y195{bottom:309.014667pt;}
.y22{bottom:311.698667pt;}
.yc3{bottom:312.492000pt;}
.yd4{bottom:313.285333pt;}
.y19f{bottom:316.612000pt;}
.y188{bottom:317.178667pt;}
.y98{bottom:318.085333pt;}
.y47{bottom:319.030667pt;}
.y64{bottom:320.353333pt;}
.ya2{bottom:320.769333pt;}
.y17d{bottom:322.242667pt;}
.y100{bottom:322.356000pt;}
.y10c{bottom:325.946667pt;}
.y89{bottom:329.160000pt;}
.y1a5{bottom:331.578667pt;}
.ydf{bottom:331.842667pt;}
.y171{bottom:332.372000pt;}
.ye8{bottom:333.544000pt;}
.yf4{bottom:335.546667pt;}
.yd3{bottom:335.812000pt;}
.yc2{bottom:336.492000pt;}
.yac{bottom:337.550667pt;}
.y21{bottom:338.646667pt;}
.y111{bottom:340.346667pt;}
.y126{bottom:341.556000pt;}
.y153{bottom:343.030667pt;}
.y55{bottom:344.240000pt;}
.y32{bottom:344.769333pt;}
.y183{bottom:349.040000pt;}
.y17c{bottom:349.153333pt;}
.ybd{bottom:350.778667pt;}
.y97{bottom:351.042667pt;}
.y187{bottom:354.369333pt;}
.ya1{bottom:355.842667pt;}
.y194{bottom:356.372000pt;}
.y19e{bottom:358.374667pt;}
.yff{bottom:359.546667pt;}
.y170{bottom:362.494667pt;}
.yfc{bottom:362.910667pt;}
.y146{bottom:363.174667pt;}
.y54{bottom:366.878667pt;}
.y20{bottom:367.824000pt;}
.yc1{bottom:367.974667pt;}
.y16d{bottom:368.088000pt;}
.yab{bottom:369.033333pt;}
.y88{bottom:369.713333pt;}
.y110{bottom:371.678667pt;}
.yd2{bottom:374.212000pt;}
.y7e{bottom:374.362667pt;}
.y31{bottom:374.892000pt;}
.y152{bottom:375.950667pt;}
.y17b{bottom:376.101333pt;}
.y164{bottom:380.372000pt;}
.y5e{bottom:380.901333pt;}
.y67{bottom:381.278667pt;}
.y1ae{bottom:382.374667pt;}
.yfe{bottom:382.488000pt;}
.y193{bottom:383.282667pt;}
.y74{bottom:383.546667pt;}
.y96{bottom:383.962667pt;}
.y7{bottom:384.908000pt;}
.y123{bottom:385.550667pt;}
.y6e{bottom:387.174667pt;}
.y53{bottom:389.442667pt;}
.yfd{bottom:389.556000pt;}
.y42{bottom:390.501333pt;}
.y145{bottom:391.446667pt;}
.y186{bottom:391.710667pt;}
.y70{bottom:391.824000pt;}
.y11c{bottom:392.240000pt;}
.y13d{bottom:393.033333pt;}
.y16c{bottom:395.678667pt;}
.yd1{bottom:396.774667pt;}
.y1f{bottom:398.513333pt;}
.yc0{bottom:399.308000pt;}
.yaa{bottom:400.365333pt;}
.y117{bottom:401.840000pt;}
.y182{bottom:402.898667pt;}
.y10f{bottom:403.012000pt;}
.y30{bottom:405.014667pt;}
.y7d{bottom:407.282667pt;}
.yd{bottom:408.492000pt;}
.y151{bottom:408.908000pt;}
.y6f{bottom:409.814667pt;}
.y87{bottom:410.078667pt;}
.y192{bottom:410.230667pt;}
.y63{bottom:411.174667pt;}
.yb4{bottom:411.553333pt;}
.y52{bottom:411.969333pt;}
.ya0{bottom:412.346667pt;}
.y1ad{bottom:412.913333pt;}
.y131{bottom:413.292000pt;}
.ye7{bottom:414.237333pt;}
.yed{bottom:414.350667pt;}
.yd0{bottom:419.414667pt;}
.y144{bottom:419.678667pt;}
.yfb{bottom:420.624000pt;}
.y16b{bottom:420.888000pt;}
.y163{bottom:421.040000pt;}
.y16f{bottom:422.626667pt;}
.y122{bottom:423.156000pt;}
.y41{bottom:423.572000pt;}
.y13c{bottom:424.365333pt;}
.y11f{bottom:425.046667pt;}
.y1e{bottom:425.424000pt;}
.y2f{bottom:427.956000pt;}
.y14e{bottom:428.221333pt;}
.y11b{bottom:428.750667pt;}
.ybc{bottom:428.901333pt;}
.y17a{bottom:429.846667pt;}
.ya9{bottom:431.698667pt;}
.y125{bottom:431.812000pt;}
.y15e{bottom:434.078667pt;}
.y10e{bottom:434.344000pt;}
.y75{bottom:436.498667pt;}
.y191{bottom:437.178667pt;}
.ybf{bottom:437.972000pt;}
.y7c{bottom:440.353333pt;}
.ye6{bottom:441.146667pt;}
.y150{bottom:441.826667pt;}
.ycf{bottom:441.978667pt;}
.yec{bottom:442.772000pt;}
.y1ac{bottom:442.885333pt;}
.y130{bottom:443.414667pt;}
.y162{bottom:446.212000pt;}
.y121{bottom:446.626667pt;}
.yfa{bottom:447.572000pt;}
.y143{bottom:447.950667pt;}
.yb3{bottom:448.894667pt;}
.y116{bottom:449.840000pt;}
.y95{bottom:449.953333pt;}
.y66{bottom:451.692000pt;}
.y16e{bottom:452.750667pt;}
.y1d{bottom:454.640000pt;}
.y13b{bottom:455.698667pt;}
.y40{bottom:456.492000pt;}
.y179{bottom:456.756000pt;}
.y14d{bottom:456.908000pt;}
.y2e{bottom:458.078667pt;}
.y105{bottom:459.553333pt;}
.y4a{bottom:460.498667pt;}
.y16a{bottom:461.556000pt;}
.y124{bottom:461.972000pt;}
.y1a7{bottom:462.085333pt;}
.ya8{bottom:463.144000pt;}
.y190{bottom:463.974667pt;}
.yce{bottom:464.504000pt;}
.y5a{bottom:464.769333pt;}
.y185{bottom:466.242667pt;}
.yf9{bottom:467.830667pt;}
.ye5{bottom:468.094667pt;}
.y51{bottom:469.153333pt;}
.y8f{bottom:470.513333pt;}
.yeb{bottom:471.042667pt;}
.y1ab{bottom:473.046667pt;}
.y7b{bottom:473.310667pt;}
.y6{bottom:473.424000pt;}
.y14f{bottom:474.746667pt;}
.y142{bottom:476.372000pt;}
.y1a6{bottom:476.485333pt;}
.ycc{bottom:476.901333pt;}
.y9f{bottom:481.701333pt;}
.y109{bottom:482.494667pt;}
.y94{bottom:482.910667pt;}
.y11a{bottom:483.440000pt;}
.y120{bottom:483.704000pt;}
.y69{bottom:484.913333pt;}
.y14c{bottom:485.178667pt;}
.y169{bottom:485.972000pt;}
.y161{bottom:486.878667pt;}
.ycd{bottom:487.030667pt;}
.y13a{bottom:487.144000pt;}
.y65{bottom:487.560000pt;}
.y18e{bottom:487.710667pt;}
.y11e{bottom:487.824000pt;}
.y49{bottom:488.769333pt;}
.yf3{bottom:488.882667pt;}
.y3f{bottom:489.412000pt;}
.y141{bottom:491.037333pt;}
.y15d{bottom:493.040000pt;}
.ybe{bottom:493.417333pt;}
.y159{bottom:493.682667pt;}
.y3e{bottom:494.513333pt;}
.y1a9{bottom:494.778667pt;}
.yb2{bottom:495.042667pt;}
.y2d{bottom:495.308000pt;}
.y50{bottom:495.950667pt;}
.y104{bottom:496.744000pt;}
.y14b{bottom:497.160000pt;}
.y18f{bottom:497.424000pt;}
.y1a8{bottom:500.901333pt;}
.yf8{bottom:501.278667pt;}
.ye4{bottom:501.544000pt;}
.y1aa{bottom:503.017333pt;}
.ydd{bottom:503.282667pt;}
.yde{bottom:503.962667pt;}
.y2c{bottom:507.817333pt;}
.y12e{bottom:513.033333pt;}
.y2b{bottom:531.704000pt;}
.y15{bottom:532.233333pt;}
.y3d{bottom:532.913333pt;}
.y59{bottom:534.878667pt;}
.y5{bottom:537.412000pt;}
.y11d{bottom:537.978667pt;}
.yea{bottom:538.772000pt;}
.y9e{bottom:539.037333pt;}
.y19d{bottom:540.094667pt;}
.ye{bottom:540.360000pt;}
.y56{bottom:540.888000pt;}
.y139{bottom:541.153333pt;}
.y12f{bottom:541.682667pt;}
.yb1{bottom:542.212000pt;}
.ye3{bottom:543.308000pt;}
.y168{bottom:543.572000pt;}
.y1af{bottom:546.482667pt;}
.y45{bottom:547.842667pt;}
.y119{bottom:549.278667pt;}
.y14{bottom:550.224000pt;}
.y2a{bottom:555.553333pt;}
.y3c{bottom:564.246667pt;}
.h1c{height:30.893479pt;}
.h37{height:41.891787pt;}
.h49{height:44.558907pt;}
.h3e{height:48.602667pt;}
.h10{height:49.205333pt;}
.h11{height:49.354667pt;}
.h3c{height:49.360000pt;}
.he{height:49.626752pt;}
.h2{height:50.202320pt;}
.h1e{height:52.297173pt;}
.h12{height:52.302507pt;}
.h2a{height:52.451840pt;}
.h1d{height:52.750507pt;}
.h29{height:52.905173pt;}
.h47{height:54.055627pt;}
.h15{height:55.515760pt;}
.h16{height:55.521093pt;}
.h17{height:55.665093pt;}
.h4d{height:57.030427pt;}
.h44{height:57.179760pt;}
.h31{height:58.004933pt;}
.h30{height:58.010267pt;}
.h2d{height:58.159600pt;}
.h2c{height:58.463600pt;}
.h2e{height:58.607600pt;}
.h2f{height:58.612933pt;}
.h8{height:58.625893pt;}
.h19{height:60.648773pt;}
.hb{height:61.102107pt;}
.hc{height:61.251440pt;}
.ha{height:61.256773pt;}
.h1f{height:62.779067pt;}
.h14{height:66.164864pt;}
.h36{height:66.352347pt;}
.h1a{height:66.932240pt;}
.h33{height:68.845707pt;}
.h35{height:69.448373pt;}
.h38{height:69.562500pt;}
.h39{height:71.226500pt;}
.hd{height:72.245680pt;}
.h7{height:75.360000pt;}
.h42{height:75.601893pt;}
.h3a{height:75.883848pt;}
.h13{height:79.513173pt;}
.h25{height:79.983653pt;}
.h2b{height:80.668960pt;}
.h5{height:83.787760pt;}
.h3f{height:86.743472pt;}
.h1b{height:87.071458pt;}
.h18{height:87.940933pt;}
.hf{height:92.094107pt;}
.h23{height:93.099760pt;}
.h22{height:93.553093pt;}
.h24{height:95.556987pt;}
.h21{height:96.247280pt;}
.h6{height:100.517680pt;}
.h34{height:104.675040pt;}
.h28{height:110.910107pt;}
.h26{height:113.098613pt;}
.h40{height:117.251787pt;}
.h4c{height:124.949333pt;}
.h41{height:131.509680pt;}
.h3d{height:133.985893pt;}
.h4a{height:146.566827pt;}
.h48{height:150.720000pt;}
.h4e{height:158.127458pt;}
.h4{height:167.454107pt;}
.h20{height:169.646907pt;}
.h3b{height:170.826125pt;}
.h32{height:175.210125pt;}
.h45{height:177.327458pt;}
.h46{height:179.444792pt;}
.h9{height:182.618125pt;}
.h4b{height:183.679458pt;}
.h27{height:187.908792pt;}
.h43{height:192.143458pt;}
.h3{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.w3{width:1057.889333pt;}
.w2{width:1057.926667pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:5.745333pt;}
.x2{left:9.449333pt;}
.xd{left:10.809333pt;}
.x63{left:12.548000pt;}
.x1c{left:13.606667pt;}
.x19{left:15.193333pt;}
.x2e{left:17.084000pt;}
.x8{left:18.254667pt;}
.x3e{left:22.525333pt;}
.x57{left:23.470667pt;}
.x4{left:25.852000pt;}
.x28{left:26.948000pt;}
.x46{left:28.120000pt;}
.x5d{left:31.068000pt;}
.x3f{left:32.125333pt;}
.x5{left:33.449333pt;}
.x55{left:34.809333pt;}
.x35{left:37.190667pt;}
.x62{left:40.138667pt;}
.x12{left:41.612000pt;}
.x67{left:43.880000pt;}
.x51{left:45.618667pt;}
.x38{left:48.529333pt;}
.x7{left:49.588000pt;}
.x3{left:52.120000pt;}
.x5e{left:53.745333pt;}
.x40{left:54.802667pt;}
.x3b{left:56.125333pt;}
.x25{left:57.449333pt;}
.x3c{left:59.868000pt;}
.x5f{left:63.722667pt;}
.x39{left:71.206667pt;}
.x1e{left:76.120000pt;}
.x2a{left:79.748000pt;}
.x2c{left:81.449333pt;}
.x36{left:82.922667pt;}
.x3a{left:93.884000pt;}
.x4b{left:104.920000pt;}
.x21{left:111.458667pt;}
.x29{left:113.877333pt;}
.x30{left:117.618667pt;}
.x26{left:161.990667pt;}
.x4c{left:168.529333pt;}
.x66{left:177.449333pt;}
.x53{left:185.197333pt;}
.xb{left:188.938667pt;}
.x4f{left:190.148000pt;}
.x33{left:196.950667pt;}
.x65{left:249.449333pt;}
.x69{left:255.722667pt;}
.x1a{left:269.745333pt;}
.x6a{left:292.536000pt;}
.x45{left:316.384000pt;}
.x50{left:317.480000pt;}
.x31{left:325.454667pt;}
.x37{left:335.470667pt;}
.x61{left:340.536000pt;}
.x4d{left:347.602667pt;}
.x16{left:349.190667pt;}
.x4e{left:352.818667pt;}
.x23{left:355.616000pt;}
.x68{left:356.938667pt;}
.x54{left:363.212000pt;}
.x32{left:367.068000pt;}
.x22{left:397.190667pt;}
.x2f{left:435.325333pt;}
.x34{left:438.802667pt;}
.x27{left:441.449333pt;}
.x2b{left:456.945333pt;}
.xc{left:465.449333pt;}
.x64{left:476.409333pt;}
.x24{left:481.852000pt;}
.x48{left:488.012000pt;}
.x43{left:495.609333pt;}
.x5a{left:533.329333pt;}
.x42{left:537.184000pt;}
.x44{left:558.122667pt;}
.x60{left:576.000000pt;}
.x3d{left:585.449333pt;}
.xe{left:620.258667pt;}
.x6{left:624.945333pt;}
.xf{left:648.945333pt;}
.x1f{left:657.449333pt;}
.x10{left:666.141333pt;}
.x56{left:668.522667pt;}
.x1b{left:674.116000pt;}
.x5b{left:675.061333pt;}
.x47{left:687.609333pt;}
.x49{left:694.525333pt;}
.x59{left:707.868000pt;}
.x52{left:797.480000pt;}
.x18{left:798.916000pt;}
.x2d{left:801.449333pt;}
.x17{left:819.212000pt;}
.x9{left:822.009333pt;}
.xa{left:823.332000pt;}
.x41{left:833.990667pt;}
.x15{left:849.449333pt;}
.x58{left:862.412000pt;}
.x1d{left:864.000000pt;}
.x11{left:873.449333pt;}
.x13{left:910.790667pt;}
.x4a{left:921.449333pt;}
.x20{left:1005.884000pt;}
.x1{left:1023.722667pt;}
.x14{left:1024.932000pt;}
}




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