
    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_401adefda4c62aae47ebdaa0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_deb33b79bb4d174fc5373a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_6d1f821cbd8b67be867fe220.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800781;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_887608c22dea49dc6609db25.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.101074;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_d04d47e2ca6db71ce9198f4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_b5571dd047e0b300b41e2e85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_15c78569b10261dd6cdad13e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010742;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;}
.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);}
.v1{vertical-align:-2.159910px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879793px;}
.v3{vertical-align:30.240004px;}
.ls1{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.008322px;}
.ls11{letter-spacing:0.008592px;}
.ls26{letter-spacing:0.008596px;}
.ls3e{letter-spacing:0.036576px;}
.ls25{letter-spacing:0.036846px;}
.lsd{letter-spacing:0.036851px;}
.ls4b{letter-spacing:0.037230px;}
.ls45{letter-spacing:0.038088px;}
.lse{letter-spacing:0.038093px;}
.ls4{letter-spacing:0.038227px;}
.ls4c{letter-spacing:0.054740px;}
.ls0{letter-spacing:0.055021px;}
.ls13{letter-spacing:0.072180px;}
.ls1a{letter-spacing:0.103188px;}
.ls19{letter-spacing:0.103193px;}
.ls9{letter-spacing:0.103463px;}
.ls16{letter-spacing:0.135764px;}
.ls41{letter-spacing:0.137276px;}
.ls3{letter-spacing:0.137280px;}
.ls31{letter-spacing:0.137312px;}
.ls3c{letter-spacing:0.137415px;}
.ls15{letter-spacing:0.141281px;}
.ls40{letter-spacing:0.141285px;}
.ls1c{letter-spacing:0.141416px;}
.ls39{letter-spacing:0.141420px;}
.ls7{letter-spacing:0.141555px;}
.ls30{letter-spacing:0.170022px;}
.ls29{letter-spacing:0.205071px;}
.ls3b{letter-spacing:0.222801px;}
.ls6{letter-spacing:0.281003px;}
.ls14{letter-spacing:0.281007px;}
.ls10{letter-spacing:0.281070px;}
.ls3d{letter-spacing:0.281075px;}
.ls35{letter-spacing:0.281147px;}
.ls3f{letter-spacing:0.281277px;}
.ls2{letter-spacing:0.283766px;}
.ls12{letter-spacing:0.287766px;}
.lsb{letter-spacing:0.287771px;}
.ls2d{letter-spacing:0.287838px;}
.ls2a{letter-spacing:0.287870px;}
.ls18{letter-spacing:0.287906px;}
.ls20{letter-spacing:0.288041px;}
.ls23{letter-spacing:0.288045px;}
.ls32{letter-spacing:0.380195px;}
.ls34{letter-spacing:0.384373px;}
.ls22{letter-spacing:0.431494px;}
.lsf{letter-spacing:0.431566px;}
.ls4d{letter-spacing:0.431633px;}
.ls46{letter-spacing:0.445021px;}
.ls2c{letter-spacing:0.445160px;}
.ls2f{letter-spacing:0.445228px;}
.ls8{letter-spacing:0.449296px;}
.ls1d{letter-spacing:0.449300px;}
.ls38{letter-spacing:0.480241px;}
.ls48{letter-spacing:0.480313px;}
.ls47{letter-spacing:0.501841px;}
.ls27{letter-spacing:0.501845px;}
.ls42{letter-spacing:0.501976px;}
.ls36{letter-spacing:0.501980px;}
.ls2e{letter-spacing:0.502048px;}
.ls28{letter-spacing:0.502115px;}
.ls44{letter-spacing:0.502120px;}
.ls3a{letter-spacing:0.514261px;}
.lsc{letter-spacing:0.516884px;}
.ls37{letter-spacing:0.573912px;}
.ls1e{letter-spacing:0.573979px;}
.ls17{letter-spacing:0.574119px;}
.ls33{letter-spacing:0.756864px;}
.ls2b{letter-spacing:0.758178px;}
.ls1f{letter-spacing:0.861434px;}
.ls4a{letter-spacing:1.007649px;}
.ls49{letter-spacing:1.007919px;}
.ls21{letter-spacing:1.186664px;}
.ls1b{letter-spacing:1.975788px;}
.ls24{letter-spacing:17.095860px;}
.ls5{letter-spacing:148.066592px;}
.ls43{letter-spacing:157.426534px;}
.lsa{letter-spacing:411.586583px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-71.863650px;}
.ws6{word-spacing:-66.114450px;}
.ws7{word-spacing:-18.308388px;}
.ws1{word-spacing:-18.253367px;}
.ws0{word-spacing:-16.793070px;}
.ws4{word-spacing:-16.744230px;}
.ws3{word-spacing:-16.241185px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-8.379575px;}
._1{margin-left:-1.003080px;}
._0{width:1.455750px;}
._5{width:2.923490px;}
._10{width:4.205146px;}
._f{width:5.337280px;}
._e{width:6.916876px;}
._4{width:8.356395px;}
._12{width:9.361083px;}
._8{width:10.385701px;}
._9{width:11.604933px;}
._7{width:12.685057px;}
._a{width:14.303954px;}
._13{width:15.422764px;}
._1a{width:16.830972px;}
._6{width:19.259178px;}
._2{width:20.462613px;}
._3{width:21.470388px;}
._d{width:22.836942px;}
._b{width:24.182960px;}
._c{width:25.615792px;}
._3b{width:26.641757px;}
._31{width:27.831495px;}
._30{width:28.888065px;}
._20{width:30.206554px;}
._1e{width:31.656499px;}
._1f{width:32.771509px;}
._3d{width:34.224221px;}
._18{width:35.466115px;}
._19{width:36.518446px;}
._1b{width:38.092507px;}
._1c{width:39.329398px;}
._1d{width:40.337404px;}
._2d{width:41.840451px;}
._3c{width:44.483319px;}
._40{width:47.877731px;}
._3e{width:49.083715px;}
._3f{width:52.172913px;}
._42{width:74.876386px;}
._41{width:76.123817px;}
._43{width:78.473949px;}
._15{width:115.524186px;}
._37{width:154.770563px;}
._3a{width:163.900713px;}
._14{width:167.227784px;}
._34{width:172.539372px;}
._2c{width:174.849175px;}
._2f{width:184.787539px;}
._16{width:199.565356px;}
._21{width:217.085391px;}
._28{width:219.731566px;}
._24{width:220.900995px;}
._23{width:229.707037px;}
._38{width:314.048923px;}
._26{width:322.639272px;}
._36{width:326.802194px;}
._27{width:328.793042px;}
._2b{width:330.230315px;}
._35{width:333.196936px;}
._39{width:336.863105px;}
._29{width:339.074035px;}
._2e{width:340.456288px;}
._25{width:346.758954px;}
._33{width:363.397635px;}
._22{width:364.724867px;}
._32{width:371.284390px;}
._2a{width:570.895027px;}
._17{width:649.554585px;}
.fc4{color:rgb(68,68,170);}
.fc3{color:transparent;}
.fc2{color:rgb(238,236,225);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.680890px;}
.fs2{font-size:59.646600px;}
.fs3{font-size:66.114450px;}
.fs1{font-size:71.863650px;}
.fs0{font-size:84.080250px;}
.fs4{font-size:143.727300px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.600014px;}
.ye{bottom:3.779983px;}
.y17{bottom:3.779984px;}
.y1a{bottom:3.780018px;}
.yc{bottom:3.780052px;}
.y10{bottom:3.780053px;}
.y133{bottom:3.959953px;}
.y1e0{bottom:3.959954px;}
.y179{bottom:3.959988px;}
.y4d{bottom:3.960004px;}
.y1d2{bottom:3.960021px;}
.yd7{bottom:3.960022px;}
.y20{bottom:4.139991px;}
.y22{bottom:4.139992px;}
.y3c{bottom:4.140000px;}
.y4f{bottom:4.140009px;}
.y27{bottom:4.140060px;}
.y2a{bottom:4.140061px;}
.y2{bottom:4.859999px;}
.y7{bottom:4.860008px;}
.y14{bottom:8.279983px;}
.y3a{bottom:8.280001px;}
.y12{bottom:8.280018px;}
.yf{bottom:54.179970px;}
.y40{bottom:57.960022px;}
.yd{bottom:73.259994px;}
.y55{bottom:81.179970px;}
.yb{bottom:92.159981px;}
.ya{bottom:111.240006px;}
.ya2{bottom:112.320030px;}
.y7b{bottom:115.200027px;}
.y1e7{bottom:119.879998px;}
.y199{bottom:122.399986px;}
.y240{bottom:126.000000px;}
.y148{bottom:126.899986px;}
.y11a{bottom:129.960022px;}
.y225{bottom:130.139992px;}
.ya1{bottom:133.019989px;}
.y7a{bottom:135.899986px;}
.yf3{bottom:136.799973px;}
.y16f{bottom:140.220017px;}
.y1e6{bottom:141.299973px;}
.y198{bottom:144.360008px;}
.y23f{bottom:147.059967px;}
.yc8{bottom:147.240006px;}
.y147{bottom:147.779983px;}
.y203{bottom:148.500000px;}
.y119{bottom:150.659981px;}
.y224{bottom:150.840019px;}
.ya0{bottom:153.899986px;}
.y1bd{bottom:154.259994px;}
.y79{bottom:156.600013px;}
.yf2{bottom:157.500000px;}
.y16e{bottom:161.100013px;}
.y1e5{bottom:162.000000px;}
.y197{bottom:166.320030px;}
.yc7{bottom:168.120002px;}
.y146{bottom:168.480011px;}
.y223{bottom:171.539977px;}
.y1bc{bottom:175.139992px;}
.yf1{bottom:178.379998px;}
.y16d{bottom:181.799973px;}
.y1e4{bottom:182.700027px;}
.y202{bottom:185.039977px;}
.y23e{bottom:185.940033px;}
.y196{bottom:188.100013px;}
.yc6{bottom:188.820030px;}
.y118{bottom:189.179970px;}
.y145{bottom:189.360008px;}
.y9f{bottom:192.419975px;}
.y78{bottom:195.299973px;}
.y1bb{bottom:195.840019px;}
.yf0{bottom:199.080025px;}
.y16c{bottom:202.500000px;}
.y1e3{bottom:203.580025px;}
.y201{bottom:205.740006px;}
.y222{bottom:207.360008px;}
.y195{bottom:208.799973px;}
.yc5{bottom:209.700027px;}
.y144{bottom:210.779983px;}
.y1ba{bottom:216.720017px;}
.yef{bottom:220.500000px;}
.y16b{bottom:223.379998px;}
.y1e2{bottom:224.279983px;}
.y38{bottom:225.000000px;}
.y200{bottom:226.620002px;}
.y221{bottom:228.240006px;}
.y117{bottom:228.779983px;}
.y48{bottom:229.139992px;}
.y23d{bottom:229.320030px;}
.y194{bottom:229.679970px;}
.yc4{bottom:230.399986px;}
.y9e{bottom:231.840019px;}
.y143{bottom:232.740006px;}
.y77{bottom:234.720017px;}
.y1b9{bottom:238.139992px;}
.yee{bottom:242.460022px;}
.y16a{bottom:244.080025px;}
.y1e1{bottom:245.159981px;}
.y37{bottom:245.879998px;}
.y1ff{bottom:247.320030px;}
.y220{bottom:248.940033px;}
.y116{bottom:249.480011px;}
.y193{bottom:250.379998px;}
.yc3{bottom:251.279983px;}
.y9d{bottom:252.720017px;}
.y142{bottom:254.700027px;}
.y76{bottom:255.419975px;}
.y1b8{bottom:260.100013px;}
.yed{bottom:264.419975px;}
.y169{bottom:264.960022px;}
.y36{bottom:266.759994px;}
.y1fe{bottom:268.200027px;}
.y23c{bottom:268.919975px;}
.y21f{bottom:269.639992px;}
.y115{bottom:270.899986px;}
.y192{bottom:271.259994px;}
.yc2{bottom:271.980011px;}
.y9c{bottom:273.419975px;}
.y141{bottom:275.940033px;}
.y75{bottom:276.299973px;}
.y1df{bottom:280.440033px;}
.y1b7{bottom:282.059967px;}
.y1de{bottom:284.399986px;}
.y168{bottom:285.659981px;}
.yec{bottom:286.379998px;}
.y35{bottom:287.460022px;}
.y23b{bottom:290.159981px;}
.y52{bottom:291.600013px;}
.y191{bottom:291.960022px;}
.yc1{bottom:292.679970px;}
.y114{bottom:293.039977px;}
.y9b{bottom:294.120002px;}
.y74{bottom:297.000000px;}
.y140{bottom:297.360008px;}
.y1b6{bottom:303.299973px;}
.y1fd{bottom:304.019989px;}
.y21e{bottom:305.460022px;}
.y167{bottom:306.539977px;}
.y1dd{bottom:306.720017px;}
.yeb{bottom:307.799973px;}
.y34{bottom:308.340019px;}
.yc0{bottom:313.559967px;}
.y113{bottom:314.279983px;}
.y9a{bottom:315.000000px;}
.y13f{bottom:318.779983px;}
.y1b5{bottom:324.179970px;}
.y1fc{bottom:324.720017px;}
.y21d{bottom:326.340019px;}
.y190{bottom:327.779983px;}
.yea{bottom:328.500000px;}
.y1dc{bottom:328.679970px;}
.y33{bottom:329.039977px;}
.y23a{bottom:329.580025px;}
.y32{bottom:333.179970px;}
.y99{bottom:335.700027px;}
.y73{bottom:335.879998px;}
.y166{bottom:342.179970px;}
.y1fb{bottom:345.419975px;}
.y21c{bottom:347.039977px;}
.y18f{bottom:348.480011px;}
.y31{bottom:349.740006px;}
.ye9{bottom:349.919975px;}
.y1db{bottom:350.460022px;}
.y239{bottom:351.539977px;}
.y1da{bottom:351.720017px;}
.ybf{bottom:352.259994px;}
.y13e{bottom:354.600013px;}
.y72{bottom:356.580025px;}
.y112{bottom:356.940033px;}
.y1b4{bottom:359.820030px;}
.y165{bottom:363.059967px;}
.y1fa{bottom:366.299973px;}
.y21b{bottom:367.740006px;}
.y18e{bottom:369.899986px;}
.y30{bottom:370.620002px;}
.ye8{bottom:371.159981px;}
.y1d9{bottom:372.419975px;}
.ybe{bottom:373.139992px;}
.y98{bottom:374.580025px;}
.y13d{bottom:375.299973px;}
.y71{bottom:377.460022px;}
.y111{bottom:377.820030px;}
.y1b3{bottom:381.240006px;}
.y164{bottom:384.480011px;}
.y1f9{bottom:387.000000px;}
.y238{bottom:391.139992px;}
.y2f{bottom:391.320030px;}
.ybd{bottom:393.840019px;}
.y1d8{bottom:394.379998px;}
.y97{bottom:395.279983px;}
.y51{bottom:395.460022px;}
.y1d7{bottom:395.639992px;}
.y13c{bottom:396.720017px;}
.y70{bottom:398.159981px;}
.y110{bottom:398.519989px;}
.y1b2{bottom:403.379998px;}
.y21a{bottom:403.559967px;}
.y252{bottom:405.000000px;}
.y163{bottom:405.720017px;}
.y2e{bottom:412.200027px;}
.y18d{bottom:412.740006px;}
.ye7{bottom:412.919975px;}
.ybc{bottom:414.720017px;}
.y96{bottom:416.159981px;}
.y47{bottom:416.340019px;}
.y13b{bottom:418.679970px;}
.y6f{bottom:418.860008px;}
.y10f{bottom:419.399986px;}
.y1f8{bottom:422.639992px;}
.y219{bottom:424.440033px;}
.y1b1{bottom:424.620002px;}
.y162{bottom:426.600013px;}
.y237{bottom:430.019989px;}
.y2d{bottom:432.899986px;}
.y18c{bottom:434.700027px;}
.ybb{bottom:435.419975px;}
.y95{bottom:436.860008px;}
.y46{bottom:437.039977px;}
.y1d5{bottom:437.940033px;}
.y6e{bottom:439.740006px;}
.y10e{bottom:440.100013px;}
.y13a{bottom:440.639992px;}
.y218{bottom:445.139992px;}
.y1b0{bottom:445.320030px;}
.y251{bottom:446.399986px;}
.y161{bottom:447.299973px;}
.y236{bottom:451.080025px;}
.ye5{bottom:451.620002px;}
.y2c{bottom:453.779983px;}
.ye4{bottom:455.580025px;}
.y18b{bottom:455.940033px;}
.yba{bottom:456.120002px;}
.ye6{bottom:456.299973px;}
.y1d6{bottom:456.840019px;}
.y94{bottom:457.559967px;}
.y45{bottom:457.919975px;}
.y1d4{bottom:458.639992px;}
.y1f7{bottom:459.000000px;}
.y139{bottom:462.600013px;}
.y217{bottom:466.019989px;}
.y1af{bottom:466.559967px;}
.y160{bottom:468.179970px;}
.y2b{bottom:474.480011px;}
.yb9{bottom:477.000000px;}
.y18a{bottom:477.360008px;}
.ye3{bottom:477.899986px;}
.y93{bottom:478.440033px;}
.ye1{bottom:478.620002px;}
.y6d{bottom:478.799973px;}
.y10d{bottom:478.980011px;}
.y1d3{bottom:479.519989px;}
.y1f6{bottom:479.879998px;}
.y138{bottom:484.019989px;}
.y250{bottom:486.179970px;}
.y1ae{bottom:487.259994px;}
.y15f{bottom:489.600013px;}
.y235{bottom:490.320030px;}
.y29{bottom:495.179970px;}
.y1d1{bottom:496.799973px;}
.yb8{bottom:497.700027px;}
.ye2{bottom:498.600013px;}
.y189{bottom:498.779983px;}
.y92{bottom:499.139992px;}
.y28{bottom:499.320030px;}
.ye0{bottom:499.500000px;}
.y6c{bottom:499.679970px;}
.ydf{bottom:499.860008px;}
.y10c{bottom:500.399986px;}
.y1f5{bottom:500.580025px;}
.y1d0{bottom:500.759994px;}
.y216{bottom:501.659981px;}
.y137{bottom:504.720017px;}
.y24f{bottom:507.059967px;}
.y1ad{bottom:508.679970px;}
.y15e{bottom:510.840019px;}
.y234{bottom:511.019989px;}
.y26{bottom:516.059967px;}
.yb7{bottom:518.580025px;}
.y188{bottom:519.840019px;}
.yde{bottom:520.559967px;}
.y10b{bottom:521.639992px;}
.y1cf{bottom:522.000000px;}
.y215{bottom:522.539977px;}
.y136{bottom:525.600013px;}
.y1ac{bottom:530.100013px;}
.y15d{bottom:532.259994px;}
.y25{bottom:536.759994px;}
.y91{bottom:538.019989px;}
.y6b{bottom:538.379998px;}
.yb6{bottom:539.279983px;}
.y187{bottom:540.720017px;}
.ydd{bottom:542.159981px;}
.y10a{bottom:542.519989px;}
.ydc{bottom:542.879998px;}
.y214{bottom:543.240006px;}
.y24e{bottom:546.120002px;}
.y135{bottom:546.299973px;}
.y233{bottom:549.899986px;}
.y1ab{bottom:550.799973px;}
.y15c{bottom:554.220017px;}
.y24{bottom:557.639992px;}
.y1f4{bottom:558.360008px;}
.y90{bottom:558.720017px;}
.y6a{bottom:559.080025px;}
.y1ce{bottom:559.259994px;}
.yb5{bottom:560.159981px;}
.y186{bottom:561.419975px;}
.y23{bottom:561.779983px;}
.y109{bottom:563.220017px;}
.ydb{bottom:564.120002px;}
.y134{bottom:567.000000px;}
.y24d{bottom:567.360008px;}
.y232{bottom:570.960022px;}
.y15b{bottom:576.179970px;}
.y21{bottom:578.340019px;}
.y213{bottom:578.879998px;}
.y1f3{bottom:579.240006px;}
.y8f{bottom:579.600013px;}
.y69{bottom:579.960022px;}
.y185{bottom:582.299973px;}
.y108{bottom:583.919975px;}
.yda{bottom:585.539977px;}
.yd9{bottom:586.440033px;}
.y1aa{bottom:586.620002px;}
.y1cd{bottom:595.080025px;}
.y15a{bottom:597.600013px;}
.yb4{bottom:598.679970px;}
.y1f{bottom:599.220017px;}
.y1f2{bottom:599.940033px;}
.y8e{bottom:600.299973px;}
.y68{bottom:600.659981px;}
.y132{bottom:602.460022px;}
.y184{bottom:603.000000px;}
.y107{bottom:604.799973px;}
.y131{bottom:606.419975px;}
.y1a9{bottom:607.320030px;}
.yd8{bottom:607.679970px;}
.y231{bottom:610.200027px;}
.y212{bottom:615.240006px;}
.y1cc{bottom:615.779983px;}
.y159{bottom:619.019989px;}
.y1f1{bottom:620.639992px;}
.y8d{bottom:621.000000px;}
.y67{bottom:621.540012px;}
.yd6{bottom:624.959988px;}
.y106{bottom:625.500000px;}
.y130{bottom:628.560001px;}
.yd5{bottom:628.920010px;}
.y230{bottom:631.259994px;}
.y211{bottom:636.120002px;}
.yb3{bottom:638.100013px;}
.y183{bottom:638.279983px;}
.y158{bottom:640.259994px;}
.y1f0{bottom:641.519989px;}
.y1e{bottom:641.879998px;}
.y182{bottom:642.240006px;}
.y24c{bottom:645.120002px;}
.y105{bottom:646.379998px;}
.y12f{bottom:649.980011px;}
.yd4{bottom:650.160015px;}
.y1a8{bottom:650.879998px;}
.y1cb{bottom:651.600013px;}
.y12e{bottom:651.779983px;}
.y210{bottom:656.819995px;}
.yb2{bottom:658.980011px;}
.y66{bottom:660.240006px;}
.y157{bottom:661.139992px;}
.y181{bottom:664.560001px;}
.y24b{bottom:666.360008px;}
.y104{bottom:667.800007px;}
.y22f{bottom:670.500000px;}
.y1ca{bottom:672.300007px;}
.y12d{bottom:672.660015px;}
.y1a7{bottom:672.839985px;}
.y1ef{bottom:676.980011px;}
.y1d{bottom:677.699993px;}
.y43{bottom:677.879998px;}
.yb1{bottom:680.040012px;}
.y8c{bottom:680.579990px;}
.y65{bottom:681.120002px;}
.y1c{bottom:681.480011px;}
.y180{bottom:685.980011px;}
.y24a{bottom:687.060001px;}
.y103{bottom:689.759994px;}
.yd3{bottom:690.480011px;}
.y22e{bottom:691.560001px;}
.y1c9{bottom:693.180004px;}
.y12c{bottom:694.079990px;}
.y156{bottom:696.779983px;}
.y20f{bottom:698.399986px;}
.y42{bottom:701.100013px;}
.y8b{bottom:701.459988px;}
.y64{bottom:701.819995px;}
.y17f{bottom:707.579990px;}
.y102{bottom:711.720017px;}
.y1ee{bottom:713.519989px;}
.y1c8{bottom:713.879998px;}
.y12b{bottom:715.500000px;}
.y12a{bottom:717.300007px;}
.y155{bottom:717.660015px;}
.y20e{bottom:719.279983px;}
.y1b{bottom:720.720017px;}
.y8a{bottom:722.160015px;}
.y63{bottom:722.519989px;}
.yb0{bottom:722.879998px;}
.y249{bottom:725.939999px;}
.y17e{bottom:728.819995px;}
.yd2{bottom:729.180004px;}
.y22d{bottom:730.079990px;}
.y101{bottom:732.959988px;}
.y1ed{bottom:734.399986px;}
.y1c7{bottom:734.759994px;}
.y19{bottom:736.019989px;}
.y1a6{bottom:737.459988px;}
.y129{bottom:738.000000px;}
.y154{bottom:739.079990px;}
.y18{bottom:739.800007px;}
.y20d{bottom:739.980011px;}
.y89{bottom:743.040012px;}
.y62{bottom:743.399986px;}
.yaf{bottom:744.300007px;}
.y248{bottom:747.000000px;}
.yd1{bottom:749.879998px;}
.y17d{bottom:750.420010px;}
.y16{bottom:755.100013px;}
.y1c6{bottom:755.459988px;}
.y15{bottom:758.879998px;}
.y1a5{bottom:759.420010px;}
.y128{bottom:760.139992px;}
.y153{bottom:760.319995px;}
.y127{bottom:761.939999px;}
.y61{bottom:764.100013px;}
.y88{bottom:764.459988px;}
.yae{bottom:766.259994px;}
.y22c{bottom:769.680004px;}
.yd0{bottom:770.759994px;}
.y100{bottom:771.839985px;}
.y17c{bottom:772.379998px;}
.y1ec{bottom:775.800007px;}
.y1c5{bottom:776.160015px;}
.y152{bottom:781.199993px;}
.y1a4{bottom:781.379998px;}
.y126{bottom:782.819995px;}
.y247{bottom:786.240006px;}
.y87{bottom:786.420010px;}
.yad{bottom:788.220017px;}
.y22b{bottom:790.379998px;}
.ycf{bottom:791.459988px;}
.yff{bottom:793.259994px;}
.y17b{bottom:794.519989px;}
.y20c{bottom:796.500000px;}
.y1eb{bottom:796.680004px;}
.y1c4{bottom:797.040012px;}
.y41{bottom:799.560001px;}
.y151{bottom:802.620002px;}
.y60{bottom:802.980011px;}
.y1a3{bottom:803.339985px;}
.y125{bottom:804.240006px;}
.y246{bottom:807.300007px;}
.y86{bottom:807.660015px;}
.y22a{bottom:811.259994px;}
.yfe{bottom:814.500000px;}
.y17a{bottom:817.019989px;}
.y20b{bottom:817.379998px;}
.y5f{bottom:823.680004px;}
.y150{bottom:824.579990px;}
.y1a2{bottom:824.759994px;}
.y124{bottom:825.660015px;}
.yac{bottom:827.279983px;}
.y85{bottom:828.540012px;}
.yce{bottom:829.980011px;}
.y229{bottom:831.959988px;}
.y1ea{bottom:832.139992px;}
.y1c3{bottom:832.500000px;}
.y13{bottom:833.040012px;}
.y178{bottom:834.300007px;}
.yfd{bottom:835.920010px;}
.y20a{bottom:838.079990px;}
.y177{bottom:838.259994px;}
.y50{bottom:841.319995px;}
.y5e{bottom:844.560001px;}
.y1a1{bottom:845.459988px;}
.y14f{bottom:845.819995px;}
.y245{bottom:846.180004px;}
.y123{bottom:847.620002px;}
.y122{bottom:849.420010px;}
.y228{bottom:852.660015px;}
.y176{bottom:855.360008px;}
.yfc{bottom:857.339985px;}
.y175{bottom:859.500000px;}
.y5d{bottom:865.259994px;}
.y1a0{bottom:866.339985px;}
.yab{bottom:866.699993px;}
.y84{bottom:867.240006px;}
.y1e9{bottom:868.680004px;}
.y1c2{bottom:869.040012px;}
.ycd{bottom:869.579990px;}
.y121{bottom:870.120002px;}
.y11{bottom:874.439999px;}
.yfb{bottom:878.040012px;}
.y5c{bottom:885.959988px;}
.y14e{bottom:887.399987px;}
.yaa{bottom:887.579990px;}
.y83{bottom:887.939999px;}
.y244{bottom:888.120002px;}
.y1c1{bottom:889.740006px;}
.ycc{bottom:890.279983px;}
.y120{bottom:891.540012px;}
.y227{bottom:891.720017px;}
.y11e{bottom:894.779983px;}
.y209{bottom:895.680004px;}
.y174{bottom:896.759994px;}
.yfa{bottom:899.459988px;}
.y19f{bottom:902.699993px;}
.y5b{bottom:906.840002px;}
.ya9{bottom:908.280001px;}
.y82{bottom:908.819996px;}
.y1c0{bottom:910.620002px;}
.ycb{bottom:911.159998px;}
.y11f{bottom:912.780001px;}
.y9{bottom:920.879998px;}
.y19e{bottom:924.479994px;}
.y243{bottom:926.819996px;}
.y5a{bottom:927.539996px;}
.ya8{bottom:929.159998px;}
.y81{bottom:929.520006px;}
.y14d{bottom:930.780001px;}
.y1bf{bottom:931.319996px;}
.yca{bottom:931.860008px;}
.y208{bottom:932.039995px;}
.y173{bottom:932.580008px;}
.yf9{bottom:942.300007px;}
.y19d{bottom:945.180004px;}
.y8{bottom:945.900003px;}
.y242{bottom:948.240006px;}
.y59{bottom:948.419992px;}
.ya7{bottom:949.860008px;}
.y80{bottom:950.400003px;}
.y14c{bottom:952.199993px;}
.y1e8{bottom:952.740006px;}
.y207{bottom:952.919992px;}
.y172{bottom:953.280001px;}
.y6{bottom:962.639992px;}
.yf8{bottom:964.259994px;}
.y19c{bottom:966.599997px;}
.y5{bottom:967.500000px;}
.y241{bottom:970.199993px;}
.yc9{bottom:970.379998px;}
.ya6{bottom:970.560001px;}
.y7f{bottom:971.099997px;}
.y14b{bottom:972.900003px;}
.y206{bottom:973.620002px;}
.y171{bottom:974.159998px;}
.y4e{bottom:976.139992px;}
.yf7{bottom:986.219999px;}
.y58{bottom:986.939999px;}
.y19b{bottom:988.020006px;}
.y11d{bottom:988.740006px;}
.y4{bottom:990.180004px;}
.y226{bottom:991.259994px;}
.ya5{bottom:991.439999px;}
.y1be{bottom:993.780001px;}
.y205{bottom:994.500000px;}
.y170{bottom:994.860008px;}
.y3{bottom:1004.039996px;}
.yf6{bottom:1007.460004px;}
.y14a{bottom:1008.719999px;}
.y19a{bottom:1009.439999px;}
.y11c{bottom:1009.620002px;}
.y7e{bottom:1009.979994px;}
.y4c{bottom:1011.780001px;}
.ya4{bottom:1012.139992px;}
.y204{bottom:1015.199993px;}
.y39{bottom:1027.620002px;}
.yf5{bottom:1028.879998px;}
.y149{bottom:1029.419992px;}
.y57{bottom:1029.960004px;}
.y11b{bottom:1030.319996px;}
.y7d{bottom:1030.680004px;}
.y4b{bottom:1037.340002px;}
.ya3{bottom:1050.659998px;}
.y56{bottom:1050.840002px;}
.yf4{bottom:1051.019998px;}
.y7c{bottom:1051.379998px;}
.y3f{bottom:1053.900003px;}
.y3e{bottom:1058.040003px;}
.y54{bottom:1072.620002px;}
.y3d{bottom:1074.599997px;}
.y4a{bottom:1078.739997px;}
.y3b{bottom:1095.480002px;}
.y49{bottom:1099.620002px;}
.y53{bottom:1101.420001px;}
.y1{bottom:1109.879998px;}
.h18{height:18.720016px;}
.hd{height:19.079990px;}
.hc{height:19.079991px;}
.h8{height:19.080025px;}
.h19{height:20.159998px;}
.h27{height:20.519989px;}
.h23{height:20.519990px;}
.h25{height:20.520007px;}
.h20{height:20.520024px;}
.h2c{height:20.520057px;}
.h10{height:20.699958px;}
.h13{height:20.699960px;}
.hf{height:20.699993px;}
.h15{height:20.699998px;}
.h16{height:20.700001px;}
.h1a{height:20.700010px;}
.h11{height:20.700027px;}
.h12{height:20.700028px;}
.h1{height:24.120002px;}
.h5{height:24.300007px;}
.hb{height:41.579990px;}
.h14{height:41.580000px;}
.h9{height:41.580007px;}
.h4{height:42.550626px;}
.h1e{height:46.163898px;}
.h17{height:47.132372px;}
.h7{height:47.164654px;}
.he{height:51.230922px;}
.h3{height:51.266012px;}
.h6{height:52.943212px;}
.h2b{height:54.145940px;}
.h2e{height:54.146075px;}
.h28{height:54.146080px;}
.h24{height:58.850900px;}
.h2{height:59.981077px;}
.h2d{height:61.808289px;}
.h2a{height:61.808424px;}
.h22{height:61.808559px;}
.h21{height:61.808564px;}
.h1c{height:63.968474px;}
.h1d{height:65.759343px;}
.h26{height:69.317614px;}
.h29{height:69.317754px;}
.h1f{height:71.477664px;}
.ha{height:102.532024px;}
.h1b{height:127.936947px;}
.h0{height:1188.000000px;}
.w28{width:3.419975px;}
.we{width:8.099979px;}
.w7{width:8.099997px;}
.w29{width:8.100014px;}
.w3b{width:8.460005px;}
.w30{width:9.540046px;}
.w18{width:9.900021px;}
.w37{width:12.419975px;}
.w3a{width:12.419992px;}
.w36{width:12.420009px;}
.w39{width:12.420010px;}
.w38{width:12.420044px;}
.w16{width:12.600015px;}
.w3{width:14.400003px;}
.w2{width:14.579990px;}
.w13{width:19.439964px;}
.w26{width:21.420044px;}
.w1b{width:33.659981px;}
.w17{width:41.400021px;}
.wb{width:43.019989px;}
.w24{width:43.020024px;}
.w10{width:43.379998px;}
.wa{width:44.279983px;}
.w1c{width:50.040012px;}
.wf{width:53.459954px;}
.w34{width:56.700027px;}
.w22{width:57.240006px;}
.w11{width:64.980011px;}
.w27{width:65.700027px;}
.w2b{width:74.160049px;}
.w21{width:85.500000px;}
.w15{width:86.939999px;}
.wd{width:91.979993px;}
.w2e{width:92.340019px;}
.w1d{width:93.600013px;}
.w25{width:97.019989px;}
.w35{width:97.560036px;}
.w2f{width:98.280052px;}
.w9{width:107.999982px;}
.w2d{width:109.620002px;}
.w8{width:118.979993px;}
.w1f{width:119.699993px;}
.w2c{width:130.860008px;}
.w2a{width:134.820030px;}
.w33{width:145.620002px;}
.w1{width:155.340002px;}
.w32{width:155.340019px;}
.w31{width:155.519989px;}
.w19{width:186.839985px;}
.w1e{width:207.360009px;}
.w6{width:220.859991px;}
.w5{width:233.099988px;}
.w20{width:252.360043px;}
.wc{width:252.539987px;}
.w4{width:262.079990px;}
.w1a{width:272.879998px;}
.w23{width:285.839985px;}
.w12{width:323.640027px;}
.w14{width:343.079991px;}
.w0{width:918.000000px;}
.x40{left:-605.159981px;}
.x4a{left:-595.619978px;}
.x41{left:-576.179979px;}
.x42{left:-563.939982px;}
.x51{left:-435.059984px;}
.x49{left:-386.099980px;}
.x4f{left:-286.019989px;}
.x45{left:-273.059967px;}
.x1a{left:-261.899985px;}
.x2c{left:-252.359991px;}
.x1d{left:-232.919992px;}
.x1e{left:-220.679987px;}
.x44{left:-187.019989px;}
.x4d{left:-119.879998px;}
.x20{left:-118.799989px;}
.x22{left:-107.819996px;}
.x4b{left:-93.779983px;}
.x34{left:-91.799989px;}
.x4e{left:-85.679970px;}
.x3a{left:-65.159981px;}
.x37{left:-53.639992px;}
.x28{left:-44.099979px;}
.x2b{left:-42.839984px;}
.x47{left:-33.839951px;}
.x3f{left:-19.620003px;}
.x0{left:0.000000px;}
.x7{left:81.000000px;}
.xf{left:82.799998px;}
.xb{left:89.099997px;}
.x12{left:90.540003px;}
.x5{left:99.000000px;}
.x1{left:101.340002px;}
.x9{left:109.980002px;}
.x67{left:114.840002px;}
.x53{left:116.819996px;}
.x82{left:119.519998px;}
.xa{left:122.219999px;}
.x7f{left:126.000000px;}
.x74{left:127.980002px;}
.x60{left:133.920001px;}
.x6f{left:135.000000px;}
.x4{left:138.239997px;}
.x85{left:139.319996px;}
.x75{left:142.379998px;}
.x72{left:147.060001px;}
.x84{left:149.039996px;}
.x61{left:151.379998px;}
.x54{left:154.620002px;}
.x6e{left:156.599997px;}
.x83{left:159.479994px;}
.x76{left:161.280001px;}
.x73{left:162.360008px;}
.x8{left:166.500000px;}
.x77{left:172.620002px;}
.x55{left:198.539996px;}
.xc{left:207.539996px;}
.x78{left:215.280001px;}
.xd{left:224.099997px;}
.x3{left:231.840002px;}
.xe{left:235.080008px;}
.x13{left:251.099997px;}
.x2{left:256.680005px;}
.x6{left:259.199993px;}
.x80{left:263.340002px;}
.x63{left:266.039996px;}
.x56{left:274.139992px;}
.x62{left:283.139992px;}
.x57{left:284.400003px;}
.x5c{left:290.160015px;}
.x69{left:296.459988px;}
.x10{left:298.800007px;}
.x11{left:300.060001px;}
.x68{left:305.100013px;}
.x81{left:311.399987px;}
.x66{left:313.560001px;}
.x79{left:316.439999px;}
.x70{left:328.139992px;}
.x7e{left:334.259994px;}
.x19{left:343.079990px;}
.x29{left:352.980011px;}
.x21{left:355.680005px;}
.x7a{left:370.620002px;}
.x6a{left:378.180005px;}
.x23{left:384.480011px;}
.x35{left:386.100014px;}
.x27{left:389.519989px;}
.x2d{left:393.120002px;}
.x24{left:395.279983px;}
.x33{left:400.319996px;}
.x1f{left:401.399987px;}
.x58{left:402.839985px;}
.x25{left:413.279983px;}
.x7b{left:419.399987px;}
.x64{left:421.019989px;}
.x5d{left:425.699993px;}
.x1c{left:430.019989px;}
.x6b{left:443.879998px;}
.x7c{left:449.100014px;}
.x52{left:459.000000px;}
.x14{left:464.220017px;}
.x6c{left:470.699993px;}
.x7d{left:475.920010px;}
.x26{left:499.319996px;}
.x17{left:502.740006px;}
.x71{left:529.199993px;}
.x59{left:538.199993px;}
.x2f{left:550.439999px;}
.x6d{left:559.079990px;}
.x5a{left:565.019989px;}
.x30{left:566.459988px;}
.x2e{left:592.559967px;}
.x31{left:595.440033px;}
.x32{left:600.659981px;}
.x18{left:621.179970px;}
.x15{left:632.700027px;}
.x5f{left:635.580025px;}
.x16{left:642.779983px;}
.x2a{left:652.500000px;}
.x1b{left:666.720017px;}
.x5e{left:673.919975px;}
.x5b{left:678.059967px;}
.x36{left:686.159981px;}
.x65{left:687.960023px;}
.x48{left:695.700027px;}
.x39{left:707.580025px;}
.x3d{left:734.940033px;}
.x50{left:742.860008px;}
.x3b{left:751.860008px;}
.x38{left:783.179970px;}
.x46{left:784.440033px;}
.x43{left:795.779983px;}
.x3e{left:825.299973px;}
.x3c{left:829.980011px;}
.x4c{left:831.779983px;}
@media print{
.v1{vertical-align:-1.919920pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559816pt;}
.v3{vertical-align:26.880004pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.007397pt;}
.ls11{letter-spacing:0.007637pt;}
.ls26{letter-spacing:0.007641pt;}
.ls3e{letter-spacing:0.032512pt;}
.ls25{letter-spacing:0.032752pt;}
.lsd{letter-spacing:0.032756pt;}
.ls4b{letter-spacing:0.033093pt;}
.ls45{letter-spacing:0.033856pt;}
.lse{letter-spacing:0.033860pt;}
.ls4{letter-spacing:0.033980pt;}
.ls4c{letter-spacing:0.048658pt;}
.ls0{letter-spacing:0.048907pt;}
.ls13{letter-spacing:0.064160pt;}
.ls1a{letter-spacing:0.091723pt;}
.ls19{letter-spacing:0.091727pt;}
.ls9{letter-spacing:0.091967pt;}
.ls16{letter-spacing:0.120679pt;}
.ls41{letter-spacing:0.122023pt;}
.ls3{letter-spacing:0.122027pt;}
.ls31{letter-spacing:0.122055pt;}
.ls3c{letter-spacing:0.122147pt;}
.ls15{letter-spacing:0.125583pt;}
.ls40{letter-spacing:0.125587pt;}
.ls1c{letter-spacing:0.125703pt;}
.ls39{letter-spacing:0.125707pt;}
.ls7{letter-spacing:0.125827pt;}
.ls30{letter-spacing:0.151131pt;}
.ls29{letter-spacing:0.182286pt;}
.ls3b{letter-spacing:0.198046pt;}
.ls6{letter-spacing:0.249780pt;}
.ls14{letter-spacing:0.249784pt;}
.ls10{letter-spacing:0.249840pt;}
.ls3d{letter-spacing:0.249844pt;}
.ls35{letter-spacing:0.249908pt;}
.ls3f{letter-spacing:0.250024pt;}
.ls2{letter-spacing:0.252236pt;}
.ls12{letter-spacing:0.255792pt;}
.lsb{letter-spacing:0.255796pt;}
.ls2d{letter-spacing:0.255856pt;}
.ls2a{letter-spacing:0.255884pt;}
.ls18{letter-spacing:0.255916pt;}
.ls20{letter-spacing:0.256036pt;}
.ls23{letter-spacing:0.256040pt;}
.ls32{letter-spacing:0.337951pt;}
.ls34{letter-spacing:0.341665pt;}
.ls22{letter-spacing:0.383550pt;}
.lsf{letter-spacing:0.383614pt;}
.ls4d{letter-spacing:0.383674pt;}
.ls46{letter-spacing:0.395574pt;}
.ls2c{letter-spacing:0.395698pt;}
.ls2f{letter-spacing:0.395758pt;}
.ls8{letter-spacing:0.399374pt;}
.ls1d{letter-spacing:0.399378pt;}
.ls38{letter-spacing:0.426881pt;}
.ls48{letter-spacing:0.426945pt;}
.ls47{letter-spacing:0.446081pt;}
.ls27{letter-spacing:0.446085pt;}
.ls42{letter-spacing:0.446201pt;}
.ls36{letter-spacing:0.446205pt;}
.ls2e{letter-spacing:0.446265pt;}
.ls28{letter-spacing:0.446325pt;}
.ls44{letter-spacing:0.446329pt;}
.ls3a{letter-spacing:0.457121pt;}
.lsc{letter-spacing:0.459453pt;}
.ls37{letter-spacing:0.510144pt;}
.ls1e{letter-spacing:0.510204pt;}
.ls17{letter-spacing:0.510328pt;}
.ls33{letter-spacing:0.672768pt;}
.ls2b{letter-spacing:0.673936pt;}
.ls1f{letter-spacing:0.765719pt;}
.ls4a{letter-spacing:0.895688pt;}
.ls49{letter-spacing:0.895928pt;}
.ls21{letter-spacing:1.054813pt;}
.ls1b{letter-spacing:1.756256pt;}
.ls24{letter-spacing:15.196320pt;}
.ls5{letter-spacing:131.614749pt;}
.ls43{letter-spacing:139.934697pt;}
.lsa{letter-spacing:365.854741pt;}
.ws5{word-spacing:-63.878800pt;}
.ws6{word-spacing:-58.768400pt;}
.ws7{word-spacing:-16.274122pt;}
.ws1{word-spacing:-16.225215pt;}
.ws0{word-spacing:-14.927174pt;}
.ws4{word-spacing:-14.883760pt;}
.ws3{word-spacing:-14.436609pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-7.448511pt;}
._1{margin-left:-0.891627pt;}
._0{width:1.294000pt;}
._5{width:2.598657pt;}
._10{width:3.737908pt;}
._f{width:4.744249pt;}
._e{width:6.148334pt;}
._4{width:7.427907pt;}
._12{width:8.320962pt;}
._8{width:9.231734pt;}
._9{width:10.315496pt;}
._7{width:11.275606pt;}
._a{width:12.714626pt;}
._13{width:13.709124pt;}
._1a{width:14.960864pt;}
._6{width:17.119269pt;}
._2{width:18.188989pt;}
._3{width:19.084790pt;}
._d{width:20.299504pt;}
._b{width:21.495965pt;}
._c{width:22.769593pt;}
._3b{width:23.681562pt;}
._31{width:24.739107pt;}
._30{width:25.678280pt;}
._20{width:26.850270pt;}
._1e{width:28.139111pt;}
._1f{width:29.130230pt;}
._3d{width:30.421530pt;}
._18{width:31.525435pt;}
._19{width:32.460841pt;}
._1b{width:33.860006pt;}
._1c{width:34.959465pt;}
._1d{width:35.855470pt;}
._2d{width:37.191512pt;}
._3c{width:39.540728pt;}
._40{width:42.557983pt;}
._3e{width:43.629969pt;}
._3f{width:46.375922pt;}
._42{width:66.556787pt;}
._41{width:67.665615pt;}
._43{width:69.754622pt;}
._15{width:102.688165pt;}
._37{width:137.573834pt;}
._3a{width:145.689523pt;}
._14{width:148.646919pt;}
._34{width:153.368330pt;}
._2c{width:155.421489pt;}
._2f{width:164.255591pt;}
._16{width:177.391428pt;}
._21{width:192.964792pt;}
._28{width:195.316948pt;}
._24{width:196.356440pt;}
._23{width:204.184033pt;}
._38{width:279.154598pt;}
._26{width:286.790464pt;}
._36{width:290.490839pt;}
._27{width:292.260482pt;}
._2b{width:293.538058pt;}
._35{width:296.175054pt;}
._39{width:299.433871pt;}
._29{width:301.399142pt;}
._2e{width:302.627811pt;}
._25{width:308.230182pt;}
._33{width:323.020120pt;}
._22{width:324.199882pt;}
._32{width:330.030569pt;}
._2a{width:507.462247pt;}
._17{width:577.381853pt;}
.fs5{font-size:37.049680pt;}
.fs2{font-size:53.019200pt;}
.fs3{font-size:58.768400pt;}
.fs1{font-size:63.878800pt;}
.fs0{font-size:74.738000pt;}
.fs4{font-size:127.757600pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:3.200012pt;}
.ye{bottom:3.359985pt;}
.y17{bottom:3.359986pt;}
.y1a{bottom:3.360016pt;}
.yc{bottom:3.360046pt;}
.y10{bottom:3.360047pt;}
.y133{bottom:3.519958pt;}
.y1e0{bottom:3.519959pt;}
.y179{bottom:3.519989pt;}
.y4d{bottom:3.520004pt;}
.y1d2{bottom:3.520019pt;}
.yd7{bottom:3.520020pt;}
.y20{bottom:3.679992pt;}
.y22{bottom:3.679993pt;}
.y3c{bottom:3.680000pt;}
.y4f{bottom:3.680008pt;}
.y27{bottom:3.680053pt;}
.y2a{bottom:3.680054pt;}
.y2{bottom:4.319999pt;}
.y7{bottom:4.320007pt;}
.y14{bottom:7.359985pt;}
.y3a{bottom:7.360001pt;}
.y12{bottom:7.360016pt;}
.yf{bottom:48.159973pt;}
.y40{bottom:51.520020pt;}
.yd{bottom:65.119995pt;}
.y55{bottom:72.159973pt;}
.yb{bottom:81.919983pt;}
.ya{bottom:98.880005pt;}
.ya2{bottom:99.840027pt;}
.y7b{bottom:102.400024pt;}
.y1e7{bottom:106.559998pt;}
.y199{bottom:108.799988pt;}
.y240{bottom:112.000000pt;}
.y148{bottom:112.799988pt;}
.y11a{bottom:115.520020pt;}
.y225{bottom:115.679993pt;}
.ya1{bottom:118.239990pt;}
.y7a{bottom:120.799988pt;}
.yf3{bottom:121.599976pt;}
.y16f{bottom:124.640015pt;}
.y1e6{bottom:125.599976pt;}
.y198{bottom:128.320007pt;}
.y23f{bottom:130.719971pt;}
.yc8{bottom:130.880005pt;}
.y147{bottom:131.359985pt;}
.y203{bottom:132.000000pt;}
.y119{bottom:133.919983pt;}
.y224{bottom:134.080017pt;}
.ya0{bottom:136.799988pt;}
.y1bd{bottom:137.119995pt;}
.y79{bottom:139.200012pt;}
.yf2{bottom:140.000000pt;}
.y16e{bottom:143.200012pt;}
.y1e5{bottom:144.000000pt;}
.y197{bottom:147.840027pt;}
.yc7{bottom:149.440002pt;}
.y146{bottom:149.760010pt;}
.y223{bottom:152.479980pt;}
.y1bc{bottom:155.679993pt;}
.yf1{bottom:158.559998pt;}
.y16d{bottom:161.599976pt;}
.y1e4{bottom:162.400024pt;}
.y202{bottom:164.479980pt;}
.y23e{bottom:165.280029pt;}
.y196{bottom:167.200012pt;}
.yc6{bottom:167.840027pt;}
.y118{bottom:168.159973pt;}
.y145{bottom:168.320007pt;}
.y9f{bottom:171.039978pt;}
.y78{bottom:173.599976pt;}
.y1bb{bottom:174.080017pt;}
.yf0{bottom:176.960022pt;}
.y16c{bottom:180.000000pt;}
.y1e3{bottom:180.960022pt;}
.y201{bottom:182.880005pt;}
.y222{bottom:184.320007pt;}
.y195{bottom:185.599976pt;}
.yc5{bottom:186.400024pt;}
.y144{bottom:187.359985pt;}
.y1ba{bottom:192.640015pt;}
.yef{bottom:196.000000pt;}
.y16b{bottom:198.559998pt;}
.y1e2{bottom:199.359985pt;}
.y38{bottom:200.000000pt;}
.y200{bottom:201.440002pt;}
.y221{bottom:202.880005pt;}
.y117{bottom:203.359985pt;}
.y48{bottom:203.679993pt;}
.y23d{bottom:203.840027pt;}
.y194{bottom:204.159973pt;}
.yc4{bottom:204.799988pt;}
.y9e{bottom:206.080017pt;}
.y143{bottom:206.880005pt;}
.y77{bottom:208.640015pt;}
.y1b9{bottom:211.679993pt;}
.yee{bottom:215.520020pt;}
.y16a{bottom:216.960022pt;}
.y1e1{bottom:217.919983pt;}
.y37{bottom:218.559998pt;}
.y1ff{bottom:219.840027pt;}
.y220{bottom:221.280029pt;}
.y116{bottom:221.760010pt;}
.y193{bottom:222.559998pt;}
.yc3{bottom:223.359985pt;}
.y9d{bottom:224.640015pt;}
.y142{bottom:226.400024pt;}
.y76{bottom:227.039978pt;}
.y1b8{bottom:231.200012pt;}
.yed{bottom:235.039978pt;}
.y169{bottom:235.520020pt;}
.y36{bottom:237.119995pt;}
.y1fe{bottom:238.400024pt;}
.y23c{bottom:239.039978pt;}
.y21f{bottom:239.679993pt;}
.y115{bottom:240.799988pt;}
.y192{bottom:241.119995pt;}
.yc2{bottom:241.760010pt;}
.y9c{bottom:243.039978pt;}
.y141{bottom:245.280029pt;}
.y75{bottom:245.599976pt;}
.y1df{bottom:249.280029pt;}
.y1b7{bottom:250.719971pt;}
.y1de{bottom:252.799988pt;}
.y168{bottom:253.919983pt;}
.yec{bottom:254.559998pt;}
.y35{bottom:255.520020pt;}
.y23b{bottom:257.919983pt;}
.y52{bottom:259.200012pt;}
.y191{bottom:259.520020pt;}
.yc1{bottom:260.159973pt;}
.y114{bottom:260.479980pt;}
.y9b{bottom:261.440002pt;}
.y74{bottom:264.000000pt;}
.y140{bottom:264.320007pt;}
.y1b6{bottom:269.599976pt;}
.y1fd{bottom:270.239990pt;}
.y21e{bottom:271.520020pt;}
.y167{bottom:272.479980pt;}
.y1dd{bottom:272.640015pt;}
.yeb{bottom:273.599976pt;}
.y34{bottom:274.080017pt;}
.yc0{bottom:278.719971pt;}
.y113{bottom:279.359985pt;}
.y9a{bottom:280.000000pt;}
.y13f{bottom:283.359985pt;}
.y1b5{bottom:288.159973pt;}
.y1fc{bottom:288.640015pt;}
.y21d{bottom:290.080017pt;}
.y190{bottom:291.359985pt;}
.yea{bottom:292.000000pt;}
.y1dc{bottom:292.159973pt;}
.y33{bottom:292.479980pt;}
.y23a{bottom:292.960022pt;}
.y32{bottom:296.159973pt;}
.y99{bottom:298.400024pt;}
.y73{bottom:298.559998pt;}
.y166{bottom:304.159973pt;}
.y1fb{bottom:307.039978pt;}
.y21c{bottom:308.479980pt;}
.y18f{bottom:309.760010pt;}
.y31{bottom:310.880005pt;}
.ye9{bottom:311.039978pt;}
.y1db{bottom:311.520020pt;}
.y239{bottom:312.479980pt;}
.y1da{bottom:312.640015pt;}
.ybf{bottom:313.119995pt;}
.y13e{bottom:315.200012pt;}
.y72{bottom:316.960022pt;}
.y112{bottom:317.280029pt;}
.y1b4{bottom:319.840027pt;}
.y165{bottom:322.719971pt;}
.y1fa{bottom:325.599976pt;}
.y21b{bottom:326.880005pt;}
.y18e{bottom:328.799988pt;}
.y30{bottom:329.440002pt;}
.ye8{bottom:329.919983pt;}
.y1d9{bottom:331.039978pt;}
.ybe{bottom:331.679993pt;}
.y98{bottom:332.960022pt;}
.y13d{bottom:333.599976pt;}
.y71{bottom:335.520020pt;}
.y111{bottom:335.840027pt;}
.y1b3{bottom:338.880005pt;}
.y164{bottom:341.760010pt;}
.y1f9{bottom:344.000000pt;}
.y238{bottom:347.679993pt;}
.y2f{bottom:347.840027pt;}
.ybd{bottom:350.080017pt;}
.y1d8{bottom:350.559998pt;}
.y97{bottom:351.359985pt;}
.y51{bottom:351.520020pt;}
.y1d7{bottom:351.679993pt;}
.y13c{bottom:352.640015pt;}
.y70{bottom:353.919983pt;}
.y110{bottom:354.239990pt;}
.y1b2{bottom:358.559998pt;}
.y21a{bottom:358.719971pt;}
.y252{bottom:360.000000pt;}
.y163{bottom:360.640015pt;}
.y2e{bottom:366.400024pt;}
.y18d{bottom:366.880005pt;}
.ye7{bottom:367.039978pt;}
.ybc{bottom:368.640015pt;}
.y96{bottom:369.919983pt;}
.y47{bottom:370.080017pt;}
.y13b{bottom:372.159973pt;}
.y6f{bottom:372.320007pt;}
.y10f{bottom:372.799988pt;}
.y1f8{bottom:375.679993pt;}
.y219{bottom:377.280029pt;}
.y1b1{bottom:377.440002pt;}
.y162{bottom:379.200012pt;}
.y237{bottom:382.239990pt;}
.y2d{bottom:384.799988pt;}
.y18c{bottom:386.400024pt;}
.ybb{bottom:387.039978pt;}
.y95{bottom:388.320007pt;}
.y46{bottom:388.479980pt;}
.y1d5{bottom:389.280029pt;}
.y6e{bottom:390.880005pt;}
.y10e{bottom:391.200012pt;}
.y13a{bottom:391.679993pt;}
.y218{bottom:395.679993pt;}
.y1b0{bottom:395.840027pt;}
.y251{bottom:396.799988pt;}
.y161{bottom:397.599976pt;}
.y236{bottom:400.960022pt;}
.ye5{bottom:401.440002pt;}
.y2c{bottom:403.359985pt;}
.ye4{bottom:404.960022pt;}
.y18b{bottom:405.280029pt;}
.yba{bottom:405.440002pt;}
.ye6{bottom:405.599976pt;}
.y1d6{bottom:406.080017pt;}
.y94{bottom:406.719971pt;}
.y45{bottom:407.039978pt;}
.y1d4{bottom:407.679993pt;}
.y1f7{bottom:408.000000pt;}
.y139{bottom:411.200012pt;}
.y217{bottom:414.239990pt;}
.y1af{bottom:414.719971pt;}
.y160{bottom:416.159973pt;}
.y2b{bottom:421.760010pt;}
.yb9{bottom:424.000000pt;}
.y18a{bottom:424.320007pt;}
.ye3{bottom:424.799988pt;}
.y93{bottom:425.280029pt;}
.ye1{bottom:425.440002pt;}
.y6d{bottom:425.599976pt;}
.y10d{bottom:425.760010pt;}
.y1d3{bottom:426.239990pt;}
.y1f6{bottom:426.559998pt;}
.y138{bottom:430.239990pt;}
.y250{bottom:432.159973pt;}
.y1ae{bottom:433.119995pt;}
.y15f{bottom:435.200012pt;}
.y235{bottom:435.840027pt;}
.y29{bottom:440.159973pt;}
.y1d1{bottom:441.599976pt;}
.yb8{bottom:442.400024pt;}
.ye2{bottom:443.200012pt;}
.y189{bottom:443.359985pt;}
.y92{bottom:443.679993pt;}
.y28{bottom:443.840027pt;}
.ye0{bottom:444.000000pt;}
.y6c{bottom:444.159973pt;}
.ydf{bottom:444.320007pt;}
.y10c{bottom:444.799988pt;}
.y1f5{bottom:444.960022pt;}
.y1d0{bottom:445.119995pt;}
.y216{bottom:445.919983pt;}
.y137{bottom:448.640015pt;}
.y24f{bottom:450.719971pt;}
.y1ad{bottom:452.159973pt;}
.y15e{bottom:454.080017pt;}
.y234{bottom:454.239990pt;}
.y26{bottom:458.719971pt;}
.yb7{bottom:460.960022pt;}
.y188{bottom:462.080017pt;}
.yde{bottom:462.719971pt;}
.y10b{bottom:463.679993pt;}
.y1cf{bottom:464.000000pt;}
.y215{bottom:464.479980pt;}
.y136{bottom:467.200012pt;}
.y1ac{bottom:471.200012pt;}
.y15d{bottom:473.119995pt;}
.y25{bottom:477.119995pt;}
.y91{bottom:478.239990pt;}
.y6b{bottom:478.559998pt;}
.yb6{bottom:479.359985pt;}
.y187{bottom:480.640015pt;}
.ydd{bottom:481.919983pt;}
.y10a{bottom:482.239990pt;}
.ydc{bottom:482.559998pt;}
.y214{bottom:482.880005pt;}
.y24e{bottom:485.440002pt;}
.y135{bottom:485.599976pt;}
.y233{bottom:488.799988pt;}
.y1ab{bottom:489.599976pt;}
.y15c{bottom:492.640015pt;}
.y24{bottom:495.679993pt;}
.y1f4{bottom:496.320007pt;}
.y90{bottom:496.640015pt;}
.y6a{bottom:496.960022pt;}
.y1ce{bottom:497.119995pt;}
.yb5{bottom:497.919983pt;}
.y186{bottom:499.039978pt;}
.y23{bottom:499.359985pt;}
.y109{bottom:500.640015pt;}
.ydb{bottom:501.440002pt;}
.y134{bottom:504.000000pt;}
.y24d{bottom:504.320007pt;}
.y232{bottom:507.520020pt;}
.y15b{bottom:512.159973pt;}
.y21{bottom:514.080017pt;}
.y213{bottom:514.559998pt;}
.y1f3{bottom:514.880005pt;}
.y8f{bottom:515.200012pt;}
.y69{bottom:515.520020pt;}
.y185{bottom:517.599976pt;}
.y108{bottom:519.039978pt;}
.yda{bottom:520.479980pt;}
.yd9{bottom:521.280029pt;}
.y1aa{bottom:521.440002pt;}
.y1cd{bottom:528.960022pt;}
.y15a{bottom:531.200012pt;}
.yb4{bottom:532.159973pt;}
.y1f{bottom:532.640015pt;}
.y1f2{bottom:533.280029pt;}
.y8e{bottom:533.599976pt;}
.y68{bottom:533.919983pt;}
.y132{bottom:535.520020pt;}
.y184{bottom:536.000000pt;}
.y107{bottom:537.599976pt;}
.y131{bottom:539.039978pt;}
.y1a9{bottom:539.840027pt;}
.yd8{bottom:540.159973pt;}
.y231{bottom:542.400024pt;}
.y212{bottom:546.880005pt;}
.y1cc{bottom:547.359985pt;}
.y159{bottom:550.239990pt;}
.y1f1{bottom:551.679993pt;}
.y8d{bottom:552.000000pt;}
.y67{bottom:552.480011pt;}
.yd6{bottom:555.519989pt;}
.y106{bottom:556.000000pt;}
.y130{bottom:558.720001pt;}
.yd5{bottom:559.040009pt;}
.y230{bottom:561.119995pt;}
.y211{bottom:565.440002pt;}
.yb3{bottom:567.200012pt;}
.y183{bottom:567.359985pt;}
.y158{bottom:569.119995pt;}
.y1f0{bottom:570.239990pt;}
.y1e{bottom:570.559998pt;}
.y182{bottom:570.880005pt;}
.y24c{bottom:573.440002pt;}
.y105{bottom:574.559998pt;}
.y12f{bottom:577.760010pt;}
.yd4{bottom:577.920013pt;}
.y1a8{bottom:578.559998pt;}
.y1cb{bottom:579.200012pt;}
.y12e{bottom:579.359985pt;}
.y210{bottom:583.839996pt;}
.yb2{bottom:585.760010pt;}
.y66{bottom:586.880005pt;}
.y157{bottom:587.679993pt;}
.y181{bottom:590.720001pt;}
.y24b{bottom:592.320007pt;}
.y104{bottom:593.600006pt;}
.y22f{bottom:596.000000pt;}
.y1ca{bottom:597.600006pt;}
.y12d{bottom:597.920013pt;}
.y1a7{bottom:598.079987pt;}
.y1ef{bottom:601.760010pt;}
.y1d{bottom:602.399994pt;}
.y43{bottom:602.559998pt;}
.yb1{bottom:604.480011pt;}
.y8c{bottom:604.959991pt;}
.y65{bottom:605.440002pt;}
.y1c{bottom:605.760010pt;}
.y180{bottom:609.760010pt;}
.y24a{bottom:610.720001pt;}
.y103{bottom:613.119995pt;}
.yd3{bottom:613.760010pt;}
.y22e{bottom:614.720001pt;}
.y1c9{bottom:616.160004pt;}
.y12c{bottom:616.959991pt;}
.y156{bottom:619.359985pt;}
.y20f{bottom:620.799988pt;}
.y42{bottom:623.200012pt;}
.y8b{bottom:623.519989pt;}
.y64{bottom:623.839996pt;}
.y17f{bottom:628.959991pt;}
.y102{bottom:632.640015pt;}
.y1ee{bottom:634.239990pt;}
.y1c8{bottom:634.559998pt;}
.y12b{bottom:636.000000pt;}
.y12a{bottom:637.600006pt;}
.y155{bottom:637.920013pt;}
.y20e{bottom:639.359985pt;}
.y1b{bottom:640.640015pt;}
.y8a{bottom:641.920013pt;}
.y63{bottom:642.239990pt;}
.yb0{bottom:642.559998pt;}
.y249{bottom:645.279999pt;}
.y17e{bottom:647.839996pt;}
.yd2{bottom:648.160004pt;}
.y22d{bottom:648.959991pt;}
.y101{bottom:651.519989pt;}
.y1ed{bottom:652.799988pt;}
.y1c7{bottom:653.119995pt;}
.y19{bottom:654.239990pt;}
.y1a6{bottom:655.519989pt;}
.y129{bottom:656.000000pt;}
.y154{bottom:656.959991pt;}
.y18{bottom:657.600006pt;}
.y20d{bottom:657.760010pt;}
.y89{bottom:660.480011pt;}
.y62{bottom:660.799988pt;}
.yaf{bottom:661.600006pt;}
.y248{bottom:664.000000pt;}
.yd1{bottom:666.559998pt;}
.y17d{bottom:667.040009pt;}
.y16{bottom:671.200012pt;}
.y1c6{bottom:671.519989pt;}
.y15{bottom:674.559998pt;}
.y1a5{bottom:675.040009pt;}
.y128{bottom:675.679993pt;}
.y153{bottom:675.839996pt;}
.y127{bottom:677.279999pt;}
.y61{bottom:679.200012pt;}
.y88{bottom:679.519989pt;}
.yae{bottom:681.119995pt;}
.y22c{bottom:684.160004pt;}
.yd0{bottom:685.119995pt;}
.y100{bottom:686.079987pt;}
.y17c{bottom:686.559998pt;}
.y1ec{bottom:689.600006pt;}
.y1c5{bottom:689.920013pt;}
.y152{bottom:694.399994pt;}
.y1a4{bottom:694.559998pt;}
.y126{bottom:695.839996pt;}
.y247{bottom:698.880005pt;}
.y87{bottom:699.040009pt;}
.yad{bottom:700.640015pt;}
.y22b{bottom:702.559998pt;}
.ycf{bottom:703.519989pt;}
.yff{bottom:705.119995pt;}
.y17b{bottom:706.239990pt;}
.y20c{bottom:708.000000pt;}
.y1eb{bottom:708.160004pt;}
.y1c4{bottom:708.480011pt;}
.y41{bottom:710.720001pt;}
.y151{bottom:713.440002pt;}
.y60{bottom:713.760010pt;}
.y1a3{bottom:714.079987pt;}
.y125{bottom:714.880005pt;}
.y246{bottom:717.600006pt;}
.y86{bottom:717.920013pt;}
.y22a{bottom:721.119995pt;}
.yfe{bottom:724.000000pt;}
.y17a{bottom:726.239990pt;}
.y20b{bottom:726.559998pt;}
.y5f{bottom:732.160004pt;}
.y150{bottom:732.959991pt;}
.y1a2{bottom:733.119995pt;}
.y124{bottom:733.920013pt;}
.yac{bottom:735.359985pt;}
.y85{bottom:736.480011pt;}
.yce{bottom:737.760010pt;}
.y229{bottom:739.519989pt;}
.y1ea{bottom:739.679993pt;}
.y1c3{bottom:740.000000pt;}
.y13{bottom:740.480011pt;}
.y178{bottom:741.600006pt;}
.yfd{bottom:743.040009pt;}
.y20a{bottom:744.959991pt;}
.y177{bottom:745.119995pt;}
.y50{bottom:747.839996pt;}
.y5e{bottom:750.720001pt;}
.y1a1{bottom:751.519989pt;}
.y14f{bottom:751.839996pt;}
.y245{bottom:752.160004pt;}
.y123{bottom:753.440002pt;}
.y122{bottom:755.040009pt;}
.y228{bottom:757.920013pt;}
.y176{bottom:760.320007pt;}
.yfc{bottom:762.079987pt;}
.y175{bottom:764.000000pt;}
.y5d{bottom:769.119995pt;}
.y1a0{bottom:770.079987pt;}
.yab{bottom:770.399994pt;}
.y84{bottom:770.880005pt;}
.y1e9{bottom:772.160004pt;}
.y1c2{bottom:772.480011pt;}
.ycd{bottom:772.959991pt;}
.y121{bottom:773.440002pt;}
.y11{bottom:777.279999pt;}
.yfb{bottom:780.480011pt;}
.y5c{bottom:787.519989pt;}
.y14e{bottom:788.799988pt;}
.yaa{bottom:788.959991pt;}
.y83{bottom:789.279999pt;}
.y244{bottom:789.440002pt;}
.y1c1{bottom:790.880005pt;}
.ycc{bottom:791.359985pt;}
.y120{bottom:792.480011pt;}
.y227{bottom:792.640015pt;}
.y11e{bottom:795.359985pt;}
.y209{bottom:796.160004pt;}
.y174{bottom:797.119995pt;}
.yfa{bottom:799.519989pt;}
.y19f{bottom:802.399994pt;}
.y5b{bottom:806.080002pt;}
.ya9{bottom:807.360001pt;}
.y82{bottom:807.839996pt;}
.y1c0{bottom:809.440002pt;}
.ycb{bottom:809.919998pt;}
.y11f{bottom:811.360001pt;}
.y9{bottom:818.559998pt;}
.y19e{bottom:821.759995pt;}
.y243{bottom:823.839996pt;}
.y5a{bottom:824.479996pt;}
.ya8{bottom:825.919998pt;}
.y81{bottom:826.240005pt;}
.y14d{bottom:827.360001pt;}
.y1bf{bottom:827.839996pt;}
.yca{bottom:828.320007pt;}
.y208{bottom:828.479996pt;}
.y173{bottom:828.960007pt;}
.yf9{bottom:837.600006pt;}
.y19d{bottom:840.160004pt;}
.y8{bottom:840.800003pt;}
.y242{bottom:842.880005pt;}
.y59{bottom:843.039993pt;}
.ya7{bottom:844.320007pt;}
.y80{bottom:844.800003pt;}
.y14c{bottom:846.399994pt;}
.y1e8{bottom:846.880005pt;}
.y207{bottom:847.039993pt;}
.y172{bottom:847.360001pt;}
.y6{bottom:855.679993pt;}
.yf8{bottom:857.119995pt;}
.y19c{bottom:859.199997pt;}
.y5{bottom:860.000000pt;}
.y241{bottom:862.399994pt;}
.yc9{bottom:862.559998pt;}
.ya6{bottom:862.720001pt;}
.y7f{bottom:863.199997pt;}
.y14b{bottom:864.800003pt;}
.y206{bottom:865.440002pt;}
.y171{bottom:865.919998pt;}
.y4e{bottom:867.679993pt;}
.yf7{bottom:876.639999pt;}
.y58{bottom:877.279999pt;}
.y19b{bottom:878.240005pt;}
.y11d{bottom:878.880005pt;}
.y4{bottom:880.160004pt;}
.y226{bottom:881.119995pt;}
.ya5{bottom:881.279999pt;}
.y1be{bottom:883.360001pt;}
.y205{bottom:884.000000pt;}
.y170{bottom:884.320007pt;}
.y3{bottom:892.479996pt;}
.yf6{bottom:895.520004pt;}
.y14a{bottom:896.639999pt;}
.y19a{bottom:897.279999pt;}
.y11c{bottom:897.440002pt;}
.y7e{bottom:897.759995pt;}
.y4c{bottom:899.360001pt;}
.ya4{bottom:899.679993pt;}
.y204{bottom:902.399994pt;}
.y39{bottom:913.440002pt;}
.yf5{bottom:914.559998pt;}
.y149{bottom:915.039993pt;}
.y57{bottom:915.520004pt;}
.y11b{bottom:915.839996pt;}
.y7d{bottom:916.160004pt;}
.y4b{bottom:922.080002pt;}
.ya3{bottom:933.919998pt;}
.y56{bottom:934.080002pt;}
.yf4{bottom:934.239998pt;}
.y7c{bottom:934.559998pt;}
.y3f{bottom:936.800003pt;}
.y3e{bottom:940.480003pt;}
.y54{bottom:953.440002pt;}
.y3d{bottom:955.199997pt;}
.y4a{bottom:958.879997pt;}
.y3b{bottom:973.760002pt;}
.y49{bottom:977.440002pt;}
.y53{bottom:979.040001pt;}
.y1{bottom:986.559998pt;}
.h18{height:16.640014pt;}
.hd{height:16.959991pt;}
.hc{height:16.959992pt;}
.h8{height:16.960022pt;}
.h19{height:17.919998pt;}
.h27{height:18.239990pt;}
.h23{height:18.239991pt;}
.h25{height:18.240006pt;}
.h20{height:18.240021pt;}
.h2c{height:18.240051pt;}
.h10{height:18.399963pt;}
.h13{height:18.399964pt;}
.hf{height:18.399994pt;}
.h15{height:18.399998pt;}
.h16{height:18.400001pt;}
.h1a{height:18.400009pt;}
.h11{height:18.400024pt;}
.h12{height:18.400025pt;}
.h1{height:21.440002pt;}
.h5{height:21.600006pt;}
.hb{height:36.959991pt;}
.h14{height:36.960000pt;}
.h9{height:36.960006pt;}
.h4{height:37.822779pt;}
.h1e{height:41.034576pt;}
.h17{height:41.895441pt;}
.h7{height:41.924137pt;}
.he{height:45.538598pt;}
.h3{height:45.569788pt;}
.h6{height:47.060633pt;}
.h2b{height:48.129724pt;}
.h2e{height:48.129844pt;}
.h28{height:48.129848pt;}
.h24{height:52.311911pt;}
.h2{height:53.316513pt;}
.h2d{height:54.940701pt;}
.h2a{height:54.940821pt;}
.h22{height:54.940941pt;}
.h21{height:54.940945pt;}
.h1c{height:56.860865pt;}
.h1d{height:58.452749pt;}
.h26{height:61.615657pt;}
.h29{height:61.615781pt;}
.h1f{height:63.535701pt;}
.ha{height:91.139577pt;}
.h1b{height:113.721731pt;}
.h0{height:1056.000000pt;}
.w28{width:3.039978pt;}
.we{width:7.199981pt;}
.w7{width:7.199997pt;}
.w29{width:7.200012pt;}
.w3b{width:7.520004pt;}
.w30{width:8.480041pt;}
.w18{width:8.800019pt;}
.w37{width:11.039978pt;}
.w3a{width:11.039993pt;}
.w36{width:11.040008pt;}
.w39{width:11.040009pt;}
.w38{width:11.040039pt;}
.w16{width:11.200013pt;}
.w3{width:12.800003pt;}
.w2{width:12.959991pt;}
.w13{width:17.279968pt;}
.w26{width:19.040039pt;}
.w1b{width:29.919983pt;}
.w17{width:36.800019pt;}
.wb{width:38.239990pt;}
.w24{width:38.240021pt;}
.w10{width:38.559998pt;}
.wa{width:39.359985pt;}
.w1c{width:44.480011pt;}
.wf{width:47.519959pt;}
.w34{width:50.400024pt;}
.w22{width:50.880005pt;}
.w11{width:57.760010pt;}
.w27{width:58.400024pt;}
.w2b{width:65.920044pt;}
.w21{width:76.000000pt;}
.w15{width:77.279999pt;}
.wd{width:81.759994pt;}
.w2e{width:82.080017pt;}
.w1d{width:83.200012pt;}
.w25{width:86.239990pt;}
.w35{width:86.720032pt;}
.w2f{width:87.360046pt;}
.w9{width:95.999984pt;}
.w2d{width:97.440002pt;}
.w8{width:105.759994pt;}
.w1f{width:106.399994pt;}
.w2c{width:116.320007pt;}
.w2a{width:119.840027pt;}
.w33{width:129.440002pt;}
.w1{width:138.080002pt;}
.w32{width:138.080017pt;}
.w31{width:138.239990pt;}
.w19{width:166.079987pt;}
.w1e{width:184.320008pt;}
.w6{width:196.319992pt;}
.w5{width:207.199989pt;}
.w20{width:224.320038pt;}
.wc{width:224.479988pt;}
.w4{width:232.959991pt;}
.w1a{width:242.559998pt;}
.w23{width:254.079987pt;}
.w12{width:287.680024pt;}
.w14{width:304.959992pt;}
.w0{width:816.000000pt;}
.x40{left:-537.919983pt;}
.x4a{left:-529.439980pt;}
.x41{left:-512.159981pt;}
.x42{left:-501.279984pt;}
.x51{left:-386.719986pt;}
.x49{left:-343.199982pt;}
.x4f{left:-254.239990pt;}
.x45{left:-242.719971pt;}
.x1a{left:-232.799987pt;}
.x2c{left:-224.319992pt;}
.x1d{left:-207.039993pt;}
.x1e{left:-196.159988pt;}
.x44{left:-166.239990pt;}
.x4d{left:-106.559998pt;}
.x20{left:-105.599990pt;}
.x22{left:-95.839996pt;}
.x4b{left:-83.359985pt;}
.x34{left:-81.599990pt;}
.x4e{left:-76.159973pt;}
.x3a{left:-57.919983pt;}
.x37{left:-47.679993pt;}
.x28{left:-39.199981pt;}
.x2b{left:-38.079986pt;}
.x47{left:-30.079956pt;}
.x3f{left:-17.440003pt;}
.x0{left:0.000000pt;}
.x7{left:72.000000pt;}
.xf{left:73.599998pt;}
.xb{left:79.199997pt;}
.x12{left:80.480003pt;}
.x5{left:88.000000pt;}
.x1{left:90.080002pt;}
.x9{left:97.760002pt;}
.x67{left:102.080002pt;}
.x53{left:103.839996pt;}
.x82{left:106.239998pt;}
.xa{left:108.639999pt;}
.x7f{left:112.000000pt;}
.x74{left:113.760002pt;}
.x60{left:119.040001pt;}
.x6f{left:120.000000pt;}
.x4{left:122.879997pt;}
.x85{left:123.839996pt;}
.x75{left:126.559998pt;}
.x72{left:130.720001pt;}
.x84{left:132.479996pt;}
.x61{left:134.559998pt;}
.x54{left:137.440002pt;}
.x6e{left:139.199997pt;}
.x83{left:141.759995pt;}
.x76{left:143.360001pt;}
.x73{left:144.320007pt;}
.x8{left:148.000000pt;}
.x77{left:153.440002pt;}
.x55{left:176.479996pt;}
.xc{left:184.479996pt;}
.x78{left:191.360001pt;}
.xd{left:199.199997pt;}
.x3{left:206.080002pt;}
.xe{left:208.960007pt;}
.x13{left:223.199997pt;}
.x2{left:228.160004pt;}
.x6{left:230.399994pt;}
.x80{left:234.080002pt;}
.x63{left:236.479996pt;}
.x56{left:243.679993pt;}
.x62{left:251.679993pt;}
.x57{left:252.800003pt;}
.x5c{left:257.920013pt;}
.x69{left:263.519989pt;}
.x10{left:265.600006pt;}
.x11{left:266.720001pt;}
.x68{left:271.200012pt;}
.x81{left:276.799988pt;}
.x66{left:278.720001pt;}
.x79{left:281.279999pt;}
.x70{left:291.679993pt;}
.x7e{left:297.119995pt;}
.x19{left:304.959991pt;}
.x29{left:313.760010pt;}
.x21{left:316.160004pt;}
.x7a{left:329.440002pt;}
.x6a{left:336.160004pt;}
.x23{left:341.760010pt;}
.x35{left:343.200012pt;}
.x27{left:346.239990pt;}
.x2d{left:349.440002pt;}
.x24{left:351.359985pt;}
.x33{left:355.839996pt;}
.x1f{left:356.799988pt;}
.x58{left:358.079987pt;}
.x25{left:367.359985pt;}
.x7b{left:372.799988pt;}
.x64{left:374.239990pt;}
.x5d{left:378.399994pt;}
.x1c{left:382.239990pt;}
.x6b{left:394.559998pt;}
.x7c{left:399.200012pt;}
.x52{left:408.000000pt;}
.x14{left:412.640015pt;}
.x6c{left:418.399994pt;}
.x7d{left:423.040009pt;}
.x26{left:443.839996pt;}
.x17{left:446.880005pt;}
.x71{left:470.399994pt;}
.x59{left:478.399994pt;}
.x2f{left:489.279999pt;}
.x6d{left:496.959991pt;}
.x5a{left:502.239990pt;}
.x30{left:503.519989pt;}
.x2e{left:526.719971pt;}
.x31{left:529.280029pt;}
.x32{left:533.919983pt;}
.x18{left:552.159973pt;}
.x15{left:562.400024pt;}
.x5f{left:564.960022pt;}
.x16{left:571.359985pt;}
.x2a{left:580.000000pt;}
.x1b{left:592.640015pt;}
.x5e{left:599.039978pt;}
.x5b{left:602.719971pt;}
.x36{left:609.919983pt;}
.x65{left:611.520020pt;}
.x48{left:618.400024pt;}
.x39{left:628.960022pt;}
.x3d{left:653.280029pt;}
.x50{left:660.320007pt;}
.x3b{left:668.320007pt;}
.x38{left:696.159973pt;}
.x46{left:697.280029pt;}
.x43{left:707.359985pt;}
.x3e{left:733.599976pt;}
.x3c{left:737.760010pt;}
.x4c{left:739.359985pt;}
}




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