
    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_3adc933d0a7217a5fa862b11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_983986cfb0d20f56f978fe84.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_59183cbdfed9bc8ee305346f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_70f01f951bb27445397d8648.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_92f2be0fdf08443ee645430f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21fd74ee1d8c7b1d57d02a52.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_e24844a0404011b1361f2270.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998047;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_b23c02cfdbac756f1c65be9d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_637625c60819b4d9d3cb13d6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_901d72592016f370bf1e2da8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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;}
.m1{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v8{vertical-align:-38.879995px;}
.v9{vertical-align:-34.559968px;}
.v2{vertical-align:-33.119933px;}
.v7{vertical-align:-28.079955px;}
.v4{vertical-align:-9.360076px;}
.v3{vertical-align:-1.440032px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:34.559964px;}
.v1{vertical-align:36.000000px;}
.v6{vertical-align:69.119932px;}
.lse{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.023895px;}
.lsf{letter-spacing:0.031352px;}
.ls20{letter-spacing:0.031387px;}
.ls1b{letter-spacing:0.039555px;}
.ls14{letter-spacing:0.055009px;}
.ls6{letter-spacing:0.112152px;}
.ls1{letter-spacing:0.112156px;}
.ls3{letter-spacing:0.112219px;}
.ls12{letter-spacing:0.125067px;}
.ls23{letter-spacing:0.136350px;}
.lsb{letter-spacing:0.149863px;}
.ls1f{letter-spacing:0.159754px;}
.ls0{letter-spacing:0.230691px;}
.ls2{letter-spacing:0.351526px;}
.ls11{letter-spacing:0.363770px;}
.ls19{letter-spacing:0.363842px;}
.ls1d{letter-spacing:0.378814px;}
.lsa{letter-spacing:0.405688px;}
.ls8{letter-spacing:0.408145px;}
.ls7{letter-spacing:0.408280px;}
.ls9{letter-spacing:0.408416px;}
.lsd{letter-spacing:0.412783px;}
.ls4{letter-spacing:0.948670px;}
.ls10{letter-spacing:7.453778px;}
.ls17{letter-spacing:21.349762px;}
.ls26{letter-spacing:40.006329px;}
.lsc{letter-spacing:48.709771px;}
.ls25{letter-spacing:58.726275px;}
.ls1e{letter-spacing:59.968278px;}
.ls16{letter-spacing:66.646320px;}
.ls24{letter-spacing:76.726275px;}
.ls15{letter-spacing:85.366266px;}
.ls22{letter-spacing:93.286243px;}
.ls13{letter-spacing:103.366266px;}
.ls21{letter-spacing:111.286243px;}
.ls1a{letter-spacing:195.151356px;}
.ls18{letter-spacing:723.088350px;}
.ls1c{letter-spacing:1095.151428px;}
.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;}
}
.ws0{word-spacing:-30.003074px;}
.ws1{word-spacing:-23.894663px;}
.ws3{word-spacing:-21.020063px;}
.ws7{word-spacing:-17.965913px;}
.ws9{word-spacing:-16.583622px;}
.ws4{word-spacing:-16.528613px;}
.ws2{word-spacing:-15.809963px;}
.ws6{word-spacing:-14.911650px;}
.wsc{word-spacing:-14.545179px;}
.ws8{word-spacing:-14.193113px;}
.wsa{word-spacing:-13.474463px;}
.wsb{word-spacing:-10.420223px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.876771px;}
._0{width:1.192932px;}
._2{width:2.219065px;}
._3{width:4.175262px;}
._e{width:5.354754px;}
._d{width:6.495195px;}
._8{width:7.735391px;}
._9{width:8.858820px;}
._f{width:10.068858px;}
._b{width:11.220512px;}
._c{width:12.336621px;}
._5{width:13.541642px;}
._11{width:15.052766px;}
._4{width:16.402349px;}
._a{width:18.041662px;}
._7{width:19.332022px;}
._6{width:20.339025px;}
._10{width:21.722388px;}
._78{width:23.684262px;}
._79{width:24.782847px;}
._80{width:27.369169px;}
._7c{width:28.611262px;}
._7d{width:30.469394px;}
._7e{width:31.644152px;}
._7f{width:41.413846px;}
._7b{width:42.797600px;}
._7a{width:43.859357px;}
._76{width:51.296076px;}
._5b{width:55.678457px;}
._6d{width:61.889891px;}
._60{width:63.833693px;}
._6e{width:66.353400px;}
._5a{width:67.896851px;}
._72{width:74.628358px;}
._6c{width:81.576892px;}
._73{width:84.101706px;}
._5f{width:88.308259px;}
._31{width:90.000356px;}
._14{width:92.470404px;}
._63{width:94.838094px;}
._6b{width:99.869046px;}
._59{width:101.017063px;}
._5c{width:109.553427px;}
._30{width:112.125213px;}
._69{width:127.345077px;}
._1f{width:129.125244px;}
._1e{width:134.754099px;}
._6a{width:140.716430px;}
._3f{width:142.883621px;}
._20{width:145.904407px;}
._33{width:147.671056px;}
._34{width:151.462012px;}
._2e{width:155.773840px;}
._27{width:165.520718px;}
._13{width:168.869543px;}
._16{width:172.627745px;}
._75{width:176.448062px;}
._2c{width:178.410937px;}
._61{width:179.827801px;}
._2d{width:187.988522px;}
._29{width:189.181454px;}
._71{width:191.536675px;}
._5e{width:194.947734px;}
._77{width:196.686438px;}
._12{width:200.458476px;}
._23{width:202.655916px;}
._32{width:206.446451px;}
._2a{width:208.054754px;}
._24{width:213.444539px;}
._74{width:218.344157px;}
._15{width:219.787702px;}
._2f{width:222.068195px;}
._42{width:225.013387px;}
._26{width:226.909949px;}
._38{width:229.065862px;}
._49{width:233.098913px;}
._70{width:234.232198px;}
._3a{width:236.488375px;}
._3e{width:237.681307px;}
._3c{width:245.202563px;}
._36{width:246.304963px;}
._3d{width:250.662057px;}
._1c{width:254.831249px;}
._5d{width:262.862566px;}
._50{width:277.357156px;}
._25{width:284.589280px;}
._3b{width:286.790460px;}
._4d{width:290.479408px;}
._2b{width:294.497852px;}
._37{width:295.907408px;}
._51{width:297.190815px;}
._39{width:300.219657px;}
._6f{width:302.197724px;}
._46{width:304.615186px;}
._35{width:309.381870px;}
._43{width:312.102465px;}
._4e{width:313.322658px;}
._48{width:326.147609px;}
._21{width:327.592606px;}
._41{width:329.129939px;}
._28{width:335.791817px;}
._22{width:337.400541px;}
._4a{width:340.572533px;}
._47{width:343.385476px;}
._4c{width:387.106434px;}
._53{width:394.860492px;}
._45{width:400.228686px;}
._58{width:403.960200px;}
._19{width:421.104996px;}
._18{width:454.507092px;}
._52{width:459.278820px;}
._4f{width:461.664684px;}
._1a{width:468.822276px;}
._44{width:474.190470px;}
._4b{width:477.172800px;}
._62{width:493.286500px;}
._65{width:513.070966px;}
._55{width:515.038394px;}
._1b{width:542.701580px;}
._54{width:580.473455px;}
._64{width:594.952934px;}
._17{width:596.296613px;}
._66{width:673.578569px;}
._56{width:697.487769px;}
._67{width:731.863782px;}
._57{width:734.249646px;}
._68{width:764.988554px;}
._40{width:819.245610px;}
._1d{width:855.006258px;}
.fc5{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(1,1,1);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:5.749110px;}
.fse{font-size:30.182715px;}
.fs11{font-size:35.931825px;}
.fs8{font-size:41.680890px;}
.fs6{font-size:48.148650px;}
.fs5{font-size:51.023250px;}
.fsa{font-size:53.897850px;}
.fsd{font-size:56.772450px;}
.fs0{font-size:59.646600px;}
.fs9{font-size:63.239850px;}
.fsc{font-size:66.114450px;}
.fs7{font-size:71.863650px;}
.fsf{font-size:75.950654px;}
.fs4{font-size:77.612846px;}
.fsb{font-size:84.080250px;}
.fs3{font-size:95.578650px;}
.fs1{font-size:107.795250px;}
.fs2{font-size:120.012296px;}
.y0{bottom:0.000000px;}
.y11b{bottom:3.240004px;}
.yf1{bottom:3.240006px;}
.y168{bottom:3.599979px;}
.y195{bottom:3.599980px;}
.y15b{bottom:3.600014px;}
.y3{bottom:83.700027px;}
.y33{bottom:83.879998px;}
.y2{bottom:100.799973px;}
.y32{bottom:104.759994px;}
.y7e{bottom:140.220017px;}
.ye2{bottom:142.919975px;}
.y210{bottom:144.179970px;}
.y31{bottom:145.620002px;}
.y118{bottom:145.980011px;}
.y1ed{bottom:146.159981px;}
.y63{bottom:147.960022px;}
.y1c8{bottom:150.659981px;}
.yab{bottom:154.620002px;}
.y7d{bottom:159.120002px;}
.y117{bottom:159.840019px;}
.y20f{bottom:161.460022px;}
.y30{bottom:164.519989px;}
.y1ec{bottom:165.240006px;}
.y23f{bottom:166.500000px;}
.y62{bottom:166.860008px;}
.y14a{bottom:168.480011px;}
.y1c7{bottom:169.740006px;}
.yaa{bottom:171.720017px;}
.y116{bottom:174.600013px;}
.ye1{bottom:175.500000px;}
.y7c{bottom:178.019989px;}
.y20e{bottom:178.559967px;}
.y1eb{bottom:182.700027px;}
.y2f{bottom:183.600013px;}
.y23e{bottom:183.779983px;}
.y61{bottom:185.759994px;}
.y1c6{bottom:188.639992px;}
.ya9{bottom:189.000000px;}
.ye0{bottom:191.700027px;}
.y115{bottom:193.500000px;}
.y18a{bottom:194.039977px;}
.y14b{bottom:194.399986px;}
.y20d{bottom:195.840019px;}
.y1ea{bottom:196.379998px;}
.y7b{bottom:197.100013px;}
.y23d{bottom:201.059967px;}
.y2e{bottom:202.500000px;}
.y149{bottom:203.039977px;}
.y189{bottom:204.299973px;}
.y60{bottom:204.840019px;}
.ya8{bottom:206.279983px;}
.y1c5{bottom:207.720017px;}
.ydf{bottom:207.899986px;}
.y114{bottom:212.580025px;}
.y20c{bottom:213.120002px;}
.y188{bottom:214.740006px;}
.y1e9{bottom:215.820030px;}
.y7a{bottom:216.000000px;}
.y23c{bottom:218.340019px;}
.y2d{bottom:221.580025px;}
.y5f{bottom:223.740006px;}
.yde{bottom:224.279983px;}
.y187{bottom:225.000000px;}
.y1c4{bottom:226.620002px;}
.y148{bottom:227.159981px;}
.y113{bottom:230.399986px;}
.y1e8{bottom:232.379998px;}
.y79{bottom:234.179970px;}
.y23b{bottom:235.620002px;}
.y186{bottom:236.879998px;}
.y2c{bottom:239.399986px;}
.ydd{bottom:240.480011px;}
.y5e{bottom:242.820030px;}
.y1c3{bottom:245.519989px;}
.y112{bottom:247.139992px;}
.y20b{bottom:247.679970px;}
.y78{bottom:250.559967px;}
.y1e7{bottom:251.460022px;}
.y23a{bottom:252.899986px;}
.y185{bottom:253.620002px;}
.y2b{bottom:254.340019px;}
.ydc{bottom:256.500000px;}
.y5d{bottom:261.720017px;}
.y1c2{bottom:263.879998px;}
.y20a{bottom:265.320030px;}
.y111{bottom:266.039977px;}
.y265{bottom:266.580025px;}
.y147{bottom:266.940033px;}
.y77{bottom:269.460022px;}
.y239{bottom:270.000000px;}
.y184{bottom:270.360008px;}
.ydb{bottom:271.980011px;}
.y2a{bottom:273.240006px;}
.y144{bottom:275.580025px;}
.y5c{bottom:279.539977px;}
.ya7{bottom:280.799973px;}
.y110{bottom:283.860008px;}
.y143{bottom:284.220017px;}
.y209{bottom:286.019989px;}
.y1c0{bottom:286.559967px;}
.y238{bottom:287.279983px;}
.yda{bottom:287.460022px;}
.y1e6{bottom:287.820030px;}
.y183{bottom:288.000000px;}
.y76{bottom:288.539977px;}
.y29{bottom:292.320030px;}
.y145{bottom:292.860008px;}
.y5b{bottom:296.279983px;}
.ya6{bottom:298.980011px;}
.y10f{bottom:300.600013px;}
.y264{bottom:301.139992px;}
.y146{bottom:301.500000px;}
.y1bf{bottom:303.840019px;}
.yd9{bottom:304.559967px;}
.y182{bottom:306.360008px;}
.y208{bottom:306.539977px;}
.y75{bottom:307.440033px;}
.y28{bottom:311.220017px;}
.y1c1{bottom:312.480011px;}
.ya5{bottom:315.360008px;}
.y5a{bottom:316.259994px;}
.y263{bottom:318.419975px;}
.yd8{bottom:318.600013px;}
.y10e{bottom:319.500000px;}
.y1e5{bottom:320.399986px;}
.y1be{bottom:321.120002px;}
.y237{bottom:321.840019px;}
.y181{bottom:323.639992px;}
.yd7{bottom:323.820030px;}
.y207{bottom:325.620002px;}
.y74{bottom:326.340019px;}
.y27{bottom:330.120002px;}
.y59{bottom:332.460022px;}
.y142{bottom:334.440033px;}
.ya4{bottom:334.980011px;}
.y262{bottom:335.700027px;}
.y1bd{bottom:338.220017px;}
.y10d{bottom:338.399986px;}
.y236{bottom:339.120002px;}
.yd6{bottom:340.200027px;}
.y180{bottom:340.379998px;}
.y206{bottom:344.519989px;}
.y141{bottom:345.059967px;}
.y73{bottom:345.419975px;}
.y26{bottom:349.200027px;}
.y58{bottom:350.279983px;}
.ya3{bottom:350.460022px;}
.y261{bottom:352.799973px;}
.y1e4{bottom:353.159981px;}
.y235{bottom:356.220017px;}
.yd5{bottom:356.399986px;}
.y17f{bottom:356.759994px;}
.y10c{bottom:357.480011px;}
.y140{bottom:358.379998px;}
.y205{bottom:363.419975px;}
.y72{bottom:364.320030px;}
.y57{bottom:367.559967px;}
.y25{bottom:368.100013px;}
.y1ba{bottom:368.279983px;}
.y260{bottom:370.080025px;}
.y1e3{bottom:372.059967px;}
.yd4{bottom:372.600013px;}
.ya2{bottom:373.139992px;}
.y234{bottom:373.500000px;}
.y13f{bottom:373.860008px;}
.y10b{bottom:375.299973px;}
.y17e{bottom:375.659981px;}
.y1bb{bottom:376.919975px;}
.y204{bottom:382.500000px;}
.y71{bottom:382.679970px;}
.y13e{bottom:385.019989px;}
.y1b9{bottom:385.559967px;}
.y24{bottom:387.179970px;}
.y25f{bottom:387.360008px;}
.yd3{bottom:388.980011px;}
.ya1{bottom:389.340019px;}
.y56{bottom:390.059967px;}
.y10a{bottom:390.240006px;}
.y1e2{bottom:390.419975px;}
.y233{bottom:390.779983px;}
.y1bc{bottom:394.200027px;}
.y17d{bottom:394.559967px;}
.y70{bottom:398.879998px;}
.y203{bottom:401.399986px;}
.y1b8{bottom:402.840019px;}
.y13d{bottom:404.639992px;}
.yd2{bottom:405.179970px;}
.y23{bottom:406.080025px;}
.y55{bottom:406.620002px;}
.y232{bottom:408.059967px;}
.ya0{bottom:408.419975px;}
.y109{bottom:409.679970px;}
.y17c{bottom:413.279983px;}
.y6f{bottom:417.779983px;}
.y202{bottom:420.480011px;}
.yd1{bottom:421.559967px;}
.y25e{bottom:421.919975px;}
.y13c{bottom:424.259994px;}
.y1e1{bottom:424.620002px;}
.y22{bottom:424.980011px;}
.y108{bottom:425.159981px;}
.y231{bottom:425.340019px;}
.y54{bottom:425.519989px;}
.y9f{bottom:427.320030px;}
.y17b{bottom:430.919975px;}
.y1b6{bottom:432.720017px;}
.y6e{bottom:436.860008px;}
.y13b{bottom:437.580025px;}
.yd0{bottom:437.759994px;}
.y25d{bottom:439.019989px;}
.y1e0{bottom:439.379998px;}
.y230{bottom:442.620002px;}
.y21{bottom:442.980011px;}
.y107{bottom:443.159981px;}
.y53{bottom:444.600013px;}
.y9e{bottom:446.399986px;}
.y1b5{bottom:450.000000px;}
.y17a{bottom:450.539977px;}
.y13a{bottom:453.059967px;}
.ycf{bottom:453.960022px;}
.y6d{bottom:455.759994px;}
.y25c{bottom:456.299973px;}
.y106{bottom:457.559967px;}
.y201{bottom:458.279983px;}
.y20{bottom:458.460022px;}
.y1b7{bottom:458.639992px;}
.y22f{bottom:459.720017px;}
.y105{bottom:460.799973px;}
.y52{bottom:463.320030px;}
.y139{bottom:463.679970px;}
.y9d{bottom:465.299973px;}
.y1b4{bottom:467.279983px;}
.yce{bottom:470.340019px;}
.y177{bottom:471.779983px;}
.y25b{bottom:473.580025px;}
.y6c{bottom:474.840019px;}
.y200{bottom:476.639992px;}
.y22e{bottom:477.000000px;}
.y1df{bottom:477.360008px;}
.y104{bottom:478.440033px;}
.y178{bottom:480.419975px;}
.y1f{bottom:480.779983px;}
.y138{bottom:482.759994px;}
.y9c{bottom:484.200027px;}
.y1b3{bottom:484.559967px;}
.ycd{bottom:486.539977px;}
.y176{bottom:489.059967px;}
.y25a{bottom:490.860008px;}
.y1ff{bottom:492.840019px;}
.y103{bottom:493.019989px;}
.y6b{bottom:493.740006px;}
.y22d{bottom:494.279983px;}
.y1de{bottom:496.259994px;}
.y1e{bottom:497.159981px;}
.y179{bottom:497.700027px;}
.y51{bottom:499.679970px;}
.y137{bottom:501.659981px;}
.y9b{bottom:502.200027px;}
.ycc{bottom:502.919975px;}
.y175{bottom:506.340019px;}
.y259{bottom:508.139992px;}
.y102{bottom:509.759994px;}
.y22c{bottom:511.559967px;}
.y6a{bottom:511.919975px;}
.y1d{bottom:514.080025px;}
.y1b0{bottom:514.440033px;}
.y1dd{bottom:515.340019px;}
.y50{bottom:518.759994px;}
.y9a{bottom:518.940033px;}
.ycb{bottom:519.120002px;}
.y136{bottom:520.740006px;}
.y1b1{bottom:523.080025px;}
.y258{bottom:525.419975px;}
.y101{bottom:525.960022px;}
.y69{bottom:528.299973px;}
.y22b{bottom:528.840019px;}
.y1c{bottom:530.460022px;}
.y1fe{bottom:530.820030px;}
.y1af{bottom:531.720017px;}
.y1dc{bottom:534.240006px;}
.yca{bottom:535.500000px;}
.y172{bottom:536.220017px;}
.y4f{bottom:537.659981px;}
.y99{bottom:538.379998px;}
.y135{bottom:539.639992px;}
.y1b2{bottom:540.360008px;}
.y257{bottom:542.519989px;}
.y173{bottom:544.860008px;}
.y100{bottom:545.039977px;}
.y22a{bottom:546.120002px;}
.y68{bottom:547.200027px;}
.y1ae{bottom:549.000000px;}
.y1fd{bottom:549.720017px;}
.yc9{bottom:551.700027px;}
.y1b{bottom:551.879998px;}
.y98{bottom:553.320030px;}
.y171{bottom:553.500000px;}
.y4e{bottom:556.740006px;}
.y134{bottom:557.820030px;}
.y256{bottom:559.799973px;}
.y67{bottom:560.700027px;}
.y174{bottom:562.139992px;}
.y229{bottom:563.220017px;}
.yff{bottom:563.940033px;}
.yc8{bottom:567.539977px;}
.y1a{bottom:567.899986px;}
.y1fc{bottom:568.799973px;}
.y170{bottom:570.779983px;}
.y97{bottom:572.220017px;}
.y133{bottom:574.200027px;}
.y4d{bottom:575.639992px;}
.y66{bottom:576.179970px;}
.y255{bottom:577.080025px;}
.y1ab{bottom:579.059967px;}
.y228{bottom:580.500000px;}
.yfe{bottom:581.940033px;}
.y65{bottom:582.840019px;}
.yc6{bottom:583.200027px;}
.y19{bottom:585.179970px;}
.y1ac{bottom:587.700027px;}
.y96{bottom:591.120002px;}
.y132{bottom:593.639992px;}
.y254{bottom:594.360008px;}
.y4c{bottom:594.539977px;}
.y1aa{bottom:596.340019px;}
.yfd{bottom:596.700027px;}
.y227{bottom:597.779983px;}
.yc7{bottom:598.679970px;}
.yc5{bottom:599.039977px;}
.y16d{bottom:600.840019px;}
.y18{bottom:602.460022px;}
.y1ad{bottom:604.980011px;}
.y1fb{bottom:606.779983px;}
.y16e{bottom:609.480011px;}
.y95{bottom:610.200027px;}
.y131{bottom:610.379998px;}
.y253{bottom:611.639992px;}
.y1a9{bottom:613.439999px;}
.y4b{bottom:613.620002px;}
.y226{bottom:615.060001px;}
.yc4{bottom:615.240006px;}
.yfc{bottom:615.779983px;}
.y16c{bottom:617.939999px;}
.y17{bottom:619.740006px;}
.y1fa{bottom:625.680004px;}
.y16f{bottom:626.579990px;}
.y1db{bottom:628.379998px;}
.y252{bottom:628.920010px;}
.y94{bottom:629.100013px;}
.y130{bottom:629.279983px;}
.yc3{bottom:631.259994px;}
.y4a{bottom:632.339985px;}
.yfb{bottom:633.600013px;}
.y16b{bottom:635.220017px;}
.y16{bottom:636.839985px;}
.y1a6{bottom:643.500000px;}
.y1da{bottom:644.579990px;}
.yc2{bottom:645.839985px;}
.y251{bottom:646.019989px;}
.y93{bottom:648.180004px;}
.y12f{bottom:648.360008px;}
.yfa{bottom:648.540012px;}
.y225{bottom:649.620002px;}
.y49{bottom:649.800007px;}
.y1a7{bottom:652.139992px;}
.y15{bottom:654.120002px;}
.y1a5{bottom:660.779983px;}
.y167{bottom:661.680004px;}
.yc1{bottom:663.120002px;}
.y250{bottom:663.300007px;}
.y1d9{bottom:663.660015px;}
.y166{bottom:665.279983px;}
.y92{bottom:666.000000px;}
.y224{bottom:666.720017px;}
.yf9{bottom:667.439999px;}
.y12e{bottom:667.620002px;}
.y48{bottom:668.879998px;}
.y1a8{bottom:669.420010px;}
.y14{bottom:671.399986px;}
.y169{bottom:673.920010px;}
.y1a4{bottom:678.060001px;}
.yc0{bottom:679.139992px;}
.y24f{bottom:680.579990px;}
.y91{bottom:680.939999px;}
.y165{bottom:682.560001px;}
.y223{bottom:684.000000px;}
.yf8{bottom:686.519989px;}
.y12d{bottom:687.060001px;}
.y47{bottom:687.779983px;}
.y13{bottom:688.680004px;}
.y16a{bottom:691.199993px;}
.ybf{bottom:692.639992px;}
.y24e{bottom:697.860008px;}
.y90{bottom:699.839985px;}
.y222{bottom:701.279983px;}
.y1d8{bottom:701.639992px;}
.yf7{bottom:705.420010px;}
.y12{bottom:705.959988px;}
.y46{bottom:706.680004px;}
.y1a2{bottom:707.939999px;}
.ybe{bottom:711.720017px;}
.y24d{bottom:715.139992px;}
.y221{bottom:718.560001px;}
.y8f{bottom:718.740006px;}
.y1d7{bottom:719.459988px;}
.y1f9{bottom:719.819995px;}
.yf6{bottom:722.519989px;}
.y11{bottom:722.879998px;}
.y12c{bottom:724.860008px;}
.y1a1{bottom:725.220017px;}
.y45{bottom:725.759994px;}
.y162{bottom:729.720017px;}
.ybd{bottom:730.259994px;}
.y24c{bottom:732.240006px;}
.y1a3{bottom:733.860008px;}
.y1d6{bottom:734.399986px;}
.yf5{bottom:734.759994px;}
.y220{bottom:735.839985px;}
.y1f8{bottom:736.019989px;}
.y8e{bottom:737.819995px;}
.y163{bottom:738.360008px;}
.y10{bottom:740.879998px;}
.y1a0{bottom:742.500000px;}
.y12b{bottom:743.220017px;}
.y44{bottom:744.660015px;}
.y161{bottom:747.000000px;}
.ybc{bottom:747.899986px;}
.y24b{bottom:749.519989px;}
.y21f{bottom:752.939999px;}
.y1d5{bottom:753.300007px;}
.yf4{bottom:754.199993px;}
.y1f7{bottom:755.100013px;}
.y164{bottom:755.639992px;}
.y8d{bottom:756.720017px;}
.y19f{bottom:759.779983px;}
.y12a{bottom:759.959988px;}
.y43{bottom:763.740006px;}
.y160{bottom:764.279983px;}
.ybb{bottom:766.800007px;}
.yf3{bottom:769.680004px;}
.y21e{bottom:770.220017px;}
.yf{bottom:770.759994px;}
.y1d4{bottom:772.379998px;}
.y1f6{bottom:774.000000px;}
.y8c{bottom:774.720017px;}
.y129{bottom:777.959988px;}
.y42{bottom:782.639992px;}
.y24a{bottom:784.079990px;}
.yba{bottom:785.879998px;}
.y21d{bottom:787.500000px;}
.yf2{bottom:787.680004px;}
.y8b{bottom:789.480011px;}
.y19b{bottom:789.839985px;}
.ye{bottom:790.920010px;}
.y1d3{bottom:791.279983px;}
.y128{bottom:792.360008px;}
.y1f5{bottom:792.899986px;}
.y15f{bottom:794.339985px;}
.y127{bottom:795.600013px;}
.y19e{bottom:798.300007px;}
.y249{bottom:801.360008px;}
.y41{bottom:801.540012px;}
.yf0{bottom:802.079990px;}
.yd{bottom:803.339985px;}
.yb9{bottom:804.779983px;}
.yef{bottom:805.319995px;}
.y19a{bottom:806.939999px;}
.y8a{bottom:808.560001px;}
.y1d2{bottom:810.180004px;}
.y15e{bottom:811.439999px;}
.y1f4{bottom:811.980011px;}
.y126{bottom:813.959988px;}
.y19c{bottom:815.579990px;}
.y248{bottom:818.639992px;}
.y40{bottom:820.620002px;}
.y21c{bottom:822.060001px;}
.yee{bottom:822.420010px;}
.yb8{bottom:823.680004px;}
.y199{bottom:824.220017px;}
.y89{bottom:827.459988px;}
.y1d1{bottom:828.180004px;}
.y1f3{bottom:830.879998px;}
.y125{bottom:831.060001px;}
.yc{bottom:832.319995px;}
.y19d{bottom:832.860008px;}
.yed{bottom:835.740006px;}
.y15a{bottom:837.899986px;}
.y3f{bottom:838.800007px;}
.y21b{bottom:839.339985px;}
.y159{bottom:841.500000px;}
.yb7{bottom:842.759994px;}
.y1d0{bottom:842.939999px;}
.y88{bottom:846.540012px;}
.y124{bottom:847.980011px;}
.y1f2{bottom:849.240006px;}
.y15c{bottom:850.139992px;}
.yb{bottom:853.019989px;}
.yec{bottom:853.740006px;}
.y3e{bottom:855.000000px;}
.y21a{bottom:856.439999px;}
.y158{bottom:858.779983px;}
.yb6{bottom:861.660015px;}
.y1cf{bottom:862.019989px;}
.y123{bottom:864.180004px;}
.y87{bottom:865.439999px;}
.ya{bottom:865.620002px;}
.y15d{bottom:867.420010px;}
.y247{bottom:870.300007px;}
.y198{bottom:871.560001px;}
.y219{bottom:873.720017px;}
.yeb{bottom:873.899987px;}
.y3d{bottom:874.079990px;}
.y157{bottom:876.060001px;}
.y194{bottom:876.600013px;}
.y193{bottom:880.199993px;}
.yb5{bottom:880.379998px;}
.y1ce{bottom:880.920010px;}
.y122{bottom:883.079990px;}
.y86{bottom:884.339985px;}
.y246{bottom:887.579990px;}
.y9{bottom:888.120002px;}
.y197{bottom:888.839985px;}
.y218{bottom:891.000000px;}
.y3c{bottom:892.980011px;}
.y196{bottom:897.300007px;}
.yb4{bottom:898.019989px;}
.y1cd{bottom:900.000000px;}
.y121{bottom:901.439999px;}
.y85{bottom:902.699993px;}
.y245{bottom:904.860008px;}
.y154{bottom:905.939999px;}
.y217{bottom:908.280001px;}
.y8{bottom:910.439999px;}
.yea{bottom:911.879998px;}
.y3b{bottom:912.060001px;}
.y155{bottom:914.580008px;}
.y120{bottom:917.819996px;}
.yb3{bottom:918.719999px;}
.y84{bottom:918.900003px;}
.y244{bottom:922.139992px;}
.y153{bottom:923.219999px;}
.y216{bottom:925.560001px;}
.y3a{bottom:930.960004px;}
.y156{bottom:931.860008px;}
.y7{bottom:936.180004px;}
.y1cc{bottom:937.080008px;}
.y83{bottom:937.800007px;}
.y11f{bottom:938.340002px;}
.yb2{bottom:938.699993px;}
.y243{bottom:939.240006px;}
.y152{bottom:940.500000px;}
.y215{bottom:942.840002px;}
.y191{bottom:945.719999px;}
.ye9{bottom:949.139992px;}
.y39{bottom:949.860008px;}
.y1cb{bottom:953.460004px;}
.y1f1{bottom:956.159998px;}
.y242{bottom:956.520006px;}
.y82{bottom:956.879998px;}
.yb1{bottom:957.060001px;}
.y11e{bottom:958.680004px;}
.y214{bottom:959.939999px;}
.y192{bottom:963.000000px;}
.ye8{bottom:965.340002px;}
.y38{bottom:968.939999px;}
.y6{bottom:969.840002px;}
.y14f{bottom:970.560001px;}
.y1f0{bottom:972.360008px;}
.y190{bottom:972.719999px;}
.y1ca{bottom:973.080008px;}
.y241{bottom:973.800007px;}
.y81{bottom:974.699993px;}
.yb0{bottom:975.060001px;}
.y213{bottom:977.219999px;}
.y11d{bottom:978.479994px;}
.ye7{bottom:981.719999px;}
.y37{bottom:987.840002px;}
.y1c9{bottom:988.560001px;}
.y64{bottom:989.280001px;}
.y1ef{bottom:991.259994px;}
.y80{bottom:991.439999px;}
.yaf{bottom:993.060001px;}
.y212{bottom:994.500000px;}
.y150{bottom:996.300007px;}
.y11c{bottom:996.479994px;}
.ye6{bottom:997.919992px;}
.y18f{bottom:1003.500000px;}
.y5{bottom:1003.680004px;}
.y14e{bottom:1004.939999px;}
.y36{bottom:1006.919992px;}
.y1ee{bottom:1009.620002px;}
.yae{bottom:1010.699993px;}
.y7f{bottom:1010.879998px;}
.y240{bottom:1011.419992px;}
.y211{bottom:1011.780001px;}
.y18c{bottom:1012.139992px;}
.y151{bottom:1013.580008px;}
.y11a{bottom:1014.120002px;}
.ye5{bottom:1014.300007px;}
.y18e{bottom:1020.780001px;}
.y14d{bottom:1022.219999px;}
.y35{bottom:1025.819996px;}
.yad{bottom:1029.060001px;}
.y18b{bottom:1029.419992px;}
.ye4{bottom:1030.500000px;}
.y119{bottom:1031.759994px;}
.y4{bottom:1036.439999px;}
.y18d{bottom:1038.060001px;}
.y14c{bottom:1039.500000px;}
.y34{bottom:1044.719999px;}
.yac{bottom:1046.159998px;}
.ye3{bottom:1046.700002px;}
.y1{bottom:1066.500000px;}
.h1f{height:16.740004px;}
.h1c{height:16.740006px;}
.h35{height:16.919975px;}
.h2a{height:16.920009px;}
.h14{height:21.826465px;}
.h1e{height:25.983903px;}
.h15{height:29.408636px;}
.h8{height:30.141308px;}
.h16{height:33.972070px;}
.h6{height:34.818433px;}
.he{height:38.028512px;}
.hd{height:38.975935px;}
.h1a{height:40.056734px;}
.ha{height:42.084637px;}
.h1{height:43.133113px;}
.hc{height:44.423619px;}
.h1d{height:44.938820px;}
.h20{height:46.648135px;}
.h10{height:47.810303px;}
.h17{height:48.133127px;}
.hb{height:49.161846px;}
.h19{height:50.704577px;}
.h7{height:51.967805px;}
.h12{height:52.318702px;}
.h1b{height:53.588230px;}
.h13{height:54.492769px;}
.h21{height:55.719502px;}
.h4{height:56.125305px;}
.h9{height:58.474912px;}
.h18{height:59.324200px;}
.h11{height:60.564775px;}
.hf{height:61.212721px;}
.h5{height:72.897184px;}
.h2{height:73.003912px;}
.h22{height:76.644601px;}
.h23{height:76.644606px;}
.h34{height:76.644673px;}
.h25{height:77.693077px;}
.h2e{height:77.693081px;}
.h27{height:77.693149px;}
.h2b{height:77.693221px;}
.h31{height:77.693351px;}
.h3{height:81.277858px;}
.h36{height:86.091936px;}
.h24{height:111.204570px;}
.h33{height:111.204637px;}
.h30{height:111.533027px;}
.h2d{height:111.533167px;}
.h26{height:112.253045px;}
.h2f{height:112.253050px;}
.h29{height:112.253113px;}
.h28{height:112.253117px;}
.h2c{height:112.253185px;}
.h32{height:112.253320px;}
.h0{height:1188.000000px;}
.w5{width:6.300007px;}
.w4{width:6.839984px;}
.w6{width:7.019989px;}
.w3{width:99.360008px;}
.w2{width:136.799973px;}
.w1{width:136.800007px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x52{left:123.480002px;}
.xd{left:135.000000px;}
.x2{left:136.260003px;}
.x42{left:142.019998px;}
.x49{left:143.280001px;}
.x3b{left:144.539996px;}
.x43{left:147.060001px;}
.x32{left:148.319996px;}
.x17{left:149.759994px;}
.x15{left:158.759994px;}
.x1{left:163.979994px;}
.x23{left:166.319996px;}
.x22{left:169.740006px;}
.x19{left:171.719999px;}
.x12{left:175.500000px;}
.x2a{left:178.379998px;}
.x16{left:180.000000px;}
.x13{left:182.340002px;}
.xa{left:184.319996px;}
.x3c{left:186.840002px;}
.x18{left:187.919992px;}
.xf{left:189.000000px;}
.x31{left:197.460005px;}
.x2f{left:198.900003px;}
.x5{left:208.620002px;}
.x11{left:210.960005px;}
.x41{left:213.479994px;}
.x14{left:216.180005px;}
.x33{left:219.599997px;}
.x8{left:221.039996px;}
.x30{left:222.840002px;}
.x2b{left:230.219999px;}
.x2d{left:237.419992px;}
.x6{left:239.580008px;}
.x40{left:243.180005px;}
.xc{left:246.960005px;}
.x2e{left:252.719999px;}
.x7{left:269.280001px;}
.x1b{left:270.360008px;}
.x1a{left:274.500000px;}
.xb{left:296.459988px;}
.x9{left:305.639992px;}
.x44{left:351.000000px;}
.x3f{left:354.240006px;}
.x34{left:370.980011px;}
.x50{left:376.379998px;}
.x3d{left:396.180005px;}
.x24{left:405.360008px;}
.x2c{left:420.660015px;}
.x1c{left:422.459988px;}
.x4{left:459.000000px;}
.x25{left:491.939999px;}
.x1d{left:504.180005px;}
.x4a{left:511.019989px;}
.x46{left:512.819996px;}
.x37{left:519.300007px;}
.x45{left:521.279983px;}
.x36{left:526.319996px;}
.x35{left:527.579990px;}
.x4b{left:549.720017px;}
.x47{left:568.800007px;}
.x38{left:576.000000px;}
.x4c{left:580.679970px;}
.x29{left:584.460023px;}
.x48{left:627.840019px;}
.x51{left:629.460023px;}
.x39{left:640.080025px;}
.x4d{left:643.139992px;}
.x26{left:651.960023px;}
.x1e{left:654.659981px;}
.x28{left:722.879998px;}
.x21{left:724.679970px;}
.x1f{left:726.120002px;}
.x10{left:727.740006px;}
.x27{left:728.820030px;}
.x20{left:730.620002px;}
.x4e{left:739.259994px;}
.x4f{left:745.559967px;}
.x3a{left:752.580025px;}
.x3e{left:757.980011px;}
.xe{left:768.059967px;}
.x3{left:783.000000px;}
@media print{
.v8{vertical-align:-34.559996pt;}
.v9{vertical-align:-30.719972pt;}
.v2{vertical-align:-29.439940pt;}
.v7{vertical-align:-24.959960pt;}
.v4{vertical-align:-8.320068pt;}
.v3{vertical-align:-1.280028pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:30.719968pt;}
.v1{vertical-align:32.000000pt;}
.v6{vertical-align:61.439940pt;}
.lse{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021240pt;}
.lsf{letter-spacing:0.027868pt;}
.ls20{letter-spacing:0.027900pt;}
.ls1b{letter-spacing:0.035160pt;}
.ls14{letter-spacing:0.048897pt;}
.ls6{letter-spacing:0.099691pt;}
.ls1{letter-spacing:0.099695pt;}
.ls3{letter-spacing:0.099751pt;}
.ls12{letter-spacing:0.111171pt;}
.ls23{letter-spacing:0.121200pt;}
.lsb{letter-spacing:0.133211pt;}
.ls1f{letter-spacing:0.142004pt;}
.ls0{letter-spacing:0.205059pt;}
.ls2{letter-spacing:0.312468pt;}
.ls11{letter-spacing:0.323351pt;}
.ls19{letter-spacing:0.323415pt;}
.ls1d{letter-spacing:0.336723pt;}
.lsa{letter-spacing:0.360612pt;}
.ls8{letter-spacing:0.362796pt;}
.ls7{letter-spacing:0.362916pt;}
.ls9{letter-spacing:0.363036pt;}
.lsd{letter-spacing:0.366918pt;}
.ls4{letter-spacing:0.843262pt;}
.ls10{letter-spacing:6.625580pt;}
.ls17{letter-spacing:18.977566pt;}
.ls26{letter-spacing:35.561181pt;}
.lsc{letter-spacing:43.297574pt;}
.ls25{letter-spacing:52.201133pt;}
.ls1e{letter-spacing:53.305136pt;}
.ls16{letter-spacing:59.241173pt;}
.ls24{letter-spacing:68.201133pt;}
.ls15{letter-spacing:75.881125pt;}
.ls22{letter-spacing:82.921105pt;}
.ls13{letter-spacing:91.881125pt;}
.ls21{letter-spacing:98.921105pt;}
.ls1a{letter-spacing:173.467872pt;}
.ls18{letter-spacing:642.745200pt;}
.ls1c{letter-spacing:973.467936pt;}
.ws0{word-spacing:-26.669399pt;}
.ws1{word-spacing:-21.239700pt;}
.ws3{word-spacing:-18.684500pt;}
.ws7{word-spacing:-15.969700pt;}
.ws9{word-spacing:-14.740997pt;}
.ws4{word-spacing:-14.692100pt;}
.ws2{word-spacing:-14.053300pt;}
.ws6{word-spacing:-13.254800pt;}
.wsc{word-spacing:-12.929048pt;}
.ws8{word-spacing:-12.616100pt;}
.wsa{word-spacing:-11.977300pt;}
.wsb{word-spacing:-9.262420pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.668241pt;}
._0{width:1.060384pt;}
._2{width:1.972502pt;}
._3{width:3.711344pt;}
._e{width:4.759781pt;}
._d{width:5.773506pt;}
._8{width:6.875903pt;}
._9{width:7.874506pt;}
._f{width:8.950096pt;}
._b{width:9.973788pt;}
._c{width:10.965886pt;}
._5{width:12.037015pt;}
._11{width:13.380236pt;}
._4{width:14.579866pt;}
._a{width:16.037033pt;}
._7{width:17.184020pt;}
._6{width:18.079133pt;}
._10{width:19.308789pt;}
._78{width:21.052677pt;}
._79{width:22.029197pt;}
._80{width:24.328150pt;}
._7c{width:25.432233pt;}
._7d{width:27.083906pt;}
._7e{width:28.128135pt;}
._7f{width:36.812307pt;}
._7b{width:38.042312pt;}
._7a{width:38.986095pt;}
._76{width:45.596512pt;}
._5b{width:49.491962pt;}
._6d{width:55.013237pt;}
._60{width:56.741060pt;}
._6e{width:58.980800pt;}
._5a{width:60.352757pt;}
._72{width:66.336318pt;}
._6c{width:72.512793pt;}
._73{width:74.757072pt;}
._5f{width:78.496230pt;}
._31{width:80.000317pt;}
._14{width:82.195914pt;}
._63{width:84.300528pt;}
._6b{width:88.772486pt;}
._59{width:89.792945pt;}
._5c{width:97.380824pt;}
._30{width:99.666856pt;}
._69{width:113.195624pt;}
._1f{width:114.777994pt;}
._1e{width:119.781422pt;}
._6a{width:125.081271pt;}
._3f{width:127.007664pt;}
._20{width:129.692806pt;}
._33{width:131.263161pt;}
._34{width:134.632899pt;}
._2e{width:138.465635pt;}
._27{width:147.129528pt;}
._13{width:150.106261pt;}
._16{width:153.446885pt;}
._75{width:156.842722pt;}
._2c{width:158.587499pt;}
._61{width:159.846934pt;}
._2d{width:167.100908pt;}
._29{width:168.161292pt;}
._71{width:170.254822pt;}
._5e{width:173.286874pt;}
._77{width:174.832390pt;}
._12{width:178.185312pt;}
._23{width:180.138592pt;}
._32{width:183.507956pt;}
._2a{width:184.937559pt;}
._24{width:189.728479pt;}
._74{width:194.083695pt;}
._15{width:195.366846pt;}
._2f{width:197.393951pt;}
._42{width:200.011899pt;}
._26{width:201.697732pt;}
._38{width:203.614100pt;}
._49{width:207.199034pt;}
._70{width:208.206398pt;}
._3a{width:210.211889pt;}
._3e{width:211.272273pt;}
._3c{width:217.957834pt;}
._36{width:218.937745pt;}
._3d{width:222.810718pt;}
._1c{width:226.516666pt;}
._5d{width:233.655614pt;}
._50{width:246.539694pt;}
._25{width:252.968249pt;}
._3b{width:254.924853pt;}
._4d{width:258.203918pt;}
._2b{width:261.775869pt;}
._37{width:263.028807pt;}
._51{width:264.169614pt;}
._39{width:266.861917pt;}
._6f{width:268.620199pt;}
._46{width:270.769054pt;}
._35{width:275.006107pt;}
._43{width:277.424414pt;}
._4e{width:278.509029pt;}
._48{width:289.908986pt;}
._21{width:291.193428pt;}
._41{width:292.559946pt;}
._28{width:298.481615pt;}
._22{width:299.911592pt;}
._4a{width:302.731141pt;}
._47{width:305.231534pt;}
._4c{width:344.094608pt;}
._53{width:350.987104pt;}
._45{width:355.758832pt;}
._58{width:359.075734pt;}
._19{width:374.315552pt;}
._18{width:404.006304pt;}
._52{width:408.247840pt;}
._4f{width:410.368608pt;}
._1a{width:416.730912pt;}
._44{width:421.502640pt;}
._4b{width:424.153600pt;}
._62{width:438.476889pt;}
._65{width:456.063081pt;}
._55{width:457.811906pt;}
._1b{width:482.401405pt;}
._54{width:515.976404pt;}
._64{width:528.847052pt;}
._17{width:530.041434pt;}
._66{width:598.736506pt;}
._56{width:619.989128pt;}
._67{width:650.545584pt;}
._57{width:652.666352pt;}
._68{width:679.989826pt;}
._40{width:728.218320pt;}
._1d{width:760.005562pt;}
.fs10{font-size:5.110320pt;}
.fse{font-size:26.829080pt;}
.fs11{font-size:31.939400pt;}
.fs8{font-size:37.049680pt;}
.fs6{font-size:42.798800pt;}
.fs5{font-size:45.354000pt;}
.fsa{font-size:47.909200pt;}
.fsd{font-size:50.464400pt;}
.fs0{font-size:53.019200pt;}
.fs9{font-size:56.213200pt;}
.fsc{font-size:58.768400pt;}
.fs7{font-size:63.878800pt;}
.fsf{font-size:67.511693pt;}
.fs4{font-size:68.989196pt;}
.fsb{font-size:74.738000pt;}
.fs3{font-size:84.958800pt;}
.fs1{font-size:95.818000pt;}
.fs2{font-size:106.677596pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:2.880004pt;}
.yf1{bottom:2.880005pt;}
.y168{bottom:3.199981pt;}
.y195{bottom:3.199982pt;}
.y15b{bottom:3.200012pt;}
.y3{bottom:74.400024pt;}
.y33{bottom:74.559998pt;}
.y2{bottom:89.599976pt;}
.y32{bottom:93.119995pt;}
.y7e{bottom:124.640015pt;}
.ye2{bottom:127.039978pt;}
.y210{bottom:128.159973pt;}
.y31{bottom:129.440002pt;}
.y118{bottom:129.760010pt;}
.y1ed{bottom:129.919983pt;}
.y63{bottom:131.520020pt;}
.y1c8{bottom:133.919983pt;}
.yab{bottom:137.440002pt;}
.y7d{bottom:141.440002pt;}
.y117{bottom:142.080017pt;}
.y20f{bottom:143.520020pt;}
.y30{bottom:146.239990pt;}
.y1ec{bottom:146.880005pt;}
.y23f{bottom:148.000000pt;}
.y62{bottom:148.320007pt;}
.y14a{bottom:149.760010pt;}
.y1c7{bottom:150.880005pt;}
.yaa{bottom:152.640015pt;}
.y116{bottom:155.200012pt;}
.ye1{bottom:156.000000pt;}
.y7c{bottom:158.239990pt;}
.y20e{bottom:158.719971pt;}
.y1eb{bottom:162.400024pt;}
.y2f{bottom:163.200012pt;}
.y23e{bottom:163.359985pt;}
.y61{bottom:165.119995pt;}
.y1c6{bottom:167.679993pt;}
.ya9{bottom:168.000000pt;}
.ye0{bottom:170.400024pt;}
.y115{bottom:172.000000pt;}
.y18a{bottom:172.479980pt;}
.y14b{bottom:172.799988pt;}
.y20d{bottom:174.080017pt;}
.y1ea{bottom:174.559998pt;}
.y7b{bottom:175.200012pt;}
.y23d{bottom:178.719971pt;}
.y2e{bottom:180.000000pt;}
.y149{bottom:180.479980pt;}
.y189{bottom:181.599976pt;}
.y60{bottom:182.080017pt;}
.ya8{bottom:183.359985pt;}
.y1c5{bottom:184.640015pt;}
.ydf{bottom:184.799988pt;}
.y114{bottom:188.960022pt;}
.y20c{bottom:189.440002pt;}
.y188{bottom:190.880005pt;}
.y1e9{bottom:191.840027pt;}
.y7a{bottom:192.000000pt;}
.y23c{bottom:194.080017pt;}
.y2d{bottom:196.960022pt;}
.y5f{bottom:198.880005pt;}
.yde{bottom:199.359985pt;}
.y187{bottom:200.000000pt;}
.y1c4{bottom:201.440002pt;}
.y148{bottom:201.919983pt;}
.y113{bottom:204.799988pt;}
.y1e8{bottom:206.559998pt;}
.y79{bottom:208.159973pt;}
.y23b{bottom:209.440002pt;}
.y186{bottom:210.559998pt;}
.y2c{bottom:212.799988pt;}
.ydd{bottom:213.760010pt;}
.y5e{bottom:215.840027pt;}
.y1c3{bottom:218.239990pt;}
.y112{bottom:219.679993pt;}
.y20b{bottom:220.159973pt;}
.y78{bottom:222.719971pt;}
.y1e7{bottom:223.520020pt;}
.y23a{bottom:224.799988pt;}
.y185{bottom:225.440002pt;}
.y2b{bottom:226.080017pt;}
.ydc{bottom:228.000000pt;}
.y5d{bottom:232.640015pt;}
.y1c2{bottom:234.559998pt;}
.y20a{bottom:235.840027pt;}
.y111{bottom:236.479980pt;}
.y265{bottom:236.960022pt;}
.y147{bottom:237.280029pt;}
.y77{bottom:239.520020pt;}
.y239{bottom:240.000000pt;}
.y184{bottom:240.320007pt;}
.ydb{bottom:241.760010pt;}
.y2a{bottom:242.880005pt;}
.y144{bottom:244.960022pt;}
.y5c{bottom:248.479980pt;}
.ya7{bottom:249.599976pt;}
.y110{bottom:252.320007pt;}
.y143{bottom:252.640015pt;}
.y209{bottom:254.239990pt;}
.y1c0{bottom:254.719971pt;}
.y238{bottom:255.359985pt;}
.yda{bottom:255.520020pt;}
.y1e6{bottom:255.840027pt;}
.y183{bottom:256.000000pt;}
.y76{bottom:256.479980pt;}
.y29{bottom:259.840027pt;}
.y145{bottom:260.320007pt;}
.y5b{bottom:263.359985pt;}
.ya6{bottom:265.760010pt;}
.y10f{bottom:267.200012pt;}
.y264{bottom:267.679993pt;}
.y146{bottom:268.000000pt;}
.y1bf{bottom:270.080017pt;}
.yd9{bottom:270.719971pt;}
.y182{bottom:272.320007pt;}
.y208{bottom:272.479980pt;}
.y75{bottom:273.280029pt;}
.y28{bottom:276.640015pt;}
.y1c1{bottom:277.760010pt;}
.ya5{bottom:280.320007pt;}
.y5a{bottom:281.119995pt;}
.y263{bottom:283.039978pt;}
.yd8{bottom:283.200012pt;}
.y10e{bottom:284.000000pt;}
.y1e5{bottom:284.799988pt;}
.y1be{bottom:285.440002pt;}
.y237{bottom:286.080017pt;}
.y181{bottom:287.679993pt;}
.yd7{bottom:287.840027pt;}
.y207{bottom:289.440002pt;}
.y74{bottom:290.080017pt;}
.y27{bottom:293.440002pt;}
.y59{bottom:295.520020pt;}
.y142{bottom:297.280029pt;}
.ya4{bottom:297.760010pt;}
.y262{bottom:298.400024pt;}
.y1bd{bottom:300.640015pt;}
.y10d{bottom:300.799988pt;}
.y236{bottom:301.440002pt;}
.yd6{bottom:302.400024pt;}
.y180{bottom:302.559998pt;}
.y206{bottom:306.239990pt;}
.y141{bottom:306.719971pt;}
.y73{bottom:307.039978pt;}
.y26{bottom:310.400024pt;}
.y58{bottom:311.359985pt;}
.ya3{bottom:311.520020pt;}
.y261{bottom:313.599976pt;}
.y1e4{bottom:313.919983pt;}
.y235{bottom:316.640015pt;}
.yd5{bottom:316.799988pt;}
.y17f{bottom:317.119995pt;}
.y10c{bottom:317.760010pt;}
.y140{bottom:318.559998pt;}
.y205{bottom:323.039978pt;}
.y72{bottom:323.840027pt;}
.y57{bottom:326.719971pt;}
.y25{bottom:327.200012pt;}
.y1ba{bottom:327.359985pt;}
.y260{bottom:328.960022pt;}
.y1e3{bottom:330.719971pt;}
.yd4{bottom:331.200012pt;}
.ya2{bottom:331.679993pt;}
.y234{bottom:332.000000pt;}
.y13f{bottom:332.320007pt;}
.y10b{bottom:333.599976pt;}
.y17e{bottom:333.919983pt;}
.y1bb{bottom:335.039978pt;}
.y204{bottom:340.000000pt;}
.y71{bottom:340.159973pt;}
.y13e{bottom:342.239990pt;}
.y1b9{bottom:342.719971pt;}
.y24{bottom:344.159973pt;}
.y25f{bottom:344.320007pt;}
.yd3{bottom:345.760010pt;}
.ya1{bottom:346.080017pt;}
.y56{bottom:346.719971pt;}
.y10a{bottom:346.880005pt;}
.y1e2{bottom:347.039978pt;}
.y233{bottom:347.359985pt;}
.y1bc{bottom:350.400024pt;}
.y17d{bottom:350.719971pt;}
.y70{bottom:354.559998pt;}
.y203{bottom:356.799988pt;}
.y1b8{bottom:358.080017pt;}
.y13d{bottom:359.679993pt;}
.yd2{bottom:360.159973pt;}
.y23{bottom:360.960022pt;}
.y55{bottom:361.440002pt;}
.y232{bottom:362.719971pt;}
.ya0{bottom:363.039978pt;}
.y109{bottom:364.159973pt;}
.y17c{bottom:367.359985pt;}
.y6f{bottom:371.359985pt;}
.y202{bottom:373.760010pt;}
.yd1{bottom:374.719971pt;}
.y25e{bottom:375.039978pt;}
.y13c{bottom:377.119995pt;}
.y1e1{bottom:377.440002pt;}
.y22{bottom:377.760010pt;}
.y108{bottom:377.919983pt;}
.y231{bottom:378.080017pt;}
.y54{bottom:378.239990pt;}
.y9f{bottom:379.840027pt;}
.y17b{bottom:383.039978pt;}
.y1b6{bottom:384.640015pt;}
.y6e{bottom:388.320007pt;}
.y13b{bottom:388.960022pt;}
.yd0{bottom:389.119995pt;}
.y25d{bottom:390.239990pt;}
.y1e0{bottom:390.559998pt;}
.y230{bottom:393.440002pt;}
.y21{bottom:393.760010pt;}
.y107{bottom:393.919983pt;}
.y53{bottom:395.200012pt;}
.y9e{bottom:396.799988pt;}
.y1b5{bottom:400.000000pt;}
.y17a{bottom:400.479980pt;}
.y13a{bottom:402.719971pt;}
.ycf{bottom:403.520020pt;}
.y6d{bottom:405.119995pt;}
.y25c{bottom:405.599976pt;}
.y106{bottom:406.719971pt;}
.y201{bottom:407.359985pt;}
.y20{bottom:407.520020pt;}
.y1b7{bottom:407.679993pt;}
.y22f{bottom:408.640015pt;}
.y105{bottom:409.599976pt;}
.y52{bottom:411.840027pt;}
.y139{bottom:412.159973pt;}
.y9d{bottom:413.599976pt;}
.y1b4{bottom:415.359985pt;}
.yce{bottom:418.080017pt;}
.y177{bottom:419.359985pt;}
.y25b{bottom:420.960022pt;}
.y6c{bottom:422.080017pt;}
.y200{bottom:423.679993pt;}
.y22e{bottom:424.000000pt;}
.y1df{bottom:424.320007pt;}
.y104{bottom:425.280029pt;}
.y178{bottom:427.039978pt;}
.y1f{bottom:427.359985pt;}
.y138{bottom:429.119995pt;}
.y9c{bottom:430.400024pt;}
.y1b3{bottom:430.719971pt;}
.ycd{bottom:432.479980pt;}
.y176{bottom:434.719971pt;}
.y25a{bottom:436.320007pt;}
.y1ff{bottom:438.080017pt;}
.y103{bottom:438.239990pt;}
.y6b{bottom:438.880005pt;}
.y22d{bottom:439.359985pt;}
.y1de{bottom:441.119995pt;}
.y1e{bottom:441.919983pt;}
.y179{bottom:442.400024pt;}
.y51{bottom:444.159973pt;}
.y137{bottom:445.919983pt;}
.y9b{bottom:446.400024pt;}
.ycc{bottom:447.039978pt;}
.y175{bottom:450.080017pt;}
.y259{bottom:451.679993pt;}
.y102{bottom:453.119995pt;}
.y22c{bottom:454.719971pt;}
.y6a{bottom:455.039978pt;}
.y1d{bottom:456.960022pt;}
.y1b0{bottom:457.280029pt;}
.y1dd{bottom:458.080017pt;}
.y50{bottom:461.119995pt;}
.y9a{bottom:461.280029pt;}
.ycb{bottom:461.440002pt;}
.y136{bottom:462.880005pt;}
.y1b1{bottom:464.960022pt;}
.y258{bottom:467.039978pt;}
.y101{bottom:467.520020pt;}
.y69{bottom:469.599976pt;}
.y22b{bottom:470.080017pt;}
.y1c{bottom:471.520020pt;}
.y1fe{bottom:471.840027pt;}
.y1af{bottom:472.640015pt;}
.y1dc{bottom:474.880005pt;}
.yca{bottom:476.000000pt;}
.y172{bottom:476.640015pt;}
.y4f{bottom:477.919983pt;}
.y99{bottom:478.559998pt;}
.y135{bottom:479.679993pt;}
.y1b2{bottom:480.320007pt;}
.y257{bottom:482.239990pt;}
.y173{bottom:484.320007pt;}
.y100{bottom:484.479980pt;}
.y22a{bottom:485.440002pt;}
.y68{bottom:486.400024pt;}
.y1ae{bottom:488.000000pt;}
.y1fd{bottom:488.640015pt;}
.yc9{bottom:490.400024pt;}
.y1b{bottom:490.559998pt;}
.y98{bottom:491.840027pt;}
.y171{bottom:492.000000pt;}
.y4e{bottom:494.880005pt;}
.y134{bottom:495.840027pt;}
.y256{bottom:497.599976pt;}
.y67{bottom:498.400024pt;}
.y174{bottom:499.679993pt;}
.y229{bottom:500.640015pt;}
.yff{bottom:501.280029pt;}
.yc8{bottom:504.479980pt;}
.y1a{bottom:504.799988pt;}
.y1fc{bottom:505.599976pt;}
.y170{bottom:507.359985pt;}
.y97{bottom:508.640015pt;}
.y133{bottom:510.400024pt;}
.y4d{bottom:511.679993pt;}
.y66{bottom:512.159973pt;}
.y255{bottom:512.960022pt;}
.y1ab{bottom:514.719971pt;}
.y228{bottom:516.000000pt;}
.yfe{bottom:517.280029pt;}
.y65{bottom:518.080017pt;}
.yc6{bottom:518.400024pt;}
.y19{bottom:520.159973pt;}
.y1ac{bottom:522.400024pt;}
.y96{bottom:525.440002pt;}
.y132{bottom:527.679993pt;}
.y254{bottom:528.320007pt;}
.y4c{bottom:528.479980pt;}
.y1aa{bottom:530.080017pt;}
.yfd{bottom:530.400024pt;}
.y227{bottom:531.359985pt;}
.yc7{bottom:532.159973pt;}
.yc5{bottom:532.479980pt;}
.y16d{bottom:534.080017pt;}
.y18{bottom:535.520020pt;}
.y1ad{bottom:537.760010pt;}
.y1fb{bottom:539.359985pt;}
.y16e{bottom:541.760010pt;}
.y95{bottom:542.400024pt;}
.y131{bottom:542.559998pt;}
.y253{bottom:543.679993pt;}
.y1a9{bottom:545.279999pt;}
.y4b{bottom:545.440002pt;}
.y226{bottom:546.720001pt;}
.yc4{bottom:546.880005pt;}
.yfc{bottom:547.359985pt;}
.y16c{bottom:549.279999pt;}
.y17{bottom:550.880005pt;}
.y1fa{bottom:556.160004pt;}
.y16f{bottom:556.959991pt;}
.y1db{bottom:558.559998pt;}
.y252{bottom:559.040009pt;}
.y94{bottom:559.200012pt;}
.y130{bottom:559.359985pt;}
.yc3{bottom:561.119995pt;}
.y4a{bottom:562.079987pt;}
.yfb{bottom:563.200012pt;}
.y16b{bottom:564.640015pt;}
.y16{bottom:566.079987pt;}
.y1a6{bottom:572.000000pt;}
.y1da{bottom:572.959991pt;}
.yc2{bottom:574.079987pt;}
.y251{bottom:574.239990pt;}
.y93{bottom:576.160004pt;}
.y12f{bottom:576.320007pt;}
.yfa{bottom:576.480011pt;}
.y225{bottom:577.440002pt;}
.y49{bottom:577.600006pt;}
.y1a7{bottom:579.679993pt;}
.y15{bottom:581.440002pt;}
.y1a5{bottom:587.359985pt;}
.y167{bottom:588.160004pt;}
.yc1{bottom:589.440002pt;}
.y250{bottom:589.600006pt;}
.y1d9{bottom:589.920013pt;}
.y166{bottom:591.359985pt;}
.y92{bottom:592.000000pt;}
.y224{bottom:592.640015pt;}
.yf9{bottom:593.279999pt;}
.y12e{bottom:593.440002pt;}
.y48{bottom:594.559998pt;}
.y1a8{bottom:595.040009pt;}
.y14{bottom:596.799988pt;}
.y169{bottom:599.040009pt;}
.y1a4{bottom:602.720001pt;}
.yc0{bottom:603.679993pt;}
.y24f{bottom:604.959991pt;}
.y91{bottom:605.279999pt;}
.y165{bottom:606.720001pt;}
.y223{bottom:608.000000pt;}
.yf8{bottom:610.239990pt;}
.y12d{bottom:610.720001pt;}
.y47{bottom:611.359985pt;}
.y13{bottom:612.160004pt;}
.y16a{bottom:614.399994pt;}
.ybf{bottom:615.679993pt;}
.y24e{bottom:620.320007pt;}
.y90{bottom:622.079987pt;}
.y222{bottom:623.359985pt;}
.y1d8{bottom:623.679993pt;}
.yf7{bottom:627.040009pt;}
.y12{bottom:627.519989pt;}
.y46{bottom:628.160004pt;}
.y1a2{bottom:629.279999pt;}
.ybe{bottom:632.640015pt;}
.y24d{bottom:635.679993pt;}
.y221{bottom:638.720001pt;}
.y8f{bottom:638.880005pt;}
.y1d7{bottom:639.519989pt;}
.y1f9{bottom:639.839996pt;}
.yf6{bottom:642.239990pt;}
.y11{bottom:642.559998pt;}
.y12c{bottom:644.320007pt;}
.y1a1{bottom:644.640015pt;}
.y45{bottom:645.119995pt;}
.y162{bottom:648.640015pt;}
.ybd{bottom:649.119995pt;}
.y24c{bottom:650.880005pt;}
.y1a3{bottom:652.320007pt;}
.y1d6{bottom:652.799988pt;}
.yf5{bottom:653.119995pt;}
.y220{bottom:654.079987pt;}
.y1f8{bottom:654.239990pt;}
.y8e{bottom:655.839996pt;}
.y163{bottom:656.320007pt;}
.y10{bottom:658.559998pt;}
.y1a0{bottom:660.000000pt;}
.y12b{bottom:660.640015pt;}
.y44{bottom:661.920013pt;}
.y161{bottom:664.000000pt;}
.ybc{bottom:664.799988pt;}
.y24b{bottom:666.239990pt;}
.y21f{bottom:669.279999pt;}
.y1d5{bottom:669.600006pt;}
.yf4{bottom:670.399994pt;}
.y1f7{bottom:671.200012pt;}
.y164{bottom:671.679993pt;}
.y8d{bottom:672.640015pt;}
.y19f{bottom:675.359985pt;}
.y12a{bottom:675.519989pt;}
.y43{bottom:678.880005pt;}
.y160{bottom:679.359985pt;}
.ybb{bottom:681.600006pt;}
.yf3{bottom:684.160004pt;}
.y21e{bottom:684.640015pt;}
.yf{bottom:685.119995pt;}
.y1d4{bottom:686.559998pt;}
.y1f6{bottom:688.000000pt;}
.y8c{bottom:688.640015pt;}
.y129{bottom:691.519989pt;}
.y42{bottom:695.679993pt;}
.y24a{bottom:696.959991pt;}
.yba{bottom:698.559998pt;}
.y21d{bottom:700.000000pt;}
.yf2{bottom:700.160004pt;}
.y8b{bottom:701.760010pt;}
.y19b{bottom:702.079987pt;}
.ye{bottom:703.040009pt;}
.y1d3{bottom:703.359985pt;}
.y128{bottom:704.320007pt;}
.y1f5{bottom:704.799988pt;}
.y15f{bottom:706.079987pt;}
.y127{bottom:707.200012pt;}
.y19e{bottom:709.600006pt;}
.y249{bottom:712.320007pt;}
.y41{bottom:712.480011pt;}
.yf0{bottom:712.959991pt;}
.yd{bottom:714.079987pt;}
.yb9{bottom:715.359985pt;}
.yef{bottom:715.839996pt;}
.y19a{bottom:717.279999pt;}
.y8a{bottom:718.720001pt;}
.y1d2{bottom:720.160004pt;}
.y15e{bottom:721.279999pt;}
.y1f4{bottom:721.760010pt;}
.y126{bottom:723.519989pt;}
.y19c{bottom:724.959991pt;}
.y248{bottom:727.679993pt;}
.y40{bottom:729.440002pt;}
.y21c{bottom:730.720001pt;}
.yee{bottom:731.040009pt;}
.yb8{bottom:732.160004pt;}
.y199{bottom:732.640015pt;}
.y89{bottom:735.519989pt;}
.y1d1{bottom:736.160004pt;}
.y1f3{bottom:738.559998pt;}
.y125{bottom:738.720001pt;}
.yc{bottom:739.839996pt;}
.y19d{bottom:740.320007pt;}
.yed{bottom:742.880005pt;}
.y15a{bottom:744.799988pt;}
.y3f{bottom:745.600006pt;}
.y21b{bottom:746.079987pt;}
.y159{bottom:748.000000pt;}
.yb7{bottom:749.119995pt;}
.y1d0{bottom:749.279999pt;}
.y88{bottom:752.480011pt;}
.y124{bottom:753.760010pt;}
.y1f2{bottom:754.880005pt;}
.y15c{bottom:755.679993pt;}
.yb{bottom:758.239990pt;}
.yec{bottom:758.880005pt;}
.y3e{bottom:760.000000pt;}
.y21a{bottom:761.279999pt;}
.y158{bottom:763.359985pt;}
.yb6{bottom:765.920013pt;}
.y1cf{bottom:766.239990pt;}
.y123{bottom:768.160004pt;}
.y87{bottom:769.279999pt;}
.ya{bottom:769.440002pt;}
.y15d{bottom:771.040009pt;}
.y247{bottom:773.600006pt;}
.y198{bottom:774.720001pt;}
.y219{bottom:776.640015pt;}
.yeb{bottom:776.799988pt;}
.y3d{bottom:776.959991pt;}
.y157{bottom:778.720001pt;}
.y194{bottom:779.200012pt;}
.y193{bottom:782.399994pt;}
.yb5{bottom:782.559998pt;}
.y1ce{bottom:783.040009pt;}
.y122{bottom:784.959991pt;}
.y86{bottom:786.079987pt;}
.y246{bottom:788.959991pt;}
.y9{bottom:789.440002pt;}
.y197{bottom:790.079987pt;}
.y218{bottom:792.000000pt;}
.y3c{bottom:793.760010pt;}
.y196{bottom:797.600006pt;}
.yb4{bottom:798.239990pt;}
.y1cd{bottom:800.000000pt;}
.y121{bottom:801.279999pt;}
.y85{bottom:802.399994pt;}
.y245{bottom:804.320007pt;}
.y154{bottom:805.279999pt;}
.y217{bottom:807.360001pt;}
.y8{bottom:809.279999pt;}
.yea{bottom:810.559998pt;}
.y3b{bottom:810.720001pt;}
.y155{bottom:812.960007pt;}
.y120{bottom:815.839996pt;}
.yb3{bottom:816.639999pt;}
.y84{bottom:816.800003pt;}
.y244{bottom:819.679993pt;}
.y153{bottom:820.639999pt;}
.y216{bottom:822.720001pt;}
.y3a{bottom:827.520004pt;}
.y156{bottom:828.320007pt;}
.y7{bottom:832.160004pt;}
.y1cc{bottom:832.960007pt;}
.y83{bottom:833.600006pt;}
.y11f{bottom:834.080002pt;}
.yb2{bottom:834.399994pt;}
.y243{bottom:834.880005pt;}
.y152{bottom:836.000000pt;}
.y215{bottom:838.080002pt;}
.y191{bottom:840.639999pt;}
.ye9{bottom:843.679993pt;}
.y39{bottom:844.320007pt;}
.y1cb{bottom:847.520004pt;}
.y1f1{bottom:849.919998pt;}
.y242{bottom:850.240005pt;}
.y82{bottom:850.559998pt;}
.yb1{bottom:850.720001pt;}
.y11e{bottom:852.160004pt;}
.y214{bottom:853.279999pt;}
.y192{bottom:856.000000pt;}
.ye8{bottom:858.080002pt;}
.y38{bottom:861.279999pt;}
.y6{bottom:862.080002pt;}
.y14f{bottom:862.720001pt;}
.y1f0{bottom:864.320007pt;}
.y190{bottom:864.639999pt;}
.y1ca{bottom:864.960007pt;}
.y241{bottom:865.600006pt;}
.y81{bottom:866.399994pt;}
.yb0{bottom:866.720001pt;}
.y213{bottom:868.639999pt;}
.y11d{bottom:869.759995pt;}
.ye7{bottom:872.639999pt;}
.y37{bottom:878.080002pt;}
.y1c9{bottom:878.720001pt;}
.y64{bottom:879.360001pt;}
.y1ef{bottom:881.119995pt;}
.y80{bottom:881.279999pt;}
.yaf{bottom:882.720001pt;}
.y212{bottom:884.000000pt;}
.y150{bottom:885.600006pt;}
.y11c{bottom:885.759995pt;}
.ye6{bottom:887.039993pt;}
.y18f{bottom:892.000000pt;}
.y5{bottom:892.160004pt;}
.y14e{bottom:893.279999pt;}
.y36{bottom:895.039993pt;}
.y1ee{bottom:897.440002pt;}
.yae{bottom:898.399994pt;}
.y7f{bottom:898.559998pt;}
.y240{bottom:899.039993pt;}
.y211{bottom:899.360001pt;}
.y18c{bottom:899.679993pt;}
.y151{bottom:900.960007pt;}
.y11a{bottom:901.440002pt;}
.ye5{bottom:901.600006pt;}
.y18e{bottom:907.360001pt;}
.y14d{bottom:908.639999pt;}
.y35{bottom:911.839996pt;}
.yad{bottom:914.720001pt;}
.y18b{bottom:915.039993pt;}
.ye4{bottom:916.000000pt;}
.y119{bottom:917.119995pt;}
.y4{bottom:921.279999pt;}
.y18d{bottom:922.720001pt;}
.y14c{bottom:924.000000pt;}
.y34{bottom:928.639999pt;}
.yac{bottom:929.919998pt;}
.ye3{bottom:930.400002pt;}
.y1{bottom:948.000000pt;}
.h1f{height:14.880004pt;}
.h1c{height:14.880005pt;}
.h35{height:15.039978pt;}
.h2a{height:15.040008pt;}
.h14{height:19.401302pt;}
.h1e{height:23.096802pt;}
.h15{height:26.141010pt;}
.h8{height:26.792273pt;}
.h16{height:30.197396pt;}
.h6{height:30.949718pt;}
.he{height:33.803122pt;}
.hd{height:34.645276pt;}
.h1a{height:35.605985pt;}
.ha{height:37.408566pt;}
.h1{height:38.340545pt;}
.hc{height:39.487661pt;}
.h1d{height:39.945618pt;}
.h20{height:41.465009pt;}
.h10{height:42.498047pt;}
.h17{height:42.785002pt;}
.hb{height:43.699419pt;}
.h19{height:45.070735pt;}
.h7{height:46.193605pt;}
.h12{height:46.505513pt;}
.h1b{height:47.633982pt;}
.h13{height:48.438017pt;}
.h21{height:49.528446pt;}
.h4{height:49.889160pt;}
.h9{height:51.977700pt;}
.h18{height:52.732622pt;}
.h11{height:53.835356pt;}
.hf{height:54.411308pt;}
.h5{height:64.797497pt;}
.h2{height:64.892366pt;}
.h22{height:68.128534pt;}
.h23{height:68.128538pt;}
.h34{height:68.128598pt;}
.h25{height:69.060513pt;}
.h2e{height:69.060517pt;}
.h27{height:69.060577pt;}
.h2b{height:69.060641pt;}
.h31{height:69.060757pt;}
.h3{height:72.246985pt;}
.h36{height:76.526165pt;}
.h24{height:98.848506pt;}
.h33{height:98.848566pt;}
.h30{height:99.140469pt;}
.h2d{height:99.140593pt;}
.h26{height:99.780485pt;}
.h2f{height:99.780489pt;}
.h29{height:99.780545pt;}
.h28{height:99.780549pt;}
.h2c{height:99.780609pt;}
.h32{height:99.780729pt;}
.h0{height:1056.000000pt;}
.w5{width:5.600006pt;}
.w4{width:6.079986pt;}
.w6{width:6.239990pt;}
.w3{width:88.320007pt;}
.w2{width:121.599976pt;}
.w1{width:121.600006pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x52{left:109.760002pt;}
.xd{left:120.000000pt;}
.x2{left:121.120003pt;}
.x42{left:126.239998pt;}
.x49{left:127.360001pt;}
.x3b{left:128.479996pt;}
.x43{left:130.720001pt;}
.x32{left:131.839996pt;}
.x17{left:133.119995pt;}
.x15{left:141.119995pt;}
.x1{left:145.759995pt;}
.x23{left:147.839996pt;}
.x22{left:150.880005pt;}
.x19{left:152.639999pt;}
.x12{left:156.000000pt;}
.x2a{left:158.559998pt;}
.x16{left:160.000000pt;}
.x13{left:162.080002pt;}
.xa{left:163.839996pt;}
.x3c{left:166.080002pt;}
.x18{left:167.039993pt;}
.xf{left:168.000000pt;}
.x31{left:175.520004pt;}
.x2f{left:176.800003pt;}
.x5{left:185.440002pt;}
.x11{left:187.520004pt;}
.x41{left:189.759995pt;}
.x14{left:192.160004pt;}
.x33{left:195.199997pt;}
.x8{left:196.479996pt;}
.x30{left:198.080002pt;}
.x2b{left:204.639999pt;}
.x2d{left:211.039993pt;}
.x6{left:212.960007pt;}
.x40{left:216.160004pt;}
.xc{left:219.520004pt;}
.x2e{left:224.639999pt;}
.x7{left:239.360001pt;}
.x1b{left:240.320007pt;}
.x1a{left:244.000000pt;}
.xb{left:263.519989pt;}
.x9{left:271.679993pt;}
.x44{left:312.000000pt;}
.x3f{left:314.880005pt;}
.x34{left:329.760010pt;}
.x50{left:334.559998pt;}
.x3d{left:352.160004pt;}
.x24{left:360.320007pt;}
.x2c{left:373.920013pt;}
.x1c{left:375.519989pt;}
.x4{left:408.000000pt;}
.x25{left:437.279999pt;}
.x1d{left:448.160004pt;}
.x4a{left:454.239990pt;}
.x46{left:455.839996pt;}
.x37{left:461.600006pt;}
.x45{left:463.359985pt;}
.x36{left:467.839996pt;}
.x35{left:468.959991pt;}
.x4b{left:488.640015pt;}
.x47{left:505.600006pt;}
.x38{left:512.000000pt;}
.x4c{left:516.159973pt;}
.x29{left:519.520020pt;}
.x48{left:558.080017pt;}
.x51{left:559.520020pt;}
.x39{left:568.960022pt;}
.x4d{left:571.679993pt;}
.x26{left:579.520020pt;}
.x1e{left:581.919983pt;}
.x28{left:642.559998pt;}
.x21{left:644.159973pt;}
.x1f{left:645.440002pt;}
.x10{left:646.880005pt;}
.x27{left:647.840027pt;}
.x20{left:649.440002pt;}
.x4e{left:657.119995pt;}
.x4f{left:662.719971pt;}
.x3a{left:668.960022pt;}
.x3e{left:673.760010pt;}
.xe{left:682.719971pt;}
.x3{left:696.000000pt;}
}




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