
    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_ec5413440213e17bb6da5c5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_1e9e383bfb10c8859824c552.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_8c3e9dc8d13327defc63ffa6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_3ae28ba5d9ff68bba5c38e18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_eff08400c958d35b55343ce6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_d5e20c6cfd8d7482bbfa936a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_15847529e282093495ea01cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_0407d44c065f307bf598e64a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_a04ee10a10f5e0a31a62ad0a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_d056fea555027d7b71bd95b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_55a3a836931774f85f98e502.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_6e481a0f5f2afaae91d9f6a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_f65a497f80df79c1ae843a8b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.030273;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.000000,-0.249996,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-64.797207px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-5.040000px;}
.ls5{letter-spacing:-2.880000px;}
.ls21{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.359984px;}
.ls4{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.053278px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.359984px;}
.ls7{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.ls1f{letter-spacing:5.904000px;}
.ls29{letter-spacing:10.224000px;}
.ls1c{letter-spacing:13.824000px;}
.ls1e{letter-spacing:18.144000px;}
.ls6{letter-spacing:21.221280px;}
.ls20{letter-spacing:21.744000px;}
.ls22{letter-spacing:29.664000px;}
.lsf{letter-spacing:33.984000px;}
.lse{letter-spacing:38.304000px;}
.ls1d{letter-spacing:41.904000px;}
.ls18{letter-spacing:46.224000px;}
.ls19{letter-spacing:49.824000px;}
.ls1{letter-spacing:68.916000px;}
.ls3{letter-spacing:74.700000px;}
.ls2{letter-spacing:79.020000px;}
.ls2a{letter-spacing:107.604000px;}
.ls23{letter-spacing:163.044000px;}
.ls27{letter-spacing:167.364000px;}
.ls28{letter-spacing:168.084000px;}
.ls25{letter-spacing:171.684000px;}
.lsc{letter-spacing:176.376000px;}
.ls26{letter-spacing:179.604000px;}
.ls10{letter-spacing:194.376000px;}
.ls13{letter-spacing:200.151374px;}
.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;}
}
.ws14{word-spacing:-71.712000px;}
.wsb{word-spacing:-36.000000px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.060000px;}
.ws12{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.299341px;}
.ws3{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.579372px;}
.ws13{word-spacing:-12.960000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-16.416000px;}
._a{margin-left:-14.400000px;}
._4{margin-left:-12.065760px;}
._34{margin-left:-9.504000px;}
._2{margin-left:-8.426880px;}
._5{margin-left:-6.894720px;}
._3{margin-left:-5.171040px;}
._7{margin-left:-4.021920px;}
._6{margin-left:-2.681280px;}
._0{margin-left:-1.532160px;}
._1{width:1.340640px;}
._b{width:2.760000px;}
._e{width:3.959040px;}
._d{width:5.113440px;}
._11{width:6.487920px;}
._f{width:8.003760px;}
._10{width:9.121440px;}
._c{width:10.218960px;}
._12{width:11.681760px;}
._19{width:13.176000px;}
._15{width:14.256000px;}
._18{width:15.410880px;}
._1c{width:16.764480px;}
._25{width:17.894880px;}
._13{width:19.152000px;}
._14{width:20.187360px;}
._21{width:21.672000px;}
._1a{width:23.400000px;}
._1b{width:24.644160px;}
._16{width:26.640000px;}
._17{width:27.780000px;}
._1d{width:29.532000px;}
._31{width:31.228560px;}
._32{width:32.438880px;}
._22{width:33.952320px;}
._1f{width:35.112000px;}
._20{width:36.576000px;}
._33{width:38.232000px;}
._1e{width:39.744000px;}
._2f{width:41.473440px;}
._45{width:42.670080px;}
._55{width:44.136000px;}
._43{width:45.216000px;}
._4d{width:46.872000px;}
._5a{width:48.312000px;}
._59{width:50.472000px;}
._24{width:51.871680px;}
._56{width:53.012640px;}
._2e{width:54.714240px;}
._29{width:55.875600px;}
._2b{width:57.250080px;}
._39{width:58.913280px;}
._52{width:60.455520px;}
._51{width:61.796160px;}
._26{width:65.590560px;}
._27{width:66.931200px;}
._2a{width:68.188800px;}
._2c{width:72.228240px;}
._28{width:73.325520px;}
._60{width:78.624000px;}
._44{width:81.000000px;}
._4b{width:82.395360px;}
._3f{width:83.520000px;}
._40{width:84.780000px;}
._61{width:85.824000px;}
._42{width:88.992000px;}
._48{width:90.072000px;}
._47{width:91.872000px;}
._30{width:92.960640px;}
._63{width:96.192000px;}
._38{width:100.626240px;}
._37{width:101.632320px;}
._41{width:102.960000px;}
._3b{width:105.840000px;}
._3c{width:107.172000px;}
._58{width:115.848000px;}
._57{width:116.856000px;}
._5f{width:117.972000px;}
._5c{width:133.560000px;}
._3d{width:160.549920px;}
._5e{width:182.088000px;}
._4c{width:186.389280px;}
._53{width:228.960000px;}
._54{width:230.256000px;}
._2d{width:283.953600px;}
._4a{width:319.008000px;}
._49{width:320.137920px;}
._5d{width:332.136000px;}
._50{width:334.080000px;}
._3a{width:356.724000px;}
._64{width:438.359040px;}
._4e{width:448.344000px;}
._4f{width:449.364000px;}
._62{width:574.992000px;}
._46{width:591.336000px;}
._35{width:622.368000px;}
._23{width:708.749454px;}
._3e{width:751.997280px;}
._8{width:846.156000px;}
._36{width:1261.692000px;}
._5b{width:1382.904000px;}
.fc8{color:rgb(70,120,134);}
.fc3{color:rgb(15,71,97);}
.fc2{color:transparent;}
.fc7{color:rgb(4,12,40);}
.fc1{color:rgb(21,96,130);}
.fca{color:rgb(69,69,69);}
.fc9{color:rgb(34,34,34);}
.fc6{color:rgb(17,17,17);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:53.997673px;}
.fs6{font-size:59.757425px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:63.357269px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:71.996897px;}
.fs8{font-size:71.998189px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:72.142186px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y13{bottom:-36.360000px;}
.y122{bottom:-28.078784px;}
.y12{bottom:-15.840000px;}
.y130{bottom:-12.779445px;}
.y121{bottom:-8.819614px;}
.y0{bottom:0.000000px;}
.y114{bottom:3.419982px;}
.y133{bottom:3.824839px;}
.y124{bottom:3.959834px;}
.y12a{bottom:4.499811px;}
.y15a{bottom:4.680000px;}
.y1b6{bottom:4.716000px;}
.y169{bottom:4.860000px;}
.y212{bottom:4.896000px;}
.y127{bottom:4.904794px;}
.y11{bottom:5.040000px;}
.y12f{bottom:5.759756px;}
.y141{bottom:7.019702px;}
.y13e{bottom:8.459644px;}
.y120{bottom:9.539594px;}
.y139{bottom:11.339517px;}
.y151{bottom:11.700000px;}
.y14b{bottom:11.880000px;}
.y173{bottom:11.910000px;}
.y16e{bottom:11.925000px;}
.y13b{bottom:15.794319px;}
.y113{bottom:21.598898px;}
.y132{bottom:22.004055px;}
.y129{bottom:22.679027px;}
.y126{bottom:22.904018px;}
.y12e{bottom:23.758981px;}
.y140{bottom:25.018927px;}
.y10{bottom:25.740000px;}
.y11f{bottom:27.718811px;}
.y13d{bottom:29.203752px;}
.y138{bottom:29.338742px;}
.y14e{bottom:37.620000px;}
.y153{bottom:37.650000px;}
.y14a{bottom:37.800000px;}
.y16d{bottom:37.845000px;}
.y112{bottom:39.598122px;}
.y119{bottom:41.150727px;}
.y12d{bottom:41.938197px;}
.y11e{bottom:45.898028px;}
.yf{bottom:46.434000px;}
.y137{bottom:47.517958px;}
.y2{bottom:57.600000px;}
.y111{bottom:57.777339px;}
.y177{bottom:57.780000px;}
.y146{bottom:57.816000px;}
.y12c{bottom:60.117414px;}
.y159{bottom:61.776000px;}
.y1e2{bottom:62.280000px;}
.y184{bottom:62.820000px;}
.y197{bottom:63.000000px;}
.y14d{bottom:63.540000px;}
.y172{bottom:63.570000px;}
.y15e{bottom:63.585000px;}
.y167{bottom:63.720000px;}
.y16c{bottom:63.765000px;}
.y11d{bottom:63.897252px;}
.y1ad{bottom:63.900000px;}
.y18c{bottom:64.260000px;}
.y1b1{bottom:64.440000px;}
.y1e8{bottom:64.620000px;}
.y1b5{bottom:64.800000px;}
.y211{bottom:65.160000px;}
.y1ef{bottom:65.520000px;}
.y136{bottom:65.697175px;}
.y201{bottom:66.240000px;}
.y210{bottom:66.600000px;}
.y176{bottom:66.996000px;}
.y1f6{bottom:68.220000px;}
.y1ca{bottom:69.300000px;}
.y168{bottom:70.776000px;}
.y11a{bottom:74.629283px;}
.y110{bottom:76.172545px;}
.y14{bottom:77.076000px;}
.y11c{bottom:82.076468px;}
.y135{bottom:83.696399px;}
.y116{bottom:86.816258px;}
.y155{bottom:89.460000px;}
.y171{bottom:89.490000px;}
.y158{bottom:89.505000px;}
.y10f{bottom:92.551839px;}
.ye{bottom:107.856000px;}
.y1ff{bottom:115.056000px;}
.y165{bottom:115.380000px;}
.y1c9{bottom:115.416000px;}
.y157{bottom:115.425000px;}
.y8f{bottom:117.216000px;}
.y82{bottom:117.576000px;}
.y117{bottom:121.734753px;}
.y1f1{bottom:122.076000px;}
.y10e{bottom:125.310428px;}
.y1b4{bottom:129.096000px;}
.ycc{bottom:129.276000px;}
.yb8{bottom:129.636000px;}
.y1e1{bottom:134.136000px;}
.yac{bottom:136.296000px;}
.y164{bottom:141.120000px;}
.y196{bottom:141.156000px;}
.y15d{bottom:141.165000px;}
.y1ac{bottom:141.516000px;}
.y10d{bottom:143.489645px;}
.y1f4{bottom:143.676000px;}
.y20e{bottom:146.016000px;}
.y1fe{bottom:146.196000px;}
.y1c8{bottom:146.556000px;}
.ya6{bottom:147.276000px;}
.y183{bottom:148.176000px;}
.y8e{bottom:148.356000px;}
.y81{bottom:148.716000px;}
.y144{bottom:149.616000px;}
.y55{bottom:152.130000px;}
.y1f0{bottom:153.210000px;}
.y156{bottom:156.450000px;}
.y1b3{bottom:160.230000px;}
.ycb{bottom:160.410000px;}
.yb7{bottom:160.770000px;}
.y10c{bottom:161.490369px;}
.y1e0{bottom:165.090000px;}
.y166{bottom:166.350000px;}
.y163{bottom:167.040000px;}
.y72{bottom:167.430000px;}
.y195{bottom:172.290000px;}
.y33{bottom:172.470000px;}
.y1ab{bottom:172.650000px;}
.y1fd{bottom:177.150000px;}
.y1c7{bottom:177.510000px;}
.ya5{bottom:178.410000px;}
.y8d{bottom:179.310000px;}
.y10b{bottom:179.669586px;}
.y80{bottom:179.670000px;}
.y54{bottom:183.270000px;}
.y1e6{bottom:184.170000px;}
.ydf{bottom:188.542670px;}
.y143{bottom:188.670000px;}
.y1b2{bottom:191.190000px;}
.yca{bottom:191.370000px;}
.yb6{bottom:191.730000px;}
.y162{bottom:192.990000px;}
.y1df{bottom:196.230000px;}
.y10a{bottom:197.848802px;}
.y71{bottom:198.390000px;}
.y194{bottom:203.250000px;}
.y32{bottom:206.850000px;}
.y20d{bottom:208.110000px;}
.y1fc{bottom:208.290000px;}
.y1c6{bottom:208.650000px;}
.ya4{bottom:209.370000px;}
.y182{bottom:210.270000px;}
.y92{bottom:210.450000px;}
.y7f{bottom:210.810000px;}
.y53{bottom:214.230000px;}
.y1e5{bottom:215.310000px;}
.y1aa{bottom:215.670000px;}
.y109{bottom:215.848026px;}
.y161{bottom:218.730000px;}
.y8c{bottom:222.330000px;}
.yc9{bottom:222.510000px;}
.yb5{bottom:222.870000px;}
.y1de{bottom:227.190000px;}
.y108{bottom:234.027243px;}
.y193{bottom:234.390000px;}
.y1f2{bottom:237.990000px;}
.y1fb{bottom:239.250000px;}
.y1c5{bottom:239.610000px;}
.ya3{bottom:240.510000px;}
.y31{bottom:241.230000px;}
.y70{bottom:241.410000px;}
.y7e{bottom:241.770000px;}
.y160{bottom:244.875000px;}
.y52{bottom:245.370000px;}
.y1e4{bottom:246.270000px;}
.y1a9{bottom:246.630000px;}
.y107{bottom:252.206459px;}
.y18b{bottom:253.290000px;}
.y8b{bottom:253.470000px;}
.yb4{bottom:257.790000px;}
.y1dd{bottom:258.330000px;}
.y192{bottom:265.350000px;}
.yc8{bottom:265.530000px;}
.y20c{bottom:270.210000px;}
.y106{bottom:270.235682px;}
.y1fa{bottom:270.390000px;}
.y1c4{bottom:270.750000px;}
.ya2{bottom:271.470000px;}
.y181{bottom:272.370000px;}
.y6f{bottom:272.550000px;}
.yde{bottom:272.910000px;}
.y30{bottom:275.610000px;}
.y7d{bottom:276.690000px;}
.y1e3{bottom:277.410000px;}
.y1a8{bottom:277.770000px;}
.y51{bottom:280.290000px;}
.y8a{bottom:284.430000px;}
.yb3{bottom:284.790000px;}
.y154{bottom:286.635000px;}
.y105{bottom:288.414899px;}
.y1dc{bottom:289.290000px;}
.yc7{bottom:296.490000px;}
.y1f9{bottom:301.350000px;}
.y1c3{bottom:301.710000px;}
.ya1{bottom:302.610000px;}
.y6e{bottom:303.510000px;}
.ydd{bottom:303.870000px;}
.y7c{bottom:304.770000px;}
.y104{bottom:306.414123px;}
.y50{bottom:308.370000px;}
.y1a7{bottom:308.730000px;}
.y2f{bottom:309.810000px;}
.y180{bottom:315.390000px;}
.y89{bottom:315.570000px;}
.yb2{bottom:319.890000px;}
.y1db{bottom:320.430000px;}
.y103{bottom:324.593340px;}
.y191{bottom:327.450000px;}
.yc6{bottom:327.630000px;}
.y175{bottom:330.015000px;}
.y20b{bottom:332.310000px;}
.y1f8{bottom:332.490000px;}
.y1c2{bottom:332.850000px;}
.ya0{bottom:333.570000px;}
.yab{bottom:334.650000px;}
.y118{bottom:335.776150px;}
.y1b0{bottom:339.555000px;}
.y102{bottom:342.772556px;}
.y2e{bottom:344.235000px;}
.y6d{bottom:346.575000px;}
.ydc{bottom:346.935000px;}
.y174{bottom:347.655000px;}
.yb1{bottom:347.835000px;}
.y1da{bottom:351.435000px;}
.y1a6{bottom:351.795000px;}
.yc5{bottom:358.635000px;}
.y101{bottom:360.771781px;}
.y20a{bottom:363.315000px;}
.y1f7{bottom:363.495000px;}
.y1c1{bottom:363.855000px;}
.y9f{bottom:364.755000px;}
.y7b{bottom:365.655000px;}
.y4f{bottom:366.735000px;}
.y1af{bottom:370.515000px;}
.y17f{bottom:377.535000px;}
.y6c{bottom:377.715000px;}
.ydb{bottom:378.075000px;}
.y2d{bottom:378.615000px;}
.y100{bottom:378.950997px;}
.y1ed{bottom:382.575000px;}
.y1a5{bottom:382.935000px;}
.y18a{bottom:389.595000px;}
.yc4{bottom:389.775000px;}
.y152{bottom:390.855000px;}
.y13f{bottom:392.871183px;}
.y1c0{bottom:393.015000px;}
.y209{bottom:394.455000px;}
.y1d9{bottom:394.635000px;}
.y7a{bottom:396.795000px;}
.yff{bottom:396.950221px;}
.y1ae{bottom:401.655000px;}
.y4e{bottom:404.715000px;}
.y9e{bottom:407.775000px;}
.y6b{bottom:408.675000px;}
.yda{bottom:409.035000px;}
.y2c{bottom:412.995000px;}
.y1ec{bottom:413.535000px;}
.y1a4{bottom:413.895000px;}
.yfe{bottom:415.129438px;}
.y189{bottom:420.555000px;}
.y88{bottom:420.735000px;}
.y208{bottom:425.415000px;}
.y1d8{bottom:425.595000px;}
.y170{bottom:425.955000px;}
.y1f3{bottom:427.575000px;}
.y79{bottom:427.755000px;}
.y4d{bottom:430.455000px;}
.y190{bottom:432.615000px;}
.yfd{bottom:433.308654px;}
.y9d{bottom:438.735000px;}
.y6a{bottom:439.815000px;}
.yd9{bottom:440.175000px;}
.y150{bottom:443.445000px;}
.y1eb{bottom:444.675000px;}
.y1bf{bottom:446.295000px;}
.y2b{bottom:447.195000px;}
.y1a3{bottom:448.995000px;}
.yfc{bottom:451.307879px;}
.y87{bottom:451.695000px;}
.yc3{bottom:455.835000px;}
.y4c{bottom:456.375000px;}
.y1d7{bottom:456.555000px;}
.y78{bottom:458.895000px;}
.y18f{bottom:463.755000px;}
.y1ee{bottom:466.995000px;}
.yfb{bottom:469.532093px;}
.y9c{bottom:469.875000px;}
.y69{bottom:470.775000px;}
.yd8{bottom:471.135000px;}
.yb0{bottom:474.735000px;}
.y1ea{bottom:475.635000px;}
.y1a2{bottom:476.895000px;}
.y15f{bottom:478.545000px;}
.y2a{bottom:481.575000px;}
.y4b{bottom:482.295000px;}
.y17e{bottom:482.655000px;}
.y86{bottom:482.835000px;}
.y207{bottom:487.515000px;}
.y1d6{bottom:487.695000px;}
.yfa{bottom:487.711310px;}
.y18e{bottom:494.715000px;}
.y134{bottom:495.136766px;}
.y14f{bottom:495.825000px;}
.y9b{bottom:500.835000px;}
.y68{bottom:501.915000px;}
.yf9{bottom:505.710534px;}
.y1e9{bottom:506.775000px;}
.y1be{bottom:507.135000px;}
.y4a{bottom:508.215000px;}
.y85{bottom:513.795000px;}
.yd7{bottom:514.155000px;}
.y29{bottom:515.955000px;}
.y1d5{bottom:518.655000px;}
.yf8{bottom:523.889751px;}
.yc2{bottom:525.855000px;}
.y16f{bottom:530.205000px;}
.y9a{bottom:531.975000px;}
.y67{bottom:532.875000px;}
.y49{bottom:533.955000px;}
.y1a1{bottom:537.735000px;}
.y1bd{bottom:538.095000px;}
.y128{bottom:538.694898px;}
.yf7{bottom:541.888975px;}
.y17d{bottom:544.755000px;}
.y84{bottom:544.935000px;}
.yd6{bottom:545.295000px;}
.y14c{bottom:548.385000px;}
.y206{bottom:549.615000px;}
.y1d4{bottom:549.795000px;}
.y115{bottom:549.974419px;}
.y28{bottom:550.335000px;}
.y18d{bottom:556.815000px;}
.y15c{bottom:556.845000px;}
.yc1{bottom:556.995000px;}
.y48{bottom:559.875000px;}
.yf6{bottom:560.068191px;}
.y99{bottom:562.935000px;}
.y77{bottom:564.015000px;}
.y1a0{bottom:568.875000px;}
.y1bc{bottom:569.235000px;}
.y66{bottom:575.895000px;}
.yf5{bottom:578.247408px;}
.y1d3{bottom:580.755000px;}
.y27{bottom:584.535000px;}
.y47{bottom:585.795000px;}
.yc0{bottom:587.955000px;}
.yd5{bottom:588.315000px;}
.y76{bottom:594.975000px;}
.yf4{bottom:596.246632px;}
.y19f{bottom:599.835000px;}
.y1bb{bottom:600.195000px;}
.yd{bottom:602.355000px;}
.y98{bottom:606.165000px;}
.y17c{bottom:606.885000px;}
.y65{bottom:607.065000px;}
.y16b{bottom:608.505000px;}
.y46{bottom:611.745000px;}
.y1d2{bottom:611.925000px;}
.yf3{bottom:614.425849px;}
.y26{bottom:618.945000px;}
.ybf{bottom:619.125000px;}
.yd4{bottom:619.485000px;}
.y200{bottom:621.465000px;}
.yc{bottom:623.805000px;}
.y149{bottom:626.730000px;}
.y19e{bottom:631.005000px;}
.y1ba{bottom:631.365000px;}
.yf2{bottom:632.425073px;}
.y97{bottom:637.125000px;}
.y45{bottom:637.485000px;}
.y64{bottom:638.025000px;}
.y1d1{bottom:642.885000px;}
.yaa{bottom:650.085000px;}
.yd3{bottom:650.445000px;}
.yf1{bottom:650.604289px;}
.y125{bottom:652.449995px;}
.y131{bottom:654.249911px;}
.y19d{bottom:661.965000px;}
.y1b9{bottom:662.325000px;}
.y25{bottom:662.505000px;}
.y96{bottom:668.265000px;}
.yf0{bottom:668.783506px;}
.y63{bottom:669.165000px;}
.y44{bottom:669.345000px;}
.y1e7{bottom:672.945000px;}
.y205{bottom:673.845000px;}
.y1d0{bottom:674.025000px;}
.yb{bottom:680.685000px;}
.ya9{bottom:681.045000px;}
.yef{bottom:686.812729px;}
.y16a{bottom:687.030000px;}
.y24{bottom:690.945000px;}
.ybe{bottom:693.105000px;}
.yd2{bottom:693.465000px;}
.y43{bottom:695.805000px;}
.y75{bottom:700.125000px;}
.yaf{bottom:704.085000px;}
.y1cf{bottom:704.985000px;}
.yee{bottom:704.991945px;}
.y148{bottom:705.570000px;}
.y95{bottom:706.965000px;}
.ya{bottom:708.225000px;}
.y62{bottom:712.185000px;}
.y15b{bottom:712.950000px;}
.y23{bottom:720.825000px;}
.yed{bottom:723.171162px;}
.y19c{bottom:724.065000px;}
.ybd{bottom:724.245000px;}
.yd1{bottom:724.605000px;}
.y1b8{bottom:728.385000px;}
.yae{bottom:731.265000px;}
.y9{bottom:735.765000px;}
.y204{bottom:735.945000px;}
.y1ce{bottom:736.125000px;}
.yec{bottom:740.990394px;}
.y61{bottom:743.145000px;}
.y147{bottom:748.590000px;}
.y22{bottom:750.705000px;}
.y42{bottom:754.305000px;}
.ybc{bottom:755.205000px;}
.yd0{bottom:755.565000px;}
.y1b7{bottom:756.285000px;}
.yeb{bottom:758.269649px;}
.y8{bottom:763.485000px;}
.y1cd{bottom:767.085000px;}
.y17b{bottom:774.105000px;}
.y60{bottom:774.285000px;}
.y142{bottom:775.429688px;}
.yea{bottom:775.548905px;}
.y21{bottom:780.585000px;}
.y188{bottom:786.165000px;}
.ya8{bottom:786.345000px;}
.ycf{bottom:790.665000px;}
.y123{bottom:790.729035px;}
.y41{bottom:792.105000px;}
.ye9{bottom:792.828160px;}
.y203{bottom:798.045000px;}
.y1cc{bottom:798.225000px;}
.y5f{bottom:805.245000px;}
.ye8{bottom:809.927423px;}
.y20{bottom:810.285000px;}
.ya7{bottom:817.305000px;}
.y40{bottom:818.025000px;}
.yce{bottom:818.565000px;}
.y7{bottom:818.925000px;}
.y145{bottom:824.400000px;}
.ye7{bottom:827.206678px;}
.y1cb{bottom:829.185000px;}
.y17a{bottom:836.205000px;}
.y5e{bottom:836.385000px;}
.y1f5{bottom:839.265000px;}
.y1f{bottom:840.165000px;}
.y3f{bottom:843.765000px;}
.ye6{bottom:844.485934px;}
.y6{bottom:846.825000px;}
.y187{bottom:848.265000px;}
.y91{bottom:848.445000px;}
.y202{bottom:860.145000px;}
.y19b{bottom:860.325000px;}
.ye5{bottom:861.765189px;}
.y74{bottom:867.345000px;}
.y13a{bottom:868.380696px;}
.y3e{bottom:869.685000px;}
.y1e{bottom:870.045000px;}
.y5{bottom:874.410000px;}
.ye4{bottom:879.089442px;}
.y5d{bottom:879.450000px;}
.ybb{bottom:883.410000px;}
.y19a{bottom:891.330000px;}
.y11b{bottom:894.434566px;}
.y3d{bottom:895.650000px;}
.ye3{bottom:896.368697px;}
.yad{bottom:898.530000px;}
.y1d{bottom:899.970000px;}
.y4{bottom:901.950000px;}
.y20f{bottom:904.110000px;}
.y179{bottom:910.410000px;}
.y5c{bottom:910.590000px;}
.ye2{bottom:914.907898px;}
.y3c{bottom:921.570000px;}
.y199{bottom:922.470000px;}
.y1c{bottom:929.850000px;}
.y12b{bottom:930.253016px;}
.ye1{bottom:933.627092px;}
.y5b{bottom:941.550000px;}
.y3b{bottom:947.310000px;}
.y3{bottom:952.350000px;}
.ye0{bottom:953.246246px;}
.y198{bottom:953.430000px;}
.yba{bottom:953.610000px;}
.y1b{bottom:959.550000px;}
.y94{bottom:960.630000px;}
.y5a{bottom:972.510000px;}
.y3a{bottom:973.230000px;}
.ycd{bottom:976.650000px;}
.yb9{bottom:984.570000px;}
.y1a{bottom:989.430000px;}
.y93{bottom:991.590000px;}
.y39{bottom:999.150000px;}
.y59{bottom:1003.650000px;}
.y186{bottom:1015.530000px;}
.y90{bottom:1015.710000px;}
.y19{bottom:1019.310000px;}
.y38{bottom:1025.070000px;}
.y58{bottom:1034.610000px;}
.y83{bottom:1046.670000px;}
.y13c{bottom:1048.147935px;}
.y18{bottom:1049.190000px;}
.y37{bottom:1050.810000px;}
.y73{bottom:1065.750000px;}
.y36{bottom:1076.730000px;}
.y185{bottom:1077.630000px;}
.y57{bottom:1077.810000px;}
.y17{bottom:1078.890000px;}
.y178{bottom:1096.710000px;}
.y16{bottom:1108.770000px;}
.y35{bottom:1108.950000px;}
.y34{bottom:1137.030000px;}
.y15{bottom:1139.760000px;}
.y56{bottom:1139.940000px;}
.y1{bottom:1194.300000px;}
.h1c{height:17.999230px;}
.h31{height:21.420000px;}
.h38{height:21.456000px;}
.h36{height:21.600000px;}
.h39{height:21.636000px;}
.h20{height:36.034451px;}
.h1e{height:36.718423px;}
.h1d{height:36.934414px;}
.h26{height:39.058322px;}
.h24{height:45.934032px;}
.hc{height:50.510039px;}
.h2d{height:51.660000px;}
.h2e{height:51.696000px;}
.h29{height:51.840000px;}
.h2b{height:53.077852px;}
.ha{height:53.573906px;}
.h16{height:53.707646px;}
.h2{height:55.987031px;}
.h15{height:58.648644px;}
.hb{height:58.651172px;}
.hf{height:59.343750px;}
.h1b{height:59.436462px;}
.h2a{height:60.226875px;}
.h7{height:60.855469px;}
.h14{height:62.181695px;}
.h6{height:63.180000px;}
.h13{height:63.852248px;}
.hd{height:64.546875px;}
.h10{height:70.628906px;}
.h5{height:70.664062px;}
.h25{height:72.559373px;}
.he{height:72.562500px;}
.h23{height:72.705778px;}
.h18{height:73.720802px;}
.h11{height:74.004654px;}
.h1f{height:74.156809px;}
.h33{height:77.580000px;}
.h2c{height:77.616000px;}
.h35{height:77.796000px;}
.h8{height:82.676953px;}
.h3{height:85.052461px;}
.h9{height:86.585445px;}
.h1a{height:96.115864px;}
.h4{height:96.508125px;}
.h21{height:97.735794px;}
.h2f{height:103.500000px;}
.h37{height:103.536000px;}
.h30{height:129.456000px;}
.h22{height:137.694066px;}
.h19{height:149.393562px;}
.h32{height:155.190000px;}
.h34{height:232.770000px;}
.h17{height:243.709497px;}
.h27{height:892.980000px;}
.h28{height:893.250000px;}
.h12{height:967.998302px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:19.799504px;}
.w5{width:19.979500px;}
.w1d{width:40.356000px;}
.w1b{width:42.120000px;}
.w1c{width:42.156000px;}
.w14{width:68.580000px;}
.w16{width:77.076000px;}
.w13{width:83.376000px;}
.w15{width:84.240000px;}
.wc{width:136.976555px;}
.w17{width:150.300000px;}
.wb{width:172.075673px;}
.wf{width:176.035573px;}
.wa{width:176.575559px;}
.w1a{width:180.030000px;}
.w8{width:186.835301px;}
.w18{width:190.650000px;}
.w9{width:195.655080px;}
.w7{width:202.674904px;}
.wd{width:219.264486px;}
.w19{width:254.370000px;}
.we{width:404.299832px;}
.w3{width:633.345000px;}
.w4{width:692.907583px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w12{width:1262.879981px;}
.w10{width:1262.880000px;}
.w11{width:1263.000000px;}
.x0{left:0.000000px;}
.x27{left:7.740000px;}
.x1a{left:10.799729px;}
.x31{left:12.060000px;}
.x17{left:17.135571px;}
.x14{left:25.739353px;}
.x22{left:32.219190px;}
.x18{left:39.089018px;}
.x15{left:79.738004px;}
.x23{left:106.377325px;}
.x1{left:127.655987px;}
.x3{left:130.715987px;}
.x26{left:133.415981px;}
.x7{left:137.555987px;}
.x8{left:143.675987px;}
.x5{left:146.735987px;}
.x4{left:154.649987px;}
.x9{left:156.809987px;}
.x12{left:180.749987px;}
.x28{left:191.370000px;}
.x32{left:208.649987px;}
.xc{left:223.419000px;}
.x33{left:235.649987px;}
.xb{left:257.789987px;}
.x29{left:260.670000px;}
.x16{left:266.697178px;}
.x6{left:268.769987px;}
.xa{left:302.114987px;}
.xf{left:316.659000px;}
.x19{left:342.145278px;}
.x2a{left:345.630000px;}
.x21{left:346.645164px;}
.x1c{left:349.345100px;}
.x1d{left:353.305002px;}
.x1b{left:356.544918px;}
.x2b{left:423.435000px;}
.xe{left:425.949000px;}
.x13{left:437.474987px;}
.x10{left:441.974987px;}
.xd{left:444.849000px;}
.x2{left:530.204987px;}
.x11{left:572.504987px;}
.x2c{left:574.635000px;}
.x1e{left:581.224265px;}
.x24{left:602.283737px;}
.x2f{left:610.455000px;}
.x20{left:619.743301px;}
.x30{left:627.014981px;}
.x1f{left:628.383082px;}
.x2d{left:766.005000px;}
.x25{left:847.619987px;}
.x2e{left:1021.110000px;}
@media print{
.v1{vertical-align:-57.597518pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-4.480000pt;}
.ls5{letter-spacing:-2.560000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.319986pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.047358pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.319986pt;}
.ls7{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:5.248000pt;}
.ls29{letter-spacing:9.088000pt;}
.ls1c{letter-spacing:12.288000pt;}
.ls1e{letter-spacing:16.128000pt;}
.ls6{letter-spacing:18.863360pt;}
.ls20{letter-spacing:19.328000pt;}
.ls22{letter-spacing:26.368000pt;}
.lsf{letter-spacing:30.208000pt;}
.lse{letter-spacing:34.048000pt;}
.ls1d{letter-spacing:37.248000pt;}
.ls18{letter-spacing:41.088000pt;}
.ls19{letter-spacing:44.288000pt;}
.ls1{letter-spacing:61.258667pt;}
.ls3{letter-spacing:66.400000pt;}
.ls2{letter-spacing:70.240000pt;}
.ls2a{letter-spacing:95.648000pt;}
.ls23{letter-spacing:144.928000pt;}
.ls27{letter-spacing:148.768000pt;}
.ls28{letter-spacing:149.408000pt;}
.ls25{letter-spacing:152.608000pt;}
.lsc{letter-spacing:156.778667pt;}
.ls26{letter-spacing:159.648000pt;}
.ls10{letter-spacing:172.778667pt;}
.ls13{letter-spacing:177.912332pt;}
.ws14{word-spacing:-63.744000pt;}
.wsb{word-spacing:-32.000000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws12{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.599414pt;}
.ws3{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.wsf{word-spacing:-12.959441pt;}
.ws13{word-spacing:-11.520000pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-14.592000pt;}
._a{margin-left:-12.800000pt;}
._4{margin-left:-10.725120pt;}
._34{margin-left:-8.448000pt;}
._2{margin-left:-7.490560pt;}
._5{margin-left:-6.128640pt;}
._3{margin-left:-4.596480pt;}
._7{margin-left:-3.575040pt;}
._6{margin-left:-2.383360pt;}
._0{margin-left:-1.361920pt;}
._1{width:1.191680pt;}
._b{width:2.453333pt;}
._e{width:3.519147pt;}
._d{width:4.545280pt;}
._11{width:5.767040pt;}
._f{width:7.114453pt;}
._10{width:8.107947pt;}
._c{width:9.083520pt;}
._12{width:10.383787pt;}
._19{width:11.712000pt;}
._15{width:12.672000pt;}
._18{width:13.698560pt;}
._1c{width:14.901760pt;}
._25{width:15.906560pt;}
._13{width:17.024000pt;}
._14{width:17.944320pt;}
._21{width:19.264000pt;}
._1a{width:20.800000pt;}
._1b{width:21.905920pt;}
._16{width:23.680000pt;}
._17{width:24.693333pt;}
._1d{width:26.250667pt;}
._31{width:27.758720pt;}
._32{width:28.834560pt;}
._22{width:30.179840pt;}
._1f{width:31.210667pt;}
._20{width:32.512000pt;}
._33{width:33.984000pt;}
._1e{width:35.328000pt;}
._2f{width:36.865280pt;}
._45{width:37.928960pt;}
._55{width:39.232000pt;}
._43{width:40.192000pt;}
._4d{width:41.664000pt;}
._5a{width:42.944000pt;}
._59{width:44.864000pt;}
._24{width:46.108160pt;}
._56{width:47.122347pt;}
._2e{width:48.634880pt;}
._29{width:49.667200pt;}
._2b{width:50.888960pt;}
._39{width:52.367360pt;}
._52{width:53.738240pt;}
._51{width:54.929920pt;}
._26{width:58.302720pt;}
._27{width:59.494400pt;}
._2a{width:60.612267pt;}
._2c{width:64.202880pt;}
._28{width:65.178240pt;}
._60{width:69.888000pt;}
._44{width:72.000000pt;}
._4b{width:73.240320pt;}
._3f{width:74.240000pt;}
._40{width:75.360000pt;}
._61{width:76.288000pt;}
._42{width:79.104000pt;}
._48{width:80.064000pt;}
._47{width:81.664000pt;}
._30{width:82.631680pt;}
._63{width:85.504000pt;}
._38{width:89.445547pt;}
._37{width:90.339840pt;}
._41{width:91.520000pt;}
._3b{width:94.080000pt;}
._3c{width:95.264000pt;}
._58{width:102.976000pt;}
._57{width:103.872000pt;}
._5f{width:104.864000pt;}
._5c{width:118.720000pt;}
._3d{width:142.711040pt;}
._5e{width:161.856000pt;}
._4c{width:165.679360pt;}
._53{width:203.520000pt;}
._54{width:204.672000pt;}
._2d{width:252.403200pt;}
._4a{width:283.562667pt;}
._49{width:284.567040pt;}
._5d{width:295.232000pt;}
._50{width:296.960000pt;}
._3a{width:317.088000pt;}
._64{width:389.652480pt;}
._4e{width:398.528000pt;}
._4f{width:399.434667pt;}
._62{width:511.104000pt;}
._46{width:525.632000pt;}
._35{width:553.216000pt;}
._23{width:629.999515pt;}
._3e{width:668.442027pt;}
._8{width:752.138667pt;}
._36{width:1121.504000pt;}
._5b{width:1229.248000pt;}
.fs7{font-size:47.997931pt;}
.fs6{font-size:53.117711pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:56.317573pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:63.997242pt;}
.fs8{font-size:63.998390pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:64.126387pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y13{bottom:-32.320000pt;}
.y122{bottom:-24.958919pt;}
.y12{bottom:-14.080000pt;}
.y130{bottom:-11.359506pt;}
.y121{bottom:-7.839657pt;}
.y0{bottom:0.000000pt;}
.y114{bottom:3.039984pt;}
.y133{bottom:3.399857pt;}
.y124{bottom:3.519853pt;}
.y12a{bottom:3.999832pt;}
.y15a{bottom:4.160000pt;}
.y1b6{bottom:4.192000pt;}
.y169{bottom:4.320000pt;}
.y212{bottom:4.352000pt;}
.y127{bottom:4.359817pt;}
.y11{bottom:4.480000pt;}
.y12f{bottom:5.119784pt;}
.y141{bottom:6.239735pt;}
.y13e{bottom:7.519684pt;}
.y120{bottom:8.479640pt;}
.y139{bottom:10.079571pt;}
.y151{bottom:10.400000pt;}
.y14b{bottom:10.560000pt;}
.y173{bottom:10.586667pt;}
.y16e{bottom:10.600000pt;}
.y13b{bottom:14.039395pt;}
.y113{bottom:19.199021pt;}
.y132{bottom:19.559160pt;}
.y129{bottom:20.159136pt;}
.y126{bottom:20.359127pt;}
.y12e{bottom:21.119094pt;}
.y140{bottom:22.239046pt;}
.y10{bottom:22.880000pt;}
.y11f{bottom:24.638943pt;}
.y13d{bottom:25.958891pt;}
.y138{bottom:26.078881pt;}
.y14e{bottom:33.440000pt;}
.y153{bottom:33.466667pt;}
.y14a{bottom:33.600000pt;}
.y16d{bottom:33.640000pt;}
.y112{bottom:35.198331pt;}
.y119{bottom:36.578424pt;}
.y12d{bottom:37.278398pt;}
.y11e{bottom:40.798247pt;}
.yf{bottom:41.274667pt;}
.y137{bottom:42.238185pt;}
.y2{bottom:51.200000pt;}
.y111{bottom:51.357635pt;}
.y177{bottom:51.360000pt;}
.y146{bottom:51.392000pt;}
.y12c{bottom:53.437701pt;}
.y159{bottom:54.912000pt;}
.y1e2{bottom:55.360000pt;}
.y184{bottom:55.840000pt;}
.y197{bottom:56.000000pt;}
.y14d{bottom:56.480000pt;}
.y172{bottom:56.506667pt;}
.y15e{bottom:56.520000pt;}
.y167{bottom:56.640000pt;}
.y16c{bottom:56.680000pt;}
.y11d{bottom:56.797557pt;}
.y1ad{bottom:56.800000pt;}
.y18c{bottom:57.120000pt;}
.y1b1{bottom:57.280000pt;}
.y1e8{bottom:57.440000pt;}
.y1b5{bottom:57.600000pt;}
.y211{bottom:57.920000pt;}
.y1ef{bottom:58.240000pt;}
.y136{bottom:58.397489pt;}
.y201{bottom:58.880000pt;}
.y210{bottom:59.200000pt;}
.y176{bottom:59.552000pt;}
.y1f6{bottom:60.640000pt;}
.y1ca{bottom:61.600000pt;}
.y168{bottom:62.912000pt;}
.y11a{bottom:66.337141pt;}
.y110{bottom:67.708929pt;}
.y14{bottom:68.512000pt;}
.y11c{bottom:72.956861pt;}
.y135{bottom:74.396799pt;}
.y116{bottom:77.170008pt;}
.y155{bottom:79.520000pt;}
.y171{bottom:79.546667pt;}
.y158{bottom:79.560000pt;}
.y10f{bottom:82.268301pt;}
.ye{bottom:95.872000pt;}
.y1ff{bottom:102.272000pt;}
.y165{bottom:102.560000pt;}
.y1c9{bottom:102.592000pt;}
.y157{bottom:102.600000pt;}
.y8f{bottom:104.192000pt;}
.y82{bottom:104.512000pt;}
.y117{bottom:108.208669pt;}
.y1f1{bottom:108.512000pt;}
.y10e{bottom:111.387047pt;}
.y1b4{bottom:114.752000pt;}
.ycc{bottom:114.912000pt;}
.yb8{bottom:115.232000pt;}
.y1e1{bottom:119.232000pt;}
.yac{bottom:121.152000pt;}
.y164{bottom:125.440000pt;}
.y196{bottom:125.472000pt;}
.y15d{bottom:125.480000pt;}
.y1ac{bottom:125.792000pt;}
.y10d{bottom:127.546351pt;}
.y1f4{bottom:127.712000pt;}
.y20e{bottom:129.792000pt;}
.y1fe{bottom:129.952000pt;}
.y1c8{bottom:130.272000pt;}
.ya6{bottom:130.912000pt;}
.y183{bottom:131.712000pt;}
.y8e{bottom:131.872000pt;}
.y81{bottom:132.192000pt;}
.y144{bottom:132.992000pt;}
.y55{bottom:135.226667pt;}
.y1f0{bottom:136.186667pt;}
.y156{bottom:139.066667pt;}
.y1b3{bottom:142.426667pt;}
.ycb{bottom:142.586667pt;}
.yb7{bottom:142.906667pt;}
.y10c{bottom:143.546995pt;}
.y1e0{bottom:146.746667pt;}
.y166{bottom:147.866667pt;}
.y163{bottom:148.480000pt;}
.y72{bottom:148.826667pt;}
.y195{bottom:153.146667pt;}
.y33{bottom:153.306667pt;}
.y1ab{bottom:153.466667pt;}
.y1fd{bottom:157.466667pt;}
.y1c7{bottom:157.786667pt;}
.ya5{bottom:158.586667pt;}
.y8d{bottom:159.386667pt;}
.y10b{bottom:159.706298pt;}
.y80{bottom:159.706667pt;}
.y54{bottom:162.906667pt;}
.y1e6{bottom:163.706667pt;}
.ydf{bottom:167.593484pt;}
.y143{bottom:167.706667pt;}
.y1b2{bottom:169.946667pt;}
.yca{bottom:170.106667pt;}
.yb6{bottom:170.426667pt;}
.y162{bottom:171.546667pt;}
.y1df{bottom:174.426667pt;}
.y10a{bottom:175.865602pt;}
.y71{bottom:176.346667pt;}
.y194{bottom:180.666667pt;}
.y32{bottom:183.866667pt;}
.y20d{bottom:184.986667pt;}
.y1fc{bottom:185.146667pt;}
.y1c6{bottom:185.466667pt;}
.ya4{bottom:186.106667pt;}
.y182{bottom:186.906667pt;}
.y92{bottom:187.066667pt;}
.y7f{bottom:187.386667pt;}
.y53{bottom:190.426667pt;}
.y1e5{bottom:191.386667pt;}
.y1aa{bottom:191.706667pt;}
.y109{bottom:191.864912pt;}
.y161{bottom:194.426667pt;}
.y8c{bottom:197.626667pt;}
.yc9{bottom:197.786667pt;}
.yb5{bottom:198.106667pt;}
.y1de{bottom:201.946667pt;}
.y108{bottom:208.024216pt;}
.y193{bottom:208.346667pt;}
.y1f2{bottom:211.546667pt;}
.y1fb{bottom:212.666667pt;}
.y1c5{bottom:212.986667pt;}
.ya3{bottom:213.786667pt;}
.y31{bottom:214.426667pt;}
.y70{bottom:214.586667pt;}
.y7e{bottom:214.906667pt;}
.y160{bottom:217.666667pt;}
.y52{bottom:218.106667pt;}
.y1e4{bottom:218.906667pt;}
.y1a9{bottom:219.226667pt;}
.y107{bottom:224.183520pt;}
.y18b{bottom:225.146667pt;}
.y8b{bottom:225.306667pt;}
.yb4{bottom:229.146667pt;}
.y1dd{bottom:229.626667pt;}
.y192{bottom:235.866667pt;}
.yc8{bottom:236.026667pt;}
.y20c{bottom:240.186667pt;}
.y106{bottom:240.209496pt;}
.y1fa{bottom:240.346667pt;}
.y1c4{bottom:240.666667pt;}
.ya2{bottom:241.306667pt;}
.y181{bottom:242.106667pt;}
.y6f{bottom:242.266667pt;}
.yde{bottom:242.586667pt;}
.y30{bottom:244.986667pt;}
.y7d{bottom:245.946667pt;}
.y1e3{bottom:246.586667pt;}
.y1a8{bottom:246.906667pt;}
.y51{bottom:249.146667pt;}
.y8a{bottom:252.826667pt;}
.yb3{bottom:253.146667pt;}
.y154{bottom:254.786667pt;}
.y105{bottom:256.368799pt;}
.y1dc{bottom:257.146667pt;}
.yc7{bottom:263.546667pt;}
.y1f9{bottom:267.866667pt;}
.y1c3{bottom:268.186667pt;}
.ya1{bottom:268.986667pt;}
.y6e{bottom:269.786667pt;}
.ydd{bottom:270.106667pt;}
.y7c{bottom:270.906667pt;}
.y104{bottom:272.368110pt;}
.y50{bottom:274.106667pt;}
.y1a7{bottom:274.426667pt;}
.y2f{bottom:275.386667pt;}
.y180{bottom:280.346667pt;}
.y89{bottom:280.506667pt;}
.yb2{bottom:284.346667pt;}
.y1db{bottom:284.826667pt;}
.y103{bottom:288.527413pt;}
.y191{bottom:291.066667pt;}
.yc6{bottom:291.226667pt;}
.y175{bottom:293.346667pt;}
.y20b{bottom:295.386667pt;}
.y1f8{bottom:295.546667pt;}
.y1c2{bottom:295.866667pt;}
.ya0{bottom:296.506667pt;}
.yab{bottom:297.466667pt;}
.y118{bottom:298.467689pt;}
.y1b0{bottom:301.826667pt;}
.y102{bottom:304.686717pt;}
.y2e{bottom:305.986667pt;}
.y6d{bottom:308.066667pt;}
.ydc{bottom:308.386667pt;}
.y174{bottom:309.026667pt;}
.yb1{bottom:309.186667pt;}
.y1da{bottom:312.386667pt;}
.y1a6{bottom:312.706667pt;}
.yc5{bottom:318.786667pt;}
.y101{bottom:320.686027pt;}
.y20a{bottom:322.946667pt;}
.y1f7{bottom:323.106667pt;}
.y1c1{bottom:323.426667pt;}
.y9f{bottom:324.226667pt;}
.y7b{bottom:325.026667pt;}
.y4f{bottom:325.986667pt;}
.y1af{bottom:329.346667pt;}
.y17f{bottom:335.586667pt;}
.y6c{bottom:335.746667pt;}
.ydb{bottom:336.066667pt;}
.y2d{bottom:336.546667pt;}
.y100{bottom:336.845331pt;}
.y1ed{bottom:340.066667pt;}
.y1a5{bottom:340.386667pt;}
.y18a{bottom:346.306667pt;}
.yc4{bottom:346.466667pt;}
.y152{bottom:347.426667pt;}
.y13f{bottom:349.218829pt;}
.y1c0{bottom:349.346667pt;}
.y209{bottom:350.626667pt;}
.y1d9{bottom:350.786667pt;}
.y7a{bottom:352.706667pt;}
.yff{bottom:352.844641pt;}
.y1ae{bottom:357.026667pt;}
.y4e{bottom:359.746667pt;}
.y9e{bottom:362.466667pt;}
.y6b{bottom:363.266667pt;}
.yda{bottom:363.586667pt;}
.y2c{bottom:367.106667pt;}
.y1ec{bottom:367.586667pt;}
.y1a4{bottom:367.906667pt;}
.yfe{bottom:369.003945pt;}
.y189{bottom:373.826667pt;}
.y88{bottom:373.986667pt;}
.y208{bottom:378.146667pt;}
.y1d8{bottom:378.306667pt;}
.y170{bottom:378.626667pt;}
.y1f3{bottom:380.066667pt;}
.y79{bottom:380.226667pt;}
.y4d{bottom:382.626667pt;}
.y190{bottom:384.546667pt;}
.yfd{bottom:385.163248pt;}
.y9d{bottom:389.986667pt;}
.y6a{bottom:390.946667pt;}
.yd9{bottom:391.266667pt;}
.y150{bottom:394.173333pt;}
.y1eb{bottom:395.266667pt;}
.y1bf{bottom:396.706667pt;}
.y2b{bottom:397.506667pt;}
.y1a3{bottom:399.106667pt;}
.yfc{bottom:401.162559pt;}
.y87{bottom:401.506667pt;}
.yc3{bottom:405.186667pt;}
.y4c{bottom:405.666667pt;}
.y1d7{bottom:405.826667pt;}
.y78{bottom:407.906667pt;}
.y18f{bottom:412.226667pt;}
.y1ee{bottom:415.106667pt;}
.yfb{bottom:417.361861pt;}
.y9c{bottom:417.666667pt;}
.y69{bottom:418.466667pt;}
.yd8{bottom:418.786667pt;}
.yb0{bottom:421.986667pt;}
.y1ea{bottom:422.786667pt;}
.y1a2{bottom:423.906667pt;}
.y15f{bottom:425.373333pt;}
.y2a{bottom:428.066667pt;}
.y4b{bottom:428.706667pt;}
.y17e{bottom:429.026667pt;}
.y86{bottom:429.186667pt;}
.y207{bottom:433.346667pt;}
.y1d6{bottom:433.506667pt;}
.yfa{bottom:433.521164pt;}
.y18e{bottom:439.746667pt;}
.y134{bottom:440.121570pt;}
.y14f{bottom:440.733333pt;}
.y9b{bottom:445.186667pt;}
.y68{bottom:446.146667pt;}
.yf9{bottom:449.520475pt;}
.y1e9{bottom:450.466667pt;}
.y1be{bottom:450.786667pt;}
.y4a{bottom:451.746667pt;}
.y85{bottom:456.706667pt;}
.yd7{bottom:457.026667pt;}
.y29{bottom:458.626667pt;}
.y1d5{bottom:461.026667pt;}
.yf8{bottom:465.679778pt;}
.yc2{bottom:467.426667pt;}
.y16f{bottom:471.293333pt;}
.y9a{bottom:472.866667pt;}
.y67{bottom:473.666667pt;}
.y49{bottom:474.626667pt;}
.y1a1{bottom:477.986667pt;}
.y1bd{bottom:478.306667pt;}
.y128{bottom:478.839909pt;}
.yf7{bottom:481.679089pt;}
.y17d{bottom:484.226667pt;}
.y84{bottom:484.386667pt;}
.yd6{bottom:484.706667pt;}
.y14c{bottom:487.453333pt;}
.y206{bottom:488.546667pt;}
.y1d4{bottom:488.706667pt;}
.y115{bottom:488.866150pt;}
.y28{bottom:489.186667pt;}
.y18d{bottom:494.946667pt;}
.y15c{bottom:494.973333pt;}
.yc1{bottom:495.106667pt;}
.y48{bottom:497.666667pt;}
.yf6{bottom:497.838392pt;}
.y99{bottom:500.386667pt;}
.y77{bottom:501.346667pt;}
.y1a0{bottom:505.666667pt;}
.y1bc{bottom:505.986667pt;}
.y66{bottom:511.906667pt;}
.yf5{bottom:513.997696pt;}
.y1d3{bottom:516.226667pt;}
.y27{bottom:519.586667pt;}
.y47{bottom:520.706667pt;}
.yc0{bottom:522.626667pt;}
.yd5{bottom:522.946667pt;}
.y76{bottom:528.866667pt;}
.yf4{bottom:529.997006pt;}
.y19f{bottom:533.186667pt;}
.y1bb{bottom:533.506667pt;}
.yd{bottom:535.426667pt;}
.y98{bottom:538.813333pt;}
.y17c{bottom:539.453333pt;}
.y65{bottom:539.613333pt;}
.y16b{bottom:540.893333pt;}
.y46{bottom:543.773333pt;}
.y1d2{bottom:543.933333pt;}
.yf3{bottom:546.156310pt;}
.y26{bottom:550.173333pt;}
.ybf{bottom:550.333333pt;}
.yd4{bottom:550.653333pt;}
.y200{bottom:552.413333pt;}
.yc{bottom:554.493333pt;}
.y149{bottom:557.093333pt;}
.y19e{bottom:560.893333pt;}
.y1ba{bottom:561.213333pt;}
.yf2{bottom:562.155620pt;}
.y97{bottom:566.333333pt;}
.y45{bottom:566.653333pt;}
.y64{bottom:567.133333pt;}
.y1d1{bottom:571.453333pt;}
.yaa{bottom:577.853333pt;}
.yd3{bottom:578.173333pt;}
.yf1{bottom:578.314924pt;}
.y125{bottom:579.955551pt;}
.y131{bottom:581.555476pt;}
.y19d{bottom:588.413333pt;}
.y1b9{bottom:588.733333pt;}
.y25{bottom:588.893333pt;}
.y96{bottom:594.013333pt;}
.yf0{bottom:594.474227pt;}
.y63{bottom:594.813333pt;}
.y44{bottom:594.973333pt;}
.y1e7{bottom:598.173333pt;}
.y205{bottom:598.973333pt;}
.y1d0{bottom:599.133333pt;}
.yb{bottom:605.053333pt;}
.ya9{bottom:605.373333pt;}
.yef{bottom:610.500203pt;}
.y16a{bottom:610.693333pt;}
.y24{bottom:614.173333pt;}
.ybe{bottom:616.093333pt;}
.yd2{bottom:616.413333pt;}
.y43{bottom:618.493333pt;}
.y75{bottom:622.333333pt;}
.yaf{bottom:625.853333pt;}
.y1cf{bottom:626.653333pt;}
.yee{bottom:626.659507pt;}
.y148{bottom:627.173333pt;}
.y95{bottom:628.413333pt;}
.ya{bottom:629.533333pt;}
.y62{bottom:633.053333pt;}
.y15b{bottom:633.733333pt;}
.y23{bottom:640.733333pt;}
.yed{bottom:642.818811pt;}
.y19c{bottom:643.613333pt;}
.ybd{bottom:643.773333pt;}
.yd1{bottom:644.093333pt;}
.y1b8{bottom:647.453333pt;}
.yae{bottom:650.013333pt;}
.y9{bottom:654.013333pt;}
.y204{bottom:654.173333pt;}
.y1ce{bottom:654.333333pt;}
.yec{bottom:658.658128pt;}
.y61{bottom:660.573333pt;}
.y147{bottom:665.413333pt;}
.y22{bottom:667.293333pt;}
.y42{bottom:670.493333pt;}
.ybc{bottom:671.293333pt;}
.yd0{bottom:671.613333pt;}
.y1b7{bottom:672.253333pt;}
.yeb{bottom:674.017466pt;}
.y8{bottom:678.653333pt;}
.y1cd{bottom:681.853333pt;}
.y17b{bottom:688.093333pt;}
.y60{bottom:688.253333pt;}
.y142{bottom:689.270833pt;}
.yea{bottom:689.376804pt;}
.y21{bottom:693.853333pt;}
.y188{bottom:698.813333pt;}
.ya8{bottom:698.973333pt;}
.ycf{bottom:702.813333pt;}
.y123{bottom:702.870254pt;}
.y41{bottom:704.093333pt;}
.ye9{bottom:704.736142pt;}
.y203{bottom:709.373333pt;}
.y1cc{bottom:709.533333pt;}
.y5f{bottom:715.773333pt;}
.ye8{bottom:719.935487pt;}
.y20{bottom:720.253333pt;}
.ya7{bottom:726.493333pt;}
.y40{bottom:727.133333pt;}
.yce{bottom:727.613333pt;}
.y7{bottom:727.933333pt;}
.y145{bottom:732.800000pt;}
.ye7{bottom:735.294825pt;}
.y1cb{bottom:737.053333pt;}
.y17a{bottom:743.293333pt;}
.y5e{bottom:743.453333pt;}
.y1f5{bottom:746.013333pt;}
.y1f{bottom:746.813333pt;}
.y3f{bottom:750.013333pt;}
.ye6{bottom:750.654163pt;}
.y6{bottom:752.733333pt;}
.y187{bottom:754.013333pt;}
.y91{bottom:754.173333pt;}
.y202{bottom:764.573333pt;}
.y19b{bottom:764.733333pt;}
.ye5{bottom:766.013501pt;}
.y74{bottom:770.973333pt;}
.y13a{bottom:771.893952pt;}
.y3e{bottom:773.053333pt;}
.y1e{bottom:773.373333pt;}
.y5{bottom:777.253333pt;}
.ye4{bottom:781.412837pt;}
.y5d{bottom:781.733333pt;}
.ybb{bottom:785.253333pt;}
.y19a{bottom:792.293333pt;}
.y11b{bottom:795.052947pt;}
.y3d{bottom:796.133333pt;}
.ye3{bottom:796.772176pt;}
.yad{bottom:798.693333pt;}
.y1d{bottom:799.973333pt;}
.y4{bottom:801.733333pt;}
.y20f{bottom:803.653333pt;}
.y179{bottom:809.253333pt;}
.y5c{bottom:809.413333pt;}
.ye2{bottom:813.251465pt;}
.y3c{bottom:819.173333pt;}
.y199{bottom:819.973333pt;}
.y1c{bottom:826.533333pt;}
.y12b{bottom:826.891570pt;}
.ye1{bottom:829.890748pt;}
.y5b{bottom:836.933333pt;}
.y3b{bottom:842.053333pt;}
.y3{bottom:846.533333pt;}
.ye0{bottom:847.329997pt;}
.y198{bottom:847.493333pt;}
.yba{bottom:847.653333pt;}
.y1b{bottom:852.933333pt;}
.y94{bottom:853.893333pt;}
.y5a{bottom:864.453333pt;}
.y3a{bottom:865.093333pt;}
.ycd{bottom:868.133333pt;}
.yb9{bottom:875.173333pt;}
.y1a{bottom:879.493333pt;}
.y93{bottom:881.413333pt;}
.y39{bottom:888.133333pt;}
.y59{bottom:892.133333pt;}
.y186{bottom:902.693333pt;}
.y90{bottom:902.853333pt;}
.y19{bottom:906.053333pt;}
.y38{bottom:911.173333pt;}
.y58{bottom:919.653333pt;}
.y83{bottom:930.373333pt;}
.y13c{bottom:931.687053pt;}
.y18{bottom:932.613333pt;}
.y37{bottom:934.053333pt;}
.y73{bottom:947.333333pt;}
.y36{bottom:957.093333pt;}
.y185{bottom:957.893333pt;}
.y57{bottom:958.053333pt;}
.y17{bottom:959.013333pt;}
.y178{bottom:974.853333pt;}
.y16{bottom:985.573333pt;}
.y35{bottom:985.733333pt;}
.y34{bottom:1010.693333pt;}
.y15{bottom:1013.120000pt;}
.y56{bottom:1013.280000pt;}
.y1{bottom:1061.600000pt;}
.h1c{height:15.999315pt;}
.h31{height:19.040000pt;}
.h38{height:19.072000pt;}
.h36{height:19.200000pt;}
.h39{height:19.232000pt;}
.h20{height:32.030623pt;}
.h1e{height:32.638598pt;}
.h1d{height:32.830590pt;}
.h26{height:34.718508pt;}
.h24{height:40.830251pt;}
.hc{height:44.897813pt;}
.h2d{height:45.920000pt;}
.h2e{height:45.952000pt;}
.h29{height:46.080000pt;}
.h2b{height:47.180312pt;}
.ha{height:47.621250pt;}
.h16{height:47.740130pt;}
.h2{height:49.766250pt;}
.h15{height:52.132128pt;}
.hb{height:52.134375pt;}
.hf{height:52.750000pt;}
.h1b{height:52.832411pt;}
.h2a{height:53.535000pt;}
.h7{height:54.093750pt;}
.h14{height:55.272618pt;}
.h6{height:56.160000pt;}
.h13{height:56.757554pt;}
.hd{height:57.375000pt;}
.h10{height:62.781250pt;}
.h5{height:62.812500pt;}
.h25{height:64.497220pt;}
.he{height:64.500000pt;}
.h23{height:64.627358pt;}
.h18{height:65.529602pt;}
.h11{height:65.781915pt;}
.h1f{height:65.917164pt;}
.h33{height:68.960000pt;}
.h2c{height:68.992000pt;}
.h35{height:69.152000pt;}
.h8{height:73.490625pt;}
.h3{height:75.602187pt;}
.h9{height:76.964840pt;}
.h1a{height:85.436323pt;}
.h4{height:85.785000pt;}
.h21{height:86.876262pt;}
.h2f{height:92.000000pt;}
.h37{height:92.032000pt;}
.h30{height:115.072000pt;}
.h22{height:122.394726pt;}
.h19{height:132.794277pt;}
.h32{height:137.946667pt;}
.h34{height:206.906667pt;}
.h17{height:216.630664pt;}
.h27{height:793.760000pt;}
.h28{height:794.000000pt;}
.h12{height:860.442935pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:17.599559pt;}
.w5{width:17.759556pt;}
.w1d{width:35.872000pt;}
.w1b{width:37.440000pt;}
.w1c{width:37.472000pt;}
.w14{width:60.960000pt;}
.w16{width:68.512000pt;}
.w13{width:74.112000pt;}
.w15{width:74.880000pt;}
.wc{width:121.756938pt;}
.w17{width:133.600000pt;}
.wb{width:152.956154pt;}
.wf{width:156.476065pt;}
.wa{width:156.956053pt;}
.w1a{width:160.026667pt;}
.w8{width:166.075823pt;}
.w18{width:169.466667pt;}
.w9{width:173.915626pt;}
.w7{width:180.155470pt;}
.wd{width:194.901766pt;}
.w19{width:226.106667pt;}
.we{width:359.377629pt;}
.w3{width:562.973333pt;}
.w4{width:615.917852pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w12{width:1122.559983pt;}
.w10{width:1122.560000pt;}
.w11{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x27{left:6.880000pt;}
.x1a{left:9.599759pt;}
.x31{left:10.720000pt;}
.x17{left:15.231618pt;}
.x14{left:22.879425pt;}
.x22{left:28.639280pt;}
.x18{left:34.745794pt;}
.x15{left:70.878226pt;}
.x23{left:94.557622pt;}
.x1{left:113.471988pt;}
.x3{left:116.191988pt;}
.x26{left:118.591983pt;}
.x7{left:122.271988pt;}
.x8{left:127.711988pt;}
.x5{left:130.431988pt;}
.x4{left:137.466655pt;}
.x9{left:139.386655pt;}
.x12{left:160.666655pt;}
.x28{left:170.106667pt;}
.x32{left:185.466655pt;}
.xc{left:198.594667pt;}
.x33{left:209.466655pt;}
.xb{left:229.146655pt;}
.x29{left:231.706667pt;}
.x16{left:237.064158pt;}
.x6{left:238.906655pt;}
.xa{left:268.546655pt;}
.xf{left:281.474667pt;}
.x19{left:304.129136pt;}
.x2a{left:307.226667pt;}
.x21{left:308.129035pt;}
.x1c{left:310.528978pt;}
.x1d{left:314.048891pt;}
.x1b{left:316.928816pt;}
.x2b{left:376.386667pt;}
.xe{left:378.621333pt;}
.x13{left:388.866655pt;}
.x10{left:392.866655pt;}
.xd{left:395.421333pt;}
.x2{left:471.293322pt;}
.x11{left:508.893322pt;}
.x2c{left:510.786667pt;}
.x1e{left:516.643791pt;}
.x24{left:535.363322pt;}
.x2f{left:542.626667pt;}
.x20{left:550.882934pt;}
.x30{left:557.346650pt;}
.x1f{left:558.562740pt;}
.x2d{left:680.893333pt;}
.x25{left:753.439988pt;}
.x2e{left:907.653333pt;}
}




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