
    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_f07919c1255bef62dac835a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b7c808a021db39e04550ec3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.878418;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_6d18094e5d3f646fe05060b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9e3f32d9ef321f39d4c9b83e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b162903cb0e67d29dd724fd1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e0a17b68fc9723ad0a502c51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eaea2490609409910355c46b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8bdf328c7386197898af09da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944000;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_e826e9c9083786145f161705.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_ca29c800178f3115e914cab2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4018cd2b46058a010573273.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.745000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_099219a4338c775d2416e47c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:46.079982px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.063403px;}
.ls8{letter-spacing:0.063491px;}
.ls7{letter-spacing:0.081120px;}
.ls3{letter-spacing:0.162207px;}
.ls2{letter-spacing:0.162296px;}
.ls4{letter-spacing:0.162300px;}
.ls9{letter-spacing:0.188700px;}
.ls6{letter-spacing:0.375720px;}
.ls5{letter-spacing:2.966699px;}
.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;}
}
.ws6{word-spacing:-51.468459px;}
.ws1{word-spacing:-23.939990px;}
.ws2{word-spacing:-17.999993px;}
.ws8{word-spacing:-16.623396px;}
.ws3{word-spacing:-16.559993px;}
.ws0{word-spacing:-16.271993px;}
.ws5{word-spacing:-13.625275px;}
.ws7{word-spacing:-8.864636px;}
.ws4{word-spacing:0.000000px;}
._1b{margin-left:-2.711117px;}
._1{margin-left:-1.175402px;}
._0{width:1.330743px;}
._7{width:2.345105px;}
._8{width:3.980842px;}
._9{width:5.067012px;}
._2{width:6.081492px;}
._3{width:7.183112px;}
._f{width:8.245289px;}
._14{width:9.274599px;}
._a{width:10.344744px;}
._b{width:11.562546px;}
._4{width:12.742362px;}
._5{width:13.770293px;}
._6{width:14.782110px;}
._e{width:17.913094px;}
._20{width:18.964942px;}
._18{width:20.031087px;}
._d{width:21.218615px;}
._10{width:22.573086px;}
._15{width:23.723103px;}
._c{width:24.963975px;}
._11{width:26.230929px;}
._16{width:28.179405px;}
._17{width:29.649880px;}
._1e{width:31.493864px;}
._1c{width:32.599869px;}
._2b{width:34.050427px;}
._1f{width:35.307294px;}
._28{width:36.806622px;}
._13{width:37.821913px;}
._19{width:39.608073px;}
._1a{width:40.896549px;}
._1d{width:42.544867px;}
._26{width:44.201950px;}
._27{width:45.289403px;}
._22{width:46.493079px;}
._24{width:47.941797px;}
._2c{width:49.107678px;}
._23{width:50.109451px;}
._25{width:57.428975px;}
._31{width:72.038964px;}
._29{width:202.565842px;}
._2f{width:233.811504px;}
._2e{width:250.177212px;}
._2a{width:511.911776px;}
._21{width:558.676166px;}
._2d{width:859.793656px;}
._12{width:935.938736px;}
._30{width:1433.411427px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:23.759990px;}
.fs6{font-size:30.239988px;}
.fsa{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.879641px;}
.y154{bottom:3.419601px;}
.y158{bottom:3.419617px;}
.y15b{bottom:3.419624px;}
.y15e{bottom:3.419631px;}
.y161{bottom:3.419638px;}
.y164{bottom:3.419645px;}
.y167{bottom:3.419651px;}
.y16a{bottom:3.419658px;}
.y16d{bottom:3.419665px;}
.y100{bottom:3.419693px;}
.y104{bottom:3.419716px;}
.y106{bottom:3.419723px;}
.y108{bottom:3.419730px;}
.y10a{bottom:3.419736px;}
.y10c{bottom:3.419743px;}
.y10e{bottom:3.419750px;}
.y110{bottom:3.419757px;}
.y22{bottom:3.959711px;}
.y24{bottom:3.959719px;}
.y26{bottom:3.959727px;}
.y29{bottom:3.959734px;}
.y2b{bottom:3.959742px;}
.y2d{bottom:3.959749px;}
.y2f{bottom:3.959757px;}
.y31{bottom:3.959765px;}
.y34{bottom:3.959772px;}
.y36{bottom:3.959780px;}
.y38{bottom:3.959787px;}
.y3a{bottom:3.959795px;}
.y3c{bottom:3.959803px;}
.y3f{bottom:3.959814px;}
.y44{bottom:3.959861px;}
.y46{bottom:3.959868px;}
.y48{bottom:3.959876px;}
.y4a{bottom:3.959884px;}
.y4d{bottom:3.959891px;}
.y4f{bottom:3.959899px;}
.y51{bottom:3.959906px;}
.y53{bottom:3.959914px;}
.y56{bottom:3.959921px;}
.y59{bottom:3.959929px;}
.y5b{bottom:3.959937px;}
.y5d{bottom:3.959944px;}
.y60{bottom:3.959952px;}
.y1a{bottom:4.319657px;}
.y1d{bottom:4.319677px;}
.y7c{bottom:4.499546px;}
.y67{bottom:4.679645px;}
.y79{bottom:4.859546px;}
.y3{bottom:4.859558px;}
.y6{bottom:4.859569px;}
.y64{bottom:4.859573px;}
.yc{bottom:4.859973px;}
.yf{bottom:5.219609px;}
.y12{bottom:5.219620px;}
.y7e{bottom:58.499977px;}
.yb{bottom:63.180000px;}
.ya{bottom:68.039973px;}
.yf3{bottom:112.859955px;}
.y20f{bottom:114.839954px;}
.y5f{bottom:116.640000px;}
.y1a3{bottom:118.619953px;}
.y127{bottom:120.239952px;}
.y5e{bottom:120.599952px;}
.y13b{bottom:121.139952px;}
.y14e{bottom:122.219951px;}
.y1da{bottom:130.319948px;}
.yb0{bottom:130.859948px;}
.yf2{bottom:131.759947px;}
.y20e{bottom:133.739947px;}
.y5c{bottom:135.540000px;}
.y191{bottom:137.519945px;}
.y126{bottom:139.139944px;}
.y76{bottom:139.499944px;}
.y13a{bottom:140.039944px;}
.y14d{bottom:140.759944px;}
.y203{bottom:142.739943px;}
.yc1{bottom:149.039940px;}
.y1d9{bottom:149.219940px;}
.yaf{bottom:149.759940px;}
.yf1{bottom:150.839940px;}
.y20d{bottom:152.819939px;}
.y5a{bottom:154.440000px;}
.y190{bottom:156.599937px;}
.y125{bottom:158.219937px;}
.y70{bottom:158.399937px;}
.y139{bottom:159.119936px;}
.y14c{bottom:159.839936px;}
.y202{bottom:161.819935px;}
.y1a2{bottom:165.599934px;}
.yc0{bottom:168.119933px;}
.y1d8{bottom:168.299933px;}
.yfb{bottom:168.839932px;}
.yf0{bottom:169.739932px;}
.y58{bottom:173.520000px;}
.y18f{bottom:175.499930px;}
.y124{bottom:177.119929px;}
.y57{bottom:177.479929px;}
.yae{bottom:177.839929px;}
.y138{bottom:178.019929px;}
.y14b{bottom:178.739929px;}
.y201{bottom:180.719928px;}
.y1a1{bottom:184.499926px;}
.ybf{bottom:187.019925px;}
.y1e2{bottom:187.199925px;}
.yfa{bottom:187.739925px;}
.yef{bottom:188.819924px;}
.y55{bottom:192.420000px;}
.y18e{bottom:194.399922px;}
.y123{bottom:196.019922px;}
.y1d7{bottom:196.199922px;}
.y54{bottom:196.379921px;}
.yad{bottom:196.739921px;}
.y137{bottom:196.919921px;}
.y14a{bottom:197.819921px;}
.y200{bottom:199.619920px;}
.y1a0{bottom:203.399919px;}
.ybe{bottom:205.919918px;}
.y1e1{bottom:206.279917px;}
.yf9{bottom:206.819917px;}
.yee{bottom:207.719917px;}
.y52{bottom:211.500000px;}
.y18d{bottom:213.479915px;}
.y122{bottom:215.099914px;}
.y1d6{bottom:215.279914px;}
.y6f{bottom:215.459914px;}
.yac{bottom:215.819914px;}
.y136{bottom:215.999914px;}
.y149{bottom:216.719913px;}
.y1ff{bottom:218.699913px;}
.y19f{bottom:222.479911px;}
.y1e0{bottom:225.179910px;}
.yf8{bottom:225.719910px;}
.yed{bottom:226.619909px;}
.y50{bottom:230.400000px;}
.y18c{bottom:232.379907px;}
.ybd{bottom:233.999906px;}
.y1d5{bottom:234.179906px;}
.y75{bottom:234.359906px;}
.yab{bottom:234.719906px;}
.y135{bottom:234.899906px;}
.y148{bottom:235.619906px;}
.y20c{bottom:237.599905px;}
.y19e{bottom:241.379903px;}
.yf7{bottom:244.619902px;}
.y1fe{bottom:246.599901px;}
.y4e{bottom:249.300000px;}
.y18b{bottom:251.459899px;}
.y121{bottom:253.079899px;}
.y1d4{bottom:253.259899px;}
.yaa{bottom:253.619899px;}
.y134{bottom:253.979898px;}
.yec{bottom:254.339898px;}
.y147{bottom:254.699898px;}
.y20b{bottom:256.679897px;}
.y19d{bottom:260.459896px;}
.ybc{bottom:263.339895px;}
.yf6{bottom:263.699895px;}
.y1fd{bottom:265.679894px;}
.y4c{bottom:268.380000px;}
.y120{bottom:271.979891px;}
.y1d3{bottom:272.159891px;}
.y4b{bottom:272.339891px;}
.ya9{bottom:272.699891px;}
.y133{bottom:272.879891px;}
.yeb{bottom:273.239891px;}
.y146{bottom:273.599891px;}
.y20a{bottom:275.579890px;}
.y18a{bottom:279.359888px;}
.yf5{bottom:282.599887px;}
.y1fc{bottom:284.579886px;}
.y49{bottom:287.280000px;}
.y11f{bottom:290.879884px;}
.y1d2{bottom:291.059884px;}
.y6e{bottom:291.239884px;}
.ya8{bottom:291.599883px;}
.y132{bottom:291.959883px;}
.y145{bottom:292.679883px;}
.y19c{bottom:295.919882px;}
.y189{bottom:298.259881px;}
.yea{bottom:301.679879px;}
.y1fb{bottom:303.659879px;}
.y47{bottom:306.360000px;}
.y11e{bottom:309.959876px;}
.y1d1{bottom:310.139876px;}
.ya7{bottom:310.679876px;}
.y131{bottom:310.859876px;}
.y144{bottom:311.579875px;}
.y19b{bottom:314.999874px;}
.y188{bottom:317.339873px;}
.ye9{bottom:320.579872px;}
.y1fa{bottom:322.559871px;}
.y45{bottom:325.260000px;}
.y11d{bottom:328.859868px;}
.y1df{bottom:329.039868px;}
.y74{bottom:329.219868px;}
.ya6{bottom:329.579868px;}
.y130{bottom:329.759868px;}
.y143{bottom:330.659868px;}
.y19a{bottom:333.899866px;}
.y187{bottom:336.239866px;}
.y1d0{bottom:338.039865px;}
.ye8{bottom:339.659864px;}
.y1f9{bottom:341.459863px;}
.y43{bottom:344.160000px;}
.y11c{bottom:347.939861px;}
.y71{bottom:348.119861px;}
.ya5{bottom:348.659861px;}
.y12f{bottom:348.839860px;}
.y142{bottom:349.559860px;}
.y199{bottom:352.979859px;}
.y186{bottom:355.319858px;}
.y1cf{bottom:357.119857px;}
.ye7{bottom:358.559857px;}
.y1f8{bottom:360.539856px;}
.y11b{bottom:366.839853px;}
.ya4{bottom:367.559853px;}
.y12e{bottom:367.739853px;}
.y198{bottom:371.879851px;}
.y185{bottom:374.219850px;}
.y1ce{bottom:376.019850px;}
.y42{bottom:376.199850px;}
.ye6{bottom:377.459849px;}
.y209{bottom:379.439848px;}
.y11a{bottom:385.739846px;}
.ya3{bottom:386.459845px;}
.y12d{bottom:386.819845px;}
.y1f7{bottom:388.439845px;}
.y184{bottom:393.299843px;}
.y1cd{bottom:394.919842px;}
.ye5{bottom:396.539841px;}
.y208{bottom:398.519841px;}
.y119{bottom:404.819838px;}
.ya2{bottom:405.539838px;}
.y12c{bottom:405.719838px;}
.y41{bottom:405.899838px;}
.y1f6{bottom:407.519837px;}
.y183{bottom:412.199835px;}
.y1de{bottom:413.999834px;}
.ye4{bottom:415.439834px;}
.y207{bottom:417.419833px;}
.y1cc{bottom:422.999831px;}
.y118{bottom:423.719831px;}
.ya1{bottom:424.439830px;}
.y1f5{bottom:426.419829px;}
.y182{bottom:431.099828px;}
.y1dd{bottom:432.899827px;}
.y12b{bottom:433.799826px;}
.ye3{bottom:434.519826px;}
.y40{bottom:437.759825px;}
.y1cb{bottom:441.899823px;}
.y117{bottom:442.799823px;}
.ya0{bottom:443.519823px;}
.y1f4{bottom:445.319822px;}
.y197{bottom:447.839821px;}
.y181{bottom:450.179820px;}
.ye2{bottom:453.419819px;}
.y1ca{bottom:460.979816px;}
.y116{bottom:461.699815px;}
.y3e{bottom:461.880000px;}
.y9f{bottom:462.419815px;}
.y12a{bottom:463.319815px;}
.y1f3{bottom:464.399814px;}
.y3d{bottom:465.839814px;}
.y196{bottom:466.739813px;}
.y180{bottom:469.079812px;}
.ye1{bottom:472.319811px;}
.y1c9{bottom:479.879808px;}
.y115{bottom:480.779808px;}
.y9e{bottom:481.319807px;}
.y206{bottom:483.299807px;}
.y17f{bottom:488.159805px;}
.y3b{bottom:489.780000px;}
.ye0{bottom:491.399803px;}
.y1f2{bottom:492.299803px;}
.y6d{bottom:493.739803px;}
.y1c8{bottom:498.779800px;}
.y114{bottom:499.679800px;}
.y9d{bottom:500.399800px;}
.y205{bottom:502.379799px;}
.y195{bottom:504.719798px;}
.y17e{bottom:507.059797px;}
.y39{bottom:508.860000px;}
.ydf{bottom:510.299796px;}
.y1f1{bottom:511.379795px;}
.y1dc{bottom:517.859793px;}
.y9c{bottom:519.299792px;}
.y204{bottom:521.279791px;}
.y17d{bottom:525.959790px;}
.y1c7{bottom:526.859789px;}
.y113{bottom:527.219789px;}
.y37{bottom:527.760000px;}
.yde{bottom:529.379788px;}
.y1f0{bottom:530.279788px;}
.y6c{bottom:531.719787px;}
.y9b{bottom:538.379785px;}
.y17c{bottom:545.039782px;}
.y1c6{bottom:545.759782px;}
.y112{bottom:546.299781px;}
.y35{bottom:546.660000px;}
.ydd{bottom:548.279781px;}
.y1ef{bottom:549.179780px;}
.y9a{bottom:557.279777px;}
.y194{bottom:561.599775px;}
.y17b{bottom:563.939774px;}
.y1c5{bottom:564.839774px;}
.y33{bottom:565.740000px;}
.ydc{bottom:567.179773px;}
.y1ee{bottom:568.259773px;}
.y32{bottom:569.699772px;}
.y111{bottom:574.559770px;}
.y99{bottom:576.179770px;}
.y17a{bottom:583.019767px;}
.y1c4{bottom:583.739767px;}
.y30{bottom:584.640000px;}
.ydb{bottom:586.259765px;}
.y1ed{bottom:587.159765px;}
.y6b{bottom:588.599765px;}
.ybb{bottom:595.259762px;}
.y193{bottom:599.579760px;}
.y179{bottom:601.919759px;}
.y1c3{bottom:602.639759px;}
.y2e{bottom:603.720000px;}
.y10f{bottom:603.900000px;}
.y98{bottom:604.259758px;}
.yda{bottom:605.159758px;}
.y1ec{bottom:606.239758px;}
.y6a{bottom:607.679757px;}
.yba{bottom:614.159754px;}
.y178{bottom:620.819752px;}
.y10d{bottom:621.180000px;}
.y1db{bottom:621.719751px;}
.y2c{bottom:622.620000px;}
.y97{bottom:623.159751px;}
.yd9{bottom:624.239750px;}
.y1c2{bottom:630.719748px;}
.y128{bottom:632.879747px;}
.yb9{bottom:633.239747px;}
.y1eb{bottom:634.139746px;}
.y10b{bottom:638.280000px;}
.y177{bottom:639.899744px;}
.y2a{bottom:641.520000px;}
.y96{bottom:642.239743px;}
.yd8{bottom:643.139743px;}
.y69{bottom:645.479742px;}
.y1c1{bottom:649.619740px;}
.y1ea{bottom:650.699740px;}
.yb8{bottom:652.139739px;}
.y1e9{bottom:653.039739px;}
.y109{bottom:655.560000px;}
.y176{bottom:658.799736px;}
.y28{bottom:660.600000px;}
.y95{bottom:661.139736px;}
.yd7{bottom:662.039735px;}
.y27{bottom:664.559734px;}
.y1c0{bottom:668.699733px;}
.yb7{bottom:671.039732px;}
.y1e8{bottom:672.119731px;}
.y107{bottom:672.660000px;}
.y175{bottom:677.879729px;}
.y25{bottom:679.500000px;}
.y94{bottom:680.039728px;}
.yd6{bottom:681.119728px;}
.y1bf{bottom:687.599725px;}
.y105{bottom:689.940000px;}
.yb6{bottom:690.119724px;}
.y1e7{bottom:691.019724px;}
.y192{bottom:694.439722px;}
.y174{bottom:696.779721px;}
.y23{bottom:698.580000px;}
.y93{bottom:699.119720px;}
.yd5{bottom:700.019720px;}
.y73{bottom:702.539719px;}
.y103{bottom:707.220000px;}
.yb5{bottom:709.019716px;}
.y1e6{bottom:710.099716px;}
.y173{bottom:715.679714px;}
.y21{bottom:717.480000px;}
.y92{bottom:718.019713px;}
.yd4{bottom:719.099712px;}
.y20{bottom:721.439711px;}
.y102{bottom:727.739709px;}
.yb4{bottom:728.099709px;}
.y1e5{bottom:728.999708px;}
.y91{bottom:737.099705px;}
.yd3{bottom:737.999705px;}
.y172{bottom:743.759702px;}
.y1be{bottom:745.199702px;}
.yb3{bottom:746.999701px;}
.y1f{bottom:749.519700px;}
.y101{bottom:750.239700px;}
.y90{bottom:755.999698px;}
.yd2{bottom:756.899697px;}
.yff{bottom:764.100000px;}
.y1b4{bottom:764.279694px;}
.y216{bottom:765.719694px;}
.yb2{bottom:765.899694px;}
.y171{bottom:771.119692px;}
.y8f{bottom:774.899690px;}
.yd1{bottom:775.979690px;}
.y1e{bottom:778.679689px;}
.y1b3{bottom:783.179687px;}
.yf4{bottom:784.619686px;}
.yb1{bottom:784.979686px;}
.y215{bottom:785.879686px;}
.y170{bottom:788.399685px;}
.y8e{bottom:793.979682px;}
.yd0{bottom:794.879682px;}
.y1b2{bottom:802.259679px;}
.y1c{bottom:803.160000px;}
.y141{bottom:803.879678px;}
.y214{bottom:804.959678px;}
.y16f{bottom:805.679678px;}
.y72{bottom:807.479677px;}
.y1bd{bottom:812.339675px;}
.y8d{bottom:812.879675px;}
.ycf{bottom:813.959674px;}
.y1b{bottom:815.759674px;}
.y1b1{bottom:821.159672px;}
.y140{bottom:822.959671px;}
.y213{bottom:823.859670px;}
.y8c{bottom:831.959667px;}
.yce{bottom:832.859667px;}
.y16c{bottom:833.760000px;}
.y68{bottom:837.179665px;}
.y1b0{bottom:840.239664px;}
.y1bc{bottom:840.419664px;}
.y16e{bottom:840.959664px;}
.y13f{bottom:841.859663px;}
.y8b{bottom:850.859660px;}
.y169{bottom:850.860000px;}
.ycd{bottom:851.939659px;}
.y19{bottom:853.560000px;}
.y18{bottom:857.879657px;}
.y16b{bottom:858.059657px;}
.y1af{bottom:859.139656px;}
.y13e{bottom:860.939656px;}
.y17{bottom:866.159654px;}
.y166{bottom:868.140000px;}
.y8a{bottom:869.939652px;}
.y1bb{bottom:870.119652px;}
.ycc{bottom:870.839652px;}
.y168{bottom:875.339650px;}
.y1ae{bottom:878.039649px;}
.y13d{bottom:879.839648px;}
.y66{bottom:883.260000px;}
.y163{bottom:885.240000px;}
.y14{bottom:887.939645px;}
.y89{bottom:888.839644px;}
.ycb{bottom:889.739644px;}
.y165{bottom:892.439643px;}
.y15{bottom:894.780000px;}
.y1ad{bottom:897.119641px;}
.y65{bottom:897.659641px;}
.y1ba{bottom:898.019641px;}
.yfe{bottom:898.379641px;}
.y13c{bottom:898.739641px;}
.y160{bottom:902.520000px;}
.y88{bottom:907.739637px;}
.yca{bottom:908.819636px;}
.y162{bottom:909.719636px;}
.y1ac{bottom:916.019634px;}
.y1b9{bottom:917.099633px;}
.yfd{bottom:917.459633px;}
.y1e4{bottom:917.819633px;}
.y15d{bottom:919.800000px;}
.y13{bottom:920.339632px;}
.y87{bottom:926.819629px;}
.y15f{bottom:926.999629px;}
.yc9{bottom:927.719629px;}
.y1ab{bottom:935.099626px;}
.y1b8{bottom:935.999626px;}
.y129{bottom:936.359625px;}
.y1e3{bottom:936.719625px;}
.y15a{bottom:936.900000px;}
.y15c{bottom:944.099622px;}
.y11{bottom:944.280000px;}
.y86{bottom:945.719622px;}
.yc8{bottom:946.799621px;}
.y10{bottom:949.499620px;}
.y1aa{bottom:953.999618px;}
.y157{bottom:954.180000px;}
.y1b7{bottom:954.899618px;}
.y212{bottom:955.799618px;}
.y159{bottom:961.379615px;}
.y85{bottom:964.799614px;}
.yc7{bottom:965.699614px;}
.ye{bottom:972.000000px;}
.y1a9{bottom:972.899611px;}
.y155{bottom:974.699610px;}
.yd{bottom:977.219609px;}
.y156{bottom:978.479609px;}
.y1b6{bottom:982.979607px;}
.y84{bottom:983.699607px;}
.yc6{bottom:984.599606px;}
.y1a8{bottom:991.979603px;}
.y211{bottom:993.599603px;}
.y153{bottom:993.780000px;}
.y83{bottom:1002.599599px;}
.yc5{bottom:1003.679599px;}
.y1a7{bottom:1010.879596px;}
.y1b5{bottom:1012.679595px;}
.y9{bottom:1013.039595px;}
.y82{bottom:1021.679591px;}
.y152{bottom:1024.739590px;}
.yfc{bottom:1029.239588px;}
.y1a6{bottom:1029.959588px;}
.yc4{bottom:1031.219588px;}
.y210{bottom:1031.579587px;}
.y8{bottom:1034.819586px;}
.y81{bottom:1040.579584px;}
.y151{bottom:1043.639583px;}
.y1a5{bottom:1048.859580px;}
.y7{bottom:1056.779577px;}
.y80{bottom:1059.659576px;}
.y63{bottom:1063.800000px;}
.y62{bottom:1068.659573px;}
.y150{bottom:1071.359571px;}
.y5{bottom:1073.880000px;}
.y1a4{bottom:1076.939569px;}
.y7f{bottom:1078.559569px;}
.y4{bottom:1078.739569px;}
.y14f{bottom:1087.919565px;}
.y2{bottom:1100.340000px;}
.y7d{bottom:1101.959559px;}
.yc3{bottom:1104.299558px;}
.y61{bottom:1105.199558px;}
.y78{bottom:1129.860000px;}
.y7b{bottom:1130.760000px;}
.y77{bottom:1134.719546px;}
.y7a{bottom:1135.259546px;}
.yc2{bottom:1136.519545px;}
.y1{bottom:1144.799542px;}
.h9{height:15.300000px;}
.h1a{height:17.100000px;}
.hf{height:18.720000px;}
.h17{height:20.340000px;}
.hc{height:20.520000px;}
.h13{height:21.173898px;}
.h2{height:21.960000px;}
.h14{height:23.940000px;}
.h1c{height:23.945615px;}
.h5{height:27.180000px;}
.h1d{height:28.654549px;}
.h19{height:40.985140px;}
.h18{height:41.843655px;}
.h1b{height:44.043102px;}
.h16{height:46.380919px;}
.hb{height:47.344903px;}
.h3{height:50.414042px;}
.ha{height:54.421853px;}
.h11{height:63.824389px;}
.h10{height:64.978568px;}
.h7{height:65.010911px;}
.hd{height:66.757473px;}
.h1{height:70.664034px;}
.he{height:72.562471px;}
.h8{height:84.898091px;}
.h6{height:93.936408px;}
.h15{height:93.983166px;}
.h4{height:96.508086px;}
.h12{height:116.744016px;}
.h0{height:1188.000000px;}
.w6{width:1.080000px;}
.wf{width:2.880000px;}
.w11{width:3.960000px;}
.w45{width:4.140000px;}
.w19{width:5.940000px;}
.w7{width:6.300000px;}
.w13{width:6.660000px;}
.w2e{width:6.840000px;}
.w4a{width:7.560000px;}
.w3d{width:8.100000px;}
.w42{width:8.280000px;}
.w3c{width:8.820000px;}
.w4c{width:9.540000px;}
.w56{width:10.440000px;}
.w57{width:10.620000px;}
.w2{width:11.700000px;}
.w59{width:12.240000px;}
.w38{width:12.420000px;}
.w39{width:20.880000px;}
.w44{width:25.920000px;}
.w18{width:29.520000px;}
.w4f{width:32.400000px;}
.w26{width:34.920000px;}
.w30{width:35.100000px;}
.w32{width:35.460000px;}
.w58{width:35.820000px;}
.w4e{width:36.180000px;}
.w37{width:38.700000px;}
.w3e{width:39.060000px;}
.w53{width:40.500000px;}
.w14{width:41.580000px;}
.w36{width:41.760000px;}
.w55{width:42.660000px;}
.w51{width:43.740000px;}
.w46{width:44.640000px;}
.w52{width:47.160000px;}
.w31{width:49.140000px;}
.w3{width:51.120000px;}
.w54{width:54.000000px;}
.w3b{width:55.800000px;}
.w3f{width:57.960000px;}
.we{width:60.300000px;}
.w9{width:62.820000px;}
.w2a{width:65.520000px;}
.w40{width:66.420000px;}
.w49{width:68.580000px;}
.w43{width:71.460000px;}
.w10{width:75.060000px;}
.w47{width:76.860000px;}
.w21{width:80.280000px;}
.w2c{width:81.360000px;}
.w41{width:87.480000px;}
.wc{width:96.840000px;}
.w2d{width:100.080000px;}
.w5{width:100.620000px;}
.w48{width:104.580000px;}
.w24{width:106.200000px;}
.w2b{width:109.440000px;}
.w4b{width:110.160000px;}
.w33{width:111.600000px;}
.w12{width:115.920000px;}
.w34{width:119.880000px;}
.w25{width:120.060000px;}
.w15{width:120.420000px;}
.w1d{width:120.960000px;}
.w29{width:121.500000px;}
.w3a{width:123.840000px;}
.w35{width:127.980000px;}
.w4{width:131.940000px;}
.w1f{width:132.840000px;}
.w27{width:138.960000px;}
.w1b{width:145.260000px;}
.w2f{width:147.960000px;}
.wd{width:153.180000px;}
.w1a{width:172.080000px;}
.w4d{width:172.260000px;}
.w50{width:177.840000px;}
.wb{width:186.120000px;}
.w1c{width:197.820000px;}
.w28{width:198.540000px;}
.w1e{width:198.720000px;}
.w20{width:210.240000px;}
.w22{width:215.100000px;}
.w23{width:216.180000px;}
.w8{width:225.180000px;}
.wa{width:235.080000px;}
.w17{width:238.140000px;}
.w1{width:287.820000px;}
.w16{width:343.080000px;}
.w0{width:918.000000px;}
.x4f{left:-578.160043px;}
.x4c{left:-568.260047px;}
.x50{left:-529.200063px;}
.x45{left:-475.020084px;}
.x4b{left:-349.380135px;}
.x18{left:-287.640022px;}
.x2d{left:-234.900043px;}
.x2a{left:-225.000047px;}
.x57{left:-216.360188px;}
.x52{left:-215.280188px;}
.x51{left:-210.420190px;}
.x4e{left:-198.000195px;}
.x2e{left:-185.940063px;}
.x49{left:-172.260206px;}
.x38{left:-153.000076px;}
.x20{left:-131.760085px;}
.x53{left:-106.380232px;}
.x21{left:-100.440097px;}
.x34{left:-96.660099px;}
.x3e{left:-74.880107px;}
.x2b{left:-62.640112px;}
.x3b{left:-60.120113px;}
.x1e{left:-50.940117px;}
.x43{left:-41.760258px;}
.x54{left:-35.100260px;}
.x47{left:-29.700263px;}
.x1a{left:-11.520133px;}
.x28{left:-6.120135px;}
.x3f{left:-3.780136px;}
.x3d{left:-2.700136px;}
.x0{left:0.000000px;}
.x2{left:55.260000px;}
.x1{left:107.999957px;}
.xe{left:111.779955px;}
.x62{left:116.100000px;}
.xf{left:117.900000px;}
.x5{left:120.599952px;}
.xb{left:124.739950px;}
.x5c{left:126.180000px;}
.x8d{left:129.599948px;}
.xc{left:130.859948px;}
.x6e{left:151.740000px;}
.x11{left:156.960000px;}
.x63{left:170.100000px;}
.x7{left:182.519927px;}
.x9{left:189.719924px;}
.x8f{left:204.299918px;}
.x90{left:209.519916px;}
.x6{left:211.140000px;}
.x78{left:224.640000px;}
.x64{left:228.060000px;}
.x6f{left:229.140000px;}
.x74{left:235.079906px;}
.x65{left:236.880000px;}
.x8{left:242.460000px;}
.x12{left:246.240000px;}
.x60{left:265.679894px;}
.x15{left:268.020000px;}
.x61{left:270.899892px;}
.x5d{left:272.879891px;}
.x6b{left:274.680000px;}
.x10{left:280.260000px;}
.x13{left:282.780000px;}
.x4{left:291.960000px;}
.x66{left:303.300000px;}
.x70{left:307.980000px;}
.x3{left:331.380000px;}
.xd{left:336.780000px;}
.x16{left:339.120000px;}
.x14{left:340.200000px;}
.xa{left:342.000000px;}
.x17{left:343.080000px;}
.x6d{left:347.940000px;}
.x1b{left:349.739860px;}
.x75{left:354.239858px;}
.x24{left:355.859858px;}
.x79{left:361.259855px;}
.x67{left:372.600000px;}
.x29{left:380.339848px;}
.x68{left:398.520000px;}
.x69{left:402.660000px;}
.x39{left:408.599837px;}
.x30{left:423.359831px;}
.x3a{left:424.439830px;}
.x71{left:433.980000px;}
.x6c{left:441.180000px;}
.x3c{left:443.159823px;}
.x6a{left:447.300000px;}
.x19{left:458.999816px;}
.x1f{left:463.499815px;}
.x37{left:464.579814px;}
.x40{left:469.979812px;}
.x31{left:471.060000px;}
.x2f{left:475.920000px;}
.x5f{left:478.079809px;}
.x76{left:480.239808px;}
.x36{left:482.039807px;}
.x82{left:484.739806px;}
.x2c{left:488.340000px;}
.x7c{left:490.319804px;}
.x8e{left:491.400552px;}
.x25{left:502.199799px;}
.x7a{left:504.540000px;}
.x26{left:509.039796px;}
.x27{left:514.080000px;}
.x80{left:524.699790px;}
.x81{left:532.259787px;}
.x85{left:557.819777px;}
.x32{left:559.259776px;}
.x86{left:565.379774px;}
.x8b{left:570.779772px;}
.x8c{left:578.339769px;}
.x33{left:579.960000px;}
.x22{left:581.219768px;}
.x7b{left:595.800000px;}
.x72{left:607.140000px;}
.x83{left:616.319753px;}
.x84{left:623.879750px;}
.x7d{left:636.659745px;}
.x1c{left:642.779743px;}
.x1d{left:644.580000px;}
.x35{left:651.240000px;}
.x89{left:653.399739px;}
.x23{left:656.640000px;}
.x8a{left:660.959736px;}
.x41{left:679.860000px;}
.x42{left:686.160000px;}
.x87{left:687.419725px;}
.x88{left:694.979722px;}
.x56{left:698.579721px;}
.x58{left:707.039717px;}
.x46{left:721.259711px;}
.x55{left:724.859710px;}
.x4a{left:728.279709px;}
.x77{left:732.419707px;}
.x48{left:735.299706px;}
.x73{left:740.160000px;}
.x5a{left:741.959703px;}
.x7e{left:759.059696px;}
.x7f{left:766.619693px;}
.x5b{left:786.239686px;}
.x5e{left:801.900000px;}
.x4d{left:806.039678px;}
.x59{left:809.999676px;}
.x44{left:834.119666px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.959984pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.056358pt;}
.ls8{letter-spacing:0.056436pt;}
.ls7{letter-spacing:0.072107pt;}
.ls3{letter-spacing:0.144184pt;}
.ls2{letter-spacing:0.144263pt;}
.ls4{letter-spacing:0.144267pt;}
.ls9{letter-spacing:0.167733pt;}
.ls6{letter-spacing:0.333973pt;}
.ls5{letter-spacing:2.637066pt;}
.ws6{word-spacing:-45.749742pt;}
.ws1{word-spacing:-21.279991pt;}
.ws2{word-spacing:-15.999994pt;}
.ws8{word-spacing:-14.776352pt;}
.ws3{word-spacing:-14.719994pt;}
.ws0{word-spacing:-14.463994pt;}
.ws5{word-spacing:-12.111355pt;}
.ws7{word-spacing:-7.879677pt;}
.ws4{word-spacing:0.000000pt;}
._1b{margin-left:-2.409882pt;}
._1{margin-left:-1.044802pt;}
._0{width:1.182883pt;}
._7{width:2.084538pt;}
._8{width:3.538527pt;}
._9{width:4.504011pt;}
._2{width:5.405771pt;}
._3{width:6.384988pt;}
._f{width:7.329146pt;}
._14{width:8.244088pt;}
._a{width:9.195328pt;}
._b{width:10.277819pt;}
._4{width:11.326544pt;}
._5{width:12.240260pt;}
._6{width:13.139653pt;}
._e{width:15.922750pt;}
._20{width:16.857726pt;}
._18{width:17.805411pt;}
._d{width:18.860991pt;}
._10{width:20.064965pt;}
._15{width:21.087202pt;}
._c{width:22.190200pt;}
._11{width:23.316381pt;}
._16{width:25.048360pt;}
._17{width:26.355449pt;}
._1e{width:27.994546pt;}
._1c{width:28.977661pt;}
._2b{width:30.267046pt;}
._1f{width:31.384261pt;}
._28{width:32.716997pt;}
._13{width:33.619478pt;}
._19{width:35.207176pt;}
._1a{width:36.352488pt;}
._1d{width:37.817660pt;}
._26{width:39.290622pt;}
._27{width:40.257247pt;}
._22{width:41.327182pt;}
._24{width:42.614931pt;}
._2c{width:43.651269pt;}
._23{width:44.541735pt;}
._25{width:51.047978pt;}
._31{width:64.034634pt;}
._29{width:180.058526pt;}
._2f{width:207.832448pt;}
._2e{width:222.379744pt;}
._2a{width:455.032690pt;}
._21{width:496.601036pt;}
._2d{width:764.261028pt;}
._12{width:831.945543pt;}
._30{width:1274.143490pt;}
.fs9{font-size:21.119992pt;}
.fs6{font-size:26.879989pt;}
.fsa{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.559681pt;}
.y154{bottom:3.039645pt;}
.y158{bottom:3.039660pt;}
.y15b{bottom:3.039666pt;}
.y15e{bottom:3.039672pt;}
.y161{bottom:3.039678pt;}
.y164{bottom:3.039684pt;}
.y167{bottom:3.039690pt;}
.y16a{bottom:3.039696pt;}
.y16d{bottom:3.039702pt;}
.y100{bottom:3.039727pt;}
.y104{bottom:3.039747pt;}
.y106{bottom:3.039753pt;}
.y108{bottom:3.039760pt;}
.y10a{bottom:3.039766pt;}
.y10c{bottom:3.039772pt;}
.y10e{bottom:3.039778pt;}
.y110{bottom:3.039784pt;}
.y22{bottom:3.519743pt;}
.y24{bottom:3.519750pt;}
.y26{bottom:3.519757pt;}
.y29{bottom:3.519764pt;}
.y2b{bottom:3.519770pt;}
.y2d{bottom:3.519777pt;}
.y2f{bottom:3.519784pt;}
.y31{bottom:3.519791pt;}
.y34{bottom:3.519797pt;}
.y36{bottom:3.519804pt;}
.y38{bottom:3.519811pt;}
.y3a{bottom:3.519818pt;}
.y3c{bottom:3.519824pt;}
.y3f{bottom:3.519834pt;}
.y44{bottom:3.519876pt;}
.y46{bottom:3.519883pt;}
.y48{bottom:3.519890pt;}
.y4a{bottom:3.519896pt;}
.y4d{bottom:3.519903pt;}
.y4f{bottom:3.519910pt;}
.y51{bottom:3.519917pt;}
.y53{bottom:3.519923pt;}
.y56{bottom:3.519930pt;}
.y59{bottom:3.519937pt;}
.y5b{bottom:3.519944pt;}
.y5d{bottom:3.519950pt;}
.y60{bottom:3.519957pt;}
.y1a{bottom:3.839695pt;}
.y1d{bottom:3.839713pt;}
.y7c{bottom:3.999596pt;}
.y67{bottom:4.159684pt;}
.y79{bottom:4.319597pt;}
.y3{bottom:4.319607pt;}
.y6{bottom:4.319616pt;}
.y64{bottom:4.319620pt;}
.yc{bottom:4.319976pt;}
.yf{bottom:4.639653pt;}
.y12{bottom:4.639662pt;}
.y7e{bottom:51.999979pt;}
.yb{bottom:56.160000pt;}
.ya{bottom:60.479976pt;}
.yf3{bottom:100.319960pt;}
.y20f{bottom:102.079959pt;}
.y5f{bottom:103.680000pt;}
.y1a3{bottom:105.439958pt;}
.y127{bottom:106.879957pt;}
.y5e{bottom:107.199957pt;}
.y13b{bottom:107.679957pt;}
.y14e{bottom:108.639957pt;}
.y1da{bottom:115.839954pt;}
.yb0{bottom:116.319953pt;}
.yf2{bottom:117.119953pt;}
.y20e{bottom:118.879952pt;}
.y5c{bottom:120.480000pt;}
.y191{bottom:122.239951pt;}
.y126{bottom:123.679951pt;}
.y76{bottom:123.999950pt;}
.y13a{bottom:124.479950pt;}
.y14d{bottom:125.119950pt;}
.y203{bottom:126.879949pt;}
.yc1{bottom:132.479947pt;}
.y1d9{bottom:132.639947pt;}
.yaf{bottom:133.119947pt;}
.yf1{bottom:134.079946pt;}
.y20d{bottom:135.839946pt;}
.y5a{bottom:137.280000pt;}
.y190{bottom:139.199944pt;}
.y125{bottom:140.639944pt;}
.y70{bottom:140.799944pt;}
.y139{bottom:141.439943pt;}
.y14c{bottom:142.079943pt;}
.y202{bottom:143.839942pt;}
.y1a2{bottom:147.199941pt;}
.yc0{bottom:149.439940pt;}
.y1d8{bottom:149.599940pt;}
.yfb{bottom:150.079940pt;}
.yf0{bottom:150.879940pt;}
.y58{bottom:154.240000pt;}
.y18f{bottom:155.999938pt;}
.y124{bottom:157.439937pt;}
.y57{bottom:157.759937pt;}
.yae{bottom:158.079937pt;}
.y138{bottom:158.239937pt;}
.y14b{bottom:158.879936pt;}
.y201{bottom:160.639936pt;}
.y1a1{bottom:163.999934pt;}
.ybf{bottom:166.239934pt;}
.y1e2{bottom:166.399933pt;}
.yfa{bottom:166.879933pt;}
.yef{bottom:167.839933pt;}
.y55{bottom:171.040000pt;}
.y18e{bottom:172.799931pt;}
.y123{bottom:174.239930pt;}
.y1d7{bottom:174.399930pt;}
.y54{bottom:174.559930pt;}
.yad{bottom:174.879930pt;}
.y137{bottom:175.039930pt;}
.y14a{bottom:175.839930pt;}
.y200{bottom:177.439929pt;}
.y1a0{bottom:180.799928pt;}
.ybe{bottom:183.039927pt;}
.y1e1{bottom:183.359927pt;}
.yf9{bottom:183.839926pt;}
.yee{bottom:184.639926pt;}
.y52{bottom:188.000000pt;}
.y18d{bottom:189.759924pt;}
.y122{bottom:191.199924pt;}
.y1d6{bottom:191.359923pt;}
.y6f{bottom:191.519923pt;}
.yac{bottom:191.839923pt;}
.y136{bottom:191.999923pt;}
.y149{bottom:192.639923pt;}
.y1ff{bottom:194.399922pt;}
.y19f{bottom:197.759921pt;}
.y1e0{bottom:200.159920pt;}
.yf8{bottom:200.639920pt;}
.yed{bottom:201.439919pt;}
.y50{bottom:204.800000pt;}
.y18c{bottom:206.559917pt;}
.ybd{bottom:207.999917pt;}
.y1d5{bottom:208.159917pt;}
.y75{bottom:208.319917pt;}
.yab{bottom:208.639917pt;}
.y135{bottom:208.799916pt;}
.y148{bottom:209.439916pt;}
.y20c{bottom:211.199916pt;}
.y19e{bottom:214.559914pt;}
.yf7{bottom:217.439913pt;}
.y1fe{bottom:219.199912pt;}
.y4e{bottom:221.600000pt;}
.y18b{bottom:223.519911pt;}
.y121{bottom:224.959910pt;}
.y1d4{bottom:225.119910pt;}
.yaa{bottom:225.439910pt;}
.y134{bottom:225.759910pt;}
.yec{bottom:226.079910pt;}
.y147{bottom:226.399909pt;}
.y20b{bottom:228.159909pt;}
.y19d{bottom:231.519907pt;}
.ybc{bottom:234.079906pt;}
.yf6{bottom:234.399906pt;}
.y1fd{bottom:236.159906pt;}
.y4c{bottom:238.560000pt;}
.y120{bottom:241.759903pt;}
.y1d3{bottom:241.919903pt;}
.y4b{bottom:242.079903pt;}
.ya9{bottom:242.399903pt;}
.y133{bottom:242.559903pt;}
.yeb{bottom:242.879903pt;}
.y146{bottom:243.199903pt;}
.y20a{bottom:244.959902pt;}
.y18a{bottom:248.319901pt;}
.yf5{bottom:251.199900pt;}
.y1fc{bottom:252.959899pt;}
.y49{bottom:255.360000pt;}
.y11f{bottom:258.559897pt;}
.y1d2{bottom:258.719897pt;}
.y6e{bottom:258.879896pt;}
.ya8{bottom:259.199896pt;}
.y132{bottom:259.519896pt;}
.y145{bottom:260.159896pt;}
.y19c{bottom:263.039895pt;}
.y189{bottom:265.119894pt;}
.yea{bottom:268.159893pt;}
.y1fb{bottom:269.919892pt;}
.y47{bottom:272.320000pt;}
.y11e{bottom:275.519890pt;}
.y1d1{bottom:275.679890pt;}
.ya7{bottom:276.159890pt;}
.y131{bottom:276.319889pt;}
.y144{bottom:276.959889pt;}
.y19b{bottom:279.999888pt;}
.y188{bottom:282.079887pt;}
.ye9{bottom:284.959886pt;}
.y1fa{bottom:286.719885pt;}
.y45{bottom:289.120000pt;}
.y11d{bottom:292.319883pt;}
.y1df{bottom:292.479883pt;}
.y74{bottom:292.639883pt;}
.ya6{bottom:292.959883pt;}
.y130{bottom:293.119883pt;}
.y143{bottom:293.919882pt;}
.y19a{bottom:296.799881pt;}
.y187{bottom:298.879880pt;}
.y1d0{bottom:300.479880pt;}
.ye8{bottom:301.919879pt;}
.y1f9{bottom:303.519879pt;}
.y43{bottom:305.920000pt;}
.y11c{bottom:309.279876pt;}
.y71{bottom:309.439876pt;}
.ya5{bottom:309.919876pt;}
.y12f{bottom:310.079876pt;}
.y142{bottom:310.719876pt;}
.y199{bottom:313.759874pt;}
.y186{bottom:315.839874pt;}
.y1cf{bottom:317.439873pt;}
.ye7{bottom:318.719873pt;}
.y1f8{bottom:320.479872pt;}
.y11b{bottom:326.079870pt;}
.ya4{bottom:326.719869pt;}
.y12e{bottom:326.879869pt;}
.y198{bottom:330.559868pt;}
.y185{bottom:332.639867pt;}
.y1ce{bottom:334.239866pt;}
.y42{bottom:334.399866pt;}
.ye6{bottom:335.519866pt;}
.y209{bottom:337.279865pt;}
.y11a{bottom:342.879863pt;}
.ya3{bottom:343.519863pt;}
.y12d{bottom:343.839862pt;}
.y1f7{bottom:345.279862pt;}
.y184{bottom:349.599860pt;}
.y1cd{bottom:351.039860pt;}
.ye5{bottom:352.479859pt;}
.y208{bottom:354.239858pt;}
.y119{bottom:359.839856pt;}
.ya2{bottom:360.479856pt;}
.y12c{bottom:360.639856pt;}
.y41{bottom:360.799856pt;}
.y1f6{bottom:362.239855pt;}
.y183{bottom:366.399853pt;}
.y1de{bottom:367.999853pt;}
.ye4{bottom:369.279852pt;}
.y207{bottom:371.039852pt;}
.y1cc{bottom:375.999850pt;}
.y118{bottom:376.639849pt;}
.ya1{bottom:377.279849pt;}
.y1f5{bottom:379.039848pt;}
.y182{bottom:383.199847pt;}
.y1dd{bottom:384.799846pt;}
.y12b{bottom:385.599846pt;}
.ye3{bottom:386.239846pt;}
.y40{bottom:389.119844pt;}
.y1cb{bottom:392.799843pt;}
.y117{bottom:393.599843pt;}
.ya0{bottom:394.239842pt;}
.y1f4{bottom:395.839842pt;}
.y197{bottom:398.079841pt;}
.y181{bottom:400.159840pt;}
.ye2{bottom:403.039839pt;}
.y1ca{bottom:409.759836pt;}
.y116{bottom:410.399836pt;}
.y3e{bottom:410.560000pt;}
.y9f{bottom:411.039836pt;}
.y12a{bottom:411.839835pt;}
.y1f3{bottom:412.799835pt;}
.y3d{bottom:414.079834pt;}
.y196{bottom:414.879834pt;}
.y180{bottom:416.959833pt;}
.ye1{bottom:419.839832pt;}
.y1c9{bottom:426.559829pt;}
.y115{bottom:427.359829pt;}
.y9e{bottom:427.839829pt;}
.y206{bottom:429.599828pt;}
.y17f{bottom:433.919826pt;}
.y3b{bottom:435.360000pt;}
.ye0{bottom:436.799825pt;}
.y1f2{bottom:437.599825pt;}
.y6d{bottom:438.879824pt;}
.y1c8{bottom:443.359823pt;}
.y114{bottom:444.159822pt;}
.y9d{bottom:444.799822pt;}
.y205{bottom:446.559821pt;}
.y195{bottom:448.639821pt;}
.y17e{bottom:450.719820pt;}
.y39{bottom:452.320000pt;}
.ydf{bottom:453.599819pt;}
.y1f1{bottom:454.559818pt;}
.y1dc{bottom:460.319816pt;}
.y9c{bottom:461.599815pt;}
.y204{bottom:463.359815pt;}
.y17d{bottom:467.519813pt;}
.y1c7{bottom:468.319813pt;}
.y113{bottom:468.639813pt;}
.y37{bottom:469.120000pt;}
.yde{bottom:470.559812pt;}
.y1f0{bottom:471.359811pt;}
.y6c{bottom:472.639811pt;}
.y9b{bottom:478.559809pt;}
.y17c{bottom:484.479806pt;}
.y1c6{bottom:485.119806pt;}
.y112{bottom:485.599806pt;}
.y35{bottom:485.920000pt;}
.ydd{bottom:487.359805pt;}
.y1ef{bottom:488.159805pt;}
.y9a{bottom:495.359802pt;}
.y194{bottom:499.199800pt;}
.y17b{bottom:501.279799pt;}
.y1c5{bottom:502.079799pt;}
.y33{bottom:502.880000pt;}
.ydc{bottom:504.159798pt;}
.y1ee{bottom:505.119798pt;}
.y32{bottom:506.399797pt;}
.y111{bottom:510.719796pt;}
.y99{bottom:512.159795pt;}
.y17a{bottom:518.239793pt;}
.y1c4{bottom:518.879792pt;}
.y30{bottom:519.680000pt;}
.ydb{bottom:521.119792pt;}
.y1ed{bottom:521.919791pt;}
.y6b{bottom:523.199791pt;}
.ybb{bottom:529.119788pt;}
.y193{bottom:532.959787pt;}
.y179{bottom:535.039786pt;}
.y1c3{bottom:535.679786pt;}
.y2e{bottom:536.640000pt;}
.y10f{bottom:536.800000pt;}
.y98{bottom:537.119785pt;}
.yda{bottom:537.919785pt;}
.y1ec{bottom:538.879784pt;}
.y6a{bottom:540.159784pt;}
.yba{bottom:545.919782pt;}
.y178{bottom:551.839779pt;}
.y10d{bottom:552.160000pt;}
.y1db{bottom:552.639779pt;}
.y2c{bottom:553.440000pt;}
.y97{bottom:553.919778pt;}
.yd9{bottom:554.879778pt;}
.y1c2{bottom:560.639776pt;}
.y128{bottom:562.559775pt;}
.yb9{bottom:562.879775pt;}
.y1eb{bottom:563.679775pt;}
.y10b{bottom:567.360000pt;}
.y177{bottom:568.799772pt;}
.y2a{bottom:570.240000pt;}
.y96{bottom:570.879772pt;}
.yd8{bottom:571.679771pt;}
.y69{bottom:573.759770pt;}
.y1c1{bottom:577.439769pt;}
.y1ea{bottom:578.399769pt;}
.yb8{bottom:579.679768pt;}
.y1e9{bottom:580.479768pt;}
.y109{bottom:582.720000pt;}
.y176{bottom:585.599766pt;}
.y28{bottom:587.200000pt;}
.y95{bottom:587.679765pt;}
.yd7{bottom:588.479765pt;}
.y27{bottom:590.719764pt;}
.y1c0{bottom:594.399762pt;}
.yb7{bottom:596.479761pt;}
.y1e8{bottom:597.439761pt;}
.y107{bottom:597.920000pt;}
.y175{bottom:602.559759pt;}
.y25{bottom:604.000000pt;}
.y94{bottom:604.479758pt;}
.yd6{bottom:605.439758pt;}
.y1bf{bottom:611.199756pt;}
.y105{bottom:613.280000pt;}
.yb6{bottom:613.439755pt;}
.y1e7{bottom:614.239754pt;}
.y192{bottom:617.279753pt;}
.y174{bottom:619.359752pt;}
.y23{bottom:620.960000pt;}
.y93{bottom:621.439751pt;}
.yd5{bottom:622.239751pt;}
.y73{bottom:624.479750pt;}
.y103{bottom:628.640000pt;}
.yb5{bottom:630.239748pt;}
.y1e6{bottom:631.199748pt;}
.y173{bottom:636.159746pt;}
.y21{bottom:637.760000pt;}
.y92{bottom:638.239745pt;}
.yd4{bottom:639.199744pt;}
.y20{bottom:641.279743pt;}
.y102{bottom:646.879741pt;}
.yb4{bottom:647.199741pt;}
.y1e5{bottom:647.999741pt;}
.y91{bottom:655.199738pt;}
.yd3{bottom:655.999738pt;}
.y172{bottom:661.119736pt;}
.y1be{bottom:662.399735pt;}
.yb3{bottom:663.999734pt;}
.y1f{bottom:666.239734pt;}
.y101{bottom:666.879733pt;}
.y90{bottom:671.999731pt;}
.yd2{bottom:672.799731pt;}
.yff{bottom:679.200000pt;}
.y1b4{bottom:679.359728pt;}
.y216{bottom:680.639728pt;}
.yb2{bottom:680.799728pt;}
.y171{bottom:685.439726pt;}
.y8f{bottom:688.799724pt;}
.yd1{bottom:689.759724pt;}
.y1e{bottom:692.159723pt;}
.y1b3{bottom:696.159722pt;}
.yf4{bottom:697.439721pt;}
.yb1{bottom:697.759721pt;}
.y215{bottom:698.559721pt;}
.y170{bottom:700.799720pt;}
.y8e{bottom:705.759718pt;}
.yd0{bottom:706.559717pt;}
.y1b2{bottom:713.119715pt;}
.y1c{bottom:713.920000pt;}
.y141{bottom:714.559714pt;}
.y214{bottom:715.519714pt;}
.y16f{bottom:716.159714pt;}
.y72{bottom:717.759713pt;}
.y1bd{bottom:722.079711pt;}
.y8d{bottom:722.559711pt;}
.ycf{bottom:723.519711pt;}
.y1b{bottom:725.119710pt;}
.y1b1{bottom:729.919708pt;}
.y140{bottom:731.519707pt;}
.y213{bottom:732.319707pt;}
.y8c{bottom:739.519704pt;}
.yce{bottom:740.319704pt;}
.y16c{bottom:741.120000pt;}
.y68{bottom:744.159702pt;}
.y1b0{bottom:746.879701pt;}
.y1bc{bottom:747.039701pt;}
.y16e{bottom:747.519701pt;}
.y13f{bottom:748.319701pt;}
.y8b{bottom:756.319697pt;}
.y169{bottom:756.320000pt;}
.ycd{bottom:757.279697pt;}
.y19{bottom:758.720000pt;}
.y18{bottom:762.559695pt;}
.y16b{bottom:762.719695pt;}
.y1af{bottom:763.679695pt;}
.y13e{bottom:765.279694pt;}
.y17{bottom:769.919692pt;}
.y166{bottom:771.680000pt;}
.y8a{bottom:773.279691pt;}
.y1bb{bottom:773.439691pt;}
.ycc{bottom:774.079690pt;}
.y168{bottom:778.079689pt;}
.y1ae{bottom:780.479688pt;}
.y13d{bottom:782.079687pt;}
.y66{bottom:785.120000pt;}
.y163{bottom:786.880000pt;}
.y14{bottom:789.279684pt;}
.y89{bottom:790.079684pt;}
.ycb{bottom:790.879684pt;}
.y165{bottom:793.279683pt;}
.y15{bottom:795.360000pt;}
.y1ad{bottom:797.439681pt;}
.y65{bottom:797.919681pt;}
.y1ba{bottom:798.239681pt;}
.yfe{bottom:798.559681pt;}
.y13c{bottom:798.879680pt;}
.y160{bottom:802.240000pt;}
.y88{bottom:806.879677pt;}
.yca{bottom:807.839677pt;}
.y162{bottom:808.639677pt;}
.y1ac{bottom:814.239674pt;}
.y1b9{bottom:815.199674pt;}
.yfd{bottom:815.519674pt;}
.y1e4{bottom:815.839674pt;}
.y15d{bottom:817.600000pt;}
.y13{bottom:818.079673pt;}
.y87{bottom:823.839670pt;}
.y15f{bottom:823.999670pt;}
.yc9{bottom:824.639670pt;}
.y1ab{bottom:831.199668pt;}
.y1b8{bottom:831.999667pt;}
.y129{bottom:832.319667pt;}
.y1e3{bottom:832.639667pt;}
.y15a{bottom:832.800000pt;}
.y15c{bottom:839.199664pt;}
.y11{bottom:839.360000pt;}
.y86{bottom:840.639664pt;}
.yc8{bottom:841.599663pt;}
.y10{bottom:843.999662pt;}
.y1aa{bottom:847.999661pt;}
.y157{bottom:848.160000pt;}
.y1b7{bottom:848.799660pt;}
.y212{bottom:849.599660pt;}
.y159{bottom:854.559658pt;}
.y85{bottom:857.599657pt;}
.yc7{bottom:858.399657pt;}
.ye{bottom:864.000000pt;}
.y1a9{bottom:864.799654pt;}
.y155{bottom:866.399653pt;}
.yd{bottom:868.639653pt;}
.y156{bottom:869.759652pt;}
.y1b6{bottom:873.759650pt;}
.y84{bottom:874.399650pt;}
.yc6{bottom:875.199650pt;}
.y1a8{bottom:881.759647pt;}
.y211{bottom:883.199647pt;}
.y153{bottom:883.360000pt;}
.y83{bottom:891.199644pt;}
.yc5{bottom:892.159643pt;}
.y1a7{bottom:898.559641pt;}
.y1b5{bottom:900.159640pt;}
.y9{bottom:900.479640pt;}
.y82{bottom:908.159637pt;}
.y152{bottom:910.879636pt;}
.yfc{bottom:914.879634pt;}
.y1a6{bottom:915.519634pt;}
.yc4{bottom:916.639633pt;}
.y210{bottom:916.959633pt;}
.y8{bottom:919.839632pt;}
.y81{bottom:924.959630pt;}
.y151{bottom:927.679629pt;}
.y1a5{bottom:932.319627pt;}
.y7{bottom:939.359624pt;}
.y80{bottom:941.919623pt;}
.y63{bottom:945.600000pt;}
.y62{bottom:949.919620pt;}
.y150{bottom:952.319619pt;}
.y5{bottom:954.560000pt;}
.y1a4{bottom:957.279617pt;}
.y7f{bottom:958.719617pt;}
.y4{bottom:958.879616pt;}
.y14f{bottom:967.039613pt;}
.y2{bottom:978.080000pt;}
.y7d{bottom:979.519608pt;}
.yc3{bottom:981.599607pt;}
.y61{bottom:982.399607pt;}
.y78{bottom:1004.320000pt;}
.y7b{bottom:1005.120000pt;}
.y77{bottom:1008.639597pt;}
.y7a{bottom:1009.119596pt;}
.yc2{bottom:1010.239596pt;}
.y1{bottom:1017.599593pt;}
.h9{height:13.600000pt;}
.h1a{height:15.200000pt;}
.hf{height:16.640000pt;}
.h17{height:18.080000pt;}
.hc{height:18.240000pt;}
.h13{height:18.821242pt;}
.h2{height:19.520000pt;}
.h14{height:21.280000pt;}
.h1c{height:21.284991pt;}
.h5{height:24.160000pt;}
.h1d{height:25.470710pt;}
.h19{height:36.431235pt;}
.h18{height:37.194360pt;}
.h1b{height:39.149424pt;}
.h16{height:41.227484pt;}
.hb{height:42.084358pt;}
.h3{height:44.812482pt;}
.ha{height:48.374981pt;}
.h11{height:56.732790pt;}
.h10{height:57.758727pt;}
.h7{height:57.787477pt;}
.hd{height:59.339976pt;}
.h1{height:62.812475pt;}
.he{height:64.499974pt;}
.h8{height:75.464970pt;}
.h6{height:83.499029pt;}
.h15{height:83.540592pt;}
.h4{height:85.784966pt;}
.h12{height:103.772458pt;}
.h0{height:1056.000000pt;}
.w6{width:0.960000pt;}
.wf{width:2.560000pt;}
.w11{width:3.520000pt;}
.w45{width:3.680000pt;}
.w19{width:5.280000pt;}
.w7{width:5.600000pt;}
.w13{width:5.920000pt;}
.w2e{width:6.080000pt;}
.w4a{width:6.720000pt;}
.w3d{width:7.200000pt;}
.w42{width:7.360000pt;}
.w3c{width:7.840000pt;}
.w4c{width:8.480000pt;}
.w56{width:9.280000pt;}
.w57{width:9.440000pt;}
.w2{width:10.400000pt;}
.w59{width:10.880000pt;}
.w38{width:11.040000pt;}
.w39{width:18.560000pt;}
.w44{width:23.040000pt;}
.w18{width:26.240000pt;}
.w4f{width:28.800000pt;}
.w26{width:31.040000pt;}
.w30{width:31.200000pt;}
.w32{width:31.520000pt;}
.w58{width:31.840000pt;}
.w4e{width:32.160000pt;}
.w37{width:34.400000pt;}
.w3e{width:34.720000pt;}
.w53{width:36.000000pt;}
.w14{width:36.960000pt;}
.w36{width:37.120000pt;}
.w55{width:37.920000pt;}
.w51{width:38.880000pt;}
.w46{width:39.680000pt;}
.w52{width:41.920000pt;}
.w31{width:43.680000pt;}
.w3{width:45.440000pt;}
.w54{width:48.000000pt;}
.w3b{width:49.600000pt;}
.w3f{width:51.520000pt;}
.we{width:53.600000pt;}
.w9{width:55.840000pt;}
.w2a{width:58.240000pt;}
.w40{width:59.040000pt;}
.w49{width:60.960000pt;}
.w43{width:63.520000pt;}
.w10{width:66.720000pt;}
.w47{width:68.320000pt;}
.w21{width:71.360000pt;}
.w2c{width:72.320000pt;}
.w41{width:77.760000pt;}
.wc{width:86.080000pt;}
.w2d{width:88.960000pt;}
.w5{width:89.440000pt;}
.w48{width:92.960000pt;}
.w24{width:94.400000pt;}
.w2b{width:97.280000pt;}
.w4b{width:97.920000pt;}
.w33{width:99.200000pt;}
.w12{width:103.040000pt;}
.w34{width:106.560000pt;}
.w25{width:106.720000pt;}
.w15{width:107.040000pt;}
.w1d{width:107.520000pt;}
.w29{width:108.000000pt;}
.w3a{width:110.080000pt;}
.w35{width:113.760000pt;}
.w4{width:117.280000pt;}
.w1f{width:118.080000pt;}
.w27{width:123.520000pt;}
.w1b{width:129.120000pt;}
.w2f{width:131.520000pt;}
.wd{width:136.160000pt;}
.w1a{width:152.960000pt;}
.w4d{width:153.120000pt;}
.w50{width:158.080000pt;}
.wb{width:165.440000pt;}
.w1c{width:175.840000pt;}
.w28{width:176.480000pt;}
.w1e{width:176.640000pt;}
.w20{width:186.880000pt;}
.w22{width:191.200000pt;}
.w23{width:192.160000pt;}
.w8{width:200.160000pt;}
.wa{width:208.960000pt;}
.w17{width:211.680000pt;}
.w1{width:255.840000pt;}
.w16{width:304.960000pt;}
.w0{width:816.000000pt;}
.x4f{left:-513.920038pt;}
.x4c{left:-505.120042pt;}
.x50{left:-470.400056pt;}
.x45{left:-422.240075pt;}
.x4b{left:-310.560120pt;}
.x18{left:-255.680020pt;}
.x2d{left:-208.800038pt;}
.x2a{left:-200.000042pt;}
.x57{left:-192.320167pt;}
.x52{left:-191.360167pt;}
.x51{left:-187.040169pt;}
.x4e{left:-176.000174pt;}
.x2e{left:-165.280056pt;}
.x49{left:-153.120183pt;}
.x38{left:-136.000068pt;}
.x20{left:-117.120075pt;}
.x53{left:-94.560206pt;}
.x21{left:-89.280086pt;}
.x34{left:-85.920088pt;}
.x3e{left:-66.560095pt;}
.x2b{left:-55.680100pt;}
.x3b{left:-53.440101pt;}
.x1e{left:-45.280104pt;}
.x43{left:-37.120229pt;}
.x54{left:-31.200231pt;}
.x47{left:-26.400233pt;}
.x1a{left:-10.240118pt;}
.x28{left:-5.440120pt;}
.x3f{left:-3.360121pt;}
.x3d{left:-2.400121pt;}
.x0{left:0.000000pt;}
.x2{left:49.120000pt;}
.x1{left:95.999962pt;}
.xe{left:99.359960pt;}
.x62{left:103.200000pt;}
.xf{left:104.800000pt;}
.x5{left:107.199957pt;}
.xb{left:110.879956pt;}
.x5c{left:112.160000pt;}
.x8d{left:115.199954pt;}
.xc{left:116.319953pt;}
.x6e{left:134.880000pt;}
.x11{left:139.520000pt;}
.x63{left:151.200000pt;}
.x7{left:162.239935pt;}
.x9{left:168.639933pt;}
.x8f{left:181.599927pt;}
.x90{left:186.239926pt;}
.x6{left:187.680000pt;}
.x78{left:199.680000pt;}
.x64{left:202.720000pt;}
.x6f{left:203.680000pt;}
.x74{left:208.959916pt;}
.x65{left:210.560000pt;}
.x8{left:215.520000pt;}
.x12{left:218.880000pt;}
.x60{left:236.159906pt;}
.x15{left:238.240000pt;}
.x61{left:240.799904pt;}
.x5d{left:242.559903pt;}
.x6b{left:244.160000pt;}
.x10{left:249.120000pt;}
.x13{left:251.360000pt;}
.x4{left:259.520000pt;}
.x66{left:269.600000pt;}
.x70{left:273.760000pt;}
.x3{left:294.560000pt;}
.xd{left:299.360000pt;}
.x16{left:301.440000pt;}
.x14{left:302.400000pt;}
.xa{left:304.000000pt;}
.x17{left:304.960000pt;}
.x6d{left:309.280000pt;}
.x1b{left:310.879876pt;}
.x75{left:314.879874pt;}
.x24{left:316.319873pt;}
.x79{left:321.119872pt;}
.x67{left:331.200000pt;}
.x29{left:338.079865pt;}
.x68{left:354.240000pt;}
.x69{left:357.920000pt;}
.x39{left:363.199855pt;}
.x30{left:376.319849pt;}
.x3a{left:377.279849pt;}
.x71{left:385.760000pt;}
.x6c{left:392.160000pt;}
.x3c{left:393.919842pt;}
.x6a{left:397.600000pt;}
.x19{left:407.999837pt;}
.x1f{left:411.999835pt;}
.x37{left:412.959835pt;}
.x40{left:417.759833pt;}
.x31{left:418.720000pt;}
.x2f{left:423.040000pt;}
.x5f{left:424.959830pt;}
.x76{left:426.879829pt;}
.x36{left:428.479829pt;}
.x82{left:430.879828pt;}
.x2c{left:434.080000pt;}
.x7c{left:435.839826pt;}
.x8e{left:436.800491pt;}
.x25{left:446.399821pt;}
.x7a{left:448.480000pt;}
.x26{left:452.479819pt;}
.x27{left:456.960000pt;}
.x80{left:466.399813pt;}
.x81{left:473.119811pt;}
.x85{left:495.839802pt;}
.x32{left:497.119801pt;}
.x86{left:502.559799pt;}
.x8b{left:507.359797pt;}
.x8c{left:514.079794pt;}
.x33{left:515.520000pt;}
.x22{left:516.639793pt;}
.x7b{left:529.600000pt;}
.x72{left:539.680000pt;}
.x83{left:547.839781pt;}
.x84{left:554.559778pt;}
.x7d{left:565.919774pt;}
.x1c{left:571.359771pt;}
.x1d{left:572.960000pt;}
.x35{left:578.880000pt;}
.x89{left:580.799768pt;}
.x23{left:583.680000pt;}
.x8a{left:587.519765pt;}
.x41{left:604.320000pt;}
.x42{left:609.920000pt;}
.x87{left:611.039756pt;}
.x88{left:617.759753pt;}
.x56{left:620.959752pt;}
.x58{left:628.479749pt;}
.x46{left:641.119744pt;}
.x55{left:644.319742pt;}
.x4a{left:647.359741pt;}
.x77{left:651.039740pt;}
.x48{left:653.599739pt;}
.x73{left:657.920000pt;}
.x5a{left:659.519736pt;}
.x7e{left:674.719730pt;}
.x7f{left:681.439727pt;}
.x5b{left:698.879720pt;}
.x5e{left:712.800000pt;}
.x4d{left:716.479713pt;}
.x59{left:719.999712pt;}
.x44{left:741.439703pt;}
}




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