
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7a2143223631cc382351e077.woff2')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_29d716445a9714b51ec2cc66.woff2')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_beb909027b79c842dbf87b43.woff2')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_6fd8d812f4991b19a0e71812.woff2')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_227198b3d04c3a26acf3b983.woff2')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_58b2764d69e2ac75833d6bf0.woff2')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_16ab56b53a8609a3b90532b6.woff2')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_cc1a83bd7bdc4781083332f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_c8edc926fb99d2abe82b7ab7.woff2')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_0cbf5309d71972632d9fc4fa.woff2')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_57eb59c27cb85cc4cd300aa1.woff2')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_c1230cb819305155a1e0ec19.woff2')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_f562dc8f0c54ff190ab18bf5.woff2')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_8aea4abfd52769afc5bed104.woff2')format("woff");}.fff{font-family:fff;line-height:0.952148;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_1abdea92024f6d97a1593192.woff2')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_ec8a3ee91f0e236d8b4de6a0.woff2')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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_7bc27c86a71d1ebb869ecddb.woff2')format("woff");}.ff12{font-family:ff12;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.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);}
.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);}
.m6{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);}
.m7{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls1{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.135781px;}
.ls4{letter-spacing:0.233340px;}
.ls3{letter-spacing:0.298320px;}
.ls6{letter-spacing:0.957480px;}
.ls8{letter-spacing:1.636079px;}
.ls7{letter-spacing:1.695059px;}
.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;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-15.179034px;}
.ws6{word-spacing:-13.851775px;}
.ws5{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws3{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;}
._3e{margin-left:-2.189732px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._f{width:2.994435px;}
._10{width:4.381924px;}
._1e{width:5.688145px;}
._11{width:7.678679px;}
._12{width:9.116161px;}
._16{width:10.127936px;}
._d{width:11.314754px;}
._c{width:12.375693px;}
._3b{width:14.038769px;}
._14{width:15.115016px;}
._13{width:16.658513px;}
._15{width:17.911585px;}
._23{width:19.116035px;}
._25{width:20.130592px;}
._1f{width:21.174764px;}
._2f{width:23.041545px;}
._22{width:24.254758px;}
._20{width:25.499529px;}
._17{width:26.598368px;}
._18{width:27.831291px;}
._33{width:28.884386px;}
._1b{width:30.542826px;}
._1c{width:31.979863px;}
._2a{width:33.425305px;}
._26{width:34.889544px;}
._1a{width:36.311205px;}
._19{width:37.478871px;}
._3d{width:38.904066px;}
._3c{width:40.210211px;}
._2b{width:41.589583px;}
._2c{width:42.676386px;}
._3a{width:43.697852px;}
._35{width:44.888783px;}
._30{width:46.915649px;}
._24{width:48.069853px;}
._39{width:50.029843px;}
._2d{width:51.339968px;}
._40{width:52.588528px;}
._21{width:53.777348px;}
._3f{width:54.989795px;}
._29{width:56.008733px;}
._37{width:57.439159px;}
._36{width:58.575805px;}
._1d{width:59.992822px;}
._28{width:61.193473px;}
._27{width:62.350967px;}
._38{width:63.855477px;}
._31{width:69.183344px;}
._32{width:70.589521px;}
._34{width:81.537881px;}
._2e{width:110.044175px;}
._e{width:372.005369px;}
.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);}
.fsa{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fs9{font-size:23.759990px;}
.fsc{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fse{font-size:51.119980px;}
.fs8{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y45{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y108{bottom:3.059028px;}
.y10a{bottom:3.059037px;}
.y1d{bottom:3.059095px;}
.ydf{bottom:3.059105px;}
.y12e{bottom:3.059129px;}
.y25{bottom:3.059139px;}
.y13d{bottom:3.059156px;}
.y13f{bottom:3.059163px;}
.y141{bottom:3.059170px;}
.y143{bottom:3.059177px;}
.y145{bottom:3.059183px;}
.y147{bottom:3.059190px;}
.yaa{bottom:3.059192px;}
.y149{bottom:3.059197px;}
.yac{bottom:3.059201px;}
.y14b{bottom:3.059204px;}
.y14d{bottom:3.059211px;}
.y14f{bottom:3.059218px;}
.yf7{bottom:3.059221px;}
.y151{bottom:3.059224px;}
.yf9{bottom:3.059230px;}
.y153{bottom:3.059231px;}
.y155{bottom:3.059238px;}
.y157{bottom:3.059245px;}
.y159{bottom:3.059252px;}
.y15b{bottom:3.059259px;}
.y15d{bottom:3.059266px;}
.y15f{bottom:3.059272px;}
.y131{bottom:3.059276px;}
.y161{bottom:3.059279px;}
.y133{bottom:3.059285px;}
.y164{bottom:3.059293px;}
.y166{bottom:3.059300px;}
.y168{bottom:3.059307px;}
.y16a{bottom:3.059313px;}
.y16c{bottom:3.059320px;}
.y16e{bottom:3.059687px;}
.y170{bottom:3.059694px;}
.y14{bottom:3.239049px;}
.y22{bottom:3.419128px;}
.y40{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y1f{bottom:4.319095px;}
.y4{bottom:4.320028px;}
.y16{bottom:4.859056px;}
.y1a{bottom:4.859074px;}
.y79{bottom:58.440277px;}
.y6{bottom:58.620277px;}
.y77{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.y78{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.y76{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.ydc{bottom:118.199953px;}
.yf5{bottom:118.379953px;}
.y12c{bottom:124.859950px;}
.y106{bottom:125.759950px;}
.y199{bottom:125.939950px;}
.y3d{bottom:128.459949px;}
.ybb{bottom:129.899948px;}
.ya7{bottom:130.439948px;}
.y73{bottom:130.619948px;}
.ydb{bottom:141.239944px;}
.yf4{bottom:141.419943px;}
.y171{bottom:146.820241px;}
.y12b{bottom:147.899941px;}
.y105{bottom:148.799940px;}
.y198{bottom:149.519940px;}
.y3c{bottom:151.499939px;}
.yba{bottom:152.939939px;}
.ya6{bottom:153.299939px;}
.y72{bottom:153.479939px;}
.y16f{bottom:161.940240px;}
.yda{bottom:164.279934px;}
.y12a{bottom:170.939932px;}
.y104{bottom:171.839931px;}
.y197{bottom:173.279931px;}
.y3b{bottom:174.539930px;}
.yb9{bottom:175.979930px;}
.ya5{bottom:176.339929px;}
.y71{bottom:176.519929px;}
.y16d{bottom:179.040240px;}
.yd9{bottom:187.319925px;}
.y129{bottom:193.979922px;}
.y103{bottom:194.699922px;}
.y16b{bottom:196.140600px;}
.y196{bottom:196.859921px;}
.y3a{bottom:197.579921px;}
.yb8{bottom:198.839920px;}
.ya4{bottom:199.379920px;}
.y70{bottom:199.559920px;}
.yd8{bottom:210.359916px;}
.y169{bottom:213.240600px;}
.y128{bottom:217.019913px;}
.y102{bottom:217.739913px;}
.y39{bottom:220.439912px;}
.yb7{bottom:221.879911px;}
.ya3{bottom:222.419911px;}
.y6f{bottom:222.599911px;}
.y167{bottom:230.340600px;}
.yd7{bottom:233.219907px;}
.yf3{bottom:233.399907px;}
.y127{bottom:240.059904px;}
.y101{bottom:240.779904px;}
.y38{bottom:243.479903px;}
.yb6{bottom:244.199902px;}
.ya2{bottom:245.459902px;}
.y6e{bottom:245.639902px;}
.y165{bottom:247.440600px;}
.yd6{bottom:256.259897px;}
.yf2{bottom:256.439897px;}
.y126{bottom:262.919895px;}
.y100{bottom:263.819894px;}
.y163{bottom:264.540600px;}
.y37{bottom:266.519893px;}
.yb5{bottom:266.699893px;}
.y195{bottom:267.779893px;}
.ya1{bottom:268.499893px;}
.y6d{bottom:268.679893px;}
.y74{bottom:272.459891px;}
.yd5{bottom:279.299888px;}
.yf1{bottom:279.479888px;}
.y162{bottom:281.640600px;}
.y132{bottom:283.800600px;}
.y125{bottom:285.959886px;}
.yff{bottom:286.859885px;}
.y36{bottom:289.559884px;}
.yb4{bottom:289.739884px;}
.ya0{bottom:291.359883px;}
.y6c{bottom:291.539883px;}
.y160{bottom:298.740600px;}
.yd4{bottom:302.339879px;}
.y130{bottom:306.840600px;}
.y124{bottom:308.999876px;}
.yfe{bottom:309.899876px;}
.y35{bottom:312.599875px;}
.yb3{bottom:312.779875px;}
.y9f{bottom:314.399874px;}
.y6b{bottom:314.579874px;}
.y194{bottom:315.119874px;}
.y15e{bottom:315.840600px;}
.yd3{bottom:325.379870px;}
.y123{bottom:332.039867px;}
.yfd{bottom:332.759867px;}
.y15c{bottom:332.940600px;}
.y34{bottom:335.639866px;}
.y9e{bottom:337.439865px;}
.y6a{bottom:337.619865px;}
.y193{bottom:338.699865px;}
.yd2{bottom:348.239861px;}
.yf0{bottom:348.419861px;}
.y15a{bottom:350.040600px;}
.y33{bottom:351.659859px;}
.y122{bottom:355.079858px;}
.y32{bottom:355.439858px;}
.yfc{bottom:355.799858px;}
.yb2{bottom:358.679857px;}
.y9d{bottom:360.479856px;}
.y69{bottom:360.659856px;}
.y192{bottom:362.459855px;}
.y158{bottom:367.140600px;}
.yd1{bottom:371.279851px;}
.yef{bottom:371.459851px;}
.y31{bottom:375.959850px;}
.y121{bottom:378.119849px;}
.yfb{bottom:378.839848px;}
.yb1{bottom:381.719847px;}
.y9c{bottom:383.519847px;}
.y68{bottom:383.699847px;}
.y156{bottom:384.420600px;}
.y191{bottom:386.039846px;}
.yee{bottom:393.239843px;}
.yd0{bottom:394.319842px;}
.y30{bottom:398.999840px;}
.y120{bottom:400.979840px;}
.y154{bottom:401.520600px;}
.yfa{bottom:401.879839px;}
.yb0{bottom:404.759838px;}
.y9b{bottom:406.559837px;}
.y67{bottom:406.739837px;}
.y190{bottom:409.619836px;}
.yed{bottom:414.839834px;}
.ycf{bottom:417.359833px;}
.y152{bottom:418.620600px;}
.yf8{bottom:421.860600px;}
.y2f{bottom:422.039831px;}
.y11f{bottom:424.019830px;}
.yaf{bottom:427.799829px;}
.y9a{bottom:429.419828px;}
.y66{bottom:429.599828px;}
.y18f{bottom:433.379827px;}
.y150{bottom:435.720600px;}
.yec{bottom:437.879825px;}
.yce{bottom:440.759824px;}
.yf6{bottom:444.900600px;}
.y2e{bottom:445.079822px;}
.y11e{bottom:447.059821px;}
.yae{bottom:450.659820px;}
.y99{bottom:452.459819px;}
.y65{bottom:452.639819px;}
.y14e{bottom:452.820600px;}
.y18e{bottom:456.959817px;}
.yeb{bottom:460.919816px;}
.ycd{bottom:464.519814px;}
.y2d{bottom:467.939813px;}
.y14c{bottom:469.920600px;}
.y11d{bottom:470.099812px;}
.yad{bottom:473.699811px;}
.y98{bottom:475.499810px;}
.y64{bottom:475.679810px;}
.y18d{bottom:480.539808px;}
.yea{bottom:483.959806px;}
.y14a{bottom:487.020600px;}
.ycc{bottom:488.099805px;}
.y2c{bottom:490.979804px;}
.y11c{bottom:493.139803px;}
.yab{bottom:493.680600px;}
.y97{bottom:498.539801px;}
.y63{bottom:498.719801px;}
.y148{bottom:504.120600px;}
.y18c{bottom:504.299798px;}
.ye9{bottom:506.999797px;}
.ycb{bottom:511.679795px;}
.y2b{bottom:514.019794px;}
.y11b{bottom:515.999794px;}
.ya9{bottom:516.720600px;}
.y146{bottom:521.220600px;}
.y96{bottom:521.579791px;}
.y62{bottom:521.759791px;}
.y18b{bottom:527.879789px;}
.ye8{bottom:529.859788px;}
.yca{bottom:535.439786px;}
.y2a{bottom:537.059785px;}
.y144{bottom:538.320600px;}
.y11a{bottom:539.039784px;}
.y95{bottom:544.619782px;}
.y61{bottom:544.799782px;}
.y18a{bottom:551.639779px;}
.ye7{bottom:552.899779px;}
.y142{bottom:555.420600px;}
.yc9{bottom:559.019776px;}
.y29{bottom:560.099776px;}
.y119{bottom:562.079775px;}
.y94{bottom:567.479773px;}
.y60{bottom:567.659773px;}
.y140{bottom:572.520600px;}
.y189{bottom:575.219770px;}
.ye6{bottom:575.939770px;}
.yc8{bottom:582.779767px;}
.y28{bottom:583.139767px;}
.y118{bottom:585.119766px;}
.y13e{bottom:589.620600px;}
.y93{bottom:590.519764px;}
.y5f{bottom:590.699764px;}
.y188{bottom:598.799760px;}
.ye5{bottom:598.979760px;}
.y27{bottom:605.999758px;}
.yc7{bottom:606.359757px;}
.y13c{bottom:607.800600px;}
.y117{bottom:608.159757px;}
.y92{bottom:613.559755px;}
.y5e{bottom:613.739755px;}
.ye4{bottom:622.019751px;}
.y187{bottom:622.559751px;}
.y26{bottom:629.039748px;}
.yc6{bottom:629.939748px;}
.y116{bottom:631.199748px;}
.y13b{bottom:636.059746px;}
.y91{bottom:636.599745px;}
.y5d{bottom:636.779745px;}
.ye3{bottom:645.059742px;}
.y186{bottom:646.139742px;}
.y24{bottom:649.020600px;}
.y12f{bottom:651.000600px;}
.yc5{bottom:653.699739px;}
.y115{bottom:654.059738px;}
.y13a{bottom:659.099736px;}
.y90{bottom:659.639736px;}
.y5c{bottom:659.819736px;}
.ye2{bottom:667.919733px;}
.y185{bottom:669.719732px;}
.y12d{bottom:674.040600px;}
.y114{bottom:677.099729px;}
.y21{bottom:677.100600px;}
.yc4{bottom:677.279729px;}
.y23{bottom:680.519728px;}
.y139{bottom:682.139727px;}
.y8f{bottom:682.499727px;}
.y5b{bottom:682.679727px;}
.ya8{bottom:685.019726px;}
.ye1{bottom:690.959724px;}
.y184{bottom:693.479723px;}
.y113{bottom:700.139720px;}
.yc3{bottom:700.859720px;}
.y138{bottom:705.359718px;}
.y8e{bottom:705.539718px;}
.y5a{bottom:705.719718px;}
.ye0{bottom:713.999714px;}
.y183{bottom:717.059713px;}
.y20{bottom:718.319713px;}
.y112{bottom:723.179711px;}
.yc2{bottom:724.619710px;}
.y137{bottom:728.399709px;}
.y8d{bottom:728.579709px;}
.y59{bottom:728.759708px;}
.yde{bottom:733.980600px;}
.y182{bottom:740.819704px;}
.y111{bottom:746.219702px;}
.yc1{bottom:748.199701px;}
.y136{bottom:751.439699px;}
.y8c{bottom:751.619699px;}
.y58{bottom:751.799699px;}
.ydd{bottom:757.020600px;}
.y1e{bottom:757.920600px;}
.y1c{bottom:759.180600px;}
.y181{bottom:764.399694px;}
.y110{bottom:769.259692px;}
.yc0{bottom:771.959691px;}
.y135{bottom:774.479690px;}
.y8b{bottom:774.659690px;}
.y57{bottom:774.839690px;}
.y1b{bottom:778.259689px;}
.y180{bottom:787.979685px;}
.y10f{bottom:792.119683px;}
.ybf{bottom:795.539682px;}
.y134{bottom:797.519681px;}
.y8a{bottom:797.699681px;}
.y56{bottom:797.879681px;}
.y19{bottom:809.400600px;}
.y17f{bottom:811.739675px;}
.y10e{bottom:815.159674px;}
.ybe{bottom:819.119672px;}
.y89{bottom:820.559672px;}
.y55{bottom:820.739672px;}
.y18{bottom:832.079667px;}
.y17e{bottom:835.319666px;}
.y10d{bottom:838.199665px;}
.ybd{bottom:842.879663px;}
.y88{bottom:843.599663px;}
.y54{bottom:843.779662px;}
.y15{bottom:854.760600px;}
.y17d{bottom:858.899656px;}
.y10c{bottom:861.239656px;}
.y17{bottom:864.839654px;}
.ybc{bottom:866.459653px;}
.y87{bottom:866.639653px;}
.y53{bottom:866.819653px;}
.y13{bottom:874.920600px;}
.y17c{bottom:882.659647px;}
.y10b{bottom:884.279646px;}
.y86{bottom:889.679644px;}
.y52{bottom:889.859644px;}
.y109{bottom:904.260600px;}
.y17b{bottom:906.239638px;}
.y12{bottom:908.579637px;}
.y85{bottom:912.719635px;}
.y51{bottom:912.899635px;}
.y107{bottom:927.120600px;}
.y17a{bottom:929.999628px;}
.y84{bottom:935.759626px;}
.y50{bottom:935.939626px;}
.y11{bottom:949.259620px;}
.y179{bottom:953.579619px;}
.y83{bottom:958.619617px;}
.y4f{bottom:958.799616px;}
.y1a6{bottom:973.559611px;}
.y178{bottom:977.159609px;}
.y82{bottom:981.659607px;}
.y4d{bottom:981.839607px;}
.y4e{bottom:985.619606px;}
.y10{bottom:990.119604px;}
.y1a0{bottom:994.799602px;}
.y177{bottom:1000.919600px;}
.y81{bottom:1004.699598px;}
.y4c{bottom:1004.879598px;}
.yf{bottom:1013.519595px;}
.y19f{bottom:1016.219594px;}
.y1a5{bottom:1019.999592px;}
.y176{bottom:1024.499590px;}
.y80{bottom:1027.739589px;}
.y4b{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.y19e{bottom:1037.819585px;}
.y1a4{bottom:1044.659582px;}
.y175{bottom:1048.079581px;}
.y7f{bottom:1050.779580px;}
.y4a{bottom:1050.959580px;}
.y19d{bottom:1058.159577px;}
.y1a3{bottom:1069.139572px;}
.y174{bottom:1071.839571px;}
.y44{bottom:1073.280600px;}
.y7e{bottom:1073.819570px;}
.y49{bottom:1073.999570px;}
.y19c{bottom:1078.319569px;}
.y43{bottom:1082.279567px;}
.y1a2{bottom:1093.619563px;}
.y173{bottom:1095.419562px;}
.y7d{bottom:1096.679561px;}
.y48{bottom:1096.859561px;}
.y19b{bottom:1099.739560px;}
.y42{bottom:1103.519559px;}
.y1a1{bottom:1118.279553px;}
.y172{bottom:1119.179552px;}
.y7c{bottom:1119.719552px;}
.y47{bottom:1119.899552px;}
.y19a{bottom:1121.339551px;}
.y41{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y7b{bottom:1142.759543px;}
.y46{bottom:1142.939543px;}
.y3f{bottom:1145.280600px;}
.y3e{bottom:1149.059540px;}
.y75{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.y7a{bottom:1195.680600px;}
.y7{bottom:1195.860600px;}
.h23{height:2.880000px;}
.hb{height:8.169958px;}
.hd{height:13.500000px;}
.h16{height:15.120000px;}
.h2a{height:15.120360px;}
.h27{height:15.480000px;}
.h1d{height:15.859330px;}
.h18{height:16.380000px;}
.h1b{height:17.100000px;}
.hf{height:20.160000px;}
.h13{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h21{height:21.780000px;}
.h1e{height:25.913662px;}
.h11{height:25.951630px;}
.h25{height:27.228505px;}
.h26{height:31.585065px;}
.he{height:32.199245px;}
.h1a{height:33.588971px;}
.h29{height:36.486196px;}
.h12{height:36.886626px;}
.h28{height:38.664477px;}
.h15{height:40.005336px;}
.h17{height:40.842757px;}
.h22{height:41.290999px;}
.h1f{height:43.185920px;}
.h1c{height:45.199318px;}
.h8{height:47.988262px;}
.h10{height:48.058575px;}
.h14{height:48.199199px;}
.h24{height:49.907793px;}
.h19{height:50.132792px;}
.ha{height:54.457009px;}
.h20{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w59{width:3.420000px;}
.w1c{width:4.140000px;}
.w26{width:4.320000px;}
.wd{width:4.500000px;}
.w19{width:4.860000px;}
.w23{width:5.040000px;}
.w35{width:5.220000px;}
.w1{width:6.480000px;}
.wf{width:7.740000px;}
.w7{width:8.280000px;}
.w31{width:8.460000px;}
.w13{width:9.900000px;}
.w12{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.wb{width:12.240000px;}
.w9{width:12.420000px;}
.w33{width:13.320000px;}
.w36{width:13.500000px;}
.w29{width:14.220000px;}
.w30{width:15.120000px;}
.w2b{width:15.480000px;}
.w2a{width:15.840000px;}
.w3{width:16.020000px;}
.w15{width:17.820000px;}
.w3b{width:20.340000px;}
.w4f{width:24.660000px;}
.w72{width:24.840000px;}
.w5a{width:26.460000px;}
.w37{width:29.700000px;}
.w50{width:29.880000px;}
.w51{width:30.060000px;}
.w61{width:30.420000px;}
.w2e{width:31.320000px;}
.w32{width:31.500000px;}
.w34{width:31.680000px;}
.w4b{width:31.860000px;}
.w74{width:32.040000px;}
.w4d{width:32.400000px;}
.w73{width:32.760000px;}
.w3d{width:32.940000px;}
.w4{width:33.480000px;}
.w2d{width:34.200000px;}
.w62{width:34.920000px;}
.w76{width:35.100000px;}
.w39{width:35.640000px;}
.w6d{width:36.720000px;}
.w65{width:37.080000px;}
.w63{width:37.440000px;}
.w64{width:37.620000px;}
.w3a{width:37.980000px;}
.w6e{width:38.160000px;}
.w43{width:38.340000px;}
.w44{width:38.700000px;}
.w40{width:38.880000px;}
.w45{width:39.060000px;}
.w54{width:39.240000px;}
.w42{width:39.420000px;}
.w75{width:39.780000px;}
.w55{width:40.140000px;}
.w57{width:40.320000px;}
.w46{width:40.500000px;}
.w71{width:41.580000px;}
.w25{width:41.940000px;}
.w70{width:42.300000px;}
.w5d{width:43.020000px;}
.w6f{width:43.200000px;}
.w1b{width:43.380000px;}
.w22{width:43.740000px;}
.w18{width:44.100000px;}
.w1e{width:44.280000px;}
.w5c{width:44.460000px;}
.w5f{width:45.000000px;}
.w67{width:45.180000px;}
.w5e{width:45.360000px;}
.w5b{width:45.720000px;}
.w6a{width:46.440000px;}
.w68{width:47.340000px;}
.w6b{width:47.700000px;}
.w69{width:47.880000px;}
.w48{width:48.060000px;}
.w4a{width:50.400000px;}
.w47{width:51.120000px;}
.w2f{width:54.720000px;}
.w14{width:55.260000px;}
.w52{width:55.980000px;}
.w21{width:56.700000px;}
.w41{width:57.060000px;}
.w3f{width:57.780000px;}
.w3e{width:59.040000px;}
.w49{width:64.980000px;}
.w28{width:65.160000px;}
.w10{width:65.700000px;}
.w53{width:65.880000px;}
.w2c{width:72.360000px;}
.w3c{width:77.040000px;}
.wc{width:77.940000px;}
.w6c{width:86.580000px;}
.w66{width:97.560000px;}
.w56{width:100.440000px;}
.w58{width:117.540000px;}
.w2{width:119.700000px;}
.w4c{width:127.080000px;}
.w38{width:130.320000px;}
.w4e{width:151.380000px;}
.w8{width:154.080000px;}
.w60{width:173.880000px;}
.w16{width:251.280000px;}
.w20{width:267.300000px;}
.w1f{width:275.220000px;}
.w1a{width:275.400000px;}
.w24{width:275.580000px;}
.w1d{width:276.840000px;}
.w27{width:278.100000px;}
.wa{width:295.200000px;}
.w17{width:324.000000px;}
.we{width:347.400000px;}
.w11{width:675.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x27{left:116.459953px;}
.x5{left:120.240000px;}
.x59{left:121.320000px;}
.x55{left:123.120000px;}
.x5a{left:126.360000px;}
.x56{left:128.160000px;}
.x66{left:133.380000px;}
.x57{left:136.440000px;}
.x2{left:137.699962px;}
.x5c{left:139.680000px;}
.x49{left:142.200000px;}
.x5d{left:144.900000px;}
.x5b{left:147.240000px;}
.x58{left:149.940000px;}
.x36{left:151.560000px;}
.x3{left:155.700000px;}
.x5e{left:158.400000px;}
.x54{left:162.720000px;}
.x75{left:163.980000px;}
.x70{left:165.060000px;}
.x2e{left:166.679933px;}
.x4{left:171.899931px;}
.x39{left:173.160000px;}
.x26{left:174.599930px;}
.x43{left:180.360000px;}
.x2f{left:183.239927px;}
.xa{left:185.219926px;}
.x22{left:187.200000px;}
.x23{left:191.700000px;}
.x90{left:194.580000px;}
.x8a{left:205.560000px;}
.x76{left:208.440000px;}
.x67{left:210.420000px;}
.x78{left:225.540000px;}
.x79{left:228.960000px;}
.x71{left:235.080000px;}
.x60{left:238.320000px;}
.x6{left:239.940000px;}
.x7a{left:255.420000px;}
.xb{left:259.740316px;}
.x1f{left:263.339895px;}
.x20{left:268.200000px;}
.x86{left:281.880000px;}
.x29{left:342.539863px;}
.x7b{left:374.580000px;}
.x68{left:378.000000px;}
.x91{left:379.080000px;}
.x95{left:380.700000px;}
.x4a{left:381.780000px;}
.x30{left:389.159844px;}
.x3a{left:390.240000px;}
.x31{left:394.559842px;}
.x44{left:397.440000px;}
.x21{left:403.920000px;}
.x4b{left:413.100000px;}
.x96{left:414.180000px;}
.x92{left:415.800000px;}
.x69{left:416.880000px;}
.x7c{left:420.300000px;}
.xc{left:427.680106px;}
.xd{left:432.180102px;}
.x2b{left:435.959826px;}
.x8b{left:443.520000px;}
.x7d{left:444.960000px;}
.x6a{left:447.840000px;}
.x87{left:449.820000px;}
.x4c{left:451.620000px;}
.x3b{left:459.360000px;}
.x28{left:462.600512px;}
.x45{left:467.280000px;}
.x3c{left:475.200000px;}
.x4d{left:482.940000px;}
.x88{left:484.740000px;}
.x6b{left:486.720000px;}
.x7e{left:489.420000px;}
.x8c{left:490.860000px;}
.x37{left:504.720000px;}
.x34{left:506.880000px;}
.x38{left:508.680000px;}
.x35{left:511.380000px;}
.x7f{left:514.260000px;}
.xe{left:516.060050px;}
.x32{left:518.040000px;}
.x4e{left:520.740000px;}
.x72{left:524.160000px;}
.xf{left:529.380042px;}
.x33{left:535.500000px;}
.x24{left:539.100000px;}
.x10{left:542.700033px;}
.x3d{left:544.320000px;}
.x73{left:548.820000px;}
.x4f{left:552.060000px;}
.x89{left:555.120000px;}
.x2d{left:556.199778px;}
.x80{left:558.540000px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x13{left:582.479948px;}
.x81{left:584.460000px;}
.x6c{left:586.620000px;}
.x61{left:588.240000px;}
.x2c{left:589.679764px;}
.x5f{left:591.120000px;}
.x14{left:595.619941px;}
.x3e{left:597.960000px;}
.x46{left:606.060000px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x50{left:621.720000px;}
.x62{left:623.880000px;}
.x6d{left:625.500000px;}
.x82{left:627.480000px;}
.x8d{left:630.000000px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x77{left:656.460000px;}
.x1b{left:657.539841px;}
.x51{left:660.960000px;}
.x1c{left:666.359733px;}
.x3f{left:668.880000px;}
.x47{left:676.620000px;}
.x40{left:684.360000px;}
.x52{left:692.280000px;}
.x63{left:695.700000px;}
.x7{left:697.320000px;}
.x83{left:699.300000px;}
.x8e{left:723.420000px;}
.x84{left:724.680000px;}
.x93{left:726.480000px;}
.x6e{left:727.740000px;}
.x64{left:729.360000px;}
.x8{left:730.800000px;}
.x74{left:732.240000px;}
.x41{left:739.260000px;}
.x9{left:741.960000px;}
.x48{left:747.180000px;}
.x42{left:755.280000px;}
.x53{left:762.840000px;}
.x65{left:765.000000px;}
.x6f{left:766.620000px;}
.x94{left:768.060000px;}
.x85{left:769.680000px;}
.x8f{left:771.120000px;}
.x2a{left:779.580000px;}
.x25{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls1{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.120694pt;}
.ls4{letter-spacing:0.207413pt;}
.ls3{letter-spacing:0.265173pt;}
.ls6{letter-spacing:0.851093pt;}
.ls8{letter-spacing:1.454293pt;}
.ls7{letter-spacing:1.506719pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.492475pt;}
.ws6{word-spacing:-12.312689pt;}
.ws5{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws3{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;}
._3e{margin-left:-1.946428pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._f{width:2.661720pt;}
._10{width:3.895043pt;}
._1e{width:5.056129pt;}
._11{width:6.825492pt;}
._12{width:8.103255pt;}
._16{width:9.002610pt;}
._d{width:10.057559pt;}
._c{width:11.000616pt;}
._3b{width:12.478906pt;}
._14{width:13.435569pt;}
._13{width:14.807567pt;}
._15{width:15.921409pt;}
._23{width:16.992031pt;}
._25{width:17.893860pt;}
._1f{width:18.822013pt;}
._2f{width:20.481374pt;}
._22{width:21.559785pt;}
._20{width:22.666248pt;}
._17{width:23.642993pt;}
._18{width:24.738925pt;}
._33{width:25.675010pt;}
._1b{width:27.149179pt;}
._1c{width:28.426545pt;}
._2a{width:29.711382pt;}
._26{width:31.012928pt;}
._1a{width:32.276627pt;}
._19{width:33.314552pt;}
._3d{width:34.581392pt;}
._3c{width:35.742409pt;}
._2b{width:36.968518pt;}
._2c{width:37.934566pt;}
._3a{width:38.842535pt;}
._35{width:39.901140pt;}
._30{width:41.702799pt;}
._24{width:42.728758pt;}
._39{width:44.470971pt;}
._2d{width:45.635527pt;}
._40{width:46.745359pt;}
._21{width:47.802087pt;}
._3f{width:48.879818pt;}
._29{width:49.785540pt;}
._37{width:51.057030pt;}
._36{width:52.067382pt;}
._1d{width:53.326953pt;}
._28{width:54.394198pt;}
._27{width:55.423082pt;}
._38{width:56.760424pt;}
._31{width:61.496306pt;}
._32{width:62.746241pt;}
._34{width:72.478116pt;}
._2e{width:97.817044pt;}
._e{width:330.671439pt;}
.fsa{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fs9{font-size:21.119992pt;}
.fsc{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fse{font-size:45.439982pt;}
.fs8{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y45{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y108{bottom:2.719136pt;}
.y10a{bottom:2.719144pt;}
.y1d{bottom:2.719196pt;}
.ydf{bottom:2.719205pt;}
.y12e{bottom:2.719226pt;}
.y25{bottom:2.719235pt;}
.y13d{bottom:2.719249pt;}
.y13f{bottom:2.719256pt;}
.y141{bottom:2.719262pt;}
.y143{bottom:2.719268pt;}
.y145{bottom:2.719274pt;}
.y147{bottom:2.719280pt;}
.yaa{bottom:2.719282pt;}
.y149{bottom:2.719286pt;}
.yac{bottom:2.719290pt;}
.y14b{bottom:2.719292pt;}
.y14d{bottom:2.719298pt;}
.y14f{bottom:2.719305pt;}
.yf7{bottom:2.719307pt;}
.y151{bottom:2.719311pt;}
.yf9{bottom:2.719316pt;}
.y153{bottom:2.719317pt;}
.y155{bottom:2.719323pt;}
.y157{bottom:2.719329pt;}
.y159{bottom:2.719335pt;}
.y15b{bottom:2.719341pt;}
.y15d{bottom:2.719347pt;}
.y15f{bottom:2.719353pt;}
.y131{bottom:2.719356pt;}
.y161{bottom:2.719359pt;}
.y133{bottom:2.719365pt;}
.y164{bottom:2.719372pt;}
.y166{bottom:2.719378pt;}
.y168{bottom:2.719384pt;}
.y16a{bottom:2.719390pt;}
.y16c{bottom:2.719396pt;}
.y16e{bottom:2.719722pt;}
.y170{bottom:2.719728pt;}
.y14{bottom:2.879154pt;}
.y22{bottom:3.039225pt;}
.y40{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y1f{bottom:3.839196pt;}
.y4{bottom:3.840025pt;}
.y16{bottom:4.319161pt;}
.y1a{bottom:4.319177pt;}
.y79{bottom:51.946913pt;}
.y6{bottom:52.106912pt;}
.y77{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.y78{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.y76{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.ydc{bottom:105.066625pt;}
.yf5{bottom:105.226625pt;}
.y12c{bottom:110.986622pt;}
.y106{bottom:111.786622pt;}
.y199{bottom:111.946622pt;}
.y3d{bottom:114.186621pt;}
.ybb{bottom:115.466620pt;}
.ya7{bottom:115.946620pt;}
.y73{bottom:116.106620pt;}
.ydb{bottom:125.546616pt;}
.yf4{bottom:125.706616pt;}
.y171{bottom:130.506881pt;}
.y12b{bottom:131.466614pt;}
.y105{bottom:132.266614pt;}
.y198{bottom:132.906614pt;}
.y3c{bottom:134.666613pt;}
.yba{bottom:135.946612pt;}
.ya6{bottom:136.266612pt;}
.y72{bottom:136.426612pt;}
.y16f{bottom:143.946880pt;}
.yda{bottom:146.026608pt;}
.y12a{bottom:151.946606pt;}
.y104{bottom:152.746606pt;}
.y197{bottom:154.026605pt;}
.y3b{bottom:155.146605pt;}
.yb9{bottom:156.426604pt;}
.ya5{bottom:156.746604pt;}
.y71{bottom:156.906604pt;}
.y16d{bottom:159.146880pt;}
.yd9{bottom:166.506600pt;}
.y129{bottom:172.426598pt;}
.y103{bottom:173.066597pt;}
.y16b{bottom:174.347200pt;}
.y196{bottom:174.986597pt;}
.y3a{bottom:175.626596pt;}
.yb8{bottom:176.746596pt;}
.ya4{bottom:177.226596pt;}
.y70{bottom:177.386596pt;}
.yd8{bottom:186.986592pt;}
.y169{bottom:189.547200pt;}
.y128{bottom:192.906590pt;}
.y102{bottom:193.546589pt;}
.y39{bottom:195.946588pt;}
.yb7{bottom:197.226588pt;}
.ya3{bottom:197.706588pt;}
.y6f{bottom:197.866588pt;}
.y167{bottom:204.747200pt;}
.yd7{bottom:207.306584pt;}
.yf3{bottom:207.466584pt;}
.y127{bottom:213.386581pt;}
.y101{bottom:214.026581pt;}
.y38{bottom:216.426580pt;}
.yb6{bottom:217.066580pt;}
.ya2{bottom:218.186579pt;}
.y6e{bottom:218.346579pt;}
.y165{bottom:219.947200pt;}
.yd6{bottom:227.786576pt;}
.yf2{bottom:227.946575pt;}
.y126{bottom:233.706573pt;}
.y100{bottom:234.506573pt;}
.y163{bottom:235.147200pt;}
.y37{bottom:236.906572pt;}
.yb5{bottom:237.066572pt;}
.y195{bottom:238.026571pt;}
.ya1{bottom:238.666571pt;}
.y6d{bottom:238.826571pt;}
.y74{bottom:242.186570pt;}
.yd5{bottom:248.266567pt;}
.yf1{bottom:248.426567pt;}
.y162{bottom:250.347200pt;}
.y132{bottom:252.267200pt;}
.y125{bottom:254.186565pt;}
.yff{bottom:254.986565pt;}
.y36{bottom:257.386564pt;}
.yb4{bottom:257.546564pt;}
.ya0{bottom:258.986563pt;}
.y6c{bottom:259.146563pt;}
.y160{bottom:265.547200pt;}
.yd4{bottom:268.746559pt;}
.y130{bottom:272.747200pt;}
.y124{bottom:274.666557pt;}
.yfe{bottom:275.466556pt;}
.y35{bottom:277.866556pt;}
.yb3{bottom:278.026555pt;}
.y9f{bottom:279.466555pt;}
.y6b{bottom:279.626555pt;}
.y194{bottom:280.106555pt;}
.y15e{bottom:280.747200pt;}
.yd3{bottom:289.226551pt;}
.y123{bottom:295.146549pt;}
.yfd{bottom:295.786548pt;}
.y15c{bottom:295.947200pt;}
.y34{bottom:298.346547pt;}
.y9e{bottom:299.946547pt;}
.y6a{bottom:300.106547pt;}
.y193{bottom:301.066546pt;}
.yd2{bottom:309.546543pt;}
.yf0{bottom:309.706543pt;}
.y15a{bottom:311.147200pt;}
.y33{bottom:312.586542pt;}
.y122{bottom:315.626540pt;}
.y32{bottom:315.946540pt;}
.yfc{bottom:316.266540pt;}
.yb2{bottom:318.826539pt;}
.y9d{bottom:320.426538pt;}
.y69{bottom:320.586538pt;}
.y192{bottom:322.186538pt;}
.y158{bottom:326.347200pt;}
.yd1{bottom:330.026535pt;}
.yef{bottom:330.186535pt;}
.y31{bottom:334.186533pt;}
.y121{bottom:336.106532pt;}
.yfb{bottom:336.746532pt;}
.yb1{bottom:339.306531pt;}
.y9c{bottom:340.906530pt;}
.y68{bottom:341.066530pt;}
.y156{bottom:341.707200pt;}
.y191{bottom:343.146529pt;}
.yee{bottom:349.546527pt;}
.yd0{bottom:350.506526pt;}
.y30{bottom:354.666525pt;}
.y120{bottom:356.426524pt;}
.y154{bottom:356.907200pt;}
.yfa{bottom:357.226524pt;}
.yb0{bottom:359.786523pt;}
.y9b{bottom:361.386522pt;}
.y67{bottom:361.546522pt;}
.y190{bottom:364.106521pt;}
.yed{bottom:368.746519pt;}
.ycf{bottom:370.986518pt;}
.y152{bottom:372.107200pt;}
.yf8{bottom:374.987200pt;}
.y2f{bottom:375.146517pt;}
.y11f{bottom:376.906516pt;}
.yaf{bottom:380.266515pt;}
.y9a{bottom:381.706514pt;}
.y66{bottom:381.866514pt;}
.y18f{bottom:385.226513pt;}
.y150{bottom:387.307200pt;}
.yec{bottom:389.226511pt;}
.yce{bottom:391.786510pt;}
.yf6{bottom:395.467200pt;}
.y2e{bottom:395.626508pt;}
.y11e{bottom:397.386508pt;}
.yae{bottom:400.586506pt;}
.y99{bottom:402.186506pt;}
.y65{bottom:402.346506pt;}
.y14e{bottom:402.507200pt;}
.y18e{bottom:406.186504pt;}
.yeb{bottom:409.706503pt;}
.ycd{bottom:412.906502pt;}
.y2d{bottom:415.946500pt;}
.y14c{bottom:417.707200pt;}
.y11d{bottom:417.866500pt;}
.yad{bottom:421.066498pt;}
.y98{bottom:422.666498pt;}
.y64{bottom:422.826498pt;}
.y18d{bottom:427.146496pt;}
.yea{bottom:430.186495pt;}
.y14a{bottom:432.907200pt;}
.ycc{bottom:433.866493pt;}
.y2c{bottom:436.426492pt;}
.y11c{bottom:438.346491pt;}
.yab{bottom:438.827200pt;}
.y97{bottom:443.146489pt;}
.y63{bottom:443.306489pt;}
.y148{bottom:448.107200pt;}
.y18c{bottom:448.266487pt;}
.ye9{bottom:450.666486pt;}
.ycb{bottom:454.826485pt;}
.y2b{bottom:456.906484pt;}
.y11b{bottom:458.666483pt;}
.ya9{bottom:459.307200pt;}
.y146{bottom:463.307200pt;}
.y96{bottom:463.626481pt;}
.y62{bottom:463.786481pt;}
.y18b{bottom:469.226479pt;}
.ye8{bottom:470.986478pt;}
.yca{bottom:475.946476pt;}
.y2a{bottom:477.386476pt;}
.y144{bottom:478.507200pt;}
.y11a{bottom:479.146475pt;}
.y95{bottom:484.106473pt;}
.y61{bottom:484.266473pt;}
.y18a{bottom:490.346471pt;}
.ye7{bottom:491.466470pt;}
.y142{bottom:493.707200pt;}
.yc9{bottom:496.906468pt;}
.y29{bottom:497.866468pt;}
.y119{bottom:499.626467pt;}
.y94{bottom:504.426465pt;}
.y60{bottom:504.586465pt;}
.y140{bottom:508.907200pt;}
.y189{bottom:511.306462pt;}
.ye6{bottom:511.946462pt;}
.yc8{bottom:518.026459pt;}
.y28{bottom:518.346459pt;}
.y118{bottom:520.106459pt;}
.y13e{bottom:524.107200pt;}
.y93{bottom:524.906457pt;}
.y5f{bottom:525.066457pt;}
.y188{bottom:532.266454pt;}
.ye5{bottom:532.426454pt;}
.y27{bottom:538.666451pt;}
.yc7{bottom:538.986451pt;}
.y13c{bottom:540.267200pt;}
.y117{bottom:540.586450pt;}
.y92{bottom:545.386449pt;}
.y5e{bottom:545.546448pt;}
.ye4{bottom:552.906446pt;}
.y187{bottom:553.386445pt;}
.y26{bottom:559.146443pt;}
.yc6{bottom:559.946443pt;}
.y116{bottom:561.066442pt;}
.y13b{bottom:565.386441pt;}
.y91{bottom:565.866440pt;}
.y5d{bottom:566.026440pt;}
.ye3{bottom:573.386437pt;}
.y186{bottom:574.346437pt;}
.y24{bottom:576.907200pt;}
.y12f{bottom:578.667200pt;}
.yc5{bottom:581.066434pt;}
.y115{bottom:581.386434pt;}
.y13a{bottom:585.866432pt;}
.y90{bottom:586.346432pt;}
.y5c{bottom:586.506432pt;}
.ye2{bottom:593.706429pt;}
.y185{bottom:595.306429pt;}
.y12d{bottom:599.147200pt;}
.y114{bottom:601.866426pt;}
.y21{bottom:601.867200pt;}
.yc4{bottom:602.026426pt;}
.y23{bottom:604.906425pt;}
.y139{bottom:606.346424pt;}
.y8f{bottom:606.666424pt;}
.y5b{bottom:606.826424pt;}
.ya8{bottom:608.906423pt;}
.ye1{bottom:614.186421pt;}
.y184{bottom:616.426420pt;}
.y113{bottom:622.346418pt;}
.yc3{bottom:622.986417pt;}
.y138{bottom:626.986416pt;}
.y8e{bottom:627.146416pt;}
.y5a{bottom:627.306416pt;}
.ye0{bottom:634.666413pt;}
.y183{bottom:637.386412pt;}
.y20{bottom:638.506411pt;}
.y112{bottom:642.826410pt;}
.yc2{bottom:644.106409pt;}
.y137{bottom:647.466408pt;}
.y8d{bottom:647.626408pt;}
.y59{bottom:647.786408pt;}
.yde{bottom:652.427200pt;}
.y182{bottom:658.506403pt;}
.y111{bottom:663.306401pt;}
.yc1{bottom:665.066401pt;}
.y136{bottom:667.946399pt;}
.y8c{bottom:668.106399pt;}
.y58{bottom:668.266399pt;}
.ydd{bottom:672.907200pt;}
.y1e{bottom:673.707200pt;}
.y1c{bottom:674.827200pt;}
.y181{bottom:679.466395pt;}
.y110{bottom:683.786393pt;}
.yc0{bottom:686.186392pt;}
.y135{bottom:688.426391pt;}
.y8b{bottom:688.586391pt;}
.y57{bottom:688.746391pt;}
.y1b{bottom:691.786390pt;}
.y180{bottom:700.426386pt;}
.y10f{bottom:704.106385pt;}
.ybf{bottom:707.146384pt;}
.y134{bottom:708.906383pt;}
.y8a{bottom:709.066383pt;}
.y56{bottom:709.226383pt;}
.y19{bottom:719.467200pt;}
.y17f{bottom:721.546378pt;}
.y10e{bottom:724.586377pt;}
.ybe{bottom:728.106375pt;}
.y89{bottom:729.386375pt;}
.y55{bottom:729.546375pt;}
.y18{bottom:739.626371pt;}
.y17e{bottom:742.506370pt;}
.y10d{bottom:745.066369pt;}
.ybd{bottom:749.226367pt;}
.y88{bottom:749.866367pt;}
.y54{bottom:750.026367pt;}
.y15{bottom:759.787200pt;}
.y17d{bottom:763.466361pt;}
.y10c{bottom:765.546360pt;}
.y17{bottom:768.746359pt;}
.ybc{bottom:770.186359pt;}
.y87{bottom:770.346359pt;}
.y53{bottom:770.506358pt;}
.y13{bottom:777.707200pt;}
.y17c{bottom:784.586353pt;}
.y10b{bottom:786.026352pt;}
.y86{bottom:790.826350pt;}
.y52{bottom:790.986350pt;}
.y109{bottom:803.787200pt;}
.y17b{bottom:805.546344pt;}
.y12{bottom:807.626344pt;}
.y85{bottom:811.306342pt;}
.y51{bottom:811.466342pt;}
.y107{bottom:824.107200pt;}
.y17a{bottom:826.666336pt;}
.y84{bottom:831.786334pt;}
.y50{bottom:831.946334pt;}
.y11{bottom:843.786329pt;}
.y179{bottom:847.626328pt;}
.y83{bottom:852.106326pt;}
.y4f{bottom:852.266326pt;}
.y1a6{bottom:865.386321pt;}
.y178{bottom:868.586319pt;}
.y82{bottom:872.586318pt;}
.y4d{bottom:872.746318pt;}
.y4e{bottom:876.106316pt;}
.y10{bottom:880.106315pt;}
.y1a0{bottom:884.266313pt;}
.y177{bottom:889.706311pt;}
.y81{bottom:893.066309pt;}
.y4c{bottom:893.226309pt;}
.yf{bottom:900.906306pt;}
.y19f{bottom:903.306305pt;}
.y1a5{bottom:906.666304pt;}
.y176{bottom:910.666302pt;}
.y80{bottom:913.546301pt;}
.y4b{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.y19e{bottom:922.506298pt;}
.y1a4{bottom:928.586295pt;}
.y175{bottom:931.626294pt;}
.y7f{bottom:934.026293pt;}
.y4a{bottom:934.186293pt;}
.y19d{bottom:940.586290pt;}
.y1a3{bottom:950.346287pt;}
.y174{bottom:952.746286pt;}
.y44{bottom:954.027200pt;}
.y7e{bottom:954.506285pt;}
.y49{bottom:954.666285pt;}
.y19c{bottom:958.506283pt;}
.y43{bottom:962.026282pt;}
.y1a2{bottom:972.106278pt;}
.y173{bottom:973.706277pt;}
.y7d{bottom:974.826277pt;}
.y48{bottom:974.986277pt;}
.y19b{bottom:977.546276pt;}
.y42{bottom:980.906274pt;}
.y1a1{bottom:994.026269pt;}
.y172{bottom:994.826269pt;}
.y7c{bottom:995.306269pt;}
.y47{bottom:995.466268pt;}
.y19a{bottom:996.746268pt;}
.y41{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y7b{bottom:1015.786260pt;}
.y46{bottom:1015.946260pt;}
.y3f{bottom:1018.027200pt;}
.y3e{bottom:1021.386258pt;}
.y75{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.y7a{bottom:1062.827200pt;}
.y7{bottom:1062.987200pt;}
.h23{height:2.560000pt;}
.hb{height:7.262185pt;}
.hd{height:12.000000pt;}
.h16{height:13.440000pt;}
.h2a{height:13.440320pt;}
.h27{height:13.760000pt;}
.h1d{height:14.097182pt;}
.h18{height:14.560000pt;}
.h1b{height:15.200000pt;}
.hf{height:17.920000pt;}
.h13{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h21{height:19.360000pt;}
.h1e{height:23.034366pt;}
.h11{height:23.068116pt;}
.h25{height:24.203115pt;}
.h26{height:28.075614pt;}
.he{height:28.621551pt;}
.h1a{height:29.856863pt;}
.h29{height:32.432175pt;}
.h12{height:32.788112pt;}
.h28{height:34.368424pt;}
.h15{height:35.560298pt;}
.h17{height:36.304673pt;}
.h22{height:36.703110pt;}
.h1f{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h8{height:42.656233pt;}
.h10{height:42.718733pt;}
.h14{height:42.843733pt;}
.h24{height:44.362482pt;}
.h19{height:44.562482pt;}
.ha{height:48.406231pt;}
.h20{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w59{width:3.040000pt;}
.w1c{width:3.680000pt;}
.w26{width:3.840000pt;}
.wd{width:4.000000pt;}
.w19{width:4.320000pt;}
.w23{width:4.480000pt;}
.w35{width:4.640000pt;}
.w1{width:5.760000pt;}
.wf{width:6.880000pt;}
.w7{width:7.360000pt;}
.w31{width:7.520000pt;}
.w13{width:8.800000pt;}
.w12{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.wb{width:10.880000pt;}
.w9{width:11.040000pt;}
.w33{width:11.840000pt;}
.w36{width:12.000000pt;}
.w29{width:12.640000pt;}
.w30{width:13.440000pt;}
.w2b{width:13.760000pt;}
.w2a{width:14.080000pt;}
.w3{width:14.240000pt;}
.w15{width:15.840000pt;}
.w3b{width:18.080000pt;}
.w4f{width:21.920000pt;}
.w72{width:22.080000pt;}
.w5a{width:23.520000pt;}
.w37{width:26.400000pt;}
.w50{width:26.560000pt;}
.w51{width:26.720000pt;}
.w61{width:27.040000pt;}
.w2e{width:27.840000pt;}
.w32{width:28.000000pt;}
.w34{width:28.160000pt;}
.w4b{width:28.320000pt;}
.w74{width:28.480000pt;}
.w4d{width:28.800000pt;}
.w73{width:29.120000pt;}
.w3d{width:29.280000pt;}
.w4{width:29.760000pt;}
.w2d{width:30.400000pt;}
.w62{width:31.040000pt;}
.w76{width:31.200000pt;}
.w39{width:31.680000pt;}
.w6d{width:32.640000pt;}
.w65{width:32.960000pt;}
.w63{width:33.280000pt;}
.w64{width:33.440000pt;}
.w3a{width:33.760000pt;}
.w6e{width:33.920000pt;}
.w43{width:34.080000pt;}
.w44{width:34.400000pt;}
.w40{width:34.560000pt;}
.w45{width:34.720000pt;}
.w54{width:34.880000pt;}
.w42{width:35.040000pt;}
.w75{width:35.360000pt;}
.w55{width:35.680000pt;}
.w57{width:35.840000pt;}
.w46{width:36.000000pt;}
.w71{width:36.960000pt;}
.w25{width:37.280000pt;}
.w70{width:37.600000pt;}
.w5d{width:38.240000pt;}
.w6f{width:38.400000pt;}
.w1b{width:38.560000pt;}
.w22{width:38.880000pt;}
.w18{width:39.200000pt;}
.w1e{width:39.360000pt;}
.w5c{width:39.520000pt;}
.w5f{width:40.000000pt;}
.w67{width:40.160000pt;}
.w5e{width:40.320000pt;}
.w5b{width:40.640000pt;}
.w6a{width:41.280000pt;}
.w68{width:42.080000pt;}
.w6b{width:42.400000pt;}
.w69{width:42.560000pt;}
.w48{width:42.720000pt;}
.w4a{width:44.800000pt;}
.w47{width:45.440000pt;}
.w2f{width:48.640000pt;}
.w14{width:49.120000pt;}
.w52{width:49.760000pt;}
.w21{width:50.400000pt;}
.w41{width:50.720000pt;}
.w3f{width:51.360000pt;}
.w3e{width:52.480000pt;}
.w49{width:57.760000pt;}
.w28{width:57.920000pt;}
.w10{width:58.400000pt;}
.w53{width:58.560000pt;}
.w2c{width:64.320000pt;}
.w3c{width:68.480000pt;}
.wc{width:69.280000pt;}
.w6c{width:76.960000pt;}
.w66{width:86.720000pt;}
.w56{width:89.280000pt;}
.w58{width:104.480000pt;}
.w2{width:106.400000pt;}
.w4c{width:112.960000pt;}
.w38{width:115.840000pt;}
.w4e{width:134.560000pt;}
.w8{width:136.960000pt;}
.w60{width:154.560000pt;}
.w16{width:223.360000pt;}
.w20{width:237.600000pt;}
.w1f{width:244.640000pt;}
.w1a{width:244.800000pt;}
.w24{width:244.960000pt;}
.w1d{width:246.080000pt;}
.w27{width:247.200000pt;}
.wa{width:262.400000pt;}
.w17{width:288.000000pt;}
.we{width:308.800000pt;}
.w11{width:600.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x27{left:103.519959pt;}
.x5{left:106.880000pt;}
.x59{left:107.840000pt;}
.x55{left:109.440000pt;}
.x5a{left:112.320000pt;}
.x56{left:113.920000pt;}
.x66{left:118.560000pt;}
.x57{left:121.280000pt;}
.x2{left:122.399966pt;}
.x5c{left:124.160000pt;}
.x49{left:126.400000pt;}
.x5d{left:128.800000pt;}
.x5b{left:130.880000pt;}
.x58{left:133.280000pt;}
.x36{left:134.720000pt;}
.x3{left:138.400000pt;}
.x5e{left:140.800000pt;}
.x54{left:144.640000pt;}
.x75{left:145.760000pt;}
.x70{left:146.720000pt;}
.x2e{left:148.159941pt;}
.x4{left:152.799939pt;}
.x39{left:153.920000pt;}
.x26{left:155.199938pt;}
.x43{left:160.320000pt;}
.x2f{left:162.879935pt;}
.xa{left:164.639934pt;}
.x22{left:166.400000pt;}
.x23{left:170.400000pt;}
.x90{left:172.960000pt;}
.x8a{left:182.720000pt;}
.x76{left:185.280000pt;}
.x67{left:187.040000pt;}
.x78{left:200.480000pt;}
.x79{left:203.520000pt;}
.x71{left:208.960000pt;}
.x60{left:211.840000pt;}
.x6{left:213.280000pt;}
.x7a{left:227.040000pt;}
.xb{left:230.880281pt;}
.x1f{left:234.079906pt;}
.x20{left:238.400000pt;}
.x86{left:250.560000pt;}
.x29{left:304.479878pt;}
.x7b{left:332.960000pt;}
.x68{left:336.000000pt;}
.x91{left:336.960000pt;}
.x95{left:338.400000pt;}
.x4a{left:339.360000pt;}
.x30{left:345.919862pt;}
.x3a{left:346.880000pt;}
.x31{left:350.719860pt;}
.x44{left:353.280000pt;}
.x21{left:359.040000pt;}
.x4b{left:367.200000pt;}
.x96{left:368.160000pt;}
.x92{left:369.600000pt;}
.x69{left:370.560000pt;}
.x7c{left:373.600000pt;}
.xc{left:380.160094pt;}
.xd{left:384.160091pt;}
.x2b{left:387.519845pt;}
.x8b{left:394.240000pt;}
.x7d{left:395.520000pt;}
.x6a{left:398.080000pt;}
.x87{left:399.840000pt;}
.x4c{left:401.440000pt;}
.x3b{left:408.320000pt;}
.x28{left:411.200455pt;}
.x45{left:415.360000pt;}
.x3c{left:422.400000pt;}
.x4d{left:429.280000pt;}
.x88{left:430.880000pt;}
.x6b{left:432.640000pt;}
.x7e{left:435.040000pt;}
.x8c{left:436.320000pt;}
.x37{left:448.640000pt;}
.x34{left:450.560000pt;}
.x38{left:452.160000pt;}
.x35{left:454.560000pt;}
.x7f{left:457.120000pt;}
.xe{left:458.720045pt;}
.x32{left:460.480000pt;}
.x4e{left:462.880000pt;}
.x72{left:465.920000pt;}
.xf{left:470.560037pt;}
.x33{left:476.000000pt;}
.x24{left:479.200000pt;}
.x10{left:482.400029pt;}
.x3d{left:483.840000pt;}
.x73{left:487.840000pt;}
.x4f{left:490.720000pt;}
.x89{left:493.440000pt;}
.x2d{left:494.399802pt;}
.x80{left:496.480000pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x13{left:517.759954pt;}
.x81{left:519.520000pt;}
.x6c{left:521.440000pt;}
.x61{left:522.880000pt;}
.x2c{left:524.159790pt;}
.x5f{left:525.440000pt;}
.x14{left:529.439947pt;}
.x3e{left:531.520000pt;}
.x46{left:538.720000pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x50{left:552.640000pt;}
.x62{left:554.560000pt;}
.x6d{left:556.000000pt;}
.x82{left:557.760000pt;}
.x8d{left:560.000000pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x77{left:583.520000pt;}
.x1b{left:584.479859pt;}
.x51{left:587.520000pt;}
.x1c{left:592.319763pt;}
.x3f{left:594.560000pt;}
.x47{left:601.440000pt;}
.x40{left:608.320000pt;}
.x52{left:615.360000pt;}
.x63{left:618.400000pt;}
.x7{left:619.840000pt;}
.x83{left:621.600000pt;}
.x8e{left:643.040000pt;}
.x84{left:644.160000pt;}
.x93{left:645.760000pt;}
.x6e{left:646.880000pt;}
.x64{left:648.320000pt;}
.x8{left:649.600000pt;}
.x74{left:650.880000pt;}
.x41{left:657.120000pt;}
.x9{left:659.520000pt;}
.x48{left:664.160000pt;}
.x42{left:671.360000pt;}
.x53{left:678.080000pt;}
.x65{left:680.000000pt;}
.x6f{left:681.440000pt;}
.x94{left:682.720000pt;}
.x85{left:684.160000pt;}
.x8f{left:685.440000pt;}
.x2a{left:692.960000pt;}
.x25{left:694.719722pt;}
.x1d{left:696.479721pt;}
}




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