
    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_df872fe17f9660836c760350.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_9d453b5c0d35e4cae8f259bc.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_7d7b21d1b928320cfbed563f.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_75c0f422f2ec123948ac4b7a.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_cbe3dd66e053b7e8e9bb6ba5.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_6bb6a1d8847afd0ef64e4951.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_3cfca37a2fbcabb4de42e1fa.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_c813c0e6058d23eaf6450512.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_9e24bd74145c2368d80cd363.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_a2135c07fe4feb2914a32401.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_a84f592c8828ae93f0461eed.woff')format("woff");}.fff{font-family:fff;line-height:0.940918;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_2383a36d5197b18c8e0a2ca7.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_b0f616dbf047bf25f4da96d0.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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f02149e6b20d957c61c19b69.woff')format("woff");}.ff12{font-family:ff12;line-height:0.931152;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,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);}
.m9{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);}
.ma{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.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);}
.m6{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;}
.v4{vertical-align:27.359989px;}
.v3{vertical-align:31.679987px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021238px;}
.lsa{letter-spacing:0.055440px;}
.ls9{letter-spacing:0.072600px;}
.ls3{letter-spacing:0.073080px;}
.ls8{letter-spacing:0.094740px;}
.lsc{letter-spacing:0.109440px;}
.lsb{letter-spacing:0.254220px;}
.ls2{letter-spacing:0.340926px;}
.lsd{letter-spacing:0.793020px;}
.ls7{letter-spacing:4.996318px;}
.ls5{letter-spacing:50.611453px;}
.ls6{letter-spacing:51.347959px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-26.919082px;}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-18.021231px;}
.ws4{word-spacing:-17.999993px;}
.ws5{word-spacing:-15.179034px;}
.wsf{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.013995px;}
.ws3{word-spacing:-10.342076px;}
.ws6{word-spacing:-8.675997px;}
.wsb{word-spacing:-8.553597px;}
.wsc{word-spacing:-2.008696px;}
.wse{word-spacing:-1.288288px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:2.448953px;}
.wsa{word-spacing:2.832515px;}
.wsd{word-spacing:5.545690px;}
._4{margin-left:-670.683089px;}
._3{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;}
._2{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._1e{margin-left:-2.222981px;}
._1{margin-left:-1.187579px;}
._0{width:1.219147px;}
._d{width:2.268338px;}
._c{width:3.580961px;}
._f{width:4.799172px;}
._16{width:5.876473px;}
._11{width:7.000549px;}
._10{width:8.120362px;}
._17{width:9.466127px;}
._12{width:10.520188px;}
._13{width:11.663912px;}
._e{width:14.922645px;}
._18{width:16.168194px;}
._1a{width:17.581009px;}
._1b{width:19.304932px;}
._19{width:21.281842px;}
._15{width:22.914531px;}
._14{width:24.646513px;}
._25{width:25.681364px;}
._20{width:27.454291px;}
._1f{width:28.706243px;}
._1c{width:30.127972px;}
._1d{width:31.523152px;}
._33{width:33.417352px;}
._2a{width:35.354804px;}
._28{width:36.515905px;}
._2f{width:38.848938px;}
._2d{width:40.599584px;}
._23{width:42.000332px;}
._24{width:43.819922px;}
._2c{width:45.081041px;}
._2b{width:47.119020px;}
._35{width:48.289114px;}
._36{width:49.497647px;}
._21{width:50.964483px;}
._22{width:52.446838px;}
._30{width:54.237006px;}
._32{width:56.946309px;}
._37{width:62.040414px;}
._29{width:64.092240px;}
._3c{width:65.613009px;}
._31{width:67.211367px;}
._3d{width:68.445486px;}
._3b{width:73.688742px;}
._39{width:75.513982px;}
._3a{width:76.689392px;}
._38{width:79.695314px;}
._2e{width:80.839155px;}
._34{width:107.099182px;}
._26{width:115.959438px;}
._27{width:203.098239px;}
.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);}
.fsd{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fsb{font-size:23.759990px;}
.fs8{font-size:33.119987px;}
.fsc{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fsf{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fsa{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fse{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y4e{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.878921px;}
.y117{bottom:3.058962px;}
.y119{bottom:3.058969px;}
.y11b{bottom:3.058976px;}
.y11e{bottom:3.058983px;}
.y121{bottom:3.058989px;}
.y124{bottom:3.058996px;}
.y127{bottom:3.059003px;}
.y12a{bottom:3.059009px;}
.y12d{bottom:3.059016px;}
.y130{bottom:3.059022px;}
.y133{bottom:3.059029px;}
.y136{bottom:3.059036px;}
.y139{bottom:3.059042px;}
.y13c{bottom:3.059049px;}
.y13f{bottom:3.059055px;}
.y142{bottom:3.059062px;}
.y144{bottom:3.059068px;}
.y25{bottom:3.059125px;}
.y30{bottom:3.059178px;}
.yf2{bottom:3.059185px;}
.yd0{bottom:3.059257px;}
.yd3{bottom:3.059270px;}
.yd5{bottom:3.059276px;}
.yd7{bottom:3.059283px;}
.yd9{bottom:3.059290px;}
.ydb{bottom:3.059296px;}
.y113{bottom:3.059700px;}
.y16{bottom:3.239032px;}
.y2d{bottom:3.419167px;}
.y49{bottom:3.778940px;}
.yc{bottom:4.138945px;}
.y7{bottom:4.140028px;}
.y27{bottom:4.319125px;}
.y4{bottom:4.320028px;}
.y18{bottom:4.859040px;}
.y1f{bottom:4.859070px;}
.y2b{bottom:4.859151px;}
.ye6{bottom:58.440277px;}
.y8{bottom:58.620277px;}
.ye5{bottom:74.640240px;}
.y6{bottom:74.820240px;}
.y3{bottom:75.000240px;}
.ye4{bottom:78.780268px;}
.y5{bottom:78.960268px;}
.ye3{bottom:79.139968px;}
.y2{bottom:79.319968px;}
.y115{bottom:111.360255px;}
.y162{bottom:121.079952px;}
.yac{bottom:121.080252px;}
.y88{bottom:123.060251px;}
.y46{bottom:123.779950px;}
.yab{bottom:127.919949px;}
.ye1{bottom:130.259948px;}
.y7b{bottom:130.619948px;}
.y114{bottom:131.160248px;}
.y87{bottom:142.319943px;}
.y161{bottom:144.119942px;}
.y45{bottom:146.639941px;}
.y112{bottom:148.080240px;}
.y86{bottom:149.159940px;}
.ye0{bottom:152.939939px;}
.y7a{bottom:153.479939px;}
.yaa{bottom:155.099938px;}
.y160{bottom:167.159933px;}
.y44{bottom:169.679932px;}
.y111{bottom:171.119932px;}
.y85{bottom:175.079930px;}
.ydf{bottom:175.619930px;}
.y79{bottom:176.519929px;}
.ya9{bottom:178.139929px;}
.y43{bottom:185.879926px;}
.y42{bottom:189.659924px;}
.y15f{bottom:190.199924px;}
.y171{bottom:192.719923px;}
.y84{bottom:197.219921px;}
.yde{bottom:198.299921px;}
.y78{bottom:199.559920px;}
.ya8{bottom:200.999920px;}
.y41{bottom:210.179916px;}
.y15e{bottom:213.239915px;}
.y170{bottom:215.759914px;}
.y83{bottom:219.539912px;}
.ydd{bottom:221.519911px;}
.y77{bottom:222.599911px;}
.ya7{bottom:224.039910px;}
.y40{bottom:233.219907px;}
.y15d{bottom:236.279905px;}
.y16f{bottom:238.799904px;}
.y82{bottom:241.679903px;}
.ydc{bottom:243.299903px;}
.y76{bottom:245.639902px;}
.ya6{bottom:247.079901px;}
.y3f{bottom:256.259897px;}
.yda{bottom:256.440600px;}
.y15c{bottom:259.139896px;}
.y16e{bottom:261.839895px;}
.y81{bottom:263.999894px;}
.y75{bottom:268.679893px;}
.ya5{bottom:270.119892px;}
.yd8{bottom:272.820600px;}
.y3e{bottom:279.119888px;}
.y15b{bottom:282.179887px;}
.y16d{bottom:284.699886px;}
.y80{bottom:286.139886px;}
.yd6{bottom:289.380600px;}
.y74{bottom:291.539883px;}
.ya4{bottom:293.159883px;}
.y3d{bottom:302.159879px;}
.y15a{bottom:305.219878px;}
.yd4{bottom:305.760600px;}
.y7f{bottom:306.299877px;}
.y16c{bottom:307.739877px;}
.y7e{bottom:313.139875px;}
.y73{bottom:314.579874px;}
.ya3{bottom:316.199874px;}
.yd2{bottom:322.140600px;}
.y3c{bottom:325.199870px;}
.y159{bottom:328.259869px;}
.y16b{bottom:330.779868px;}
.y72{bottom:337.619865px;}
.y7d{bottom:338.879864px;}
.ya2{bottom:339.059864px;}
.yd1{bottom:342.839863px;}
.y3b{bottom:348.239861px;}
.y158{bottom:351.299859px;}
.y16a{bottom:353.819858px;}
.ycf{bottom:355.080600px;}
.y71{bottom:360.659856px;}
.ya1{bottom:362.099855px;}
.y3a{bottom:371.279851px;}
.y157{bottom:374.159850px;}
.y169{bottom:376.859849px;}
.ya0{bottom:382.259847px;}
.y70{bottom:383.699847px;}
.yce{bottom:383.700147px;}
.y9f{bottom:389.099844px;}
.y39{bottom:394.319842px;}
.y156{bottom:397.199841px;}
.y168{bottom:399.719840px;}
.y6f{bottom:406.739837px;}
.ycd{bottom:406.740137px;}
.y9e{bottom:416.639833px;}
.y38{bottom:417.179833px;}
.y155{bottom:420.239832px;}
.y167{bottom:422.759831px;}
.y6e{bottom:429.599828px;}
.ycc{bottom:429.600128px;}
.y9d{bottom:439.679824px;}
.y37{bottom:440.219824px;}
.y154{bottom:443.279823px;}
.y166{bottom:445.799822px;}
.y6d{bottom:452.639819px;}
.ycb{bottom:452.640119px;}
.y9c{bottom:462.719815px;}
.y36{bottom:463.259815px;}
.y153{bottom:466.319813px;}
.y165{bottom:468.839812px;}
.y6c{bottom:475.679810px;}
.yca{bottom:475.680110px;}
.y9b{bottom:485.579806px;}
.y34{bottom:486.299805px;}
.y152{bottom:489.359804px;}
.y35{bottom:490.079804px;}
.y164{bottom:491.879803px;}
.y110{bottom:492.779803px;}
.y6b{bottom:498.719801px;}
.yc9{bottom:498.720101px;}
.y9a{bottom:508.619797px;}
.y32{bottom:509.339796px;}
.y151{bottom:512.219795px;}
.y33{bottom:513.119795px;}
.yf3{bottom:513.299795px;}
.y163{bottom:513.479795px;}
.y10f{bottom:516.179794px;}
.y6a{bottom:521.759791px;}
.yc8{bottom:521.760091px;}
.y99{bottom:532.199787px;}
.y31{bottom:532.379787px;}
.yf1{bottom:533.280600px;}
.y150{bottom:535.259786px;}
.y10e{bottom:538.679785px;}
.y69{bottom:544.799782px;}
.yc7{bottom:544.800082px;}
.y2f{bottom:552.180600px;}
.y98{bottom:555.959778px;}
.y14f{bottom:558.299777px;}
.y10d{bottom:560.999776px;}
.y68{bottom:567.659773px;}
.yc6{bottom:567.660073px;}
.y97{bottom:579.899768px;}
.y2c{bottom:580.260600px;}
.y14e{bottom:581.339767px;}
.y10c{bottom:583.319767px;}
.y2e{bottom:583.679767px;}
.y67{bottom:590.699764px;}
.yc5{bottom:590.700064px;}
.y96{bottom:603.659759px;}
.y14d{bottom:604.379758px;}
.y10b{bottom:605.639758px;}
.y66{bottom:613.739755px;}
.yc4{bottom:613.740055px;}
.y2a{bottom:616.620600px;}
.y29{bottom:621.479751px;}
.y95{bottom:627.419749px;}
.y10a{bottom:628.139749px;}
.y65{bottom:636.779745px;}
.yc3{bottom:636.780045px;}
.y14c{bottom:650.279740px;}
.y109{bottom:650.459740px;}
.y94{bottom:651.179740px;}
.y64{bottom:659.819736px;}
.yc2{bottom:659.820036px;}
.y28{bottom:665.399734px;}
.y108{bottom:672.779731px;}
.y14b{bottom:673.319731px;}
.y93{bottom:674.939730px;}
.y63{bottom:682.679727px;}
.yc1{bottom:682.680027px;}
.y26{bottom:684.120600px;}
.y24{bottom:685.380600px;}
.y107{bottom:695.099722px;}
.y14a{bottom:696.359721px;}
.y92{bottom:698.699721px;}
.y23{bottom:704.459718px;}
.y62{bottom:705.719718px;}
.yc0{bottom:705.720018px;}
.y7c{bottom:709.499716px;}
.y106{bottom:717.599713px;}
.y149{bottom:719.399712px;}
.y91{bottom:722.459711px;}
.y61{bottom:728.759708px;}
.ybf{bottom:728.760008px;}
.y22{bottom:738.479705px;}
.y105{bottom:739.919704px;}
.y148{bottom:742.439703px;}
.y90{bottom:746.219702px;}
.y60{bottom:751.799699px;}
.ybe{bottom:751.799999px;}
.y104{bottom:762.239695px;}
.y147{bottom:765.479694px;}
.y21{bottom:769.079692px;}
.y8f{bottom:769.979692px;}
.y5f{bottom:774.839690px;}
.ybd{bottom:774.839990px;}
.y103{bottom:784.739686px;}
.y146{bottom:788.339685px;}
.y8e{bottom:793.739683px;}
.y5e{bottom:797.879681px;}
.ybc{bottom:797.879981px;}
.y20{bottom:799.679680px;}
.y102{bottom:807.059677px;}
.y145{bottom:811.379675px;}
.y8d{bottom:817.499673px;}
.y1e{bottom:819.660600px;}
.y5d{bottom:820.739672px;}
.ybb{bottom:820.739972px;}
.y143{bottom:825.780600px;}
.y101{bottom:829.379668px;}
.y1d{bottom:830.459668px;}
.y8c{bottom:841.259663px;}
.y141{bottom:842.160600px;}
.y1c{bottom:842.339663px;}
.y5c{bottom:843.779662px;}
.yba{bottom:843.779962px;}
.y100{bottom:851.699659px;}
.y13e{bottom:858.720600px;}
.y8b{bottom:865.199654px;}
.y140{bottom:865.559654px;}
.y5b{bottom:866.819653px;}
.yb9{bottom:866.819953px;}
.y1a{bottom:869.699652px;}
.yff{bottom:874.199650px;}
.y1b{bottom:874.919650px;}
.y13b{bottom:875.100600px;}
.y13d{bottom:881.939647px;}
.y8a{bottom:888.959644px;}
.y5a{bottom:889.859644px;}
.yb8{bottom:889.859944px;}
.y138{bottom:891.660600px;}
.y17{bottom:895.440600px;}
.yfe{bottom:896.519641px;}
.y13a{bottom:898.499641px;}
.y19{bottom:905.519638px;}
.y135{bottom:908.040600px;}
.y89{bottom:912.719635px;}
.y59{bottom:912.899635px;}
.yb7{bottom:912.899935px;}
.y137{bottom:914.879634px;}
.y15{bottom:915.780600px;}
.yfd{bottom:918.839632px;}
.y132{bottom:924.600600px;}
.y134{bottom:931.439627px;}
.y58{bottom:935.939626px;}
.yb6{bottom:935.939926px;}
.y12f{bottom:940.980600px;}
.yf0{bottom:941.159624px;}
.yfc{bottom:941.339623px;}
.y131{bottom:947.819621px;}
.y13{bottom:949.259548px;}
.y14{bottom:949.259620px;}
.y12c{bottom:957.540600px;}
.y57{bottom:958.799616px;}
.yb5{bottom:958.799916px;}
.yef{bottom:961.139616px;}
.yfb{bottom:963.659615px;}
.y12e{bottom:964.379614px;}
.y129{bottom:973.920600px;}
.y12b{bottom:980.759608px;}
.y56{bottom:981.839607px;}
.yb4{bottom:981.839907px;}
.yee{bottom:983.819606px;}
.yfa{bottom:985.979606px;}
.y12{bottom:990.119604px;}
.y126{bottom:990.480600px;}
.y128{bottom:997.319601px;}
.y55{bottom:1004.879598px;}
.yb3{bottom:1004.879898px;}
.yed{bottom:1006.499597px;}
.y123{bottom:1006.860600px;}
.yf9{bottom:1008.299597px;}
.y11{bottom:1013.519595px;}
.y125{bottom:1013.699595px;}
.y120{bottom:1023.240600px;}
.y54{bottom:1027.919589px;}
.yb2{bottom:1027.919889px;}
.yec{bottom:1029.179588px;}
.y10{bottom:1029.899588px;}
.y122{bottom:1030.079588px;}
.yf{bottom:1030.259588px;}
.yf8{bottom:1030.799588px;}
.y11d{bottom:1039.800600px;}
.y11f{bottom:1046.639581px;}
.y53{bottom:1050.959580px;}
.yb1{bottom:1050.959880px;}
.yeb{bottom:1051.859579px;}
.yf7{bottom:1053.119579px;}
.y11a{bottom:1056.180600px;}
.y11c{bottom:1063.019575px;}
.y4d{bottom:1073.280600px;}
.y118{bottom:1073.820600px;}
.y52{bottom:1073.999570px;}
.yb0{bottom:1073.999870px;}
.yea{bottom:1074.539570px;}
.yf6{bottom:1075.439570px;}
.y4c{bottom:1082.279567px;}
.y116{bottom:1091.460600px;}
.y51{bottom:1096.859561px;}
.yaf{bottom:1096.859861px;}
.ye9{bottom:1097.219561px;}
.yf5{bottom:1097.759561px;}
.y4b{bottom:1103.519559px;}
.y50{bottom:1119.899552px;}
.yae{bottom:1119.899852px;}
.yf4{bottom:1120.259552px;}
.y4a{bottom:1124.939550px;}
.ye{bottom:1127.099549px;}
.yd{bottom:1127.459549px;}
.yb{bottom:1134.300600px;}
.ye8{bottom:1142.579543px;}
.y4f{bottom:1142.939543px;}
.yad{bottom:1142.939843px;}
.y48{bottom:1145.280600px;}
.y47{bottom:1149.059540px;}
.ye2{bottom:1192.619523px;}
.y1{bottom:1192.799523px;}
.ye7{bottom:1195.680600px;}
.y9{bottom:1195.860600px;}
.h29{height:2.880000px;}
.he{height:8.169958px;}
.h11{height:13.500000px;}
.h1b{height:15.120000px;}
.h30{height:15.300000px;}
.h22{height:15.859330px;}
.h1d{height:16.380000px;}
.h20{height:17.100000px;}
.h4{height:19.800000px;}
.h13{height:20.160000px;}
.h17{height:20.340000px;}
.h2{height:20.520000px;}
.ha{height:20.700000px;}
.h7{height:20.880000px;}
.h27{height:21.780000px;}
.h16{height:22.187804px;}
.h19{height:24.474365px;}
.h24{height:25.913662px;}
.h14{height:25.951630px;}
.h23{height:27.228505px;}
.h31{height:31.585065px;}
.h12{height:32.199245px;}
.h1f{height:33.588971px;}
.h2b{height:36.486196px;}
.h15{height:36.886626px;}
.h1a{height:40.034515px;}
.h1c{height:40.842757px;}
.h28{height:41.290999px;}
.h25{height:43.185920px;}
.h21{height:45.199318px;}
.hb{height:47.988262px;}
.h5{height:48.058575px;}
.h18{height:48.234356px;}
.h2a{height:49.907793px;}
.h1e{height:50.132792px;}
.hd{height:54.457009px;}
.h26{height:55.054665px;}
.h8{height:56.228532px;}
.h2c{height:59.302242px;}
.h2f{height:59.303442px;}
.hf{height:63.917904px;}
.h10{height:67.548728px;}
.h2d{height:68.202746px;}
.h2e{height:68.203946px;}
.h6{height:70.628878px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.hc{height:78.468719px;}
.h9{height:84.898091px;}
.h0{height:1263.000000px;}
.w3a{width:2.880000px;}
.w36{width:3.060000px;}
.w1d{width:3.240000px;}
.w1f{width:3.420000px;}
.w4d{width:3.600000px;}
.w3b{width:3.780000px;}
.w1a{width:4.140000px;}
.w3c{width:4.320000px;}
.w2{width:4.680000px;}
.wd{width:5.040000px;}
.w53{width:5.760000px;}
.w1{width:6.480000px;}
.w21{width:6.840000px;}
.w5a{width:7.200000px;}
.w5f{width:7.380000px;}
.w40{width:7.560000px;}
.w24{width:7.740000px;}
.w37{width:8.100000px;}
.w8{width:8.280000px;}
.w17{width:8.820000px;}
.w2b{width:9.360000px;}
.w3f{width:9.540000px;}
.w1c{width:9.900000px;}
.wa{width:10.260000px;}
.w46{width:10.440000px;}
.w13{width:10.620000px;}
.w7a{width:10.980000px;}
.w6{width:11.160000px;}
.w7{width:11.340000px;}
.w28{width:11.520000px;}
.w57{width:11.700000px;}
.w30{width:11.880000px;}
.w10{width:12.960000px;}
.w76{width:13.140000px;}
.w29{width:13.320000px;}
.w58{width:13.500000px;}
.w3e{width:13.680000px;}
.we{width:14.040000px;}
.w51{width:14.220000px;}
.w6c{width:14.400000px;}
.w75{width:14.580000px;}
.w4c{width:14.760000px;}
.w2c{width:14.940000px;}
.w56{width:15.120000px;}
.w31{width:15.300000px;}
.w6e{width:15.480000px;}
.w4a{width:15.660000px;}
.w2e{width:15.840000px;}
.w4{width:16.020000px;}
.w78{width:16.920000px;}
.w6b{width:18.720000px;}
.w4f{width:20.340000px;}
.w5d{width:20.700000px;}
.w80{width:21.240000px;}
.w25{width:22.320000px;}
.w7f{width:22.500000px;}
.w26{width:22.860000px;}
.w7e{width:23.220000px;}
.w7d{width:23.400000px;}
.w81{width:24.840000px;}
.w63{width:28.260000px;}
.w74{width:31.680000px;}
.w62{width:32.040000px;}
.w5{width:33.480000px;}
.w67{width:33.660000px;}
.w5e{width:33.840000px;}
.w68{width:34.920000px;}
.w60{width:36.720000px;}
.w59{width:37.440000px;}
.w79{width:37.800000px;}
.w49{width:42.120000px;}
.w6d{width:42.480000px;}
.w47{width:43.020000px;}
.w77{width:43.740000px;}
.w32{width:43.920000px;}
.w27{width:45.000000px;}
.w34{width:45.900000px;}
.w73{width:48.600000px;}
.w71{width:49.320000px;}
.w65{width:50.400000px;}
.w50{width:50.760000px;}
.w7c{width:51.300000px;}
.w52{width:52.200000px;}
.w39{width:52.920000px;}
.w2d{width:54.360000px;}
.w55{width:56.340000px;}
.w38{width:57.780000px;}
.w4b{width:59.760000px;}
.w41{width:61.020000px;}
.w20{width:62.460000px;}
.w6a{width:63.000000px;}
.w70{width:65.160000px;}
.w18{width:65.700000px;}
.w72{width:66.780000px;}
.w23{width:67.680000px;}
.w2a{width:73.080000px;}
.w43{width:75.240000px;}
.w5c{width:76.680000px;}
.w11{width:81.720000px;}
.w22{width:83.340000px;}
.w2f{width:85.860000px;}
.w7b{width:89.640000px;}
.w42{width:98.460000px;}
.w44{width:100.260000px;}
.w5b{width:107.280000px;}
.w1e{width:109.080000px;}
.w61{width:113.040000px;}
.w6f{width:113.580000px;}
.w45{width:118.080000px;}
.w64{width:118.260000px;}
.w14{width:118.620000px;}
.w3{width:119.700000px;}
.w16{width:120.060000px;}
.w66{width:124.380000px;}
.w3d{width:126.720000px;}
.w48{width:131.040000px;}
.wb{width:135.900000px;}
.w54{width:138.780000px;}
.w19{width:148.860000px;}
.w12{width:151.560000px;}
.w4e{width:162.540000px;}
.w9{width:163.800000px;}
.w69{width:172.620000px;}
.w15{width:176.580000px;}
.w35{width:246.600000px;}
.w33{width:273.600000px;}
.wc{width:304.560000px;}
.wf{width:489.240000px;}
.w1b{width:523.800000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x30{left:1.073920px;}
.x1{left:107.999957px;}
.x20{left:109.259956px;}
.x2c{left:113.400000px;}
.x41{left:116.459953px;}
.x7{left:120.240000px;}
.x2{left:128.699878px;}
.x4d{left:134.459952px;}
.x4c{left:137.159952px;}
.x63{left:152.100000px;}
.x66{left:154.080000px;}
.x3{left:155.700000px;}
.x64{left:158.580000px;}
.x40{left:160.919936px;}
.x4{left:171.899931px;}
.x39{left:174.599930px;}
.xc{left:185.219926px;}
.x2b{left:187.019925px;}
.x2e{left:190.980000px;}
.x2f{left:198.180000px;}
.x73{left:206.460000px;}
.x92{left:215.280000px;}
.x22{left:218.879912px;}
.x9d{left:221.040000px;}
.xaf{left:223.380000px;}
.xa1{left:226.260000px;}
.xa4{left:232.380000px;}
.x8{left:239.940000px;}
.x8c{left:246.780000px;}
.x3a{left:257.040000px;}
.xd{left:259.740316px;}
.x3b{left:261.180000px;}
.x83{left:270.540000px;}
.x23{left:273.059891px;}
.xa6{left:280.620000px;}
.x24{left:283.680000px;}
.xb4{left:290.340000px;}
.x25{left:293.940000px;}
.x5{left:301.500000px;}
.x6{left:306.179878px;}
.x84{left:328.860000px;}
.x7d{left:334.260000px;}
.x43{left:342.539863px;}
.x7e{left:343.800000px;}
.x31{left:349.740000px;}
.x32{left:359.280000px;}
.x74{left:376.560000px;}
.x75{left:387.720000px;}
.x77{left:398.160000px;}
.xb9{left:399.600000px;}
.x67{left:400.680000px;}
.x3c{left:403.199839px;}
.x3d{left:411.659835px;}
.x9e{left:419.760000px;}
.x97{left:421.560000px;}
.xb0{left:424.620000px;}
.xe{left:427.680106px;}
.x26{left:429.839828px;}
.xf{left:432.180102px;}
.xb5{left:433.440000px;}
.x27{left:435.420000px;}
.x98{left:436.859825px;}
.x85{left:438.480000px;}
.x93{left:440.640000px;}
.x99{left:442.080000px;}
.x8d{left:444.060000px;}
.x3e{left:445.859822px;}
.x36{left:448.920000px;}
.xa7{left:450.720000px;}
.x86{left:452.699819px;}
.x3f{left:454.319818px;}
.x94{left:455.399818px;}
.x87{left:457.920000px;}
.x8e{left:459.179816px;}
.x95{left:460.620000px;}
.x42{left:462.600512px;}
.x4e{left:465.840000px;}
.x68{left:468.540000px;}
.xa8{left:471.060000px;}
.x47{left:476.639809px;}
.x33{left:477.900000px;}
.x48{left:484.379806px;}
.x34{left:488.340000px;}
.x37{left:504.359798px;}
.x56{left:507.600000px;}
.x78{left:514.980000px;}
.x10{left:516.060050px;}
.xb6{left:520.020000px;}
.x69{left:521.460000px;}
.xb1{left:523.260000px;}
.x96{left:524.340000px;}
.x7f{left:526.140000px;}
.x11{left:529.380042px;}
.xa9{left:533.700000px;}
.x4b{left:534.959779px;}
.x46{left:536.939785px;}
.x6a{left:539.280000px;}
.x88{left:540.900000px;}
.x12{left:542.700033px;}
.x49{left:544.499782px;}
.x6b{left:547.200000px;}
.x60{left:548.460000px;}
.xaa{left:549.720000px;}
.x4a{left:553.499779px;}
.x79{left:558.000000px;}
.x13{left:564.659960px;}
.x14{left:569.159957px;}
.x4f{left:574.920000px;}
.x15{left:582.479948px;}
.x45{left:589.679764px;}
.x16{left:595.619941px;}
.x9a{left:596.700000px;}
.x8f{left:598.680000px;}
.x7a{left:599.760000px;}
.x2d{left:601.920000px;}
.xab{left:603.720000px;}
.xb7{left:604.980000px;}
.xac{left:607.320000px;}
.x17{left:608.939932px;}
.x50{left:611.459755px;}
.x18{left:613.439928px;}
.x5b{left:614.700000px;}
.x53{left:615.780000px;}
.x9f{left:617.580000px;}
.x57{left:621.180000px;}
.x5c{left:624.060000px;}
.x61{left:625.140000px;}
.xb8{left:629.820000px;}
.x19{left:631.079858px;}
.x58{left:632.700000px;}
.xa0{left:634.139746px;}
.x1a{left:635.399856px;}
.x9b{left:637.020000px;}
.x54{left:638.100000px;}
.x21{left:639.539744px;}
.x89{left:641.520000px;}
.x90{left:646.919741px;}
.x1b{left:648.719847px;}
.xad{left:649.800000px;}
.x91{left:651.060000px;}
.x1c{left:653.039845px;}
.xa2{left:654.479738px;}
.x8a{left:656.279737px;}
.x1d{left:657.539841px;}
.xa3{left:658.620000px;}
.x8b{left:660.420000px;}
.x65{left:661.679735px;}
.x80{left:663.839734px;}
.x35{left:664.920000px;}
.x1e{left:666.359733px;}
.x81{left:668.880000px;}
.xb2{left:669.959732px;}
.x6c{left:673.920000px;}
.xb3{left:675.180000px;}
.x6d{left:687.240000px;}
.x51{left:691.200000px;}
.x9{left:697.320000px;}
.x6e{left:699.480000px;}
.x6f{left:703.800000px;}
.x76{left:707.400000px;}
.x70{left:711.180000px;}
.x7b{left:713.160000px;}
.x71{left:714.240000px;}
.x52{left:715.679714px;}
.x5f{left:718.380000px;}
.x55{left:719.640000px;}
.x72{left:722.160000px;}
.x59{left:724.500000px;}
.x82{left:726.120000px;}
.x5d{left:728.280000px;}
.x62{left:729.360000px;}
.xa{left:730.800000px;}
.xa5{left:735.480000px;}
.x9c{left:736.560000px;}
.x5a{left:737.820000px;}
.xae{left:738.900000px;}
.x28{left:739.979704px;}
.xb{left:741.960000px;}
.x5e{left:743.220000px;}
.x29{left:745.560000px;}
.x2a{left:750.600000px;}
.x7c{left:756.180000px;}
.x44{left:779.580000px;}
.x38{left:781.559687px;}
.x1f{left:783.539686px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.v4{vertical-align:24.319990pt;}
.v3{vertical-align:28.159989pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018878pt;}
.lsa{letter-spacing:0.049280pt;}
.ls9{letter-spacing:0.064533pt;}
.ls3{letter-spacing:0.064960pt;}
.ls8{letter-spacing:0.084213pt;}
.lsc{letter-spacing:0.097280pt;}
.lsb{letter-spacing:0.225973pt;}
.ls2{letter-spacing:0.303046pt;}
.lsd{letter-spacing:0.704906pt;}
.ls7{letter-spacing:4.441172pt;}
.ls5{letter-spacing:44.987958pt;}
.ls6{letter-spacing:45.642630pt;}
.ws2{word-spacing:-23.928073pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-16.018872pt;}
.ws4{word-spacing:-15.999994pt;}
.ws5{word-spacing:-13.492475pt;}
.wsf{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.567995pt;}
.ws3{word-spacing:-9.192956pt;}
.ws6{word-spacing:-7.711997pt;}
.wsb{word-spacing:-7.603197pt;}
.wsc{word-spacing:-1.785507pt;}
.wse{word-spacing:-1.145145pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:2.176847pt;}
.wsa{word-spacing:2.517791pt;}
.wsd{word-spacing:4.929502pt;}
._4{margin-left:-596.162746pt;}
._3{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;}
._2{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._1e{margin-left:-1.975983pt;}
._1{margin-left:-1.055625pt;}
._0{width:1.083686pt;}
._d{width:2.016300pt;}
._c{width:3.183076pt;}
._f{width:4.265930pt;}
._16{width:5.223532pt;}
._11{width:6.222710pt;}
._10{width:7.218100pt;}
._17{width:8.414335pt;}
._12{width:9.351278pt;}
._13{width:10.367922pt;}
._e{width:13.264573pt;}
._18{width:14.371728pt;}
._1a{width:15.627564pt;}
._1b{width:17.159939pt;}
._19{width:18.917193pt;}
._15{width:20.368472pt;}
._14{width:21.908011pt;}
._25{width:22.827879pt;}
._20{width:24.403814pt;}
._1f{width:25.516660pt;}
._1c{width:26.780420pt;}
._1d{width:28.020580pt;}
._33{width:29.704313pt;}
._2a{width:31.426493pt;}
._28{width:32.458583pt;}
._2f{width:34.532389pt;}
._2d{width:36.088519pt;}
._23{width:37.333629pt;}
._24{width:38.951042pt;}
._2c{width:40.072037pt;}
._2b{width:41.883574pt;}
._35{width:42.923657pt;}
._36{width:43.997908pt;}
._21{width:45.301763pt;}
._22{width:46.619411pt;}
._30{width:48.210672pt;}
._32{width:50.618941pt;}
._37{width:55.147035pt;}
._29{width:56.970880pt;}
._3c{width:58.322674pt;}
._31{width:59.743438pt;}
._3d{width:60.840432pt;}
._3b{width:65.501104pt;}
._39{width:67.123540pt;}
._3a{width:68.168348pt;}
._38{width:70.840279pt;}
._2e{width:71.857026pt;}
._34{width:95.199273pt;}
._26{width:103.075056pt;}
._27{width:180.531768pt;}
.fsd{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fsb{font-size:21.119992pt;}
.fs8{font-size:29.439988pt;}
.fsc{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fsf{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fsa{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fse{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y4e{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.559040pt;}
.y117{bottom:2.719078pt;}
.y119{bottom:2.719084pt;}
.y11b{bottom:2.719090pt;}
.y11e{bottom:2.719096pt;}
.y121{bottom:2.719102pt;}
.y124{bottom:2.719108pt;}
.y127{bottom:2.719113pt;}
.y12a{bottom:2.719119pt;}
.y12d{bottom:2.719125pt;}
.y130{bottom:2.719131pt;}
.y133{bottom:2.719137pt;}
.y136{bottom:2.719143pt;}
.y139{bottom:2.719149pt;}
.y13c{bottom:2.719154pt;}
.y13f{bottom:2.719160pt;}
.y142{bottom:2.719166pt;}
.y144{bottom:2.719172pt;}
.y25{bottom:2.719222pt;}
.y30{bottom:2.719269pt;}
.yf2{bottom:2.719276pt;}
.yd0{bottom:2.719339pt;}
.yd3{bottom:2.719351pt;}
.yd5{bottom:2.719357pt;}
.yd7{bottom:2.719363pt;}
.yd9{bottom:2.719369pt;}
.ydb{bottom:2.719374pt;}
.y113{bottom:2.719733pt;}
.y16{bottom:2.879140pt;}
.y2d{bottom:3.039259pt;}
.y49{bottom:3.359058pt;}
.yc{bottom:3.679062pt;}
.y7{bottom:3.680025pt;}
.y27{bottom:3.839222pt;}
.y4{bottom:3.840025pt;}
.y18{bottom:4.319147pt;}
.y1f{bottom:4.319174pt;}
.y2b{bottom:4.319246pt;}
.ye6{bottom:51.946913pt;}
.y8{bottom:52.106912pt;}
.ye5{bottom:66.346880pt;}
.y6{bottom:66.506880pt;}
.y3{bottom:66.666880pt;}
.ye4{bottom:70.026905pt;}
.y5{bottom:70.186905pt;}
.ye3{bottom:70.346639pt;}
.y2{bottom:70.506638pt;}
.y115{bottom:98.986894pt;}
.y162{bottom:107.626624pt;}
.yac{bottom:107.626890pt;}
.y88{bottom:109.386890pt;}
.y46{bottom:110.026623pt;}
.yab{bottom:113.706621pt;}
.ye1{bottom:115.786620pt;}
.y7b{bottom:116.106620pt;}
.y114{bottom:116.586887pt;}
.y87{bottom:126.506616pt;}
.y161{bottom:128.106615pt;}
.y45{bottom:130.346615pt;}
.y112{bottom:131.626880pt;}
.y86{bottom:132.586614pt;}
.ye0{bottom:135.946612pt;}
.y7a{bottom:136.426612pt;}
.yaa{bottom:137.866612pt;}
.y160{bottom:148.586607pt;}
.y44{bottom:150.826606pt;}
.y111{bottom:152.106606pt;}
.y85{bottom:155.626604pt;}
.ydf{bottom:156.106604pt;}
.y79{bottom:156.906604pt;}
.ya9{bottom:158.346603pt;}
.y43{bottom:165.226601pt;}
.y42{bottom:168.586599pt;}
.y15f{bottom:169.066599pt;}
.y171{bottom:171.306598pt;}
.y84{bottom:175.306597pt;}
.yde{bottom:176.266596pt;}
.y78{bottom:177.386596pt;}
.ya8{bottom:178.666595pt;}
.y41{bottom:186.826592pt;}
.y15e{bottom:189.546591pt;}
.y170{bottom:191.786590pt;}
.y83{bottom:195.146589pt;}
.ydd{bottom:196.906588pt;}
.y77{bottom:197.866588pt;}
.ya7{bottom:199.146587pt;}
.y40{bottom:207.306584pt;}
.y15d{bottom:210.026583pt;}
.y16f{bottom:212.266582pt;}
.y82{bottom:214.826581pt;}
.ydc{bottom:216.266580pt;}
.y76{bottom:218.346579pt;}
.ya6{bottom:219.626579pt;}
.y3f{bottom:227.786576pt;}
.yda{bottom:227.947200pt;}
.y15c{bottom:230.346575pt;}
.y16e{bottom:232.746574pt;}
.y81{bottom:234.666573pt;}
.y75{bottom:238.826571pt;}
.ya5{bottom:240.106571pt;}
.yd8{bottom:242.507200pt;}
.y3e{bottom:248.106567pt;}
.y15b{bottom:250.826566pt;}
.y16d{bottom:253.066565pt;}
.y80{bottom:254.346565pt;}
.yd6{bottom:257.227200pt;}
.y74{bottom:259.146563pt;}
.ya4{bottom:260.586562pt;}
.y3d{bottom:268.586559pt;}
.y15a{bottom:271.306558pt;}
.yd4{bottom:271.787200pt;}
.y7f{bottom:272.266558pt;}
.y16c{bottom:273.546557pt;}
.y7e{bottom:278.346555pt;}
.y73{bottom:279.626555pt;}
.ya3{bottom:281.066554pt;}
.yd2{bottom:286.347200pt;}
.y3c{bottom:289.066551pt;}
.y159{bottom:291.786550pt;}
.y16b{bottom:294.026549pt;}
.y72{bottom:300.106547pt;}
.y7d{bottom:301.226546pt;}
.ya2{bottom:301.386546pt;}
.yd1{bottom:304.746545pt;}
.y3b{bottom:309.546543pt;}
.y158{bottom:312.266542pt;}
.y16a{bottom:314.506541pt;}
.ycf{bottom:315.627200pt;}
.y71{bottom:320.586538pt;}
.ya1{bottom:321.866538pt;}
.y3a{bottom:330.026535pt;}
.y157{bottom:332.586534pt;}
.y169{bottom:334.986533pt;}
.ya0{bottom:339.786531pt;}
.y70{bottom:341.066530pt;}
.yce{bottom:341.066797pt;}
.y9f{bottom:345.866528pt;}
.y39{bottom:350.506526pt;}
.y156{bottom:353.066525pt;}
.y168{bottom:355.306525pt;}
.y6f{bottom:361.546522pt;}
.ycd{bottom:361.546789pt;}
.y9e{bottom:370.346519pt;}
.y38{bottom:370.826518pt;}
.y155{bottom:373.546517pt;}
.y167{bottom:375.786516pt;}
.y6e{bottom:381.866514pt;}
.ycc{bottom:381.866781pt;}
.y9d{bottom:390.826510pt;}
.y37{bottom:391.306510pt;}
.y154{bottom:394.026509pt;}
.y166{bottom:396.266508pt;}
.y6d{bottom:402.346506pt;}
.ycb{bottom:402.346772pt;}
.y9c{bottom:411.306502pt;}
.y36{bottom:411.786502pt;}
.y153{bottom:414.506501pt;}
.y165{bottom:416.746500pt;}
.y6c{bottom:422.826498pt;}
.yca{bottom:422.826764pt;}
.y9b{bottom:431.626494pt;}
.y34{bottom:432.266494pt;}
.y152{bottom:434.986493pt;}
.y35{bottom:435.626492pt;}
.y164{bottom:437.226492pt;}
.y110{bottom:438.026491pt;}
.y6b{bottom:443.306489pt;}
.yc9{bottom:443.306756pt;}
.y9a{bottom:452.106486pt;}
.y32{bottom:452.746486pt;}
.y151{bottom:455.306485pt;}
.y33{bottom:456.106484pt;}
.yf3{bottom:456.266484pt;}
.y163{bottom:456.426484pt;}
.y10f{bottom:458.826483pt;}
.y6a{bottom:463.786481pt;}
.yc8{bottom:463.786748pt;}
.y99{bottom:473.066477pt;}
.y31{bottom:473.226477pt;}
.yf1{bottom:474.027200pt;}
.y150{bottom:475.786476pt;}
.y10e{bottom:478.826475pt;}
.y69{bottom:484.266473pt;}
.yc7{bottom:484.266740pt;}
.y2f{bottom:490.827200pt;}
.y98{bottom:494.186469pt;}
.y14f{bottom:496.266468pt;}
.y10d{bottom:498.666467pt;}
.y68{bottom:504.586465pt;}
.yc6{bottom:504.586731pt;}
.y97{bottom:515.466460pt;}
.y2c{bottom:515.787200pt;}
.y14e{bottom:516.746460pt;}
.y10c{bottom:518.506459pt;}
.y2e{bottom:518.826459pt;}
.y67{bottom:525.066457pt;}
.yc5{bottom:525.066723pt;}
.y96{bottom:536.586452pt;}
.y14d{bottom:537.226452pt;}
.y10b{bottom:538.346451pt;}
.y66{bottom:545.546448pt;}
.yc4{bottom:545.546715pt;}
.y2a{bottom:548.107200pt;}
.y29{bottom:552.426446pt;}
.y95{bottom:557.706444pt;}
.y10a{bottom:558.346443pt;}
.y65{bottom:566.026440pt;}
.yc3{bottom:566.026707pt;}
.y14c{bottom:578.026435pt;}
.y109{bottom:578.186435pt;}
.y94{bottom:578.826435pt;}
.y64{bottom:586.506432pt;}
.yc2{bottom:586.506699pt;}
.y28{bottom:591.466430pt;}
.y108{bottom:598.026427pt;}
.y14b{bottom:598.506427pt;}
.y93{bottom:599.946427pt;}
.y63{bottom:606.826424pt;}
.yc1{bottom:606.826691pt;}
.y26{bottom:608.107200pt;}
.y24{bottom:609.227200pt;}
.y107{bottom:617.866420pt;}
.y14a{bottom:618.986419pt;}
.y92{bottom:621.066418pt;}
.y23{bottom:626.186416pt;}
.y62{bottom:627.306416pt;}
.yc0{bottom:627.306682pt;}
.y7c{bottom:630.666414pt;}
.y106{bottom:637.866412pt;}
.y149{bottom:639.466411pt;}
.y91{bottom:642.186410pt;}
.y61{bottom:647.786408pt;}
.ybf{bottom:647.786674pt;}
.y22{bottom:656.426404pt;}
.y105{bottom:657.706404pt;}
.y148{bottom:659.946403pt;}
.y90{bottom:663.306401pt;}
.y60{bottom:668.266399pt;}
.ybe{bottom:668.266666pt;}
.y104{bottom:677.546396pt;}
.y147{bottom:680.426394pt;}
.y21{bottom:683.626393pt;}
.y8f{bottom:684.426393pt;}
.y5f{bottom:688.746391pt;}
.ybd{bottom:688.746658pt;}
.y103{bottom:697.546388pt;}
.y146{bottom:700.746386pt;}
.y8e{bottom:705.546384pt;}
.y5e{bottom:709.226383pt;}
.ybc{bottom:709.226650pt;}
.y20{bottom:710.826382pt;}
.y102{bottom:717.386380pt;}
.y145{bottom:721.226378pt;}
.y8d{bottom:726.666376pt;}
.y1e{bottom:728.587200pt;}
.y5d{bottom:729.546375pt;}
.ybb{bottom:729.546642pt;}
.y143{bottom:734.027200pt;}
.y101{bottom:737.226372pt;}
.y1d{bottom:738.186371pt;}
.y8c{bottom:747.786368pt;}
.y141{bottom:748.587200pt;}
.y1c{bottom:748.746367pt;}
.y5c{bottom:750.026367pt;}
.yba{bottom:750.026633pt;}
.y100{bottom:757.066364pt;}
.y13e{bottom:763.307200pt;}
.y8b{bottom:769.066359pt;}
.y140{bottom:769.386359pt;}
.y5b{bottom:770.506358pt;}
.yb9{bottom:770.506625pt;}
.y1a{bottom:773.066357pt;}
.yff{bottom:777.066356pt;}
.y1b{bottom:777.706356pt;}
.y13b{bottom:777.867200pt;}
.y13d{bottom:783.946353pt;}
.y8a{bottom:790.186351pt;}
.y5a{bottom:790.986350pt;}
.yb8{bottom:790.986617pt;}
.y138{bottom:792.587200pt;}
.y17{bottom:795.947200pt;}
.yfe{bottom:796.906348pt;}
.y13a{bottom:798.666347pt;}
.y19{bottom:804.906345pt;}
.y135{bottom:807.147200pt;}
.y89{bottom:811.306342pt;}
.y59{bottom:811.466342pt;}
.yb7{bottom:811.466609pt;}
.y137{bottom:813.226341pt;}
.y15{bottom:814.027200pt;}
.yfd{bottom:816.746340pt;}
.y132{bottom:821.867200pt;}
.y134{bottom:827.946335pt;}
.y58{bottom:831.946334pt;}
.yb6{bottom:831.946601pt;}
.y12f{bottom:836.427200pt;}
.yf0{bottom:836.586332pt;}
.yfc{bottom:836.746332pt;}
.y131{bottom:842.506330pt;}
.y13{bottom:843.786265pt;}
.y14{bottom:843.786329pt;}
.y12c{bottom:851.147200pt;}
.y57{bottom:852.266326pt;}
.yb5{bottom:852.266592pt;}
.yef{bottom:854.346325pt;}
.yfb{bottom:856.586324pt;}
.y12e{bottom:857.226324pt;}
.y129{bottom:865.707200pt;}
.y12b{bottom:871.786318pt;}
.y56{bottom:872.746318pt;}
.yb4{bottom:872.746584pt;}
.yee{bottom:874.506317pt;}
.yfa{bottom:876.426316pt;}
.y12{bottom:880.106315pt;}
.y126{bottom:880.427200pt;}
.y128{bottom:886.506312pt;}
.y55{bottom:893.226309pt;}
.yb3{bottom:893.226576pt;}
.yed{bottom:894.666309pt;}
.y123{bottom:894.987200pt;}
.yf9{bottom:896.266308pt;}
.y11{bottom:900.906306pt;}
.y125{bottom:901.066306pt;}
.y120{bottom:909.547200pt;}
.y54{bottom:913.706301pt;}
.yb2{bottom:913.706568pt;}
.yec{bottom:914.826301pt;}
.y10{bottom:915.466300pt;}
.y122{bottom:915.626300pt;}
.yf{bottom:915.786300pt;}
.yf8{bottom:916.266300pt;}
.y11d{bottom:924.267200pt;}
.y11f{bottom:930.346295pt;}
.y53{bottom:934.186293pt;}
.yb1{bottom:934.186560pt;}
.yeb{bottom:934.986293pt;}
.yf7{bottom:936.106292pt;}
.y11a{bottom:938.827200pt;}
.y11c{bottom:944.906289pt;}
.y4d{bottom:954.027200pt;}
.y118{bottom:954.507200pt;}
.y52{bottom:954.666285pt;}
.yb0{bottom:954.666551pt;}
.yea{bottom:955.146285pt;}
.yf6{bottom:955.946284pt;}
.y4c{bottom:962.026282pt;}
.y116{bottom:970.187200pt;}
.y51{bottom:974.986277pt;}
.yaf{bottom:974.986543pt;}
.ye9{bottom:975.306277pt;}
.yf5{bottom:975.786276pt;}
.y4b{bottom:980.906274pt;}
.y50{bottom:995.466268pt;}
.yae{bottom:995.466535pt;}
.yf4{bottom:995.786268pt;}
.y4a{bottom:999.946267pt;}
.ye{bottom:1001.866266pt;}
.yd{bottom:1002.186266pt;}
.yb{bottom:1008.267200pt;}
.ye8{bottom:1015.626260pt;}
.y4f{bottom:1015.946260pt;}
.yad{bottom:1015.946527pt;}
.y48{bottom:1018.027200pt;}
.y47{bottom:1021.386258pt;}
.ye2{bottom:1060.106243pt;}
.y1{bottom:1060.266243pt;}
.ye7{bottom:1062.827200pt;}
.y9{bottom:1062.987200pt;}
.h29{height:2.560000pt;}
.he{height:7.262185pt;}
.h11{height:12.000000pt;}
.h1b{height:13.440000pt;}
.h30{height:13.600000pt;}
.h22{height:14.097182pt;}
.h1d{height:14.560000pt;}
.h20{height:15.200000pt;}
.h4{height:17.600000pt;}
.h13{height:17.920000pt;}
.h17{height:18.080000pt;}
.h2{height:18.240000pt;}
.ha{height:18.400000pt;}
.h7{height:18.560000pt;}
.h27{height:19.360000pt;}
.h16{height:19.722492pt;}
.h19{height:21.754991pt;}
.h24{height:23.034366pt;}
.h14{height:23.068116pt;}
.h23{height:24.203115pt;}
.h31{height:28.075614pt;}
.h12{height:28.621551pt;}
.h1f{height:29.856863pt;}
.h2b{height:32.432175pt;}
.h15{height:32.788112pt;}
.h1a{height:35.586236pt;}
.h1c{height:36.304673pt;}
.h28{height:36.703110pt;}
.h25{height:38.387485pt;}
.h21{height:40.177171pt;}
.hb{height:42.656233pt;}
.h5{height:42.718733pt;}
.h18{height:42.874983pt;}
.h2a{height:44.362482pt;}
.h1e{height:44.562482pt;}
.hd{height:48.406231pt;}
.h26{height:48.937480pt;}
.h8{height:49.980918pt;}
.h2c{height:52.713104pt;}
.h2f{height:52.714171pt;}
.hf{height:56.815915pt;}
.h10{height:60.043314pt;}
.h2d{height:60.624663pt;}
.h2e{height:60.625730pt;}
.h6{height:62.781225pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.hc{height:69.749972pt;}
.h9{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w3a{width:2.560000pt;}
.w36{width:2.720000pt;}
.w1d{width:2.880000pt;}
.w1f{width:3.040000pt;}
.w4d{width:3.200000pt;}
.w3b{width:3.360000pt;}
.w1a{width:3.680000pt;}
.w3c{width:3.840000pt;}
.w2{width:4.160000pt;}
.wd{width:4.480000pt;}
.w53{width:5.120000pt;}
.w1{width:5.760000pt;}
.w21{width:6.080000pt;}
.w5a{width:6.400000pt;}
.w5f{width:6.560000pt;}
.w40{width:6.720000pt;}
.w24{width:6.880000pt;}
.w37{width:7.200000pt;}
.w8{width:7.360000pt;}
.w17{width:7.840000pt;}
.w2b{width:8.320000pt;}
.w3f{width:8.480000pt;}
.w1c{width:8.800000pt;}
.wa{width:9.120000pt;}
.w46{width:9.280000pt;}
.w13{width:9.440000pt;}
.w7a{width:9.760000pt;}
.w6{width:9.920000pt;}
.w7{width:10.080000pt;}
.w28{width:10.240000pt;}
.w57{width:10.400000pt;}
.w30{width:10.560000pt;}
.w10{width:11.520000pt;}
.w76{width:11.680000pt;}
.w29{width:11.840000pt;}
.w58{width:12.000000pt;}
.w3e{width:12.160000pt;}
.we{width:12.480000pt;}
.w51{width:12.640000pt;}
.w6c{width:12.800000pt;}
.w75{width:12.960000pt;}
.w4c{width:13.120000pt;}
.w2c{width:13.280000pt;}
.w56{width:13.440000pt;}
.w31{width:13.600000pt;}
.w6e{width:13.760000pt;}
.w4a{width:13.920000pt;}
.w2e{width:14.080000pt;}
.w4{width:14.240000pt;}
.w78{width:15.040000pt;}
.w6b{width:16.640000pt;}
.w4f{width:18.080000pt;}
.w5d{width:18.400000pt;}
.w80{width:18.880000pt;}
.w25{width:19.840000pt;}
.w7f{width:20.000000pt;}
.w26{width:20.320000pt;}
.w7e{width:20.640000pt;}
.w7d{width:20.800000pt;}
.w81{width:22.080000pt;}
.w63{width:25.120000pt;}
.w74{width:28.160000pt;}
.w62{width:28.480000pt;}
.w5{width:29.760000pt;}
.w67{width:29.920000pt;}
.w5e{width:30.080000pt;}
.w68{width:31.040000pt;}
.w60{width:32.640000pt;}
.w59{width:33.280000pt;}
.w79{width:33.600000pt;}
.w49{width:37.440000pt;}
.w6d{width:37.760000pt;}
.w47{width:38.240000pt;}
.w77{width:38.880000pt;}
.w32{width:39.040000pt;}
.w27{width:40.000000pt;}
.w34{width:40.800000pt;}
.w73{width:43.200000pt;}
.w71{width:43.840000pt;}
.w65{width:44.800000pt;}
.w50{width:45.120000pt;}
.w7c{width:45.600000pt;}
.w52{width:46.400000pt;}
.w39{width:47.040000pt;}
.w2d{width:48.320000pt;}
.w55{width:50.080000pt;}
.w38{width:51.360000pt;}
.w4b{width:53.120000pt;}
.w41{width:54.240000pt;}
.w20{width:55.520000pt;}
.w6a{width:56.000000pt;}
.w70{width:57.920000pt;}
.w18{width:58.400000pt;}
.w72{width:59.360000pt;}
.w23{width:60.160000pt;}
.w2a{width:64.960000pt;}
.w43{width:66.880000pt;}
.w5c{width:68.160000pt;}
.w11{width:72.640000pt;}
.w22{width:74.080000pt;}
.w2f{width:76.320000pt;}
.w7b{width:79.680000pt;}
.w42{width:87.520000pt;}
.w44{width:89.120000pt;}
.w5b{width:95.360000pt;}
.w1e{width:96.960000pt;}
.w61{width:100.480000pt;}
.w6f{width:100.960000pt;}
.w45{width:104.960000pt;}
.w64{width:105.120000pt;}
.w14{width:105.440000pt;}
.w3{width:106.400000pt;}
.w16{width:106.720000pt;}
.w66{width:110.560000pt;}
.w3d{width:112.640000pt;}
.w48{width:116.480000pt;}
.wb{width:120.800000pt;}
.w54{width:123.360000pt;}
.w19{width:132.320000pt;}
.w12{width:134.720000pt;}
.w4e{width:144.480000pt;}
.w9{width:145.600000pt;}
.w69{width:153.440000pt;}
.w15{width:156.960000pt;}
.w35{width:219.200000pt;}
.w33{width:243.200000pt;}
.wc{width:270.720000pt;}
.wf{width:434.880000pt;}
.w1b{width:465.600000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x30{left:0.954596pt;}
.x1{left:95.999962pt;}
.x20{left:97.119961pt;}
.x2c{left:100.800000pt;}
.x41{left:103.519959pt;}
.x7{left:106.880000pt;}
.x2{left:114.399892pt;}
.x4d{left:119.519957pt;}
.x4c{left:121.919958pt;}
.x63{left:135.200000pt;}
.x66{left:136.960000pt;}
.x3{left:138.400000pt;}
.x64{left:140.960000pt;}
.x40{left:143.039943pt;}
.x4{left:152.799939pt;}
.x39{left:155.199938pt;}
.xc{left:164.639934pt;}
.x2b{left:166.239934pt;}
.x2e{left:169.760000pt;}
.x2f{left:176.160000pt;}
.x73{left:183.520000pt;}
.x92{left:191.360000pt;}
.x22{left:194.559922pt;}
.x9d{left:196.480000pt;}
.xaf{left:198.560000pt;}
.xa1{left:201.120000pt;}
.xa4{left:206.560000pt;}
.x8{left:213.280000pt;}
.x8c{left:219.360000pt;}
.x3a{left:228.480000pt;}
.xd{left:230.880281pt;}
.x3b{left:232.160000pt;}
.x83{left:240.480000pt;}
.x23{left:242.719903pt;}
.xa6{left:249.440000pt;}
.x24{left:252.160000pt;}
.xb4{left:258.080000pt;}
.x25{left:261.280000pt;}
.x5{left:268.000000pt;}
.x6{left:272.159891pt;}
.x84{left:292.320000pt;}
.x7d{left:297.120000pt;}
.x43{left:304.479878pt;}
.x7e{left:305.600000pt;}
.x31{left:310.880000pt;}
.x32{left:319.360000pt;}
.x74{left:334.720000pt;}
.x75{left:344.640000pt;}
.x77{left:353.920000pt;}
.xb9{left:355.200000pt;}
.x67{left:356.160000pt;}
.x3c{left:358.399857pt;}
.x3d{left:365.919854pt;}
.x9e{left:373.120000pt;}
.x97{left:374.720000pt;}
.xb0{left:377.440000pt;}
.xe{left:380.160094pt;}
.x26{left:382.079847pt;}
.xf{left:384.160091pt;}
.xb5{left:385.280000pt;}
.x27{left:387.040000pt;}
.x98{left:388.319845pt;}
.x85{left:389.760000pt;}
.x93{left:391.680000pt;}
.x99{left:392.960000pt;}
.x8d{left:394.720000pt;}
.x3e{left:396.319841pt;}
.x36{left:399.040000pt;}
.xa7{left:400.640000pt;}
.x86{left:402.399839pt;}
.x3f{left:403.839838pt;}
.x94{left:404.799838pt;}
.x87{left:407.040000pt;}
.x8e{left:408.159837pt;}
.x95{left:409.440000pt;}
.x42{left:411.200455pt;}
.x4e{left:414.080000pt;}
.x68{left:416.480000pt;}
.xa8{left:418.720000pt;}
.x47{left:423.679831pt;}
.x33{left:424.800000pt;}
.x48{left:430.559828pt;}
.x34{left:434.080000pt;}
.x37{left:448.319821pt;}
.x56{left:451.200000pt;}
.x78{left:457.760000pt;}
.x10{left:458.720045pt;}
.xb6{left:462.240000pt;}
.x69{left:463.520000pt;}
.xb1{left:465.120000pt;}
.x96{left:466.080000pt;}
.x7f{left:467.680000pt;}
.x11{left:470.560037pt;}
.xa9{left:474.400000pt;}
.x4b{left:475.519804pt;}
.x46{left:477.279809pt;}
.x6a{left:479.360000pt;}
.x88{left:480.800000pt;}
.x12{left:482.400029pt;}
.x49{left:483.999806pt;}
.x6b{left:486.400000pt;}
.x60{left:487.520000pt;}
.xaa{left:488.640000pt;}
.x4a{left:491.999803pt;}
.x79{left:496.000000pt;}
.x13{left:501.919965pt;}
.x14{left:505.919962pt;}
.x4f{left:511.040000pt;}
.x15{left:517.759954pt;}
.x45{left:524.159790pt;}
.x16{left:529.439947pt;}
.x9a{left:530.400000pt;}
.x8f{left:532.160000pt;}
.x7a{left:533.120000pt;}
.x2d{left:535.040000pt;}
.xab{left:536.640000pt;}
.xb7{left:537.760000pt;}
.xac{left:539.840000pt;}
.x17{left:541.279939pt;}
.x50{left:543.519783pt;}
.x18{left:545.279936pt;}
.x5b{left:546.400000pt;}
.x53{left:547.360000pt;}
.x9f{left:548.960000pt;}
.x57{left:552.160000pt;}
.x5c{left:554.720000pt;}
.x61{left:555.680000pt;}
.xb8{left:559.840000pt;}
.x19{left:560.959873pt;}
.x58{left:562.400000pt;}
.xa0{left:563.679775pt;}
.x1a{left:564.799872pt;}
.x9b{left:566.240000pt;}
.x54{left:567.200000pt;}
.x21{left:568.479773pt;}
.x89{left:570.240000pt;}
.x90{left:575.039770pt;}
.x1b{left:576.639864pt;}
.xad{left:577.600000pt;}
.x91{left:578.720000pt;}
.x1c{left:580.479862pt;}
.xa2{left:581.759767pt;}
.x8a{left:583.359767pt;}
.x1d{left:584.479859pt;}
.xa3{left:585.440000pt;}
.x8b{left:587.040000pt;}
.x65{left:588.159765pt;}
.x80{left:590.079764pt;}
.x35{left:591.040000pt;}
.x1e{left:592.319763pt;}
.x81{left:594.560000pt;}
.xb2{left:595.519762pt;}
.x6c{left:599.040000pt;}
.xb3{left:600.160000pt;}
.x6d{left:610.880000pt;}
.x51{left:614.400000pt;}
.x9{left:619.840000pt;}
.x6e{left:621.760000pt;}
.x6f{left:625.600000pt;}
.x76{left:628.800000pt;}
.x70{left:632.160000pt;}
.x7b{left:633.920000pt;}
.x71{left:634.880000pt;}
.x52{left:636.159746pt;}
.x5f{left:638.560000pt;}
.x55{left:639.680000pt;}
.x72{left:641.920000pt;}
.x59{left:644.000000pt;}
.x82{left:645.440000pt;}
.x5d{left:647.360000pt;}
.x62{left:648.320000pt;}
.xa{left:649.600000pt;}
.xa5{left:653.760000pt;}
.x9c{left:654.720000pt;}
.x5a{left:655.840000pt;}
.xae{left:656.800000pt;}
.x28{left:657.759737pt;}
.xb{left:659.520000pt;}
.x5e{left:660.640000pt;}
.x29{left:662.720000pt;}
.x2a{left:667.200000pt;}
.x7c{left:672.160000pt;}
.x44{left:692.960000pt;}
.x38{left:694.719722pt;}
.x1f{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; }
  