
    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_a12136fe927b000ed794896d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1edb455db340699eaa172521.woff')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_d2447c3cf8692986d1a2b04d.woff')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_62e5c0807f45b045c5d7d754.woff')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_52404484847577b05542c60f.woff')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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_07544e380f963b426bd77111.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_f686df657e45d1daebe93f66.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ce3c970fb1e09454e1d89a84.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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:ffe;src:url('chunks/assets/font_f7e3c9efc313543d0d914c40.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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:fff;src:url('chunks/assets/font_e7a3edc523c2a3fad7aeff0e.woff')format("woff");}.fff{font-family:fff;line-height:0.973145;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:ff10;src:url('chunks/assets/font_a73e7e0411b8b9ab3a30be19.woff')format("woff");}.ff10{font-family:ff10;line-height:0.916992;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:ff11;src:url('chunks/assets/font_ff67bf79cce88bbfcc8df1c7.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:ff12;src:url('chunks/assets/font_ff5eca30b7c8d8df4775ebdb.woff')format("woff");}.ff12{font-family:ff12;line-height:0.722656;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:ff13;src:url('chunks/assets/font_abc2a329fa6e30a00a3c736b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922363;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:ff14;src:url('chunks/assets/font_9db5b82c753569c7a754c81e.woff')format("woff");}.ff14{font-family:ff14;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{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:-23.759990px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021240px;}
.ls4{letter-spacing:0.073080px;}
.ls2{letter-spacing:0.305506px;}
.ls7{letter-spacing:0.308220px;}
.ls3{letter-spacing:0.340926px;}
.ls6{letter-spacing:0.726600px;}
.ls8{letter-spacing:1.061760px;}
.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;}
}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws4{word-spacing:-13.715995px;}
.ws5{word-spacing:-13.013995px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._36{margin-left:-2.726110px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._11{width:2.397824px;}
._12{width:3.959283px;}
._10{width:5.948320px;}
._14{width:6.953057px;}
._13{width:8.667787px;}
._2d{width:9.697485px;}
._1a{width:10.731312px;}
._19{width:11.804679px;}
._1d{width:14.202307px;}
._d{width:15.779992px;}
._18{width:17.312698px;}
._16{width:18.726868px;}
._15{width:19.930544px;}
._3c{width:20.931163px;}
._17{width:21.947659px;}
._1e{width:23.105979px;}
._f{width:25.058514px;}
._e{width:26.445786px;}
._26{width:27.580653px;}
._2a{width:28.598742px;}
._27{width:30.376562px;}
._1b{width:31.459470px;}
._28{width:32.534582px;}
._38{width:33.578637px;}
._2c{width:34.779723px;}
._20{width:36.010329px;}
._30{width:37.279856px;}
._39{width:38.879492px;}
._24{width:40.749259px;}
._3a{width:42.049868px;}
._2b{width:43.070715px;}
._31{width:44.238404px;}
._2e{width:45.687220px;}
._2f{width:46.828100px;}
._21{width:48.180049px;}
._25{width:49.872776px;}
._1c{width:51.684310px;}
._3d{width:53.781960px;}
._22{width:55.177812px;}
._23{width:56.350595px;}
._37{width:57.381227px;}
._32{width:58.420280px;}
._33{width:59.543627px;}
._35{width:60.893153px;}
._34{width:62.303841px;}
._1f{width:63.471595px;}
._29{width:65.522667px;}
._3b{width:68.217506px;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fs7{font-size:33.119987px;}
.fsb{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y46{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.ybc{bottom:3.058957px;}
.ybe{bottom:3.058963px;}
.yc1{bottom:3.058969px;}
.yc3{bottom:3.058975px;}
.yc5{bottom:3.058981px;}
.yc7{bottom:3.058988px;}
.yc9{bottom:3.058994px;}
.ycb{bottom:3.059000px;}
.ycd{bottom:3.059006px;}
.ycf{bottom:3.059012px;}
.yd1{bottom:3.059018px;}
.yd3{bottom:3.059024px;}
.yd5{bottom:3.059031px;}
.y158{bottom:3.059037px;}
.y15a{bottom:3.059043px;}
.yd9{bottom:3.059055px;}
.ydb{bottom:3.059061px;}
.yde{bottom:3.059067px;}
.ye0{bottom:3.059074px;}
.ye2{bottom:3.059080px;}
.ye4{bottom:3.059086px;}
.ye7{bottom:3.059092px;}
.ye9{bottom:3.059098px;}
.yeb{bottom:3.059104px;}
.yee{bottom:3.059110px;}
.yf0{bottom:3.059116px;}
.yf2{bottom:3.059123px;}
.yf4{bottom:3.059129px;}
.y21{bottom:3.059130px;}
.yf8{bottom:3.059135px;}
.yfa{bottom:3.059141px;}
.yfc{bottom:3.059147px;}
.yfe{bottom:3.059153px;}
.y101{bottom:3.059159px;}
.y103{bottom:3.059166px;}
.y105{bottom:3.059172px;}
.y107{bottom:3.059178px;}
.y10a{bottom:3.059184px;}
.y10c{bottom:3.059190px;}
.y10e{bottom:3.059196px;}
.y110{bottom:3.059202px;}
.y113{bottom:3.059209px;}
.y115{bottom:3.059215px;}
.y117{bottom:3.059221px;}
.y119{bottom:3.059227px;}
.ya8{bottom:3.059232px;}
.y11d{bottom:3.059239px;}
.y11f{bottom:3.059245px;}
.y121{bottom:3.059251px;}
.y124{bottom:3.059258px;}
.y126{bottom:3.059264px;}
.y128{bottom:3.059270px;}
.y12a{bottom:3.059276px;}
.y12d{bottom:3.059282px;}
.y12f{bottom:3.059288px;}
.y131{bottom:3.059294px;}
.yf{bottom:3.239038px;}
.y1c{bottom:3.599113px;}
.y1f{bottom:3.599116px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y18{bottom:4.859076px;}
.y41{bottom:6.478948px;}
.y95{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y137{bottom:113.699955px;}
.y3a{bottom:117.299953px;}
.y174{bottom:119.279952px;}
.yb5{bottom:120.359952px;}
.y75{bottom:121.259951px;}
.y92{bottom:121.619951px;}
.y3f{bottom:121.799951px;}
.yba{bottom:122.879951px;}
.y144{bottom:124.139950px;}
.y136{bottom:136.739945px;}
.y39{bottom:137.819945px;}
.y173{bottom:142.319943px;}
.y3e{bottom:142.499943px;}
.yb4{bottom:143.399943px;}
.y74{bottom:144.299942px;}
.y91{bottom:144.659942px;}
.yb9{bottom:145.919942px;}
.y143{bottom:147.179941px;}
.y38{bottom:158.519937px;}
.y135{bottom:159.599936px;}
.y3d{bottom:163.199935px;}
.y172{bottom:165.359934px;}
.yb3{bottom:166.439933px;}
.y73{bottom:167.339933px;}
.y90{bottom:167.699933px;}
.yb8{bottom:168.959932px;}
.y142{bottom:170.219932px;}
.y134{bottom:182.639927px;}
.y3c{bottom:183.899926px;}
.y37{bottom:185.699926px;}
.y171{bottom:188.399925px;}
.yb2{bottom:189.479924px;}
.y72{bottom:190.379924px;}
.y8f{bottom:190.559924px;}
.yb7{bottom:191.999923px;}
.y141{bottom:193.259923px;}
.y3b{bottom:204.599918px;}
.y133{bottom:205.679918px;}
.y36{bottom:208.739917px;}
.y170{bottom:211.439915px;}
.yb1{bottom:212.339915px;}
.y71{bottom:213.419915px;}
.y8e{bottom:213.599915px;}
.yb6{bottom:215.039914px;}
.y140{bottom:216.119914px;}
.y35{bottom:224.939910px;}
.y34{bottom:228.719909px;}
.y16f{bottom:234.299906px;}
.yb0{bottom:235.379906px;}
.y70{bottom:236.279905px;}
.y8d{bottom:236.639905px;}
.y13f{bottom:239.159904px;}
.y132{bottom:249.059900px;}
.y33{bottom:249.239900px;}
.y16e{bottom:257.339897px;}
.yaf{bottom:258.419897px;}
.y6f{bottom:259.319896px;}
.y8c{bottom:259.679896px;}
.y130{bottom:260.940600px;}
.y13e{bottom:262.199895px;}
.y32{bottom:272.279891px;}
.y12e{bottom:276.240600px;}
.y16d{bottom:280.379888px;}
.yae{bottom:281.459887px;}
.y6e{bottom:282.359887px;}
.y8b{bottom:282.719887px;}
.y13d{bottom:285.239886px;}
.y12c{bottom:291.720600px;}
.y12b{bottom:294.779882px;}
.y31{bottom:295.139882px;}
.y16c{bottom:303.419879px;}
.yad{bottom:304.499878px;}
.y6d{bottom:305.399878px;}
.y8a{bottom:305.759878px;}
.y129{bottom:307.020600px;}
.y13c{bottom:308.279877px;}
.y30{bottom:318.179873px;}
.y127{bottom:322.320600px;}
.y16b{bottom:326.459869px;}
.yac{bottom:327.539869px;}
.y6c{bottom:328.439869px;}
.y89{bottom:328.619869px;}
.y13b{bottom:331.319867px;}
.y125{bottom:337.620600px;}
.y2f{bottom:341.219864px;}
.y16a{bottom:349.499860px;}
.yab{bottom:350.399860px;}
.y6b{bottom:351.299859px;}
.y88{bottom:351.659859px;}
.y123{bottom:352.920600px;}
.y13a{bottom:354.179858px;}
.y122{bottom:355.979858px;}
.y2e{bottom:364.259854px;}
.y120{bottom:368.400600px;}
.y169{bottom:372.359851px;}
.yaa{bottom:373.439851px;}
.y6a{bottom:374.339850px;}
.y87{bottom:374.699850px;}
.y139{bottom:377.219849px;}
.y11e{bottom:383.700600px;}
.y2d{bottom:387.299845px;}
.y168{bottom:395.399842px;}
.ya9{bottom:396.479841px;}
.y69{bottom:397.379841px;}
.y86{bottom:397.739841px;}
.y138{bottom:398.999840px;}
.y11c{bottom:399.000600px;}
.y188{bottom:400.259840px;}
.y2c{bottom:410.339836px;}
.y11b{bottom:414.300600px;}
.ya7{bottom:416.460600px;}
.y11a{bottom:417.359833px;}
.y167{bottom:418.439833px;}
.y68{bottom:420.419832px;}
.y85{bottom:420.779832px;}
.y187{bottom:423.299831px;}
.y118{bottom:429.780600px;}
.y2b{bottom:433.199827px;}
.ya6{bottom:439.319824px;}
.y166{bottom:441.479823px;}
.y67{bottom:443.459823px;}
.y84{bottom:443.819822px;}
.y116{bottom:445.080600px;}
.y186{bottom:446.339821px;}
.y2a{bottom:456.239818px;}
.y114{bottom:460.380600px;}
.y165{bottom:464.519814px;}
.y66{bottom:466.499813px;}
.y83{bottom:466.679813px;}
.y185{bottom:469.379812px;}
.y112{bottom:475.680600px;}
.y111{bottom:478.739809px;}
.y29{bottom:479.279808px;}
.y164{bottom:487.559805px;}
.y65{bottom:489.359804px;}
.y82{bottom:489.719804px;}
.y10f{bottom:490.980600px;}
.y184{bottom:492.239803px;}
.y28{bottom:502.319799px;}
.y10d{bottom:506.460600px;}
.y163{bottom:507.360600px;}
.y64{bottom:512.399795px;}
.y81{bottom:512.759795px;}
.y183{bottom:515.279794px;}
.y10b{bottom:521.760600px;}
.y27{bottom:525.359790px;}
.y63{bottom:535.439786px;}
.y80{bottom:535.799786px;}
.y109{bottom:537.060600px;}
.y182{bottom:538.319785px;}
.y108{bottom:540.119784px;}
.y26{bottom:548.399781px;}
.y106{bottom:552.360600px;}
.y62{bottom:558.479777px;}
.y7f{bottom:558.839776px;}
.y181{bottom:561.359775px;}
.y104{bottom:567.660600px;}
.y25{bottom:571.259771px;}
.y61{bottom:581.519767px;}
.y7e{bottom:581.699767px;}
.y189{bottom:582.959767px;}
.y102{bottom:583.140600px;}
.y180{bottom:584.399766px;}
.y24{bottom:594.299762px;}
.y100{bottom:598.440600px;}
.yff{bottom:601.499759px;}
.y60{bottom:604.559758px;}
.y7d{bottom:604.739758px;}
.y17f{bottom:607.439757px;}
.yfd{bottom:613.740600px;}
.y23{bottom:617.339753px;}
.y5f{bottom:627.419749px;}
.y7c{bottom:627.779749px;}
.yfb{bottom:629.040600px;}
.y17e{bottom:630.299748px;}
.y22{bottom:641.279743px;}
.yf9{bottom:644.520600px;}
.yf6{bottom:647.579741px;}
.y5e{bottom:650.459740px;}
.y7b{bottom:650.819740px;}
.y17d{bottom:653.339739px;}
.yf7{bottom:659.820600px;}
.yf5{bottom:662.879735px;}
.y20{bottom:671.880600px;}
.y5d{bottom:673.499731px;}
.y7a{bottom:673.859730px;}
.yf3{bottom:675.120600px;}
.y17c{bottom:676.379729px;}
.yf1{bottom:690.420600px;}
.y198{bottom:695.279722px;}
.y5c{bottom:696.539721px;}
.y79{bottom:696.899721px;}
.y17b{bottom:699.419720px;}
.y1e{bottom:705.360600px;}
.yef{bottom:705.720600px;}
.y1d{bottom:708.959716px;}
.y162{bottom:714.359714px;}
.y1b{bottom:714.360600px;}
.y197{bottom:718.319713px;}
.y5b{bottom:719.579712px;}
.y78{bottom:719.759712px;}
.yed{bottom:721.200600px;}
.y17a{bottom:722.459711px;}
.yec{bottom:724.259710px;}
.yea{bottom:736.500600px;}
.y161{bottom:737.399705px;}
.y196{bottom:741.359703px;}
.y5a{bottom:742.619703px;}
.y77{bottom:742.799703px;}
.y179{bottom:745.319702px;}
.ye8{bottom:751.800600px;}
.y1a{bottom:754.139698px;}
.y160{bottom:760.439696px;}
.y176{bottom:765.479694px;}
.y58{bottom:765.659694px;}
.y76{bottom:765.839694px;}
.ye6{bottom:767.100600px;}
.y178{bottom:768.359693px;}
.y59{bottom:769.439692px;}
.ye5{bottom:770.159692px;}
.ye3{bottom:782.580600px;}
.y15f{bottom:783.479687px;}
.y19{bottom:784.739686px;}
.y175{bottom:785.999686px;}
.ya5{bottom:788.699685px;}
.y57{bottom:788.879684px;}
.y177{bottom:790.139684px;}
.ye1{bottom:797.880600px;}
.y17{bottom:804.540600px;}
.y15e{bottom:806.519677px;}
.y56{bottom:811.199676px;}
.ya4{bottom:811.739675px;}
.y55{bottom:811.919675px;}
.ydf{bottom:813.180600px;}
.y195{bottom:814.799674px;}
.y16{bottom:815.339674px;}
.y15{bottom:827.219669px;}
.ydd{bottom:828.480600px;}
.y15d{bottom:829.379668px;}
.ydc{bottom:831.539667px;}
.ya3{bottom:834.779666px;}
.y54{bottom:834.959666px;}
.y194{bottom:839.279664px;}
.yda{bottom:843.780600px;}
.y15c{bottom:852.419659px;}
.y13{bottom:854.759658px;}
.ya2{bottom:857.639657px;}
.y53{bottom:857.819657px;}
.y14{bottom:859.979656px;}
.yd8{bottom:859.980600px;}
.y193{bottom:863.759654px;}
.y15b{bottom:875.459650px;}
.y10{bottom:880.500600px;}
.ya1{bottom:880.679648px;}
.y52{bottom:880.859648px;}
.yd7{bottom:888.419645px;}
.y159{bottom:889.860600px;}
.y12{bottom:890.579644px;}
.ye{bottom:900.840600px;}
.ya0{bottom:903.719639px;}
.y51{bottom:903.899638px;}
.y157{bottom:905.160600px;}
.yd6{bottom:908.939636px;}
.y192{bottom:912.899635px;}
.y156{bottom:920.460600px;}
.yd4{bottom:920.640600px;}
.y155{bottom:923.519631px;}
.y9f{bottom:926.759629px;}
.y50{bottom:926.939629px;}
.yd{bottom:934.319626px;}
.y154{bottom:935.760600px;}
.yd2{bottom:935.940600px;}
.y191{bottom:937.559625px;}
.y9e{bottom:949.799620px;}
.y4f{bottom:949.979620px;}
.y153{bottom:951.240600px;}
.yd0{bottom:951.420600px;}
.y190{bottom:962.039615px;}
.y152{bottom:966.540600px;}
.yce{bottom:966.720600px;}
.y150{bottom:969.599612px;}
.y9d{bottom:972.839611px;}
.y4e{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y151{bottom:981.840600px;}
.ycc{bottom:982.020600px;}
.y14f{bottom:984.899606px;}
.y18f{bottom:986.519605px;}
.y9c{bottom:995.699602px;}
.y4d{bottom:995.879602px;}
.y14e{bottom:997.140600px;}
.yca{bottom:997.320600px;}
.yb{bottom:999.299600px;}
.y18e{bottom:1011.179596px;}
.y14d{bottom:1012.620600px;}
.yc8{bottom:1012.800600px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y9b{bottom:1018.739593px;}
.y4c{bottom:1018.919592px;}
.y14c{bottom:1027.920600px;}
.yc6{bottom:1028.100600px;}
.y18d{bottom:1035.659586px;}
.y9a{bottom:1041.779583px;}
.y4b{bottom:1041.959583px;}
.y14b{bottom:1043.220600px;}
.yc4{bottom:1043.400600px;}
.y14a{bottom:1046.279581px;}
.y45{bottom:1051.500600px;}
.y149{bottom:1058.520600px;}
.yc2{bottom:1058.700600px;}
.y18c{bottom:1060.139576px;}
.y99{bottom:1064.819574px;}
.y4a{bottom:1064.999574px;}
.y44{bottom:1066.979573px;}
.y148{bottom:1073.820600px;}
.yc0{bottom:1074.000600px;}
.y147{bottom:1076.879569px;}
.ybf{bottom:1077.059569px;}
.y18b{bottom:1084.799566px;}
.y43{bottom:1087.319565px;}
.y98{bottom:1087.859565px;}
.y49{bottom:1088.039565px;}
.y146{bottom:1089.300600px;}
.ybd{bottom:1089.480600px;}
.y145{bottom:1105.320600px;}
.ybb{bottom:1105.500600px;}
.y42{bottom:1107.659557px;}
.y18a{bottom:1109.279556px;}
.y97{bottom:1110.719556px;}
.y48{bottom:1110.899556px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y40{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y96{bottom:1133.759546px;}
.y47{bottom:1133.939546px;}
.y94{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y93{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h23{height:12.060000px;}
.hb{height:13.500000px;}
.h19{height:15.120000px;}
.h26{height:15.300000px;}
.h16{height:18.720000px;}
.h9{height:18.773430px;}
.h18{height:18.900000px;}
.hd{height:20.160000px;}
.h12{height:20.340000px;}
.h5{height:20.520000px;}
.h11{height:22.187804px;}
.h20{height:23.760000px;}
.h14{height:24.474365px;}
.h1{height:24.480000px;}
.h1c{height:25.913662px;}
.hf{height:25.951630px;}
.h1e{height:27.228505px;}
.h27{height:31.585065px;}
.hc{height:32.199245px;}
.h10{height:36.179986px;}
.h25{height:36.486196px;}
.h1a{height:40.842757px;}
.h1d{height:43.185920px;}
.h1b{height:45.199318px;}
.h15{height:46.868888px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h13{height:48.234356px;}
.h17{height:50.100449px;}
.h22{height:53.999978px;}
.h8{height:54.457009px;}
.h24{height:56.159978px;}
.h2{height:58.861031px;}
.h21{height:63.179975px;}
.ha{height:63.917904px;}
.h1f{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w4a{width:3.060000px;}
.w18{width:3.240000px;}
.w2{width:4.680000px;}
.w24{width:5.040000px;}
.w9f{width:5.220000px;}
.w23{width:5.760000px;}
.w1f{width:6.840000px;}
.w4{width:7.020000px;}
.w27{width:7.200000px;}
.w34{width:7.560000px;}
.w14{width:7.740000px;}
.w11{width:8.100000px;}
.w7{width:8.280000px;}
.w6{width:8.820000px;}
.wd{width:9.360000px;}
.w10{width:9.540000px;}
.w16{width:10.800000px;}
.w4c{width:11.520000px;}
.wf{width:12.960000px;}
.w29{width:13.320000px;}
.w3e{width:13.500000px;}
.w58{width:13.860000px;}
.w39{width:14.040000px;}
.w95{width:14.400000px;}
.w4f{width:14.760000px;}
.w3a{width:14.940000px;}
.w21{width:15.120000px;}
.w8e{width:15.300000px;}
.w3d{width:15.480000px;}
.w3c{width:15.660000px;}
.w2f{width:15.840000px;}
.w36{width:16.740000px;}
.w8d{width:17.640000px;}
.w6e{width:19.080000px;}
.w52{width:19.260000px;}
.w8c{width:20.700000px;}
.w42{width:24.300000px;}
.w32{width:24.480000px;}
.w5{width:24.840000px;}
.w7c{width:25.560000px;}
.w6c{width:25.740000px;}
.w80{width:25.920000px;}
.w59{width:26.280000px;}
.w37{width:26.640000px;}
.w26{width:26.820000px;}
.w87{width:27.000000px;}
.w78{width:27.540000px;}
.w48{width:27.900000px;}
.w93{width:28.620000px;}
.w6f{width:28.800000px;}
.w62{width:28.980000px;}
.w44{width:29.160000px;}
.w99{width:29.340000px;}
.w69{width:29.700000px;}
.w35{width:29.880000px;}
.w5d{width:30.420000px;}
.w57{width:31.320000px;}
.w94{width:32.220000px;}
.w5a{width:33.300000px;}
.w2a{width:34.740000px;}
.w4d{width:34.920000px;}
.w72{width:35.280000px;}
.w55{width:35.460000px;}
.w46{width:36.000000px;}
.w5f{width:36.360000px;}
.w56{width:36.540000px;}
.w30{width:36.720000px;}
.w22{width:36.900000px;}
.w50{width:37.080000px;}
.w3b{width:37.260000px;}
.w96{width:37.440000px;}
.w85{width:37.800000px;}
.w92{width:38.700000px;}
.w2e{width:39.780000px;}
.wa0{width:40.140000px;}
.w47{width:40.500000px;}
.w17{width:40.680000px;}
.w25{width:41.760000px;}
.w5e{width:42.120000px;}
.wa5{width:42.480000px;}
.w91{width:43.560000px;}
.w82{width:43.920000px;}
.wa3{width:45.540000px;}
.w31{width:47.340000px;}
.wb{width:47.520000px;}
.w28{width:48.600000px;}
.w5c{width:48.780000px;}
.w1a{width:50.040000px;}
.w71{width:50.580000px;}
.w7e{width:50.940000px;}
.w7a{width:52.020000px;}
.w1b{width:53.100000px;}
.w7b{width:55.440000px;}
.w43{width:55.980000px;}
.w76{width:57.060000px;}
.wa4{width:57.600000px;}
.w67{width:57.960000px;}
.w7f{width:59.040000px;}
.w86{width:59.580000px;}
.w61{width:60.840000px;}
.w90{width:61.020000px;}
.w89{width:62.100000px;}
.w2d{width:62.280000px;}
.w2c{width:62.640000px;}
.wa2{width:63.000000px;}
.w60{width:64.440000px;}
.w9c{width:64.620000px;}
.w88{width:64.800000px;}
.w1d{width:65.880000px;}
.w70{width:66.060000px;}
.w4b{width:67.140000px;}
.w6d{width:69.660000px;}
.w33{width:70.380000px;}
.w84{width:72.540000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.wa{width:78.120000px;}
.w1c{width:80.100000px;}
.w63{width:80.640000px;}
.w3f{width:80.820000px;}
.w12{width:81.360000px;}
.w9d{width:82.440000px;}
.w54{width:83.340000px;}
.w9b{width:86.580000px;}
.w74{width:88.020000px;}
.w19{width:91.800000px;}
.w20{width:95.760000px;}
.wa1{width:97.920000px;}
.w4e{width:106.380000px;}
.w6b{width:106.920000px;}
.w66{width:112.140000px;}
.w2b{width:114.300000px;}
.w8a{width:115.560000px;}
.w45{width:117.180000px;}
.w65{width:117.900000px;}
.w9a{width:123.120000px;}
.w1e{width:123.480000px;}
.w8b{width:126.900000px;}
.w79{width:127.440000px;}
.w81{width:129.060000px;}
.w68{width:129.420000px;}
.w41{width:132.660000px;}
.w75{width:135.720000px;}
.w51{width:154.620000px;}
.w73{width:156.600000px;}
.w77{width:158.580000px;}
.w8{width:167.220000px;}
.w40{width:169.020000px;}
.wa6{width:170.460000px;}
.w9e{width:176.580000px;}
.w9{width:176.760000px;}
.wc{width:178.200000px;}
.w8f{width:178.920000px;}
.w64{width:179.100000px;}
.w6a{width:186.120000px;}
.w38{width:199.800000px;}
.w83{width:204.840000px;}
.w53{width:209.340000px;}
.w5b{width:212.400000px;}
.w97{width:216.540000px;}
.w7d{width:223.020000px;}
.w98{width:226.080000px;}
.w49{width:229.500000px;}
.w13{width:354.780000px;}
.we{width:450.720000px;}
.w15{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:107.999957px;}
.x23{left:111.240000px;}
.xa{left:116.100000px;}
.xc{left:130.679908px;}
.x34{left:148.860000px;}
.xa0{left:150.660000px;}
.x35{left:152.100000px;}
.xa1{left:153.900000px;}
.x31{left:155.879938px;}
.x37{left:158.040000px;}
.x32{left:161.099936px;}
.x4f{left:170.640000px;}
.x26{left:188.460000px;}
.xd{left:200.339857px;}
.xe{left:204.839853px;}
.xb{left:206.999917px;}
.x20{left:227.159909px;}
.x21{left:232.379907px;}
.x92{left:235.080000px;}
.x36{left:243.900000px;}
.x2f{left:247.499901px;}
.x2a{left:249.120000px;}
.x30{left:252.719899px;}
.xf{left:259.740421px;}
.x7d{left:264.600000px;}
.x84{left:266.580000px;}
.x18{left:274.139890px;}
.x60{left:277.020000px;}
.x19{left:279.360000px;}
.x9c{left:284.760000px;}
.x77{left:287.100000px;}
.x9d{left:289.980000px;}
.x7a{left:294.120000px;}
.x57{left:307.620000px;}
.x6c{left:317.340000px;}
.xa2{left:324.360000px;}
.x66{left:337.500000px;}
.x38{left:339.480000px;}
.x5e{left:340.560000px;}
.x43{left:345.240000px;}
.x49{left:346.680000px;}
.x6e{left:347.760000px;}
.x44{left:350.280000px;}
.x4a{left:351.720000px;}
.x58{left:353.520000px;}
.x70{left:354.600000px;}
.x22{left:355.859858px;}
.x59{left:358.560000px;}
.x5b{left:360.180000px;}
.x2e{left:363.959854px;}
.x72{left:366.660000px;}
.x9{left:368.459853px;}
.x73{left:371.340000px;}
.x85{left:373.140000px;}
.x5a{left:374.400000px;}
.x5c{left:375.660000px;}
.x50{left:379.260000px;}
.x64{left:381.060000px;}
.x81{left:382.680000px;}
.x6f{left:384.120000px;}
.x51{left:386.820000px;}
.x71{left:389.160000px;}
.x7c{left:391.140000px;}
.x39{left:392.400000px;}
.x5f{left:393.480000px;}
.x62{left:396.540000px;}
.x79{left:398.520000px;}
.x4b{left:400.320000px;}
.x9f{left:403.920000px;}
.x75{left:405.000000px;}
.x67{left:407.700000px;}
.x54{left:409.860000px;}
.x74{left:413.460000px;}
.x5d{left:420.300000px;}
.x88{left:421.560000px;}
.x6d{left:423.900000px;}
.x89{left:425.340000px;}
.x8c{left:427.140000px;}
.x7e{left:428.580000px;}
.x2b{left:433.079827px;}
.x3e{left:435.240000px;}
.x7b{left:440.460000px;}
.x9e{left:444.240000px;}
.x69{left:446.940000px;}
.x87{left:449.640000px;}
.x8b{left:450.900000px;}
.x78{left:452.700000px;}
.x4e{left:453.780000px;}
.x1a{left:456.119818px;}
.x63{left:457.560000px;}
.x1b{left:461.340000px;}
.x29{left:462.600477px;}
.x8d{left:467.280000px;}
.x8a{left:469.620000px;}
.x76{left:470.880000px;}
.x61{left:473.220000px;}
.x80{left:476.280000px;}
.x10{left:493.920784px;}
.x6a{left:495.180000px;}
.x28{left:498.059801px;}
.x86{left:500.580000px;}
.x11{left:507.240775px;}
.x12{left:520.560767px;}
.x13{left:533.700759px;}
.x14{left:538.200756px;}
.x1c{left:539.460000px;}
.x27{left:543.240000px;}
.x1{left:549.000000px;}
.x2c{left:560.690926px;}
.x24{left:561.960000px;}
.x9a{left:572.400000px;}
.x3a{left:583.920000px;}
.x1d{left:586.979765px;}
.x2d{left:588.779764px;}
.x15{left:591.300737px;}
.x8e{left:606.780000px;}
.x16{left:608.940666px;}
.x3f{left:616.320000px;}
.x45{left:617.400000px;}
.x68{left:618.660000px;}
.x55{left:620.100000px;}
.x65{left:621.540000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x46{left:630.360000px;}
.x40{left:631.440000px;}
.x93{left:639.180000px;}
.x96{left:643.320000px;}
.x97{left:650.160000px;}
.x94{left:654.300000px;}
.x3b{left:664.020000px;}
.x17{left:666.359733px;}
.x8f{left:686.880000px;}
.x3c{left:699.300000px;}
.x4{left:705.060000px;}
.x90{left:708.300000px;}
.x41{left:713.700000px;}
.x4c{left:714.780000px;}
.x56{left:717.300000px;}
.x47{left:718.740000px;}
.x52{left:720.000000px;}
.x5{left:722.340000px;}
.x6b{left:723.420000px;}
.x98{left:726.480000px;}
.x82{left:728.820000px;}
.x83{left:737.100000px;}
.x33{left:742.679076px;}
.x53{left:744.480000px;}
.x48{left:745.560000px;}
.x6{left:747.180000px;}
.x4d{left:749.520000px;}
.x42{left:750.600000px;}
.x7f{left:751.680000px;}
.x9b{left:753.480000px;}
.x99{left:756.180000px;}
.x95{left:759.600000px;}
.x3d{left:765.180000px;}
.x1e{left:770.399692px;}
.x7{left:772.020000px;}
.x91{left:774.180000px;}
.x1f{left:775.620000px;}
.x25{left:780.300000px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018880pt;}
.ls4{letter-spacing:0.064960pt;}
.ls2{letter-spacing:0.271560pt;}
.ls7{letter-spacing:0.273973pt;}
.ls3{letter-spacing:0.303046pt;}
.ls6{letter-spacing:0.645866pt;}
.ls8{letter-spacing:0.943786pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws4{word-spacing:-12.191995pt;}
.ws5{word-spacing:-11.567995pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._36{margin-left:-2.423209pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._11{width:2.131399pt;}
._12{width:3.519362pt;}
._10{width:5.287396pt;}
._14{width:6.180495pt;}
._13{width:7.704700pt;}
._2d{width:8.619987pt;}
._1a{width:9.538944pt;}
._19{width:10.493048pt;}
._1d{width:12.624273pt;}
._d{width:14.026660pt;}
._18{width:15.389065pt;}
._16{width:16.646104pt;}
._15{width:17.716039pt;}
._3c{width:18.605478pt;}
._17{width:19.509030pt;}
._1e{width:20.538648pt;}
._f{width:22.274235pt;}
._e{width:23.507365pt;}
._26{width:24.516136pt;}
._2a{width:25.421104pt;}
._27{width:27.001388pt;}
._1b{width:27.963974pt;}
._28{width:28.919629pt;}
._38{width:29.847677pt;}
._2c{width:30.915309pt;}
._20{width:32.009181pt;}
._30{width:33.137650pt;}
._39{width:34.559548pt;}
._24{width:36.221563pt;}
._3a{width:37.377660pt;}
._2b{width:38.285080pt;}
._31{width:39.323026pt;}
._2e{width:40.610862pt;}
._2f{width:41.624978pt;}
._21{width:42.826710pt;}
._25{width:44.331356pt;}
._1c{width:45.941609pt;}
._3d{width:47.806187pt;}
._22{width:49.046944pt;}
._23{width:50.089418pt;}
._37{width:51.005535pt;}
._32{width:51.929138pt;}
._33{width:52.927669pt;}
._35{width:54.127247pt;}
._34{width:55.381192pt;}
._1f{width:56.419195pt;}
._29{width:58.242370pt;}
._3b{width:60.637783pt;}
.fs3{font-size:15.999994pt;}
.fs7{font-size:29.439988pt;}
.fsb{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y46{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:2.719073pt;}
.ybe{bottom:2.719078pt;}
.yc1{bottom:2.719084pt;}
.yc3{bottom:2.719089pt;}
.yc5{bottom:2.719095pt;}
.yc7{bottom:2.719100pt;}
.yc9{bottom:2.719105pt;}
.ycb{bottom:2.719111pt;}
.ycd{bottom:2.719116pt;}
.ycf{bottom:2.719122pt;}
.yd1{bottom:2.719127pt;}
.yd3{bottom:2.719133pt;}
.yd5{bottom:2.719138pt;}
.y158{bottom:2.719144pt;}
.y15a{bottom:2.719149pt;}
.yd9{bottom:2.719160pt;}
.ydb{bottom:2.719166pt;}
.yde{bottom:2.719171pt;}
.ye0{bottom:2.719176pt;}
.ye2{bottom:2.719182pt;}
.ye4{bottom:2.719187pt;}
.ye7{bottom:2.719193pt;}
.ye9{bottom:2.719198pt;}
.yeb{bottom:2.719204pt;}
.yee{bottom:2.719209pt;}
.yf0{bottom:2.719215pt;}
.yf2{bottom:2.719220pt;}
.yf4{bottom:2.719226pt;}
.y21{bottom:2.719227pt;}
.yf8{bottom:2.719231pt;}
.yfa{bottom:2.719236pt;}
.yfc{bottom:2.719242pt;}
.yfe{bottom:2.719247pt;}
.y101{bottom:2.719253pt;}
.y103{bottom:2.719258pt;}
.y105{bottom:2.719264pt;}
.y107{bottom:2.719269pt;}
.y10a{bottom:2.719275pt;}
.y10c{bottom:2.719280pt;}
.y10e{bottom:2.719286pt;}
.y110{bottom:2.719291pt;}
.y113{bottom:2.719296pt;}
.y115{bottom:2.719302pt;}
.y117{bottom:2.719307pt;}
.y119{bottom:2.719313pt;}
.ya8{bottom:2.719318pt;}
.y11d{bottom:2.719324pt;}
.y11f{bottom:2.719329pt;}
.y121{bottom:2.719335pt;}
.y124{bottom:2.719340pt;}
.y126{bottom:2.719346pt;}
.y128{bottom:2.719351pt;}
.y12a{bottom:2.719356pt;}
.y12d{bottom:2.719362pt;}
.y12f{bottom:2.719367pt;}
.y131{bottom:2.719373pt;}
.yf{bottom:2.879145pt;}
.y1c{bottom:3.199211pt;}
.y1f{bottom:3.199215pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y18{bottom:4.319179pt;}
.y41{bottom:5.759065pt;}
.y95{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y137{bottom:101.066626pt;}
.y3a{bottom:104.266625pt;}
.y174{bottom:106.026624pt;}
.yb5{bottom:106.986624pt;}
.y75{bottom:107.786624pt;}
.y92{bottom:108.106623pt;}
.y3f{bottom:108.266623pt;}
.yba{bottom:109.226623pt;}
.y144{bottom:110.346623pt;}
.y136{bottom:121.546618pt;}
.y39{bottom:122.506618pt;}
.y173{bottom:126.506616pt;}
.y3e{bottom:126.666616pt;}
.yb4{bottom:127.466616pt;}
.y74{bottom:128.266615pt;}
.y91{bottom:128.586615pt;}
.yb9{bottom:129.706615pt;}
.y143{bottom:130.826614pt;}
.y38{bottom:140.906610pt;}
.y135{bottom:141.866610pt;}
.y3d{bottom:145.066609pt;}
.y172{bottom:146.986608pt;}
.yb3{bottom:147.946607pt;}
.y73{bottom:148.746607pt;}
.y90{bottom:149.066607pt;}
.yb8{bottom:150.186607pt;}
.y142{bottom:151.306606pt;}
.y134{bottom:162.346602pt;}
.y3c{bottom:163.466601pt;}
.y37{bottom:165.066601pt;}
.y171{bottom:167.466600pt;}
.yb2{bottom:168.426599pt;}
.y72{bottom:169.226599pt;}
.y8f{bottom:169.386599pt;}
.yb7{bottom:170.666598pt;}
.y141{bottom:171.786598pt;}
.y3b{bottom:181.866594pt;}
.y133{bottom:182.826594pt;}
.y36{bottom:185.546592pt;}
.y170{bottom:187.946591pt;}
.yb1{bottom:188.746591pt;}
.y71{bottom:189.706591pt;}
.y8e{bottom:189.866591pt;}
.yb6{bottom:191.146590pt;}
.y140{bottom:192.106590pt;}
.y35{bottom:199.946587pt;}
.y34{bottom:203.306585pt;}
.y16f{bottom:208.266583pt;}
.yb0{bottom:209.226583pt;}
.y70{bottom:210.026583pt;}
.y8d{bottom:210.346583pt;}
.y13f{bottom:212.586582pt;}
.y132{bottom:221.386578pt;}
.y33{bottom:221.546578pt;}
.y16e{bottom:228.746575pt;}
.yaf{bottom:229.706575pt;}
.y6f{bottom:230.506574pt;}
.y8c{bottom:230.826574pt;}
.y130{bottom:231.947200pt;}
.y13e{bottom:233.066573pt;}
.y32{bottom:242.026570pt;}
.y12e{bottom:245.547200pt;}
.y16d{bottom:249.226567pt;}
.yae{bottom:250.186567pt;}
.y6e{bottom:250.986566pt;}
.y8b{bottom:251.306566pt;}
.y13d{bottom:253.546565pt;}
.y12c{bottom:259.307200pt;}
.y12b{bottom:262.026562pt;}
.y31{bottom:262.346562pt;}
.y16c{bottom:269.706559pt;}
.yad{bottom:270.666558pt;}
.y6d{bottom:271.466558pt;}
.y8a{bottom:271.786558pt;}
.y129{bottom:272.907200pt;}
.y13c{bottom:274.026557pt;}
.y30{bottom:282.826554pt;}
.y127{bottom:286.507200pt;}
.y16b{bottom:290.186551pt;}
.yac{bottom:291.146550pt;}
.y6c{bottom:291.946550pt;}
.y89{bottom:292.106550pt;}
.y13b{bottom:294.506549pt;}
.y125{bottom:300.107200pt;}
.y2f{bottom:303.306545pt;}
.y16a{bottom:310.666542pt;}
.yab{bottom:311.466542pt;}
.y6b{bottom:312.266542pt;}
.y88{bottom:312.586542pt;}
.y123{bottom:313.707200pt;}
.y13a{bottom:314.826541pt;}
.y122{bottom:316.426540pt;}
.y2e{bottom:323.786537pt;}
.y120{bottom:327.467200pt;}
.y169{bottom:330.986534pt;}
.yaa{bottom:331.946534pt;}
.y6a{bottom:332.746534pt;}
.y87{bottom:333.066533pt;}
.y139{bottom:335.306533pt;}
.y11e{bottom:341.067200pt;}
.y2d{bottom:344.266529pt;}
.y168{bottom:351.466526pt;}
.ya9{bottom:352.426526pt;}
.y69{bottom:353.226525pt;}
.y86{bottom:353.546525pt;}
.y138{bottom:354.666525pt;}
.y11c{bottom:354.667200pt;}
.y188{bottom:355.786524pt;}
.y2c{bottom:364.746521pt;}
.y11b{bottom:368.267200pt;}
.ya7{bottom:370.187200pt;}
.y11a{bottom:370.986518pt;}
.y167{bottom:371.946518pt;}
.y68{bottom:373.706517pt;}
.y85{bottom:374.026517pt;}
.y187{bottom:376.266516pt;}
.y118{bottom:382.027200pt;}
.y2b{bottom:385.066513pt;}
.ya6{bottom:390.506510pt;}
.y166{bottom:392.426510pt;}
.y67{bottom:394.186509pt;}
.y84{bottom:394.506509pt;}
.y116{bottom:395.627200pt;}
.y186{bottom:396.746508pt;}
.y2a{bottom:405.546504pt;}
.y114{bottom:409.227200pt;}
.y165{bottom:412.906502pt;}
.y66{bottom:414.666501pt;}
.y83{bottom:414.826501pt;}
.y185{bottom:417.226500pt;}
.y112{bottom:422.827200pt;}
.y111{bottom:425.546496pt;}
.y29{bottom:426.026496pt;}
.y164{bottom:433.386493pt;}
.y65{bottom:434.986493pt;}
.y82{bottom:435.306493pt;}
.y10f{bottom:436.427200pt;}
.y184{bottom:437.546492pt;}
.y28{bottom:446.506488pt;}
.y10d{bottom:450.187200pt;}
.y163{bottom:450.987200pt;}
.y64{bottom:455.466484pt;}
.y81{bottom:455.786484pt;}
.y183{bottom:458.026483pt;}
.y10b{bottom:463.787200pt;}
.y27{bottom:466.986480pt;}
.y63{bottom:475.946476pt;}
.y80{bottom:476.266476pt;}
.y109{bottom:477.387200pt;}
.y182{bottom:478.506475pt;}
.y108{bottom:480.106475pt;}
.y26{bottom:487.466472pt;}
.y106{bottom:490.987200pt;}
.y62{bottom:496.426468pt;}
.y7f{bottom:496.746468pt;}
.y181{bottom:498.986467pt;}
.y104{bottom:504.587200pt;}
.y25{bottom:507.786464pt;}
.y61{bottom:516.906460pt;}
.y7e{bottom:517.066460pt;}
.y189{bottom:518.186459pt;}
.y102{bottom:518.347200pt;}
.y180{bottom:519.466459pt;}
.y24{bottom:528.266455pt;}
.y100{bottom:531.947200pt;}
.yff{bottom:534.666453pt;}
.y60{bottom:537.386452pt;}
.y7d{bottom:537.546452pt;}
.y17f{bottom:539.946451pt;}
.yfd{bottom:545.547200pt;}
.y23{bottom:548.746447pt;}
.y5f{bottom:557.706444pt;}
.y7c{bottom:558.026443pt;}
.yfb{bottom:559.147200pt;}
.y17e{bottom:560.266443pt;}
.y22{bottom:570.026439pt;}
.yf9{bottom:572.907200pt;}
.yf6{bottom:575.626436pt;}
.y5e{bottom:578.186435pt;}
.y7b{bottom:578.506435pt;}
.y17d{bottom:580.746434pt;}
.yf7{bottom:586.507200pt;}
.yf5{bottom:589.226431pt;}
.y20{bottom:597.227200pt;}
.y5d{bottom:598.666427pt;}
.y7a{bottom:598.986427pt;}
.yf3{bottom:600.107200pt;}
.y17c{bottom:601.226426pt;}
.yf1{bottom:613.707200pt;}
.y198{bottom:618.026419pt;}
.y5c{bottom:619.146419pt;}
.y79{bottom:619.466419pt;}
.y17b{bottom:621.706418pt;}
.y1e{bottom:626.987200pt;}
.yef{bottom:627.307200pt;}
.y1d{bottom:630.186415pt;}
.y162{bottom:634.986413pt;}
.y1b{bottom:634.987200pt;}
.y197{bottom:638.506411pt;}
.y5b{bottom:639.626411pt;}
.y78{bottom:639.786411pt;}
.yed{bottom:641.067200pt;}
.y17a{bottom:642.186410pt;}
.yec{bottom:643.786409pt;}
.yea{bottom:654.667200pt;}
.y161{bottom:655.466404pt;}
.y196{bottom:658.986403pt;}
.y5a{bottom:660.106403pt;}
.y77{bottom:660.266403pt;}
.y179{bottom:662.506402pt;}
.ye8{bottom:668.267200pt;}
.y1a{bottom:670.346399pt;}
.y160{bottom:675.946396pt;}
.y176{bottom:680.426394pt;}
.y58{bottom:680.586394pt;}
.y76{bottom:680.746394pt;}
.ye6{bottom:681.867200pt;}
.y178{bottom:682.986393pt;}
.y59{bottom:683.946393pt;}
.ye5{bottom:684.586393pt;}
.ye3{bottom:695.627200pt;}
.y15f{bottom:696.426388pt;}
.y19{bottom:697.546388pt;}
.y175{bottom:698.666387pt;}
.ya5{bottom:701.066386pt;}
.y57{bottom:701.226386pt;}
.y177{bottom:702.346386pt;}
.ye1{bottom:709.227200pt;}
.y17{bottom:715.147200pt;}
.y15e{bottom:716.906380pt;}
.y56{bottom:721.066378pt;}
.ya4{bottom:721.546378pt;}
.y55{bottom:721.706378pt;}
.ydf{bottom:722.827200pt;}
.y195{bottom:724.266377pt;}
.y16{bottom:724.746377pt;}
.y15{bottom:735.306373pt;}
.ydd{bottom:736.427200pt;}
.y15d{bottom:737.226372pt;}
.ydc{bottom:739.146371pt;}
.ya3{bottom:742.026370pt;}
.y54{bottom:742.186370pt;}
.y194{bottom:746.026368pt;}
.yda{bottom:750.027200pt;}
.y15c{bottom:757.706364pt;}
.y13{bottom:759.786363pt;}
.ya2{bottom:762.346362pt;}
.y53{bottom:762.506362pt;}
.y14{bottom:764.426361pt;}
.yd8{bottom:764.427200pt;}
.y193{bottom:767.786360pt;}
.y15b{bottom:778.186355pt;}
.y10{bottom:782.667200pt;}
.ya1{bottom:782.826354pt;}
.y52{bottom:782.986353pt;}
.yd7{bottom:789.706351pt;}
.y159{bottom:790.987200pt;}
.y12{bottom:791.626350pt;}
.ye{bottom:800.747200pt;}
.ya0{bottom:803.306345pt;}
.y51{bottom:803.466345pt;}
.y157{bottom:804.587200pt;}
.yd6{bottom:807.946343pt;}
.y192{bottom:811.466342pt;}
.y156{bottom:818.187200pt;}
.yd4{bottom:818.347200pt;}
.y155{bottom:820.906338pt;}
.y9f{bottom:823.786337pt;}
.y50{bottom:823.946337pt;}
.yd{bottom:830.506334pt;}
.y154{bottom:831.787200pt;}
.yd2{bottom:831.947200pt;}
.y191{bottom:833.386333pt;}
.y9e{bottom:844.266329pt;}
.y4f{bottom:844.426329pt;}
.y153{bottom:845.547200pt;}
.yd0{bottom:845.707200pt;}
.y190{bottom:855.146325pt;}
.y152{bottom:859.147200pt;}
.yce{bottom:859.307200pt;}
.y150{bottom:861.866322pt;}
.y9d{bottom:864.746321pt;}
.y4e{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y151{bottom:872.747200pt;}
.ycc{bottom:872.907200pt;}
.y14f{bottom:875.466316pt;}
.y18f{bottom:876.906316pt;}
.y9c{bottom:885.066313pt;}
.y4d{bottom:885.226313pt;}
.y14e{bottom:886.347200pt;}
.yca{bottom:886.507200pt;}
.yb{bottom:888.266311pt;}
.y18e{bottom:898.826307pt;}
.y14d{bottom:900.107200pt;}
.yc8{bottom:900.267200pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y9b{bottom:905.546304pt;}
.y4c{bottom:905.706304pt;}
.y14c{bottom:913.707200pt;}
.yc6{bottom:913.867200pt;}
.y18d{bottom:920.586298pt;}
.y9a{bottom:926.026296pt;}
.y4b{bottom:926.186296pt;}
.y14b{bottom:927.307200pt;}
.yc4{bottom:927.467200pt;}
.y14a{bottom:930.026295pt;}
.y45{bottom:934.667200pt;}
.y149{bottom:940.907200pt;}
.yc2{bottom:941.067200pt;}
.y18c{bottom:942.346290pt;}
.y99{bottom:946.506288pt;}
.y4a{bottom:946.666288pt;}
.y44{bottom:948.426287pt;}
.y148{bottom:954.507200pt;}
.yc0{bottom:954.667200pt;}
.y147{bottom:957.226284pt;}
.ybf{bottom:957.386284pt;}
.y18b{bottom:964.266281pt;}
.y43{bottom:966.506280pt;}
.y98{bottom:966.986280pt;}
.y49{bottom:967.146280pt;}
.y146{bottom:968.267200pt;}
.ybd{bottom:968.427200pt;}
.y145{bottom:982.507200pt;}
.ybb{bottom:982.667200pt;}
.y42{bottom:984.586273pt;}
.y18a{bottom:986.026272pt;}
.y97{bottom:987.306272pt;}
.y48{bottom:987.466272pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y40{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y96{bottom:1007.786264pt;}
.y47{bottom:1007.946263pt;}
.y94{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y93{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h23{height:10.720000pt;}
.hb{height:12.000000pt;}
.h19{height:13.440000pt;}
.h26{height:13.600000pt;}
.h16{height:16.640000pt;}
.h9{height:16.687493pt;}
.h18{height:16.800000pt;}
.hd{height:17.920000pt;}
.h12{height:18.080000pt;}
.h5{height:18.240000pt;}
.h11{height:19.722492pt;}
.h20{height:21.120000pt;}
.h14{height:21.754991pt;}
.h1{height:21.760000pt;}
.h1c{height:23.034366pt;}
.hf{height:23.068116pt;}
.h1e{height:24.203115pt;}
.h27{height:28.075614pt;}
.hc{height:28.621551pt;}
.h10{height:32.159987pt;}
.h25{height:32.432175pt;}
.h1a{height:36.304673pt;}
.h1d{height:38.387485pt;}
.h1b{height:40.177171pt;}
.h15{height:41.661233pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h13{height:42.874983pt;}
.h17{height:44.533732pt;}
.h22{height:47.999981pt;}
.h8{height:48.406231pt;}
.h24{height:49.919980pt;}
.h2{height:52.320917pt;}
.h21{height:56.159978pt;}
.ha{height:56.815915pt;}
.h1f{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w4a{width:2.720000pt;}
.w18{width:2.880000pt;}
.w2{width:4.160000pt;}
.w24{width:4.480000pt;}
.w9f{width:4.640000pt;}
.w23{width:5.120000pt;}
.w1f{width:6.080000pt;}
.w4{width:6.240000pt;}
.w27{width:6.400000pt;}
.w34{width:6.720000pt;}
.w14{width:6.880000pt;}
.w11{width:7.200000pt;}
.w7{width:7.360000pt;}
.w6{width:7.840000pt;}
.wd{width:8.320000pt;}
.w10{width:8.480000pt;}
.w16{width:9.600000pt;}
.w4c{width:10.240000pt;}
.wf{width:11.520000pt;}
.w29{width:11.840000pt;}
.w3e{width:12.000000pt;}
.w58{width:12.320000pt;}
.w39{width:12.480000pt;}
.w95{width:12.800000pt;}
.w4f{width:13.120000pt;}
.w3a{width:13.280000pt;}
.w21{width:13.440000pt;}
.w8e{width:13.600000pt;}
.w3d{width:13.760000pt;}
.w3c{width:13.920000pt;}
.w2f{width:14.080000pt;}
.w36{width:14.880000pt;}
.w8d{width:15.680000pt;}
.w6e{width:16.960000pt;}
.w52{width:17.120000pt;}
.w8c{width:18.400000pt;}
.w42{width:21.600000pt;}
.w32{width:21.760000pt;}
.w5{width:22.080000pt;}
.w7c{width:22.720000pt;}
.w6c{width:22.880000pt;}
.w80{width:23.040000pt;}
.w59{width:23.360000pt;}
.w37{width:23.680000pt;}
.w26{width:23.840000pt;}
.w87{width:24.000000pt;}
.w78{width:24.480000pt;}
.w48{width:24.800000pt;}
.w93{width:25.440000pt;}
.w6f{width:25.600000pt;}
.w62{width:25.760000pt;}
.w44{width:25.920000pt;}
.w99{width:26.080000pt;}
.w69{width:26.400000pt;}
.w35{width:26.560000pt;}
.w5d{width:27.040000pt;}
.w57{width:27.840000pt;}
.w94{width:28.640000pt;}
.w5a{width:29.600000pt;}
.w2a{width:30.880000pt;}
.w4d{width:31.040000pt;}
.w72{width:31.360000pt;}
.w55{width:31.520000pt;}
.w46{width:32.000000pt;}
.w5f{width:32.320000pt;}
.w56{width:32.480000pt;}
.w30{width:32.640000pt;}
.w22{width:32.800000pt;}
.w50{width:32.960000pt;}
.w3b{width:33.120000pt;}
.w96{width:33.280000pt;}
.w85{width:33.600000pt;}
.w92{width:34.400000pt;}
.w2e{width:35.360000pt;}
.wa0{width:35.680000pt;}
.w47{width:36.000000pt;}
.w17{width:36.160000pt;}
.w25{width:37.120000pt;}
.w5e{width:37.440000pt;}
.wa5{width:37.760000pt;}
.w91{width:38.720000pt;}
.w82{width:39.040000pt;}
.wa3{width:40.480000pt;}
.w31{width:42.080000pt;}
.wb{width:42.240000pt;}
.w28{width:43.200000pt;}
.w5c{width:43.360000pt;}
.w1a{width:44.480000pt;}
.w71{width:44.960000pt;}
.w7e{width:45.280000pt;}
.w7a{width:46.240000pt;}
.w1b{width:47.200000pt;}
.w7b{width:49.280000pt;}
.w43{width:49.760000pt;}
.w76{width:50.720000pt;}
.wa4{width:51.200000pt;}
.w67{width:51.520000pt;}
.w7f{width:52.480000pt;}
.w86{width:52.960000pt;}
.w61{width:54.080000pt;}
.w90{width:54.240000pt;}
.w89{width:55.200000pt;}
.w2d{width:55.360000pt;}
.w2c{width:55.680000pt;}
.wa2{width:56.000000pt;}
.w60{width:57.280000pt;}
.w9c{width:57.440000pt;}
.w88{width:57.600000pt;}
.w1d{width:58.560000pt;}
.w70{width:58.720000pt;}
.w4b{width:59.680000pt;}
.w6d{width:61.920000pt;}
.w33{width:62.560000pt;}
.w84{width:64.480000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.wa{width:69.440000pt;}
.w1c{width:71.200000pt;}
.w63{width:71.680000pt;}
.w3f{width:71.840000pt;}
.w12{width:72.320000pt;}
.w9d{width:73.280000pt;}
.w54{width:74.080000pt;}
.w9b{width:76.960000pt;}
.w74{width:78.240000pt;}
.w19{width:81.600000pt;}
.w20{width:85.120000pt;}
.wa1{width:87.040000pt;}
.w4e{width:94.560000pt;}
.w6b{width:95.040000pt;}
.w66{width:99.680000pt;}
.w2b{width:101.600000pt;}
.w8a{width:102.720000pt;}
.w45{width:104.160000pt;}
.w65{width:104.800000pt;}
.w9a{width:109.440000pt;}
.w1e{width:109.760000pt;}
.w8b{width:112.800000pt;}
.w79{width:113.280000pt;}
.w81{width:114.720000pt;}
.w68{width:115.040000pt;}
.w41{width:117.920000pt;}
.w75{width:120.640000pt;}
.w51{width:137.440000pt;}
.w73{width:139.200000pt;}
.w77{width:140.960000pt;}
.w8{width:148.640000pt;}
.w40{width:150.240000pt;}
.wa6{width:151.520000pt;}
.w9e{width:156.960000pt;}
.w9{width:157.120000pt;}
.wc{width:158.400000pt;}
.w8f{width:159.040000pt;}
.w64{width:159.200000pt;}
.w6a{width:165.440000pt;}
.w38{width:177.600000pt;}
.w83{width:182.080000pt;}
.w53{width:186.080000pt;}
.w5b{width:188.800000pt;}
.w97{width:192.480000pt;}
.w7d{width:198.240000pt;}
.w98{width:200.960000pt;}
.w49{width:204.000000pt;}
.w13{width:315.360000pt;}
.we{width:400.640000pt;}
.w15{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:95.999962pt;}
.x23{left:98.880000pt;}
.xa{left:103.200000pt;}
.xc{left:116.159918pt;}
.x34{left:132.320000pt;}
.xa0{left:133.920000pt;}
.x35{left:135.200000pt;}
.xa1{left:136.800000pt;}
.x31{left:138.559945pt;}
.x37{left:140.480000pt;}
.x32{left:143.199943pt;}
.x4f{left:151.680000pt;}
.x26{left:167.520000pt;}
.xd{left:178.079873pt;}
.xe{left:182.079870pt;}
.xb{left:183.999926pt;}
.x20{left:201.919919pt;}
.x21{left:206.559917pt;}
.x92{left:208.960000pt;}
.x36{left:216.800000pt;}
.x2f{left:219.999912pt;}
.x2a{left:221.440000pt;}
.x30{left:224.639910pt;}
.xf{left:230.880374pt;}
.x7d{left:235.200000pt;}
.x84{left:236.960000pt;}
.x18{left:243.679903pt;}
.x60{left:246.240000pt;}
.x19{left:248.320000pt;}
.x9c{left:253.120000pt;}
.x77{left:255.200000pt;}
.x9d{left:257.760000pt;}
.x7a{left:261.440000pt;}
.x57{left:273.440000pt;}
.x6c{left:282.080000pt;}
.xa2{left:288.320000pt;}
.x66{left:300.000000pt;}
.x38{left:301.760000pt;}
.x5e{left:302.720000pt;}
.x43{left:306.880000pt;}
.x49{left:308.160000pt;}
.x6e{left:309.120000pt;}
.x44{left:311.360000pt;}
.x4a{left:312.640000pt;}
.x58{left:314.240000pt;}
.x70{left:315.200000pt;}
.x22{left:316.319873pt;}
.x59{left:318.720000pt;}
.x5b{left:320.160000pt;}
.x2e{left:323.519871pt;}
.x72{left:325.920000pt;}
.x9{left:327.519869pt;}
.x73{left:330.080000pt;}
.x85{left:331.680000pt;}
.x5a{left:332.800000pt;}
.x5c{left:333.920000pt;}
.x50{left:337.120000pt;}
.x64{left:338.720000pt;}
.x81{left:340.160000pt;}
.x6f{left:341.440000pt;}
.x51{left:343.840000pt;}
.x71{left:345.920000pt;}
.x7c{left:347.680000pt;}
.x39{left:348.800000pt;}
.x5f{left:349.760000pt;}
.x62{left:352.480000pt;}
.x79{left:354.240000pt;}
.x4b{left:355.840000pt;}
.x9f{left:359.040000pt;}
.x75{left:360.000000pt;}
.x67{left:362.400000pt;}
.x54{left:364.320000pt;}
.x74{left:367.520000pt;}
.x5d{left:373.600000pt;}
.x88{left:374.720000pt;}
.x6d{left:376.800000pt;}
.x89{left:378.080000pt;}
.x8c{left:379.680000pt;}
.x7e{left:380.960000pt;}
.x2b{left:384.959846pt;}
.x3e{left:386.880000pt;}
.x7b{left:391.520000pt;}
.x9e{left:394.880000pt;}
.x69{left:397.280000pt;}
.x87{left:399.680000pt;}
.x8b{left:400.800000pt;}
.x78{left:402.400000pt;}
.x4e{left:403.360000pt;}
.x1a{left:405.439838pt;}
.x63{left:406.720000pt;}
.x1b{left:410.080000pt;}
.x29{left:411.200424pt;}
.x8d{left:415.360000pt;}
.x8a{left:417.440000pt;}
.x76{left:418.560000pt;}
.x61{left:420.640000pt;}
.x80{left:423.360000pt;}
.x10{left:439.040697pt;}
.x6a{left:440.160000pt;}
.x28{left:442.719823pt;}
.x86{left:444.960000pt;}
.x11{left:450.880689pt;}
.x12{left:462.720681pt;}
.x13{left:474.400675pt;}
.x14{left:478.400672pt;}
.x1c{left:479.520000pt;}
.x27{left:482.880000pt;}
.x1{left:488.000000pt;}
.x2c{left:498.391934pt;}
.x24{left:499.520000pt;}
.x9a{left:508.800000pt;}
.x3a{left:519.040000pt;}
.x1d{left:521.759791pt;}
.x2d{left:523.359791pt;}
.x15{left:525.600655pt;}
.x8e{left:539.360000pt;}
.x16{left:541.280592pt;}
.x3f{left:547.840000pt;}
.x45{left:548.800000pt;}
.x68{left:549.920000pt;}
.x55{left:551.200000pt;}
.x65{left:552.480000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x46{left:560.320000pt;}
.x40{left:561.280000pt;}
.x93{left:568.160000pt;}
.x96{left:571.840000pt;}
.x97{left:577.920000pt;}
.x94{left:581.600000pt;}
.x3b{left:590.240000pt;}
.x17{left:592.319763pt;}
.x8f{left:610.560000pt;}
.x3c{left:621.600000pt;}
.x4{left:626.720000pt;}
.x90{left:629.600000pt;}
.x41{left:634.400000pt;}
.x4c{left:635.360000pt;}
.x56{left:637.600000pt;}
.x47{left:638.880000pt;}
.x52{left:640.000000pt;}
.x5{left:642.080000pt;}
.x6b{left:643.040000pt;}
.x98{left:645.760000pt;}
.x82{left:647.840000pt;}
.x83{left:655.200000pt;}
.x33{left:660.159179pt;}
.x53{left:661.760000pt;}
.x48{left:662.720000pt;}
.x6{left:664.160000pt;}
.x4d{left:666.240000pt;}
.x42{left:667.200000pt;}
.x7f{left:668.160000pt;}
.x9b{left:669.760000pt;}
.x99{left:672.160000pt;}
.x95{left:675.200000pt;}
.x3d{left:680.160000pt;}
.x1e{left:684.799726pt;}
.x7{left:686.240000pt;}
.x91{left:688.160000pt;}
.x1f{left:689.440000pt;}
.x25{left:693.600000pt;}
}




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