
    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_d4c998997dc6d69f86dc962e.woff')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_024fec35861d14cb5a961dd4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_201af62571fe0d5bf6817ee8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_60f33397ca51e682dfc54f1f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_3fef814be14744f522ac8b56.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_14e3299a64b5cd25d9c31c68.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_46b146eb67a4e80be14f396d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e649e2348c5459783362ecf5.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_37c5cb047c1118b65439e0c7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_7ad9201741464f720ef37665.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_39bd51bffc53e3b4711ceb55.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0392d0b39b4efbd3302b18b9.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2851c80021661cf25b91b1d3.woff')format("woff");}.ff11{font-family:ff11;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.236424,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080857,0.236563,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m8{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);}
.m9{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);}
.m0{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);}
.m1{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;}
.v2{vertical-align:2.879999px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls4{letter-spacing:0.021238px;}
.ls2{letter-spacing:0.073080px;}
.ls6{letter-spacing:0.109440px;}
.ls5{letter-spacing:0.254220px;}
.ls1{letter-spacing:0.340926px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws3{word-spacing:-19.151992px;}
.ws7{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.179034px;}
.ws8{word-spacing:-13.715995px;}
.ws6{word-spacing:-13.013995px;}
.ws2{word-spacing:-10.342076px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._3b{margin-left:-2.260145px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._11{width:2.493130px;}
._17{width:4.325088px;}
._15{width:6.049015px;}
._16{width:7.521960px;}
._12{width:8.632333px;}
._10{width:10.206524px;}
._18{width:11.755272px;}
._e{width:14.454213px;}
._1b{width:15.798186px;}
._19{width:16.975001px;}
._1a{width:18.021384px;}
._31{width:19.119102px;}
._23{width:20.380005px;}
._1f{width:22.366161px;}
._13{width:23.448355px;}
._14{width:24.568242px;}
._2b{width:25.821276px;}
._20{width:26.988606px;}
._24{width:28.298296px;}
._27{width:29.598693px;}
._30{width:31.017101px;}
._29{width:33.014576px;}
._28{width:35.054856px;}
._2d{width:36.303824px;}
._2e{width:37.599836px;}
._33{width:38.965349px;}
._25{width:40.103092px;}
._34{width:41.264639px;}
._36{width:43.232388px;}
._2f{width:44.992826px;}
._1c{width:46.101994px;}
._2a{width:47.195278px;}
._32{width:48.605767px;}
._26{width:50.170495px;}
._2c{width:51.841220px;}
._37{width:52.868209px;}
._3c{width:54.711321px;}
._3a{width:56.132450px;}
._3d{width:57.894367px;}
._d{width:59.436819px;}
._c{width:60.536947px;}
._35{width:61.670602px;}
._1d{width:62.858301px;}
._1e{width:63.941424px;}
._21{width:65.001805px;}
._22{width:66.409210px;}
._38{width:68.482505px;}
._39{width:70.034139px;}
._3e{width:73.713672px;}
._3f{width:75.089684px;}
._40{width:98.102784px;}
._f{width:275.489704px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs7{font-size:33.119987px;}
.fs6{font-size:38.879984px;}
.fse{font-size:41.759983px;}
.fsf{font-size:45.359982px;}
.fs5{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsd{font-size:74.879970px;}
.fs8{font-size:76.089538px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y48{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.ya1{bottom:2.879175px;}
.yab{bottom:2.879206px;}
.yc0{bottom:3.058962px;}
.yc3{bottom:3.058975px;}
.yc5{bottom:3.058982px;}
.yc7{bottom:3.058989px;}
.yc9{bottom:3.058995px;}
.ycb{bottom:3.059002px;}
.ycd{bottom:3.059008px;}
.ycf{bottom:3.059015px;}
.yd1{bottom:3.059021px;}
.yd3{bottom:3.059028px;}
.yd5{bottom:3.059035px;}
.y79{bottom:3.059042px;}
.yd8{bottom:3.059048px;}
.y7b{bottom:3.059049px;}
.y7d{bottom:3.059055px;}
.y7f{bottom:3.059062px;}
.y81{bottom:3.059068px;}
.y83{bottom:3.059074px;}
.y85{bottom:3.059081px;}
.y87{bottom:3.059087px;}
.y10e{bottom:3.059092px;}
.y89{bottom:3.059093px;}
.y8b{bottom:3.059099px;}
.ye1{bottom:3.059101px;}
.y8d{bottom:3.059106px;}
.ye3{bottom:3.059107px;}
.y147{bottom:3.059109px;}
.y22{bottom:3.059112px;}
.y90{bottom:3.059118px;}
.y14a{bottom:3.059123px;}
.y92{bottom:3.059125px;}
.y14c{bottom:3.059129px;}
.y94{bottom:3.059131px;}
.y14e{bottom:3.059136px;}
.y96{bottom:3.059137px;}
.y150{bottom:3.059142px;}
.y98{bottom:3.059143px;}
.y9a{bottom:3.059150px;}
.y2a{bottom:3.059156px;}
.y9d{bottom:3.059162px;}
.y132{bottom:3.059164px;}
.y9f{bottom:3.059169px;}
.ya3{bottom:3.059181px;}
.ya5{bottom:3.059187px;}
.ya7{bottom:3.059194px;}
.ya9{bottom:3.059200px;}
.yad{bottom:3.059213px;}
.yaf{bottom:3.059219px;}
.y15{bottom:3.239032px;}
.y27{bottom:3.419145px;}
.y43{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y7{bottom:4.140028px;}
.y24{bottom:4.319112px;}
.y4{bottom:4.320028px;}
.y17{bottom:4.859040px;}
.y1c{bottom:4.859058px;}
.y103{bottom:58.440277px;}
.y8{bottom:58.620277px;}
.y102{bottom:74.640240px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y101{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y100{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.yfe{bottom:116.579953px;}
.ybe{bottom:118.559953px;}
.y167{bottom:129.719948px;}
.y75{bottom:130.619948px;}
.y40{bottom:131.339947px;}
.y12a{bottom:131.879947px;}
.y145{bottom:133.859946px;}
.yfd{bottom:139.619944px;}
.ybd{bottom:141.599943px;}
.y166{bottom:152.759939px;}
.y74{bottom:153.479939px;}
.y3f{bottom:154.199938px;}
.y129{bottom:154.919938px;}
.y144{bottom:156.899937px;}
.yfc{bottom:162.659935px;}
.ybc{bottom:164.639934px;}
.y165{bottom:175.619930px;}
.y73{bottom:176.519929px;}
.y3e{bottom:177.239929px;}
.y128{bottom:177.959929px;}
.y143{bottom:179.939928px;}
.yfb{bottom:185.699926px;}
.ybb{bottom:187.679925px;}
.y164{bottom:198.659921px;}
.y72{bottom:199.559920px;}
.y3d{bottom:200.279920px;}
.y127{bottom:200.999920px;}
.yfa{bottom:208.739917px;}
.yba{bottom:210.719916px;}
.y163{bottom:221.699911px;}
.y142{bottom:222.059911px;}
.y71{bottom:222.599911px;}
.y3c{bottom:223.319911px;}
.y126{bottom:223.859910px;}
.yf9{bottom:231.779907px;}
.yb9{bottom:233.759906px;}
.y162{bottom:244.739902px;}
.y141{bottom:245.099902px;}
.y70{bottom:245.639902px;}
.y3b{bottom:246.359901px;}
.y125{bottom:246.899901px;}
.yf8{bottom:254.639898px;}
.yb8{bottom:256.619897px;}
.y161{bottom:267.779893px;}
.y140{bottom:268.139893px;}
.y6f{bottom:268.679893px;}
.y3a{bottom:269.399892px;}
.y124{bottom:269.939892px;}
.yf7{bottom:277.679889px;}
.yb7{bottom:279.659888px;}
.y39{bottom:285.419886px;}
.y38{bottom:289.199884px;}
.y160{bottom:290.819884px;}
.y13f{bottom:291.179884px;}
.y6e{bottom:291.539883px;}
.y123{bottom:292.979883px;}
.yf6{bottom:300.719880px;}
.yb6{bottom:302.699879px;}
.y37{bottom:309.719876px;}
.y15f{bottom:313.859874px;}
.y13e{bottom:314.039874px;}
.y6d{bottom:314.579874px;}
.y122{bottom:316.019874px;}
.yf5{bottom:323.759870px;}
.yb5{bottom:325.739870px;}
.y36{bottom:332.759867px;}
.y13d{bottom:337.079865px;}
.y15e{bottom:337.259865px;}
.y6c{bottom:337.619865px;}
.y121{bottom:338.879864px;}
.yf4{bottom:346.799861px;}
.yb4{bottom:348.779860px;}
.y35{bottom:355.799858px;}
.y13c{bottom:360.119856px;}
.y15d{bottom:360.479856px;}
.y6b{bottom:360.659856px;}
.y120{bottom:361.919855px;}
.yf3{bottom:369.659852px;}
.yb3{bottom:371.819851px;}
.y34{bottom:378.839848px;}
.y11f{bottom:382.439847px;}
.y13b{bottom:383.159847px;}
.y6a{bottom:383.699847px;}
.y15c{bottom:383.879846px;}
.yf2{bottom:392.699843px;}
.yb2{bottom:394.679842px;}
.y33{bottom:401.879839px;}
.y11e{bottom:402.959839px;}
.y13a{bottom:406.199838px;}
.y69{bottom:406.739837px;}
.y15b{bottom:407.279837px;}
.yf1{bottom:415.739834px;}
.yb1{bottom:417.719833px;}
.y32{bottom:424.739830px;}
.y11d{bottom:425.819830px;}
.y139{bottom:429.239828px;}
.y68{bottom:429.599828px;}
.y15a{bottom:430.499828px;}
.yb0{bottom:438.239825px;}
.yf0{bottom:438.779824px;}
.y31{bottom:447.779821px;}
.y11c{bottom:448.859820px;}
.yae{bottom:449.940600px;}
.y138{bottom:452.099819px;}
.y67{bottom:452.639819px;}
.y159{bottom:453.899818px;}
.yef{bottom:461.819815px;}
.yac{bottom:465.600600px;}
.y30{bottom:470.819812px;}
.y11b{bottom:471.899811px;}
.y137{bottom:475.139810px;}
.y66{bottom:475.679810px;}
.y158{bottom:477.119809px;}
.yaa{bottom:481.440600px;}
.yee{bottom:484.859806px;}
.y2f{bottom:493.859802px;}
.y11a{bottom:494.939802px;}
.ya8{bottom:497.100600px;}
.y136{bottom:498.179801px;}
.y65{bottom:498.719801px;}
.y157{bottom:500.519800px;}
.yed{bottom:507.719797px;}
.ya6{bottom:512.760600px;}
.y2e{bottom:516.899793px;}
.y119{bottom:517.979793px;}
.y135{bottom:521.219792px;}
.y64{bottom:521.759791px;}
.y156{bottom:523.919790px;}
.ya4{bottom:528.420600px;}
.yec{bottom:530.759788px;}
.y2d{bottom:539.939784px;}
.y118{bottom:541.019784px;}
.ya2{bottom:544.080600px;}
.y134{bottom:544.259782px;}
.y63{bottom:544.799782px;}
.y155{bottom:547.139781px;}
.yeb{bottom:553.799778px;}
.ya0{bottom:559.920600px;}
.y2c{bottom:562.799775px;}
.y117{bottom:563.879774px;}
.y133{bottom:567.299773px;}
.y62{bottom:567.659773px;}
.y154{bottom:570.539772px;}
.y9e{bottom:575.580600px;}
.yea{bottom:576.839769px;}
.y2b{bottom:585.839766px;}
.y116{bottom:586.919765px;}
.y131{bottom:587.100600px;}
.y61{bottom:590.699764px;}
.y9c{bottom:591.240600px;}
.y153{bottom:593.759762px;}
.ye9{bottom:599.879760px;}
.y29{bottom:605.820600px;}
.y9b{bottom:606.900600px;}
.y152{bottom:607.980600px;}
.y115{bottom:609.959756px;}
.y60{bottom:613.739755px;}
.y99{bottom:622.560600px;}
.ye8{bottom:622.919751px;}
.y151{bottom:624.540600px;}
.y114{bottom:632.999747px;}
.y26{bottom:633.900600px;}
.y5f{bottom:636.779745px;}
.y28{bottom:637.319745px;}
.y97{bottom:638.400600px;}
.y14f{bottom:640.920600px;}
.ye7{bottom:645.779742px;}
.y95{bottom:654.060600px;}
.y113{bottom:656.039738px;}
.y14d{bottom:657.480600px;}
.y5e{bottom:659.819736px;}
.ye6{bottom:668.819732px;}
.y93{bottom:669.720600px;}
.y14b{bottom:673.860600px;}
.y25{bottom:675.119730px;}
.y112{bottom:678.899728px;}
.y5d{bottom:682.679727px;}
.y91{bottom:685.380600px;}
.y149{bottom:690.420600px;}
.ye5{bottom:691.859723px;}
.y8f{bottom:701.040600px;}
.y111{bottom:701.939719px;}
.y5c{bottom:705.719718px;}
.y148{bottom:710.939716px;}
.y23{bottom:714.720600px;}
.ye4{bottom:714.899714px;}
.y21{bottom:715.980600px;}
.y8e{bottom:716.880600px;}
.y146{bottom:723.360600px;}
.y110{bottom:724.979710px;}
.y5b{bottom:728.759708px;}
.ye2{bottom:729.300600px;}
.y8c{bottom:732.540600px;}
.y20{bottom:735.059706px;}
.ye0{bottom:745.680600px;}
.y10f{bottom:748.019701px;}
.y8a{bottom:748.200600px;}
.y5a{bottom:751.799699px;}
.ydf{bottom:762.240600px;}
.y1f{bottom:763.139695px;}
.y88{bottom:763.860600px;}
.y10d{bottom:768.000600px;}
.y59{bottom:774.839690px;}
.yde{bottom:778.620600px;}
.y86{bottom:779.520600px;}
.ydd{bottom:795.000600px;}
.y84{bottom:795.360600px;}
.y58{bottom:797.879681px;}
.y1e{bottom:799.679680px;}
.y82{bottom:811.020600px;}
.ydc{bottom:811.560600px;}
.y57{bottom:820.739672px;}
.y1d{bottom:824.339670px;}
.y80{bottom:826.680600px;}
.ydb{bottom:827.940600px;}
.y7e{bottom:842.340600px;}
.y130{bottom:843.599663px;}
.y56{bottom:843.779662px;}
.yda{bottom:844.500600px;}
.y1b{bottom:850.080600px;}
.y7c{bottom:859.260600px;}
.y1a{bottom:860.879656px;}
.yd9{bottom:860.880600px;}
.y12f{bottom:866.639653px;}
.y55{bottom:866.819653px;}
.y19{bottom:872.759651px;}
.y7a{bottom:874.920600px;}
.yd7{bottom:877.440600px;}
.y12e{bottom:889.679644px;}
.y54{bottom:889.859644px;}
.y78{bottom:891.660600px;}
.yd6{bottom:893.820600px;}
.y16{bottom:895.440600px;}
.y18{bottom:905.519638px;}
.yd4{bottom:910.380600px;}
.y12d{bottom:912.719635px;}
.y53{bottom:912.899635px;}
.y14{bottom:915.780600px;}
.y77{bottom:917.759633px;}
.yd2{bottom:926.760600px;}
.y12c{bottom:935.759626px;}
.y52{bottom:935.939626px;}
.y76{bottom:938.459625px;}
.yd0{bottom:943.320600px;}
.y13{bottom:949.259620px;}
.y12b{bottom:958.619617px;}
.y51{bottom:958.799616px;}
.yce{bottom:959.700600px;}
.ycc{bottom:976.260600px;}
.y10c{bottom:981.659607px;}
.y50{bottom:981.839607px;}
.y12{bottom:990.119604px;}
.yca{bottom:992.640600px;}
.y10b{bottom:1004.699598px;}
.y4f{bottom:1004.879598px;}
.yc8{bottom:1009.200600px;}
.y11{bottom:1013.519595px;}
.yc6{bottom:1025.580600px;}
.y10a{bottom:1027.739589px;}
.y4e{bottom:1027.919589px;}
.y10{bottom:1029.899588px;}
.yf{bottom:1030.259588px;}
.yc4{bottom:1041.960600px;}
.y109{bottom:1050.779580px;}
.y4d{bottom:1050.959580px;}
.yc2{bottom:1058.520600px;}
.y47{bottom:1073.280600px;}
.y108{bottom:1073.819570px;}
.y4c{bottom:1073.999570px;}
.yc1{bottom:1079.219568px;}
.y46{bottom:1082.279567px;}
.ybf{bottom:1091.460600px;}
.y107{bottom:1096.679561px;}
.y4b{bottom:1096.859561px;}
.y45{bottom:1103.519559px;}
.y106{bottom:1119.719552px;}
.y4a{bottom:1119.899552px;}
.y44{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.y105{bottom:1142.759543px;}
.y49{bottom:1142.939543px;}
.y42{bottom:1145.280600px;}
.y41{bottom:1149.059540px;}
.yff{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y104{bottom:1195.680600px;}
.y9{bottom:1195.860600px;}
.h28{height:2.880000px;}
.he{height:8.169958px;}
.h10{height:13.500000px;}
.h2c{height:14.400000px;}
.h2b{height:14.580000px;}
.h1b{height:15.120000px;}
.h2d{height:15.300000px;}
.h22{height:15.859330px;}
.h1d{height:16.380000px;}
.h20{height:17.100000px;}
.h4{height:19.800000px;}
.h12{height:20.160000px;}
.h16{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h26{height:21.780000px;}
.h15{height:22.187804px;}
.h18{height:24.474365px;}
.h23{height:25.913662px;}
.h13{height:25.951630px;}
.h2a{height:31.585065px;}
.h11{height:32.199245px;}
.h1f{height:33.588971px;}
.h2e{height:34.307916px;}
.h14{height:36.886626px;}
.h1a{height:40.034515px;}
.h1c{height:40.842757px;}
.h27{height:41.290999px;}
.h24{height:43.185920px;}
.h21{height:45.199318px;}
.hb{height:47.988262px;}
.h5{height:48.058575px;}
.h17{height:48.234356px;}
.h29{height:49.907793px;}
.h1e{height:50.132792px;}
.h19{height:50.788280px;}
.hd{height:54.457009px;}
.h25{height:55.054665px;}
.h8{height:56.228532px;}
.hf{height:63.917904px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w91{width:1.080000px;}
.w58{width:3.240000px;}
.w8e{width:3.600000px;}
.w12{width:4.500000px;}
.w2{width:4.680000px;}
.wc{width:4.860000px;}
.w2a{width:5.040000px;}
.w9b{width:5.400000px;}
.w4a{width:5.760000px;}
.w99{width:6.120000px;}
.w1{width:6.480000px;}
.w4e{width:6.840000px;}
.w64{width:7.380000px;}
.w4b{width:7.560000px;}
.w14{width:7.740000px;}
.w4f{width:7.920000px;}
.w8{width:8.280000px;}
.w5d{width:9.000000px;}
.w1d{width:9.540000px;}
.w18{width:9.900000px;}
.w17{width:10.620000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.w84{width:11.520000px;}
.w89{width:11.700000px;}
.we{width:12.420000px;}
.w7f{width:13.140000px;}
.w29{width:13.320000px;}
.w60{width:14.040000px;}
.w50{width:14.220000px;}
.w85{width:15.120000px;}
.w82{width:15.840000px;}
.w4{width:16.020000px;}
.w6f{width:16.380000px;}
.w7b{width:16.560000px;}
.w80{width:16.920000px;}
.w3c{width:17.640000px;}
.w4c{width:18.180000px;}
.w83{width:18.540000px;}
.w75{width:18.720000px;}
.w7a{width:19.260000px;}
.w67{width:20.520000px;}
.w69{width:21.600000px;}
.w7d{width:23.400000px;}
.w87{width:23.760000px;}
.w8b{width:23.940000px;}
.w6a{width:24.660000px;}
.w74{width:25.380000px;}
.w65{width:25.560000px;}
.w28{width:25.740000px;}
.w78{width:26.100000px;}
.w73{width:26.280000px;}
.w70{width:26.460000px;}
.w71{width:26.640000px;}
.w6d{width:26.820000px;}
.w6b{width:27.180000px;}
.w53{width:28.080000px;}
.w20{width:28.800000px;}
.w5e{width:28.980000px;}
.w22{width:29.700000px;}
.w62{width:32.040000px;}
.w5{width:33.480000px;}
.w61{width:34.560000px;}
.w3d{width:35.820000px;}
.w4d{width:36.360000px;}
.w44{width:36.720000px;}
.w86{width:37.260000px;}
.w37{width:37.800000px;}
.w34{width:37.980000px;}
.w2c{width:39.060000px;}
.w5f{width:39.600000px;}
.w59{width:39.960000px;}
.w5b{width:40.140000px;}
.w45{width:40.320000px;}
.w2d{width:40.500000px;}
.w93{width:40.860000px;}
.w96{width:41.580000px;}
.w94{width:41.760000px;}
.w33{width:41.940000px;}
.w48{width:42.120000px;}
.w92{width:42.660000px;}
.w40{width:42.840000px;}
.w3f{width:43.560000px;}
.w25{width:43.740000px;}
.w21{width:44.100000px;}
.w95{width:44.280000px;}
.w97{width:44.640000px;}
.w68{width:45.000000px;}
.w3e{width:45.540000px;}
.w41{width:46.620000px;}
.w1c{width:48.420000px;}
.w46{width:48.600000px;}
.w5a{width:48.780000px;}
.w23{width:48.960000px;}
.w8d{width:49.860000px;}
.w2b{width:50.580000px;}
.w2f{width:51.120000px;}
.w5c{width:51.480000px;}
.w56{width:51.660000px;}
.w54{width:52.200000px;}
.w98{width:52.560000px;}
.w39{width:52.740000px;}
.w27{width:52.920000px;}
.w47{width:53.100000px;}
.w31{width:53.280000px;}
.w52{width:53.460000px;}
.w30{width:54.000000px;}
.w26{width:54.720000px;}
.w24{width:54.900000px;}
.w3a{width:55.260000px;}
.w66{width:55.440000px;}
.w2e{width:55.620000px;}
.w1b{width:58.140000px;}
.wb{width:58.500000px;}
.w81{width:59.760000px;}
.w9a{width:60.660000px;}
.w42{width:62.100000px;}
.w77{width:62.280000px;}
.w1f{width:62.460000px;}
.w1e{width:63.540000px;}
.w15{width:65.700000px;}
.w6c{width:66.240000px;}
.w72{width:66.420000px;}
.wa{width:66.780000px;}
.w1a{width:71.820000px;}
.w76{width:72.720000px;}
.w11{width:77.940000px;}
.w32{width:80.280000px;}
.w8a{width:80.460000px;}
.w19{width:83.880000px;}
.w43{width:84.780000px;}
.w7c{width:85.860000px;}
.w79{width:90.720000px;}
.w35{width:91.800000px;}
.w57{width:97.020000px;}
.w51{width:100.980000px;}
.w88{width:101.520000px;}
.w49{width:105.480000px;}
.w6e{width:105.660000px;}
.w38{width:110.700000px;}
.w3{width:119.700000px;}
.w36{width:122.760000px;}
.w3b{width:124.380000px;}
.w55{width:143.640000px;}
.w9{width:144.900000px;}
.wd{width:154.620000px;}
.w63{width:168.120000px;}
.w90{width:180.000000px;}
.w7e{width:184.860000px;}
.w8f{width:270.540000px;}
.w8c{width:277.200000px;}
.wf{width:282.600000px;}
.w10{width:390.060000px;}
.w13{width:489.600000px;}
.w16{width:675.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x2a{left:113.400000px;}
.x31{left:116.459953px;}
.x7{left:120.240000px;}
.xa4{left:128.879878px;}
.x48{left:133.740000px;}
.x2{left:137.699962px;}
.x73{left:140.040000px;}
.x74{left:145.080000px;}
.xa5{left:150.300000px;}
.x3e{left:152.100000px;}
.x3{left:155.700000px;}
.x4{left:171.899931px;}
.x30{left:174.599930px;}
.xc{left:185.219926px;}
.x2c{left:187.200000px;}
.x2d{left:191.700000px;}
.x5c{left:192.780000px;}
.x95{left:198.720000px;}
.x54{left:199.800000px;}
.x6e{left:205.020000px;}
.x69{left:208.980000px;}
.x61{left:213.480000px;}
.x8{left:239.940000px;}
.x21{left:254.159898px;}
.xd{left:259.740316px;}
.x22{left:264.240000px;}
.x5{left:268.560000px;}
.x6{left:273.239891px;}
.x3f{left:278.100000px;}
.x62{left:283.860000px;}
.x64{left:285.660000px;}
.x63{left:288.900000px;}
.x67{left:289.980000px;}
.x49{left:291.420000px;}
.x9d{left:292.860000px;}
.x4a{left:296.460000px;}
.x65{left:298.440000px;}
.x70{left:300.420000px;}
.x7d{left:303.660000px;}
.x68{left:304.920000px;}
.x6a{left:306.180000px;}
.x40{left:307.800000px;}
.x9c{left:309.420000px;}
.x96{left:311.220000px;}
.x75{left:313.200000px;}
.x5d{left:314.820000px;}
.x89{left:316.980000px;}
.x60{left:320.220000px;}
.x45{left:321.840000px;}
.x9b{left:323.460000px;}
.xa3{left:325.260000px;}
.x5e{left:326.700000px;}
.x6f{left:329.940000px;}
.x23{left:331.020000px;}
.x5f{left:332.100000px;}
.x84{left:333.360000px;}
.x9e{left:336.060000px;}
.x8a{left:338.400000px;}
.x5b{left:340.020000px;}
.x33{left:342.539863px;}
.x71{left:344.520000px;}
.x4b{left:347.040000px;}
.x8f{left:352.260000px;}
.x90{left:356.580000px;}
.x50{left:358.380000px;}
.x8e{left:365.940000px;}
.x24{left:389.519844px;}
.x25{left:394.740000px;}
.x2b{left:396.000000px;}
.x26{left:399.599840px;}
.x55{left:400.860000px;}
.x58{left:402.480000px;}
.x27{left:407.160000px;}
.x6b{left:421.740000px;}
.xe{left:427.680106px;}
.xf{left:432.180102px;}
.x35{left:435.959826px;}
.x76{left:442.080000px;}
.x78{left:448.379821px;}
.x85{left:456.120000px;}
.x7e{left:457.200000px;}
.x8b{left:460.260000px;}
.x32{left:462.600512px;}
.x91{left:465.840000px;}
.x92{left:473.400000px;}
.x9f{left:477.180000px;}
.x8c{left:478.980000px;}
.x7f{left:481.860000px;}
.x86{left:482.940000px;}
.x77{left:496.800000px;}
.xad{left:502.560000px;}
.xb4{left:504.360000px;}
.xae{left:507.600000px;}
.xb5{left:509.400000px;}
.xaf{left:510.840000px;}
.xa6{left:512.640000px;}
.x10{left:516.060050px;}
.xab{left:521.820000px;}
.xbb{left:523.260000px;}
.x11{left:529.380042px;}
.x12{left:542.700033px;}
.x37{left:546.659781px;}
.x56{left:548.100000px;}
.x41{left:550.080000px;}
.xb0{left:551.700000px;}
.x51{left:553.500000px;}
.x4c{left:554.940000px;}
.xb6{left:556.920000px;}
.x3b{left:560.160000px;}
.x28{left:561.779775px;}
.x13{left:564.659960px;}
.x29{left:567.180000px;}
.x14{left:569.159957px;}
.x80{left:570.780000px;}
.x87{left:572.040000px;}
.x79{left:573.660000px;}
.x97{left:576.000000px;}
.xa0{left:577.620000px;}
.x93{left:580.680000px;}
.x15{left:582.479948px;}
.x94{left:588.060000px;}
.x36{left:589.679764px;}
.x38{left:590.760000px;}
.x98{left:592.560000px;}
.x4d{left:594.000000px;}
.x16{left:595.619941px;}
.x88{left:596.700000px;}
.x81{left:597.960000px;}
.x42{left:599.040000px;}
.x57{left:600.840000px;}
.x46{left:601.920000px;}
.x39{left:606.240000px;}
.x17{left:608.939932px;}
.x18{left:613.439928px;}
.x19{left:631.079858px;}
.x1a{left:635.399856px;}
.x1b{left:648.719847px;}
.x1c{left:653.039845px;}
.x1d{left:657.539841px;}
.xba{left:658.980000px;}
.xb8{left:660.060000px;}
.xb1{left:665.100000px;}
.x1e{left:666.359733px;}
.x7a{left:669.420000px;}
.xa8{left:670.859732px;}
.x99{left:672.480000px;}
.xa1{left:675.180000px;}
.x7c{left:679.493728px;}
.x2e{left:681.300000px;}
.x82{left:682.380000px;}
.x43{left:685.620000px;}
.x6c{left:688.680000px;}
.x59{left:690.300000px;}
.x4e{left:692.820000px;}
.x52{left:694.080000px;}
.x72{left:695.700000px;}
.x9{left:697.320000px;}
.x3c{left:698.580000px;}
.x66{left:703.980000px;}
.xb2{left:705.420000px;}
.xb9{left:710.640000px;}
.xbc{left:711.720000px;}
.xa7{left:717.120000px;}
.xa9{left:723.060000px;}
.x3d{left:727.380000px;}
.xa{left:730.800000px;}
.x53{left:732.060000px;}
.x4f{left:733.320000px;}
.xb7{left:734.760000px;}
.x5a{left:735.840000px;}
.x6d{left:737.280000px;}
.x47{left:739.440000px;}
.x44{left:740.520000px;}
.xb{left:741.960000px;}
.x3a{left:744.660000px;}
.x83{left:748.620000px;}
.x8d{left:751.860000px;}
.xa2{left:755.640000px;}
.x9a{left:758.340000px;}
.x7b{left:761.580000px;}
.xac{left:773.100000px;}
.xb3{left:774.360000px;}
.x34{left:779.580000px;}
.x2f{left:781.559687px;}
.x1f{left:783.539686px;}
.xaa{left:785.520000px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls4{letter-spacing:0.018878pt;}
.ls2{letter-spacing:0.064960pt;}
.ls6{letter-spacing:0.097280pt;}
.ls5{letter-spacing:0.225973pt;}
.ls1{letter-spacing:0.303046pt;}
.ws1{word-spacing:-19.918072pt;}
.ws3{word-spacing:-17.023993pt;}
.ws7{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.492475pt;}
.ws8{word-spacing:-12.191995pt;}
.ws6{word-spacing:-11.567995pt;}
.ws2{word-spacing:-9.192956pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._3b{margin-left:-2.009018pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._11{width:2.216116pt;}
._17{width:3.844522pt;}
._15{width:5.376902pt;}
._16{width:6.686186pt;}
._12{width:7.673185pt;}
._10{width:9.072465pt;}
._18{width:10.449131pt;}
._e{width:12.848190pt;}
._1b{width:14.042832pt;}
._19{width:15.088889pt;}
._1a{width:16.019008pt;}
._31{width:16.994757pt;}
._23{width:18.115560pt;}
._1f{width:19.881032pt;}
._13{width:20.842982pt;}
._14{width:21.838438pt;}
._2b{width:22.952245pt;}
._20{width:23.989872pt;}
._24{width:25.154041pt;}
._27{width:26.309950pt;}
._30{width:27.570756pt;}
._29{width:29.346289pt;}
._28{width:31.159872pt;}
._2d{width:32.270065pt;}
._2e{width:33.422077pt;}
._33{width:34.635866pt;}
._25{width:35.647193pt;}
._34{width:36.679679pt;}
._36{width:38.428790pt;}
._2f{width:39.993623pt;}
._1c{width:40.979550pt;}
._2a{width:41.951358pt;}
._32{width:43.205127pt;}
._26{width:44.595996pt;}
._2c{width:46.081084pt;}
._37{width:46.993963pt;}
._3c{width:48.632285pt;}
._3a{width:49.895511pt;}
._3d{width:51.461659pt;}
._d{width:52.832728pt;}
._c{width:53.810620pt;}
._35{width:54.818313pt;}
._1d{width:55.874045pt;}
._1e{width:56.836822pt;}
._21{width:57.779382pt;}
._22{width:59.030409pt;}
._38{width:60.873338pt;}
._39{width:62.252568pt;}
._3e{width:65.523264pt;}
._3f{width:66.746386pt;}
._40{width:87.202475pt;}
._f{width:244.879737pt;}
.fsc{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs7{font-size:29.439988pt;}
.fs6{font-size:34.559986pt;}
.fse{font-size:37.119985pt;}
.fsf{font-size:40.319984pt;}
.fs5{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsd{font-size:66.559973pt;}
.fs8{font-size:67.635145pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y48{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.ya1{bottom:2.559267pt;}
.yab{bottom:2.559294pt;}
.yc0{bottom:2.719078pt;}
.yc3{bottom:2.719089pt;}
.yc5{bottom:2.719095pt;}
.yc7{bottom:2.719101pt;}
.yc9{bottom:2.719107pt;}
.ycb{bottom:2.719113pt;}
.ycd{bottom:2.719118pt;}
.ycf{bottom:2.719124pt;}
.yd1{bottom:2.719130pt;}
.yd3{bottom:2.719136pt;}
.yd5{bottom:2.719142pt;}
.y79{bottom:2.719149pt;}
.yd8{bottom:2.719154pt;}
.y7b{bottom:2.719154pt;}
.y7d{bottom:2.719160pt;}
.y7f{bottom:2.719166pt;}
.y81{bottom:2.719172pt;}
.y83{bottom:2.719177pt;}
.y85{bottom:2.719183pt;}
.y87{bottom:2.719188pt;}
.y10e{bottom:2.719193pt;}
.y89{bottom:2.719194pt;}
.y8b{bottom:2.719200pt;}
.ye1{bottom:2.719200pt;}
.y8d{bottom:2.719205pt;}
.ye3{bottom:2.719206pt;}
.y147{bottom:2.719208pt;}
.y22{bottom:2.719211pt;}
.y90{bottom:2.719216pt;}
.y14a{bottom:2.719220pt;}
.y92{bottom:2.719222pt;}
.y14c{bottom:2.719226pt;}
.y94{bottom:2.719227pt;}
.y14e{bottom:2.719232pt;}
.y96{bottom:2.719233pt;}
.y150{bottom:2.719238pt;}
.y98{bottom:2.719239pt;}
.y9a{bottom:2.719244pt;}
.y2a{bottom:2.719250pt;}
.y9d{bottom:2.719255pt;}
.y132{bottom:2.719257pt;}
.y9f{bottom:2.719261pt;}
.ya3{bottom:2.719272pt;}
.ya5{bottom:2.719278pt;}
.ya7{bottom:2.719283pt;}
.ya9{bottom:2.719289pt;}
.yad{bottom:2.719300pt;}
.yaf{bottom:2.719306pt;}
.y15{bottom:2.879140pt;}
.y27{bottom:3.039240pt;}
.y43{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y7{bottom:3.680025pt;}
.y24{bottom:3.839211pt;}
.y4{bottom:3.840025pt;}
.y17{bottom:4.319147pt;}
.y1c{bottom:4.319163pt;}
.y103{bottom:51.946913pt;}
.y8{bottom:52.106912pt;}
.y102{bottom:66.346880pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y101{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y100{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.yfe{bottom:103.626625pt;}
.ybe{bottom:105.386625pt;}
.y167{bottom:115.306621pt;}
.y75{bottom:116.106620pt;}
.y40{bottom:116.746620pt;}
.y12a{bottom:117.226620pt;}
.y145{bottom:118.986619pt;}
.yfd{bottom:124.106617pt;}
.ybd{bottom:125.866616pt;}
.y166{bottom:135.786612pt;}
.y74{bottom:136.426612pt;}
.y3f{bottom:137.066612pt;}
.y129{bottom:137.706612pt;}
.y144{bottom:139.466611pt;}
.yfc{bottom:144.586609pt;}
.ybc{bottom:146.346608pt;}
.y165{bottom:156.106604pt;}
.y73{bottom:156.906604pt;}
.y3e{bottom:157.546604pt;}
.y128{bottom:158.186603pt;}
.y143{bottom:159.946603pt;}
.yfb{bottom:165.066601pt;}
.ybb{bottom:166.826600pt;}
.y164{bottom:176.586596pt;}
.y72{bottom:177.386596pt;}
.y3d{bottom:178.026595pt;}
.y127{bottom:178.666595pt;}
.yfa{bottom:185.546592pt;}
.yba{bottom:187.306592pt;}
.y163{bottom:197.066588pt;}
.y142{bottom:197.386588pt;}
.y71{bottom:197.866588pt;}
.y3c{bottom:198.506587pt;}
.y126{bottom:198.986587pt;}
.yf9{bottom:206.026584pt;}
.yb9{bottom:207.786584pt;}
.y162{bottom:217.546580pt;}
.y141{bottom:217.866580pt;}
.y70{bottom:218.346579pt;}
.y3b{bottom:218.986579pt;}
.y125{bottom:219.466579pt;}
.yf8{bottom:226.346576pt;}
.yb8{bottom:228.106575pt;}
.y161{bottom:238.026571pt;}
.y140{bottom:238.346571pt;}
.y6f{bottom:238.826571pt;}
.y3a{bottom:239.466571pt;}
.y124{bottom:239.946571pt;}
.yf7{bottom:246.826568pt;}
.yb7{bottom:248.586567pt;}
.y39{bottom:253.706565pt;}
.y38{bottom:257.066564pt;}
.y160{bottom:258.506563pt;}
.y13f{bottom:258.826563pt;}
.y6e{bottom:259.146563pt;}
.y123{bottom:260.426562pt;}
.yf6{bottom:267.306560pt;}
.yb6{bottom:269.066559pt;}
.y37{bottom:275.306557pt;}
.y15f{bottom:278.986555pt;}
.y13e{bottom:279.146555pt;}
.y6d{bottom:279.626555pt;}
.y122{bottom:280.906554pt;}
.yf5{bottom:287.786552pt;}
.yb5{bottom:289.546551pt;}
.y36{bottom:295.786548pt;}
.y13d{bottom:299.626547pt;}
.y15e{bottom:299.786547pt;}
.y6c{bottom:300.106547pt;}
.y121{bottom:301.226546pt;}
.yf4{bottom:308.266543pt;}
.yb4{bottom:310.026543pt;}
.y35{bottom:316.266540pt;}
.y13c{bottom:320.106539pt;}
.y15d{bottom:320.426538pt;}
.y6b{bottom:320.586538pt;}
.y120{bottom:321.706538pt;}
.yf3{bottom:328.586535pt;}
.yb3{bottom:330.506534pt;}
.y34{bottom:336.746532pt;}
.y11f{bottom:339.946531pt;}
.y13b{bottom:340.586530pt;}
.y6a{bottom:341.066530pt;}
.y15c{bottom:341.226530pt;}
.yf2{bottom:349.066527pt;}
.yb2{bottom:350.826526pt;}
.y33{bottom:357.226524pt;}
.y11e{bottom:358.186523pt;}
.y13a{bottom:361.066522pt;}
.y69{bottom:361.546522pt;}
.y15b{bottom:362.026522pt;}
.yf1{bottom:369.546519pt;}
.yb1{bottom:371.306518pt;}
.y32{bottom:377.546516pt;}
.y11d{bottom:378.506515pt;}
.y139{bottom:381.546514pt;}
.y68{bottom:381.866514pt;}
.y15a{bottom:382.666514pt;}
.yb0{bottom:389.546511pt;}
.yf0{bottom:390.026511pt;}
.y31{bottom:398.026507pt;}
.y11c{bottom:398.986507pt;}
.yae{bottom:399.947200pt;}
.y138{bottom:401.866506pt;}
.y67{bottom:402.346506pt;}
.y159{bottom:403.466505pt;}
.yef{bottom:410.506502pt;}
.yac{bottom:413.867200pt;}
.y30{bottom:418.506499pt;}
.y11b{bottom:419.466499pt;}
.y137{bottom:422.346498pt;}
.y66{bottom:422.826498pt;}
.y158{bottom:424.106497pt;}
.yaa{bottom:427.947200pt;}
.yee{bottom:430.986494pt;}
.y2f{bottom:438.986491pt;}
.y11a{bottom:439.946491pt;}
.ya8{bottom:441.867200pt;}
.y136{bottom:442.826490pt;}
.y65{bottom:443.306489pt;}
.y157{bottom:444.906489pt;}
.yed{bottom:451.306486pt;}
.ya6{bottom:455.787200pt;}
.y2e{bottom:459.466483pt;}
.y119{bottom:460.426482pt;}
.y135{bottom:463.306481pt;}
.y64{bottom:463.786481pt;}
.y156{bottom:465.706480pt;}
.ya4{bottom:469.707200pt;}
.yec{bottom:471.786478pt;}
.y2d{bottom:479.946475pt;}
.y118{bottom:480.906474pt;}
.ya2{bottom:483.627200pt;}
.y134{bottom:483.786473pt;}
.y63{bottom:484.266473pt;}
.y155{bottom:486.346472pt;}
.yeb{bottom:492.266470pt;}
.ya0{bottom:497.707200pt;}
.y2c{bottom:500.266467pt;}
.y117{bottom:501.226466pt;}
.y133{bottom:504.266465pt;}
.y62{bottom:504.586465pt;}
.y154{bottom:507.146464pt;}
.y9e{bottom:511.627200pt;}
.yea{bottom:512.746462pt;}
.y2b{bottom:520.746458pt;}
.y116{bottom:521.706458pt;}
.y131{bottom:521.867200pt;}
.y61{bottom:525.066457pt;}
.y9c{bottom:525.547200pt;}
.y153{bottom:527.786456pt;}
.ye9{bottom:533.226453pt;}
.y29{bottom:538.507200pt;}
.y9b{bottom:539.467200pt;}
.y152{bottom:540.427200pt;}
.y115{bottom:542.186450pt;}
.y60{bottom:545.546448pt;}
.y99{bottom:553.387200pt;}
.ye8{bottom:553.706445pt;}
.y151{bottom:555.147200pt;}
.y114{bottom:562.666442pt;}
.y26{bottom:563.467200pt;}
.y5f{bottom:566.026440pt;}
.y28{bottom:566.506440pt;}
.y97{bottom:567.467200pt;}
.y14f{bottom:569.707200pt;}
.ye7{bottom:574.026437pt;}
.y95{bottom:581.387200pt;}
.y113{bottom:583.146433pt;}
.y14d{bottom:584.427200pt;}
.y5e{bottom:586.506432pt;}
.ye6{bottom:594.506429pt;}
.y93{bottom:595.307200pt;}
.y14b{bottom:598.987200pt;}
.y25{bottom:600.106427pt;}
.y112{bottom:603.466425pt;}
.y5d{bottom:606.826424pt;}
.y91{bottom:609.227200pt;}
.y149{bottom:613.707200pt;}
.ye5{bottom:614.986421pt;}
.y8f{bottom:623.147200pt;}
.y111{bottom:623.946417pt;}
.y5c{bottom:627.306416pt;}
.y148{bottom:631.946414pt;}
.y23{bottom:635.307200pt;}
.ye4{bottom:635.466412pt;}
.y21{bottom:636.427200pt;}
.y8e{bottom:637.227200pt;}
.y146{bottom:642.987200pt;}
.y110{bottom:644.426409pt;}
.y5b{bottom:647.786408pt;}
.ye2{bottom:648.267200pt;}
.y8c{bottom:651.147200pt;}
.y20{bottom:653.386405pt;}
.ye0{bottom:662.827200pt;}
.y10f{bottom:664.906401pt;}
.y8a{bottom:665.067200pt;}
.y5a{bottom:668.266399pt;}
.ydf{bottom:677.547200pt;}
.y1f{bottom:678.346395pt;}
.y88{bottom:678.987200pt;}
.y10d{bottom:682.667200pt;}
.y59{bottom:688.746391pt;}
.yde{bottom:692.107200pt;}
.y86{bottom:692.907200pt;}
.ydd{bottom:706.667200pt;}
.y84{bottom:706.987200pt;}
.y58{bottom:709.226383pt;}
.y1e{bottom:710.826382pt;}
.y82{bottom:720.907200pt;}
.ydc{bottom:721.387200pt;}
.y57{bottom:729.546375pt;}
.y1d{bottom:732.746374pt;}
.y80{bottom:734.827200pt;}
.ydb{bottom:735.947200pt;}
.y7e{bottom:748.747200pt;}
.y130{bottom:749.866367pt;}
.y56{bottom:750.026367pt;}
.yda{bottom:750.667200pt;}
.y1b{bottom:755.627200pt;}
.y7c{bottom:763.787200pt;}
.y1a{bottom:765.226361pt;}
.yd9{bottom:765.227200pt;}
.y12f{bottom:770.346359pt;}
.y55{bottom:770.506358pt;}
.y19{bottom:775.786356pt;}
.y7a{bottom:777.707200pt;}
.yd7{bottom:779.947200pt;}
.y12e{bottom:790.826350pt;}
.y54{bottom:790.986350pt;}
.y78{bottom:792.587200pt;}
.yd6{bottom:794.507200pt;}
.y16{bottom:795.947200pt;}
.y18{bottom:804.906345pt;}
.yd4{bottom:809.227200pt;}
.y12d{bottom:811.306342pt;}
.y53{bottom:811.466342pt;}
.y14{bottom:814.027200pt;}
.y77{bottom:815.786340pt;}
.yd2{bottom:823.787200pt;}
.y12c{bottom:831.786334pt;}
.y52{bottom:831.946334pt;}
.y76{bottom:834.186333pt;}
.yd0{bottom:838.507200pt;}
.y13{bottom:843.786329pt;}
.y12b{bottom:852.106326pt;}
.y51{bottom:852.266326pt;}
.yce{bottom:853.067200pt;}
.ycc{bottom:867.787200pt;}
.y10c{bottom:872.586318pt;}
.y50{bottom:872.746318pt;}
.y12{bottom:880.106315pt;}
.yca{bottom:882.347200pt;}
.y10b{bottom:893.066309pt;}
.y4f{bottom:893.226309pt;}
.yc8{bottom:897.067200pt;}
.y11{bottom:900.906306pt;}
.yc6{bottom:911.627200pt;}
.y10a{bottom:913.546301pt;}
.y4e{bottom:913.706301pt;}
.y10{bottom:915.466300pt;}
.yf{bottom:915.786300pt;}
.yc4{bottom:926.187200pt;}
.y109{bottom:934.026293pt;}
.y4d{bottom:934.186293pt;}
.yc2{bottom:940.907200pt;}
.y47{bottom:954.027200pt;}
.y108{bottom:954.506285pt;}
.y4c{bottom:954.666285pt;}
.yc1{bottom:959.306283pt;}
.y46{bottom:962.026282pt;}
.ybf{bottom:970.187200pt;}
.y107{bottom:974.826277pt;}
.y4b{bottom:974.986277pt;}
.y45{bottom:980.906274pt;}
.y106{bottom:995.306269pt;}
.y4a{bottom:995.466268pt;}
.y44{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.y105{bottom:1015.786260pt;}
.y49{bottom:1015.946260pt;}
.y42{bottom:1018.027200pt;}
.y41{bottom:1021.386258pt;}
.yff{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y104{bottom:1062.827200pt;}
.y9{bottom:1062.987200pt;}
.h28{height:2.560000pt;}
.he{height:7.262185pt;}
.h10{height:12.000000pt;}
.h2c{height:12.800000pt;}
.h2b{height:12.960000pt;}
.h1b{height:13.440000pt;}
.h2d{height:13.600000pt;}
.h22{height:14.097182pt;}
.h1d{height:14.560000pt;}
.h20{height:15.200000pt;}
.h4{height:17.600000pt;}
.h12{height:17.920000pt;}
.h16{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h26{height:19.360000pt;}
.h15{height:19.722492pt;}
.h18{height:21.754991pt;}
.h23{height:23.034366pt;}
.h13{height:23.068116pt;}
.h2a{height:28.075614pt;}
.h11{height:28.621551pt;}
.h1f{height:29.856863pt;}
.h2e{height:30.495925pt;}
.h14{height:32.788112pt;}
.h1a{height:35.586236pt;}
.h1c{height:36.304673pt;}
.h27{height:36.703110pt;}
.h24{height:38.387485pt;}
.h21{height:40.177171pt;}
.hb{height:42.656233pt;}
.h5{height:42.718733pt;}
.h17{height:42.874983pt;}
.h29{height:44.362482pt;}
.h1e{height:44.562482pt;}
.h19{height:45.145138pt;}
.hd{height:48.406231pt;}
.h25{height:48.937480pt;}
.h8{height:49.980918pt;}
.hf{height:56.815915pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w91{width:0.960000pt;}
.w58{width:2.880000pt;}
.w8e{width:3.200000pt;}
.w12{width:4.000000pt;}
.w2{width:4.160000pt;}
.wc{width:4.320000pt;}
.w2a{width:4.480000pt;}
.w9b{width:4.800000pt;}
.w4a{width:5.120000pt;}
.w99{width:5.440000pt;}
.w1{width:5.760000pt;}
.w4e{width:6.080000pt;}
.w64{width:6.560000pt;}
.w4b{width:6.720000pt;}
.w14{width:6.880000pt;}
.w4f{width:7.040000pt;}
.w8{width:7.360000pt;}
.w5d{width:8.000000pt;}
.w1d{width:8.480000pt;}
.w18{width:8.800000pt;}
.w17{width:9.440000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.w84{width:10.240000pt;}
.w89{width:10.400000pt;}
.we{width:11.040000pt;}
.w7f{width:11.680000pt;}
.w29{width:11.840000pt;}
.w60{width:12.480000pt;}
.w50{width:12.640000pt;}
.w85{width:13.440000pt;}
.w82{width:14.080000pt;}
.w4{width:14.240000pt;}
.w6f{width:14.560000pt;}
.w7b{width:14.720000pt;}
.w80{width:15.040000pt;}
.w3c{width:15.680000pt;}
.w4c{width:16.160000pt;}
.w83{width:16.480000pt;}
.w75{width:16.640000pt;}
.w7a{width:17.120000pt;}
.w67{width:18.240000pt;}
.w69{width:19.200000pt;}
.w7d{width:20.800000pt;}
.w87{width:21.120000pt;}
.w8b{width:21.280000pt;}
.w6a{width:21.920000pt;}
.w74{width:22.560000pt;}
.w65{width:22.720000pt;}
.w28{width:22.880000pt;}
.w78{width:23.200000pt;}
.w73{width:23.360000pt;}
.w70{width:23.520000pt;}
.w71{width:23.680000pt;}
.w6d{width:23.840000pt;}
.w6b{width:24.160000pt;}
.w53{width:24.960000pt;}
.w20{width:25.600000pt;}
.w5e{width:25.760000pt;}
.w22{width:26.400000pt;}
.w62{width:28.480000pt;}
.w5{width:29.760000pt;}
.w61{width:30.720000pt;}
.w3d{width:31.840000pt;}
.w4d{width:32.320000pt;}
.w44{width:32.640000pt;}
.w86{width:33.120000pt;}
.w37{width:33.600000pt;}
.w34{width:33.760000pt;}
.w2c{width:34.720000pt;}
.w5f{width:35.200000pt;}
.w59{width:35.520000pt;}
.w5b{width:35.680000pt;}
.w45{width:35.840000pt;}
.w2d{width:36.000000pt;}
.w93{width:36.320000pt;}
.w96{width:36.960000pt;}
.w94{width:37.120000pt;}
.w33{width:37.280000pt;}
.w48{width:37.440000pt;}
.w92{width:37.920000pt;}
.w40{width:38.080000pt;}
.w3f{width:38.720000pt;}
.w25{width:38.880000pt;}
.w21{width:39.200000pt;}
.w95{width:39.360000pt;}
.w97{width:39.680000pt;}
.w68{width:40.000000pt;}
.w3e{width:40.480000pt;}
.w41{width:41.440000pt;}
.w1c{width:43.040000pt;}
.w46{width:43.200000pt;}
.w5a{width:43.360000pt;}
.w23{width:43.520000pt;}
.w8d{width:44.320000pt;}
.w2b{width:44.960000pt;}
.w2f{width:45.440000pt;}
.w5c{width:45.760000pt;}
.w56{width:45.920000pt;}
.w54{width:46.400000pt;}
.w98{width:46.720000pt;}
.w39{width:46.880000pt;}
.w27{width:47.040000pt;}
.w47{width:47.200000pt;}
.w31{width:47.360000pt;}
.w52{width:47.520000pt;}
.w30{width:48.000000pt;}
.w26{width:48.640000pt;}
.w24{width:48.800000pt;}
.w3a{width:49.120000pt;}
.w66{width:49.280000pt;}
.w2e{width:49.440000pt;}
.w1b{width:51.680000pt;}
.wb{width:52.000000pt;}
.w81{width:53.120000pt;}
.w9a{width:53.920000pt;}
.w42{width:55.200000pt;}
.w77{width:55.360000pt;}
.w1f{width:55.520000pt;}
.w1e{width:56.480000pt;}
.w15{width:58.400000pt;}
.w6c{width:58.880000pt;}
.w72{width:59.040000pt;}
.wa{width:59.360000pt;}
.w1a{width:63.840000pt;}
.w76{width:64.640000pt;}
.w11{width:69.280000pt;}
.w32{width:71.360000pt;}
.w8a{width:71.520000pt;}
.w19{width:74.560000pt;}
.w43{width:75.360000pt;}
.w7c{width:76.320000pt;}
.w79{width:80.640000pt;}
.w35{width:81.600000pt;}
.w57{width:86.240000pt;}
.w51{width:89.760000pt;}
.w88{width:90.240000pt;}
.w49{width:93.760000pt;}
.w6e{width:93.920000pt;}
.w38{width:98.400000pt;}
.w3{width:106.400000pt;}
.w36{width:109.120000pt;}
.w3b{width:110.560000pt;}
.w55{width:127.680000pt;}
.w9{width:128.800000pt;}
.wd{width:137.440000pt;}
.w63{width:149.440000pt;}
.w90{width:160.000000pt;}
.w7e{width:164.320000pt;}
.w8f{width:240.480000pt;}
.w8c{width:246.400000pt;}
.wf{width:251.200000pt;}
.w10{width:346.720000pt;}
.w13{width:435.200000pt;}
.w16{width:600.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x2a{left:100.800000pt;}
.x31{left:103.519959pt;}
.x7{left:106.880000pt;}
.xa4{left:114.559892pt;}
.x48{left:118.880000pt;}
.x2{left:122.399966pt;}
.x73{left:124.480000pt;}
.x74{left:128.960000pt;}
.xa5{left:133.600000pt;}
.x3e{left:135.200000pt;}
.x3{left:138.400000pt;}
.x4{left:152.799939pt;}
.x30{left:155.199938pt;}
.xc{left:164.639934pt;}
.x2c{left:166.400000pt;}
.x2d{left:170.400000pt;}
.x5c{left:171.360000pt;}
.x95{left:176.640000pt;}
.x54{left:177.600000pt;}
.x6e{left:182.240000pt;}
.x69{left:185.760000pt;}
.x61{left:189.760000pt;}
.x8{left:213.280000pt;}
.x21{left:225.919910pt;}
.xd{left:230.880281pt;}
.x22{left:234.880000pt;}
.x5{left:238.720000pt;}
.x6{left:242.879903pt;}
.x3f{left:247.200000pt;}
.x62{left:252.320000pt;}
.x64{left:253.920000pt;}
.x63{left:256.800000pt;}
.x67{left:257.760000pt;}
.x49{left:259.040000pt;}
.x9d{left:260.320000pt;}
.x4a{left:263.520000pt;}
.x65{left:265.280000pt;}
.x70{left:267.040000pt;}
.x7d{left:269.920000pt;}
.x68{left:271.040000pt;}
.x6a{left:272.160000pt;}
.x40{left:273.600000pt;}
.x9c{left:275.040000pt;}
.x96{left:276.640000pt;}
.x75{left:278.400000pt;}
.x5d{left:279.840000pt;}
.x89{left:281.760000pt;}
.x60{left:284.640000pt;}
.x45{left:286.080000pt;}
.x9b{left:287.520000pt;}
.xa3{left:289.120000pt;}
.x5e{left:290.400000pt;}
.x6f{left:293.280000pt;}
.x23{left:294.240000pt;}
.x5f{left:295.200000pt;}
.x84{left:296.320000pt;}
.x9e{left:298.720000pt;}
.x8a{left:300.800000pt;}
.x5b{left:302.240000pt;}
.x33{left:304.479878pt;}
.x71{left:306.240000pt;}
.x4b{left:308.480000pt;}
.x8f{left:313.120000pt;}
.x90{left:316.960000pt;}
.x50{left:318.560000pt;}
.x8e{left:325.280000pt;}
.x24{left:346.239862pt;}
.x25{left:350.880000pt;}
.x2b{left:352.000000pt;}
.x26{left:355.199858pt;}
.x55{left:356.320000pt;}
.x58{left:357.760000pt;}
.x27{left:361.920000pt;}
.x6b{left:374.880000pt;}
.xe{left:380.160094pt;}
.xf{left:384.160091pt;}
.x35{left:387.519845pt;}
.x76{left:392.960000pt;}
.x78{left:398.559841pt;}
.x85{left:405.440000pt;}
.x7e{left:406.400000pt;}
.x8b{left:409.120000pt;}
.x32{left:411.200455pt;}
.x91{left:414.080000pt;}
.x92{left:420.800000pt;}
.x9f{left:424.160000pt;}
.x8c{left:425.760000pt;}
.x7f{left:428.320000pt;}
.x86{left:429.280000pt;}
.x77{left:441.600000pt;}
.xad{left:446.720000pt;}
.xb4{left:448.320000pt;}
.xae{left:451.200000pt;}
.xb5{left:452.800000pt;}
.xaf{left:454.080000pt;}
.xa6{left:455.680000pt;}
.x10{left:458.720045pt;}
.xab{left:463.840000pt;}
.xbb{left:465.120000pt;}
.x11{left:470.560037pt;}
.x12{left:482.400029pt;}
.x37{left:485.919806pt;}
.x56{left:487.200000pt;}
.x41{left:488.960000pt;}
.xb0{left:490.400000pt;}
.x51{left:492.000000pt;}
.x4c{left:493.280000pt;}
.xb6{left:495.040000pt;}
.x3b{left:497.920000pt;}
.x28{left:499.359800pt;}
.x13{left:501.919965pt;}
.x29{left:504.160000pt;}
.x14{left:505.919962pt;}
.x80{left:507.360000pt;}
.x87{left:508.480000pt;}
.x79{left:509.920000pt;}
.x97{left:512.000000pt;}
.xa0{left:513.440000pt;}
.x93{left:516.160000pt;}
.x15{left:517.759954pt;}
.x94{left:522.720000pt;}
.x36{left:524.159790pt;}
.x38{left:525.120000pt;}
.x98{left:526.720000pt;}
.x4d{left:528.000000pt;}
.x16{left:529.439947pt;}
.x88{left:530.400000pt;}
.x81{left:531.520000pt;}
.x42{left:532.480000pt;}
.x57{left:534.080000pt;}
.x46{left:535.040000pt;}
.x39{left:538.880000pt;}
.x17{left:541.279939pt;}
.x18{left:545.279936pt;}
.x19{left:560.959873pt;}
.x1a{left:564.799872pt;}
.x1b{left:576.639864pt;}
.x1c{left:580.479862pt;}
.x1d{left:584.479859pt;}
.xba{left:585.760000pt;}
.xb8{left:586.720000pt;}
.xb1{left:591.200000pt;}
.x1e{left:592.319763pt;}
.x7a{left:595.040000pt;}
.xa8{left:596.319761pt;}
.x99{left:597.760000pt;}
.xa1{left:600.160000pt;}
.x7c{left:603.994425pt;}
.x2e{left:605.600000pt;}
.x82{left:606.560000pt;}
.x43{left:609.440000pt;}
.x6c{left:612.160000pt;}
.x59{left:613.600000pt;}
.x4e{left:615.840000pt;}
.x52{left:616.960000pt;}
.x72{left:618.400000pt;}
.x9{left:619.840000pt;}
.x3c{left:620.960000pt;}
.x66{left:625.760000pt;}
.xb2{left:627.040000pt;}
.xb9{left:631.680000pt;}
.xbc{left:632.640000pt;}
.xa7{left:637.440000pt;}
.xa9{left:642.720000pt;}
.x3d{left:646.560000pt;}
.xa{left:649.600000pt;}
.x53{left:650.720000pt;}
.x4f{left:651.840000pt;}
.xb7{left:653.120000pt;}
.x5a{left:654.080000pt;}
.x6d{left:655.360000pt;}
.x47{left:657.280000pt;}
.x44{left:658.240000pt;}
.xb{left:659.520000pt;}
.x3a{left:661.920000pt;}
.x83{left:665.440000pt;}
.x8d{left:668.320000pt;}
.xa2{left:671.680000pt;}
.x9a{left:674.080000pt;}
.x7b{left:676.960000pt;}
.xac{left:687.200000pt;}
.xb3{left:688.320000pt;}
.x34{left:692.960000pt;}
.x2f{left:694.719722pt;}
.x1f{left:696.479721pt;}
.xaa{left:698.240000pt;}
}




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