
    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_5a47aa12d395097ad27785f9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b6799760b8881224c4098309.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_52404484847577b05542c60f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.726562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c31f190ad5a651abf9f58738.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffb{font-family:ffb;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3899963bc5570b3e6523ecf1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.935547;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_dd139509f4de4eb641d35d5f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fce076b489fffd89753ea40a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3e0796282ac1cc20a6b6125b.woff')format("woff");}.fff{font-family:fff;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fe3ea555652bc86a88e1ff2b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1c88bda80395348b28845e04.woff')format("woff");}.ff11{font-family:ff11;line-height:0.950684;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_c3fc8a9baf1f42aa942a1a67.woff')format("woff");}.ff12{font-family:ff12;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c3254ad41cdc842bc78aa4a6.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8a15fb109ce50089ff0b933f.woff')format("woff");}.ff14{font-family:ff14;line-height:1.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.879999px;}
.v1{vertical-align:68.399973px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls6{letter-spacing:0.055440px;}
.ls3{letter-spacing:0.073080px;}
.ls0{letter-spacing:0.730575px;}
.ls2{letter-spacing:0.731899px;}
.ls5{letter-spacing:1.496219px;}
.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;}
}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws5{word-spacing:-11.879995px;}
.ws7{word-spacing:-8.675997px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:302.577509px;}
._8{margin-left:-795.558488px;}
._7{margin-left:-777.083605px;}
._9{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._6{margin-left:-219.254252px;}
._c{margin-left:-193.190263px;}
._1{margin-left:-90.563177px;}
._b{margin-left:-68.874927px;}
._a{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._12{margin-left:-2.701936px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._14{width:2.687104px;}
._19{width:3.706298px;}
._11{width:5.700542px;}
._2c{width:6.715444px;}
._10{width:7.718508px;}
._15{width:9.668984px;}
._18{width:11.551526px;}
._e{width:13.467995px;}
._f{width:14.513014px;}
._1b{width:16.166615px;}
._13{width:17.798227px;}
._22{width:18.942273px;}
._1a{width:20.665639px;}
._1e{width:21.670857px;}
._16{width:22.935021px;}
._17{width:23.959843px;}
._27{width:25.099442px;}
._26{width:26.654947px;}
._2b{width:28.012940px;}
._34{width:29.919287px;}
._1f{width:31.363588px;}
._31{width:32.607476px;}
._21{width:34.385158px;}
._2d{width:35.635724px;}
._30{width:36.794497px;}
._33{width:38.156712px;}
._23{width:39.911842px;}
._24{width:41.159375px;}
._35{width:42.579303px;}
._32{width:43.669915px;}
._20{width:44.826408px;}
._d{width:46.354232px;}
._3a{width:47.791720px;}
._1d{width:48.969248px;}
._1c{width:50.234260px;}
._3c{width:51.332423px;}
._3b{width:52.901449px;}
._37{width:55.249424px;}
._38{width:58.989382px;}
._25{width:60.955954px;}
._40{width:62.564715px;}
._39{width:65.011136px;}
._29{width:67.002247px;}
._2e{width:68.035291px;}
._2f{width:69.342396px;}
._2a{width:73.398086px;}
._28{width:76.856679px;}
._3f{width:79.675196px;}
._3e{width:87.882457px;}
._3d{width:100.197286px;}
._36{width:119.666529px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsc{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4e{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y103{bottom:3.059036px;}
.y1d{bottom:3.059110px;}
.y12b{bottom:3.059139px;}
.y117{bottom:3.059158px;}
.y107{bottom:3.059194px;}
.y82{bottom:3.059196px;}
.y11a{bottom:3.059258px;}
.y10a{bottom:3.059272px;}
.y10{bottom:3.239055px;}
.y18{bottom:3.599092px;}
.y1b{bottom:3.599096px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y16{bottom:4.859080px;}
.y49{bottom:6.478948px;}
.y51{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y47{bottom:112.619955px;}
.y18e{bottom:112.980255px;}
.y101{bottom:114.060254px;}
.y114{bottom:119.100252px;}
.y124{bottom:119.280252px;}
.y39{bottom:119.999952px;}
.y123{bottom:120.000252px;}
.y80{bottom:121.440251px;}
.yc5{bottom:121.620251px;}
.y94{bottom:122.520251px;}
.y160{bottom:123.960250px;}
.y140{bottom:124.500250px;}
.y18d{bottom:135.480246px;}
.y46{bottom:135.659946px;}
.y100{bottom:137.280245px;}
.yee{bottom:137.820245px;}
.y38{bottom:140.699944px;}
.y113{bottom:142.140243px;}
.y122{bottom:143.400243px;}
.y7f{bottom:144.480242px;}
.yc4{bottom:144.660242px;}
.y93{bottom:145.560242px;}
.y15e{bottom:147.000241px;}
.y13f{bottom:147.540241px;}
.y15f{bottom:150.779940px;}
.y18c{bottom:158.159937px;}
.y45{bottom:158.699937px;}
.yff{bottom:160.679936px;}
.yed{bottom:160.859936px;}
.y37{bottom:161.399935px;}
.y112{bottom:165.179934px;}
.y121{bottom:166.979933px;}
.y7e{bottom:167.519933px;}
.yc3{bottom:167.699933px;}
.y92{bottom:168.599933px;}
.y15d{bottom:170.039932px;}
.y13e{bottom:170.579932px;}
.y18b{bottom:180.839928px;}
.y44{bottom:181.559927px;}
.y36{bottom:182.099927px;}
.yec{bottom:183.899926px;}
.yfd{bottom:184.259926px;}
.y111{bottom:187.499925px;}
.yfe{bottom:188.039925px;}
.y110{bottom:188.219925px;}
.y7d{bottom:190.379924px;}
.yc2{bottom:190.559924px;}
.y91{bottom:191.459923px;}
.y15c{bottom:193.079923px;}
.y13d{bottom:193.619923px;}
.y35{bottom:202.799919px;}
.y18a{bottom:203.519919px;}
.y43{bottom:204.599918px;}
.yeb{bottom:206.939917px;}
.yfc{bottom:207.659917px;}
.y10f{bottom:211.079916px;}
.y7c{bottom:213.419915px;}
.yc1{bottom:213.599915px;}
.y120{bottom:213.779914px;}
.y90{bottom:214.499914px;}
.y15b{bottom:215.939914px;}
.y13c{bottom:216.479913px;}
.y34{bottom:223.499911px;}
.y189{bottom:226.199910px;}
.y42{bottom:227.639909px;}
.yea{bottom:229.799908px;}
.yfb{bottom:231.059908px;}
.y10e{bottom:234.119906px;}
.y7b{bottom:236.459905px;}
.yc0{bottom:236.639905px;}
.y11f{bottom:237.359905px;}
.y8f{bottom:237.539905px;}
.y15a{bottom:238.979904px;}
.y13b{bottom:239.519904px;}
.y33{bottom:244.199902px;}
.y188{bottom:248.879900px;}
.y41{bottom:250.679900px;}
.ye9{bottom:252.839899px;}
.yfa{bottom:254.639898px;}
.y10d{bottom:257.159897px;}
.y7a{bottom:259.499896px;}
.ybf{bottom:259.679896px;}
.y8e{bottom:260.579896px;}
.y11e{bottom:260.759896px;}
.y159{bottom:262.019895px;}
.y13a{bottom:262.559895px;}
.y32{bottom:264.899894px;}
.y187{bottom:271.559891px;}
.y40{bottom:273.719891px;}
.ye8{bottom:275.879890px;}
.y10c{bottom:277.499889px;}
.yf9{bottom:278.039889px;}
.y79{bottom:282.539887px;}
.ybe{bottom:282.719887px;}
.y8d{bottom:282.899887px;}
.y8c{bottom:283.619887px;}
.y11d{bottom:284.159886px;}
.y158{bottom:285.059886px;}
.y31{bottom:285.599886px;}
.y3f{bottom:290.279884px;}
.y186{bottom:294.239882px;}
.y10b{bottom:298.019881px;}
.ye7{bottom:298.919880px;}
.yf8{bottom:301.439879px;}
.y78{bottom:305.579878px;}
.ybd{bottom:305.759878px;}
.y30{bottom:306.299877px;}
.y8b{bottom:306.479877px;}
.y11c{bottom:307.739877px;}
.y157{bottom:308.099877px;}
.y139{bottom:308.639877px;}
.y3e{bottom:310.979876px;}
.y185{bottom:317.099873px;}
.y109{bottom:318.000600px;}
.ye6{bottom:321.959871px;}
.yf7{bottom:325.019870px;}
.y2f{bottom:326.999869px;}
.y77{bottom:328.439869px;}
.ybc{bottom:328.619869px;}
.y8a{bottom:329.519868px;}
.y11b{bottom:330.959868px;}
.y156{bottom:331.139868px;}
.y3d{bottom:331.679867px;}
.y184{bottom:339.779864px;}
.ye5{bottom:344.819862px;}
.y2e{bottom:347.699861px;}
.yf6{bottom:348.419861px;}
.y119{bottom:350.760600px;}
.y76{bottom:351.479859px;}
.ybb{bottom:351.659859px;}
.y3c{bottom:352.379859px;}
.y89{bottom:352.559859px;}
.y155{bottom:353.999858px;}
.y138{bottom:354.539858px;}
.y183{bottom:362.459855px;}
.ye4{bottom:367.859853px;}
.yf5{bottom:371.819851px;}
.y3b{bottom:373.079851px;}
.y75{bottom:374.519850px;}
.yba{bottom:374.699850px;}
.y2d{bottom:374.879850px;}
.y88{bottom:375.599850px;}
.y154{bottom:377.039849px;}
.y137{bottom:377.579849px;}
.y182{bottom:385.139846px;}
.ye3{bottom:390.899844px;}
.y3a{bottom:393.779842px;}
.yf4{bottom:395.219842px;}
.y74{bottom:397.559841px;}
.yb9{bottom:397.739841px;}
.y2c{bottom:397.919841px;}
.y87{bottom:398.639841px;}
.y153{bottom:400.079840px;}
.y136{bottom:400.619840px;}
.y181{bottom:407.819837px;}
.y2b{bottom:413.939834px;}
.y2a{bottom:417.719833px;}
.yf3{bottom:418.799832px;}
.y73{bottom:420.599832px;}
.yb8{bottom:420.779832px;}
.y86{bottom:421.679831px;}
.y152{bottom:423.119831px;}
.y135{bottom:423.659831px;}
.y180{bottom:430.499828px;}
.ye2{bottom:436.979825px;}
.y29{bottom:438.239825px;}
.yf2{bottom:442.199823px;}
.y72{bottom:443.639823px;}
.yb7{bottom:443.819822px;}
.y85{bottom:444.539822px;}
.y151{bottom:446.159822px;}
.y134{bottom:446.699821px;}
.y17f{bottom:453.179819px;}
.ye0{bottom:460.019816px;}
.y28{bottom:461.279815px;}
.ye1{bottom:463.799814px;}
.yf1{bottom:465.599814px;}
.y84{bottom:466.319813px;}
.y71{bottom:466.499813px;}
.yb5{bottom:466.679813px;}
.y150{bottom:469.199812px;}
.y133{bottom:469.739812px;}
.yb6{bottom:470.459812px;}
.y17e{bottom:475.859810px;}
.yde{bottom:482.879807px;}
.y27{bottom:484.319806px;}
.ydf{bottom:486.659805px;}
.y83{bottom:488.099805px;}
.yf0{bottom:489.179804px;}
.y70{bottom:489.539804px;}
.yb3{bottom:489.719804px;}
.y108{bottom:491.339803px;}
.y14f{bottom:492.059803px;}
.y132{bottom:492.599803px;}
.yb4{bottom:493.499803px;}
.y17d{bottom:498.539801px;}
.ydc{bottom:505.919798px;}
.y26{bottom:507.359797px;}
.y81{bottom:508.080600px;}
.ydd{bottom:509.699796px;}
.y106{bottom:511.140600px;}
.y6f{bottom:512.579795px;}
.yb2{bottom:512.759795px;}
.y14e{bottom:515.099794px;}
.y131{bottom:515.639794px;}
.y17c{bottom:521.219792px;}
.ydb{bottom:528.959788px;}
.y25{bottom:530.399788px;}
.y6e{bottom:535.619786px;}
.yb1{bottom:535.799786px;}
.y14d{bottom:538.139785px;}
.y130{bottom:538.679785px;}
.y17b{bottom:543.899782px;}
.yd9{bottom:551.999779px;}
.y24{bottom:553.259779px;}
.yda{bottom:555.779778px;}
.y118{bottom:558.479777px;}
.y6d{bottom:558.659777px;}
.yb0{bottom:558.839776px;}
.y14c{bottom:561.179776px;}
.y12f{bottom:561.719775px;}
.y17a{bottom:566.579773px;}
.yd8{bottom:575.039770px;}
.y23{bottom:576.299769px;}
.y6c{bottom:581.519767px;}
.yaf{bottom:581.699767px;}
.y14b{bottom:584.219766px;}
.y12e{bottom:584.759766px;}
.y179{bottom:589.259764px;}
.yd7{bottom:598.079761px;}
.y22{bottom:599.339760px;}
.y116{bottom:601.500600px;}
.y6b{bottom:604.559758px;}
.yae{bottom:604.739758px;}
.y14a{bottom:607.259757px;}
.y12d{bottom:607.619757px;}
.y178{bottom:611.939755px;}
.yd6{bottom:620.939752px;}
.y21{bottom:622.379751px;}
.y6a{bottom:627.599749px;}
.yad{bottom:627.779749px;}
.y149{bottom:630.119748px;}
.y12c{bottom:630.659748px;}
.y177{bottom:634.619746px;}
.yd5{bottom:643.979742px;}
.y20{bottom:645.419742px;}
.y69{bottom:650.639740px;}
.y12a{bottom:650.640600px;}
.yab{bottom:650.819740px;}
.y148{bottom:653.159739px;}
.yac{bottom:654.599738px;}
.y176{bottom:657.299737px;}
.yd4{bottom:667.019733px;}
.y1f{bottom:669.359732px;}
.y68{bottom:673.679731px;}
.ya9{bottom:673.859730px;}
.y147{bottom:676.199730px;}
.yaa{bottom:677.639729px;}
.y105{bottom:679.979728px;}
.yd3{bottom:690.059724px;}
.y67{bottom:696.719721px;}
.ya8{bottom:696.899721px;}
.y146{bottom:699.239720px;}
.y175{bottom:702.659719px;}
.y1e{bottom:703.019719px;}
.yd2{bottom:713.099715px;}
.y66{bottom:719.579712px;}
.ya7{bottom:719.759712px;}
.y145{bottom:722.279711px;}
.y1c{bottom:722.820600px;}
.y174{bottom:725.339710px;}
.yd1{bottom:736.139706px;}
.y65{bottom:742.619703px;}
.ya6{bottom:742.799703px;}
.y144{bottom:745.139702px;}
.y173{bottom:748.019701px;}
.y1a{bottom:756.480600px;}
.yd0{bottom:758.999696px;}
.y19{bottom:760.079696px;}
.y17{bottom:765.480600px;}
.y64{bottom:765.659694px;}
.ya5{bottom:765.839694px;}
.y143{bottom:768.179693px;}
.y172{bottom:770.879692px;}
.ycf{bottom:782.039687px;}
.y63{bottom:788.699685px;}
.ya4{bottom:788.879684px;}
.y142{bottom:791.219684px;}
.y171{bottom:793.559683px;}
.y15{bottom:794.460600px;}
.yce{bottom:805.259678px;}
.y62{bottom:811.739675px;}
.ya3{bottom:811.919675px;}
.y141{bottom:812.999675px;}
.y170{bottom:816.239674px;}
.y14{bottom:817.139673px;}
.ycd{bottom:828.839668px;}
.y61{bottom:834.779666px;}
.ya2{bottom:834.959666px;}
.y16f{bottom:838.919664px;}
.y11{bottom:839.820600px;}
.y13{bottom:849.899660px;}
.ycc{bottom:851.879659px;}
.y60{bottom:857.639657px;}
.ya1{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.y16e{bottom:861.599655px;}
.ycb{bottom:874.919650px;}
.y5f{bottom:880.679648px;}
.ya0{bottom:880.859648px;}
.y16d{bottom:884.279646px;}
.y104{bottom:887.159645px;}
.ye{bottom:893.639643px;}
.yca{bottom:897.779641px;}
.y5e{bottom:903.719639px;}
.y9f{bottom:903.899638px;}
.y16c{bottom:906.959637px;}
.y102{bottom:907.140600px;}
.yc9{bottom:920.819632px;}
.y5d{bottom:926.759629px;}
.y9e{bottom:926.939629px;}
.y16b{bottom:929.639628px;}
.yd{bottom:934.319626px;}
.yc8{bottom:941.159624px;}
.y5c{bottom:949.799620px;}
.y9d{bottom:949.979620px;}
.y16a{bottom:952.319619px;}
.yc6{bottom:958.259617px;}
.y5b{bottom:972.119611px;}
.y5a{bottom:972.839611px;}
.y9c{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y115{bottom:976.619609px;}
.yc7{bottom:978.239609px;}
.y59{bottom:995.699602px;}
.y9b{bottom:995.879602px;}
.y169{bottom:997.679601px;}
.yb{bottom:999.299600px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y58{bottom:1018.739593px;}
.y9a{bottom:1018.919592px;}
.y168{bottom:1020.359592px;}
.yef{bottom:1041.239584px;}
.y57{bottom:1041.779583px;}
.y99{bottom:1041.959583px;}
.y167{bottom:1043.039583px;}
.y4d{bottom:1051.500600px;}
.y129{bottom:1063.379575px;}
.y56{bottom:1064.819574px;}
.y98{bottom:1064.999574px;}
.y166{bottom:1065.719574px;}
.y4c{bottom:1066.979573px;}
.y128{bottom:1086.779565px;}
.y4b{bottom:1087.319565px;}
.y55{bottom:1087.859565px;}
.y97{bottom:1088.039565px;}
.y165{bottom:1088.399565px;}
.y163{bottom:1091.819563px;}
.y4a{bottom:1107.659557px;}
.y54{bottom:1109.999556px;}
.y127{bottom:1110.179556px;}
.y53{bottom:1110.719556px;}
.y96{bottom:1110.899556px;}
.y164{bottom:1111.079556px;}
.y162{bottom:1114.679554px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y48{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y125{bottom:1133.579547px;}
.y52{bottom:1133.759546px;}
.y95{bottom:1133.939546px;}
.y126{bottom:1137.359545px;}
.y161{bottom:1137.719545px;}
.y50{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y4f{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h20{height:12.060000px;}
.hb{height:13.500000px;}
.h16{height:15.120000px;}
.h13{height:18.720000px;}
.h9{height:18.773430px;}
.h15{height:18.900000px;}
.hd{height:20.160000px;}
.h11{height:20.340000px;}
.h5{height:20.520000px;}
.h1d{height:23.760000px;}
.h1{height:24.480000px;}
.h19{height:25.913662px;}
.hf{height:25.951630px;}
.h1b{height:27.228505px;}
.h27{height:31.585065px;}
.hc{height:32.199245px;}
.h10{height:36.179986px;}
.h22{height:36.486196px;}
.h17{height:40.842757px;}
.h1a{height:43.185920px;}
.h18{height:45.199318px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h24{height:48.220293px;}
.h12{height:48.234356px;}
.h14{height:50.100449px;}
.h1f{height:53.999978px;}
.h8{height:54.457009px;}
.h21{height:56.159978px;}
.h2{height:58.861031px;}
.h1e{height:63.179975px;}
.ha{height:63.917904px;}
.h23{height:66.972629px;}
.h26{height:69.852628px;}
.h1c{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h25{height:135.372602px;}
.h0{height:1263.000000px;}
.w1f{width:3.240000px;}
.w2{width:4.680000px;}
.w14{width:5.040000px;}
.w28{width:5.760000px;}
.w38{width:6.840000px;}
.w4{width:7.020000px;}
.w21{width:7.740000px;}
.w10{width:8.100000px;}
.w7{width:8.280000px;}
.w2e{width:8.460000px;}
.w6{width:8.820000px;}
.w1a{width:9.000000px;}
.wf{width:9.540000px;}
.w2a{width:9.900000px;}
.w17{width:10.800000px;}
.w19{width:11.160000px;}
.w34{width:11.880000px;}
.w3b{width:12.060000px;}
.we{width:12.240000px;}
.wc{width:12.420000px;}
.w23{width:14.940000px;}
.w26{width:19.080000px;}
.w31{width:19.980000px;}
.w5{width:24.840000px;}
.w18{width:26.100000px;}
.w1c{width:38.880000px;}
.w27{width:40.500000px;}
.w36{width:41.400000px;}
.w35{width:41.580000px;}
.w1e{width:42.480000px;}
.w25{width:45.360000px;}
.w30{width:46.260000px;}
.w22{width:46.800000px;}
.w2d{width:47.340000px;}
.w32{width:47.880000px;}
.w2c{width:48.600000px;}
.w8{width:65.160000px;}
.wa{width:66.240000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.w15{width:82.620000px;}
.w11{width:85.320000px;}
.w37{width:85.860000px;}
.w1d{width:88.560000px;}
.w2b{width:89.280000px;}
.w9{width:94.140000px;}
.w39{width:101.340000px;}
.wb{width:111.060000px;}
.w29{width:114.660000px;}
.w1b{width:132.660000px;}
.w3a{width:156.960000px;}
.w24{width:185.580000px;}
.w33{width:189.720000px;}
.w2f{width:189.900000px;}
.w20{width:191.700000px;}
.w13{width:194.040000px;}
.w12{width:309.240000px;}
.wd{width:435.240000px;}
.w16{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:107.999957px;}
.x24{left:111.779955px;}
.xa{left:116.100000px;}
.x3a{left:120.959952px;}
.x3b{left:125.099950px;}
.xc{left:130.679908px;}
.x4d{left:136.979951px;}
.x4c{left:141.299943px;}
.x48{left:143.279943px;}
.x49{left:147.419941px;}
.x63{left:148.680000px;}
.x5c{left:150.660000px;}
.x5d{left:153.900000px;}
.x5e{left:154.980000px;}
.x3c{left:159.479936px;}
.x76{left:161.820000px;}
.x66{left:163.980000px;}
.x2d{left:168.299933px;}
.x5f{left:169.920000px;}
.x18{left:172.260000px;}
.x2e{left:173.339931px;}
.x3d{left:182.159927px;}
.x3e{left:186.299925px;}
.x20{left:192.420000px;}
.x7a{left:198.899920px;}
.xd{left:200.339857px;}
.xe{left:204.839853px;}
.xb{left:206.999917px;}
.x27{left:249.120000px;}
.xf{left:259.739821px;}
.x77{left:263.160000px;}
.x19{left:266.400000px;}
.x2b{left:269.459892px;}
.x2c{left:274.499890px;}
.x51{left:279.539888px;}
.x56{left:282.059887px;}
.x52{left:284.579886px;}
.x55{left:296.099882px;}
.x53{left:300.599880px;}
.x3f{left:323.819870px;}
.x4a{left:325.979870px;}
.x54{left:327.059869px;}
.x40{left:329.399868px;}
.x1a{left:332.639867px;}
.x1b{left:337.500000px;}
.x7c{left:339.119864px;}
.x41{left:340.919864px;}
.x42{left:345.059862px;}
.x7b{left:351.899859px;}
.x67{left:353.880000px;}
.x60{left:355.500000px;}
.x64{left:367.920000px;}
.x9{left:377.999849px;}
.x4e{left:382.319847px;}
.x43{left:384.299846px;}
.x4f{left:387.359845px;}
.x4b{left:391.859843px;}
.x44{left:397.259841px;}
.x61{left:400.860000px;}
.x45{left:404.099838px;}
.x50{left:406.619837px;}
.x46{left:408.239837px;}
.x47{left:412.379835px;}
.x65{left:416.520000px;}
.x62{left:419.940000px;}
.x68{left:421.559831px;}
.x38{left:424.619830px;}
.x57{left:428.759828px;}
.x39{left:430.199828px;}
.x28{left:433.079827px;}
.x1c{left:448.560000px;}
.x10{left:454.140030px;}
.x26{left:462.600477px;}
.x25{left:476.459809px;}
.x2f{left:488.880000px;}
.x30{left:493.560000px;}
.x21{left:501.660000px;}
.x31{left:504.720000px;}
.x6f{left:507.600000px;}
.x6a{left:510.660000px;}
.x32{left:513.720000px;}
.x74{left:515.519794px;}
.x6b{left:519.120000px;}
.x1e{left:520.372292px;}
.x1d{left:541.980000px;}
.x1{left:549.000000px;}
.x29{left:550.250930px;}
.x70{left:552.960000px;}
.x69{left:556.919777px;}
.x5a{left:579.239768px;}
.x5b{left:584.279766px;}
.x2a{left:588.779764px;}
.x71{left:594.360000px;}
.x72{left:597.600000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x58{left:642.419743px;}
.x33{left:646.200000px;}
.x59{left:647.459741px;}
.x75{left:651.239740px;}
.x11{left:653.039530px;}
.x37{left:656.099738px;}
.x12{left:657.539527px;}
.x13{left:662.039523px;}
.x14{left:666.359733px;}
.x73{left:683.460000px;}
.x34{left:685.080000px;}
.x22{left:695.700000px;}
.x23{left:700.740000px;}
.x4{left:705.060000px;}
.x6c{left:708.840000px;}
.x5{left:722.340000px;}
.x78{left:736.919705px;}
.x79{left:744.119702px;}
.x6{left:747.180000px;}
.x6d{left:755.100000px;}
.x7{left:772.020000px;}
.x35{left:773.640000px;}
.x6e{left:774.900000px;}
.x36{left:778.680000px;}
.x1f{left:780.300000px;}
.x15{left:783.719686px;}
.x16{left:797.039677px;}
.x17{left:814.679607px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.559999pt;}
.v1{vertical-align:60.799976pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls6{letter-spacing:0.049280pt;}
.ls3{letter-spacing:0.064960pt;}
.ls0{letter-spacing:0.649400pt;}
.ls2{letter-spacing:0.650577pt;}
.ls5{letter-spacing:1.329973pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws5{word-spacing:-10.559996pt;}
.ws7{word-spacing:-7.711997pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:268.957786pt;}
._8{margin-left:-707.163100pt;}
._7{margin-left:-690.740982pt;}
._9{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._6{margin-left:-194.892669pt;}
._c{margin-left:-171.724678pt;}
._1{margin-left:-80.500602pt;}
._b{margin-left:-61.222157pt;}
._a{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._12{margin-left:-2.401721pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._14{width:2.388537pt;}
._19{width:3.294487pt;}
._11{width:5.067149pt;}
._2c{width:5.969284pt;}
._10{width:6.860896pt;}
._15{width:8.594653pt;}
._18{width:10.268023pt;}
._e{width:11.971551pt;}
._f{width:12.900457pt;}
._1b{width:14.370324pt;}
._13{width:15.820646pt;}
._22{width:16.837576pt;}
._1a{width:18.369457pt;}
._1e{width:19.262984pt;}
._16{width:20.386685pt;}
._17{width:21.297638pt;}
._27{width:22.310615pt;}
._26{width:23.693286pt;}
._2b{width:24.900391pt;}
._34{width:26.594922pt;}
._1f{width:27.878745pt;}
._31{width:28.984423pt;}
._21{width:30.564585pt;}
._2d{width:31.676200pt;}
._30{width:32.706219pt;}
._33{width:33.917078pt;}
._23{width:35.477193pt;}
._24{width:36.586111pt;}
._35{width:37.848270pt;}
._32{width:38.817703pt;}
._20{width:39.845696pt;}
._d{width:41.203761pt;}
._3a{width:42.481529pt;}
._1d{width:43.528220pt;}
._1c{width:44.652676pt;}
._3c{width:45.628821pt;}
._3b{width:47.023510pt;}
._37{width:49.110599pt;}
._38{width:52.435006pt;}
._25{width:54.183070pt;}
._40{width:55.613080pt;}
._39{width:57.787676pt;}
._29{width:59.557553pt;}
._2e{width:60.475814pt;}
._2f{width:61.637685pt;}
._2a{width:65.242743pt;}
._28{width:68.317048pt;}
._3f{width:70.822396pt;}
._3e{width:78.117740pt;}
._3d{width:89.064254pt;}
._36{width:106.370248pt;}
.fs3{font-size:15.999994pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsc{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4e{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:2.719143pt;}
.y1d{bottom:2.719209pt;}
.y12b{bottom:2.719234pt;}
.y117{bottom:2.719252pt;}
.y107{bottom:2.719284pt;}
.y82{bottom:2.719285pt;}
.y11a{bottom:2.719341pt;}
.y10a{bottom:2.719353pt;}
.y10{bottom:2.879160pt;}
.y18{bottom:3.199193pt;}
.y1b{bottom:3.199196pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y16{bottom:4.319182pt;}
.y49{bottom:5.759065pt;}
.y51{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y47{bottom:100.106627pt;}
.y18e{bottom:100.426893pt;}
.y101{bottom:101.386893pt;}
.y114{bottom:105.866891pt;}
.y124{bottom:106.026891pt;}
.y39{bottom:106.666624pt;}
.y123{bottom:106.666891pt;}
.y80{bottom:107.946890pt;}
.yc5{bottom:108.106890pt;}
.y94{bottom:108.906890pt;}
.y160{bottom:110.186889pt;}
.y140{bottom:110.666889pt;}
.y18d{bottom:120.426885pt;}
.y46{bottom:120.586618pt;}
.y100{bottom:122.026885pt;}
.yee{bottom:122.506884pt;}
.y38{bottom:125.066617pt;}
.y113{bottom:126.346883pt;}
.y122{bottom:127.466882pt;}
.y7f{bottom:128.426882pt;}
.yc4{bottom:128.586882pt;}
.y93{bottom:129.386882pt;}
.y15e{bottom:130.666881pt;}
.y13f{bottom:131.146881pt;}
.y15f{bottom:134.026613pt;}
.y18c{bottom:140.586610pt;}
.y45{bottom:141.066610pt;}
.yff{bottom:142.826610pt;}
.yed{bottom:142.986609pt;}
.y37{bottom:143.466609pt;}
.y112{bottom:146.826608pt;}
.y121{bottom:148.426607pt;}
.y7e{bottom:148.906607pt;}
.yc3{bottom:149.066607pt;}
.y92{bottom:149.866607pt;}
.y15d{bottom:151.146606pt;}
.y13e{bottom:151.626606pt;}
.y18b{bottom:160.746602pt;}
.y44{bottom:161.386602pt;}
.y36{bottom:161.866602pt;}
.yec{bottom:163.466601pt;}
.yfd{bottom:163.786601pt;}
.y111{bottom:166.666600pt;}
.yfe{bottom:167.146600pt;}
.y110{bottom:167.306600pt;}
.y7d{bottom:169.226599pt;}
.yc2{bottom:169.386599pt;}
.y91{bottom:170.186599pt;}
.y15c{bottom:171.626598pt;}
.y13d{bottom:172.106598pt;}
.y35{bottom:180.266595pt;}
.y18a{bottom:180.906594pt;}
.y43{bottom:181.866594pt;}
.yeb{bottom:183.946593pt;}
.yfc{bottom:184.586593pt;}
.y10f{bottom:187.626592pt;}
.y7c{bottom:189.706591pt;}
.yc1{bottom:189.866591pt;}
.y120{bottom:190.026591pt;}
.y90{bottom:190.666590pt;}
.y15b{bottom:191.946590pt;}
.y13c{bottom:192.426590pt;}
.y34{bottom:198.666587pt;}
.y189{bottom:201.066586pt;}
.y42{bottom:202.346586pt;}
.yea{bottom:204.266585pt;}
.yfb{bottom:205.386585pt;}
.y10e{bottom:208.106583pt;}
.y7b{bottom:210.186583pt;}
.yc0{bottom:210.346583pt;}
.y11f{bottom:210.986582pt;}
.y8f{bottom:211.146582pt;}
.y15a{bottom:212.426582pt;}
.y13b{bottom:212.906582pt;}
.y33{bottom:217.066580pt;}
.y188{bottom:221.226578pt;}
.y41{bottom:222.826578pt;}
.ye9{bottom:224.746577pt;}
.yfa{bottom:226.346576pt;}
.y10d{bottom:228.586575pt;}
.y7a{bottom:230.666574pt;}
.ybf{bottom:230.826574pt;}
.y8e{bottom:231.626574pt;}
.y11e{bottom:231.786574pt;}
.y159{bottom:232.906574pt;}
.y13a{bottom:233.386573pt;}
.y32{bottom:235.466572pt;}
.y187{bottom:241.386570pt;}
.y40{bottom:243.306569pt;}
.ye8{bottom:245.226569pt;}
.y10c{bottom:246.666568pt;}
.yf9{bottom:247.146568pt;}
.y79{bottom:251.146566pt;}
.ybe{bottom:251.306566pt;}
.y8d{bottom:251.466566pt;}
.y8c{bottom:252.106566pt;}
.y11d{bottom:252.586566pt;}
.y158{bottom:253.386565pt;}
.y31{bottom:253.866565pt;}
.y3f{bottom:258.026563pt;}
.y186{bottom:261.546562pt;}
.y10b{bottom:264.906561pt;}
.ye7{bottom:265.706560pt;}
.yf8{bottom:267.946559pt;}
.y78{bottom:271.626558pt;}
.ybd{bottom:271.786558pt;}
.y30{bottom:272.266558pt;}
.y8b{bottom:272.426558pt;}
.y11c{bottom:273.546557pt;}
.y157{bottom:273.866557pt;}
.y139{bottom:274.346557pt;}
.y3e{bottom:276.426556pt;}
.y185{bottom:281.866554pt;}
.y109{bottom:282.667200pt;}
.ye6{bottom:286.186552pt;}
.yf7{bottom:288.906551pt;}
.y2f{bottom:290.666550pt;}
.y77{bottom:291.946550pt;}
.ybc{bottom:292.106550pt;}
.y8a{bottom:292.906550pt;}
.y11b{bottom:294.186549pt;}
.y156{bottom:294.346549pt;}
.y3d{bottom:294.826549pt;}
.y184{bottom:302.026546pt;}
.ye5{bottom:306.506544pt;}
.y2e{bottom:309.066543pt;}
.yf6{bottom:309.706543pt;}
.y119{bottom:311.787200pt;}
.y76{bottom:312.426542pt;}
.ybb{bottom:312.586542pt;}
.y3c{bottom:313.226541pt;}
.y89{bottom:313.386541pt;}
.y155{bottom:314.666541pt;}
.y138{bottom:315.146541pt;}
.y183{bottom:322.186538pt;}
.ye4{bottom:326.986536pt;}
.yf5{bottom:330.506534pt;}
.y3b{bottom:331.626534pt;}
.y75{bottom:332.906534pt;}
.yba{bottom:333.066533pt;}
.y2d{bottom:333.226533pt;}
.y88{bottom:333.866533pt;}
.y154{bottom:335.146533pt;}
.y137{bottom:335.626532pt;}
.y182{bottom:342.346530pt;}
.ye3{bottom:347.466528pt;}
.y3a{bottom:350.026527pt;}
.yf4{bottom:351.306526pt;}
.y74{bottom:353.386525pt;}
.yb9{bottom:353.546525pt;}
.y2c{bottom:353.706525pt;}
.y87{bottom:354.346525pt;}
.y153{bottom:355.626524pt;}
.y136{bottom:356.106524pt;}
.y181{bottom:362.506522pt;}
.y2b{bottom:367.946519pt;}
.y2a{bottom:371.306518pt;}
.yf3{bottom:372.266518pt;}
.y73{bottom:373.866517pt;}
.yb8{bottom:374.026517pt;}
.y86{bottom:374.826517pt;}
.y152{bottom:376.106516pt;}
.y135{bottom:376.586516pt;}
.y180{bottom:382.666514pt;}
.ye2{bottom:388.426511pt;}
.y29{bottom:389.546511pt;}
.yf2{bottom:393.066509pt;}
.y72{bottom:394.346509pt;}
.yb7{bottom:394.506509pt;}
.y85{bottom:395.146509pt;}
.y151{bottom:396.586508pt;}
.y134{bottom:397.066508pt;}
.y17f{bottom:402.826506pt;}
.ye0{bottom:408.906503pt;}
.y28{bottom:410.026503pt;}
.ye1{bottom:412.266502pt;}
.yf1{bottom:413.866501pt;}
.y84{bottom:414.506501pt;}
.y71{bottom:414.666501pt;}
.yb5{bottom:414.826501pt;}
.y150{bottom:417.066500pt;}
.y133{bottom:417.546500pt;}
.yb6{bottom:418.186499pt;}
.y17e{bottom:422.986497pt;}
.yde{bottom:429.226495pt;}
.y27{bottom:430.506494pt;}
.ydf{bottom:432.586494pt;}
.y83{bottom:433.866493pt;}
.yf0{bottom:434.826493pt;}
.y70{bottom:435.146493pt;}
.yb3{bottom:435.306493pt;}
.y108{bottom:436.746492pt;}
.y14f{bottom:437.386492pt;}
.y132{bottom:437.866492pt;}
.yb4{bottom:438.666491pt;}
.y17d{bottom:443.146489pt;}
.ydc{bottom:449.706487pt;}
.y26{bottom:450.986486pt;}
.y81{bottom:451.627200pt;}
.ydd{bottom:453.066485pt;}
.y106{bottom:454.347200pt;}
.y6f{bottom:455.626484pt;}
.yb2{bottom:455.786484pt;}
.y14e{bottom:457.866484pt;}
.y131{bottom:458.346483pt;}
.y17c{bottom:463.306481pt;}
.ydb{bottom:470.186479pt;}
.y25{bottom:471.466478pt;}
.y6e{bottom:476.106476pt;}
.yb1{bottom:476.266476pt;}
.y14d{bottom:478.346475pt;}
.y130{bottom:478.826475pt;}
.y17b{bottom:483.466473pt;}
.yd9{bottom:490.666470pt;}
.y24{bottom:491.786470pt;}
.yda{bottom:494.026469pt;}
.y118{bottom:496.426468pt;}
.y6d{bottom:496.586468pt;}
.yb0{bottom:496.746468pt;}
.y14c{bottom:498.826467pt;}
.y12f{bottom:499.306467pt;}
.y17a{bottom:503.626465pt;}
.yd8{bottom:511.146462pt;}
.y23{bottom:512.266462pt;}
.y6c{bottom:516.906460pt;}
.yaf{bottom:517.066460pt;}
.y14b{bottom:519.306459pt;}
.y12e{bottom:519.786459pt;}
.y179{bottom:523.786457pt;}
.yd7{bottom:531.626454pt;}
.y22{bottom:532.746454pt;}
.y116{bottom:534.667200pt;}
.y6b{bottom:537.386452pt;}
.yae{bottom:537.546452pt;}
.y14a{bottom:539.786451pt;}
.y12d{bottom:540.106451pt;}
.y178{bottom:543.946449pt;}
.yd6{bottom:551.946446pt;}
.y21{bottom:553.226445pt;}
.y6a{bottom:557.866444pt;}
.yad{bottom:558.026443pt;}
.y149{bottom:560.106443pt;}
.y12c{bottom:560.586442pt;}
.y177{bottom:564.106441pt;}
.yd5{bottom:572.426438pt;}
.y20{bottom:573.706437pt;}
.y69{bottom:578.346435pt;}
.y12a{bottom:578.347200pt;}
.yab{bottom:578.506435pt;}
.y148{bottom:580.586434pt;}
.yac{bottom:581.866434pt;}
.y176{bottom:584.266433pt;}
.yd4{bottom:592.906430pt;}
.y1f{bottom:594.986429pt;}
.y68{bottom:598.826427pt;}
.ya9{bottom:598.986427pt;}
.y147{bottom:601.066426pt;}
.yaa{bottom:602.346426pt;}
.y105{bottom:604.426425pt;}
.yd3{bottom:613.386421pt;}
.y67{bottom:619.306419pt;}
.ya8{bottom:619.466419pt;}
.y146{bottom:621.546418pt;}
.y175{bottom:624.586417pt;}
.y1e{bottom:624.906417pt;}
.yd2{bottom:633.866413pt;}
.y66{bottom:639.626411pt;}
.ya7{bottom:639.786411pt;}
.y145{bottom:642.026410pt;}
.y1c{bottom:642.507200pt;}
.y174{bottom:644.746409pt;}
.yd1{bottom:654.346405pt;}
.y65{bottom:660.106403pt;}
.ya6{bottom:660.266403pt;}
.y144{bottom:662.346402pt;}
.y173{bottom:664.906401pt;}
.y1a{bottom:672.427200pt;}
.yd0{bottom:674.666397pt;}
.y19{bottom:675.626396pt;}
.y17{bottom:680.427200pt;}
.y64{bottom:680.586394pt;}
.ya5{bottom:680.746394pt;}
.y143{bottom:682.826394pt;}
.y172{bottom:685.226393pt;}
.ycf{bottom:695.146389pt;}
.y63{bottom:701.066386pt;}
.ya4{bottom:701.226386pt;}
.y142{bottom:703.306385pt;}
.y171{bottom:705.386385pt;}
.y15{bottom:706.187200pt;}
.yce{bottom:715.786380pt;}
.y62{bottom:721.546378pt;}
.ya3{bottom:721.706378pt;}
.y141{bottom:722.666378pt;}
.y170{bottom:725.546376pt;}
.y14{bottom:726.346376pt;}
.ycd{bottom:736.746372pt;}
.y61{bottom:742.026370pt;}
.ya2{bottom:742.186370pt;}
.y16f{bottom:745.706368pt;}
.y11{bottom:746.507200pt;}
.y13{bottom:755.466364pt;}
.ycc{bottom:757.226364pt;}
.y60{bottom:762.346362pt;}
.ya1{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.y16e{bottom:765.866360pt;}
.ycb{bottom:777.706356pt;}
.y5f{bottom:782.826354pt;}
.ya0{bottom:782.986353pt;}
.y16d{bottom:786.026352pt;}
.y104{bottom:788.586351pt;}
.ye{bottom:794.346349pt;}
.yca{bottom:798.026347pt;}
.y5e{bottom:803.306345pt;}
.y9f{bottom:803.466345pt;}
.y16c{bottom:806.186344pt;}
.y102{bottom:806.347200pt;}
.yc9{bottom:818.506339pt;}
.y5d{bottom:823.786337pt;}
.y9e{bottom:823.946337pt;}
.y16b{bottom:826.346336pt;}
.yd{bottom:830.506334pt;}
.yc8{bottom:836.586332pt;}
.y5c{bottom:844.266329pt;}
.y9d{bottom:844.426329pt;}
.y16a{bottom:846.506328pt;}
.yc6{bottom:851.786326pt;}
.y5b{bottom:864.106321pt;}
.y5a{bottom:864.746321pt;}
.y9c{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y115{bottom:868.106319pt;}
.yc7{bottom:869.546319pt;}
.y59{bottom:885.066313pt;}
.y9b{bottom:885.226313pt;}
.y169{bottom:886.826312pt;}
.yb{bottom:888.266311pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y58{bottom:905.546304pt;}
.y9a{bottom:905.706304pt;}
.y168{bottom:906.986304pt;}
.yef{bottom:925.546296pt;}
.y57{bottom:926.026296pt;}
.y99{bottom:926.186296pt;}
.y167{bottom:927.146296pt;}
.y4d{bottom:934.667200pt;}
.y129{bottom:945.226289pt;}
.y56{bottom:946.506288pt;}
.y98{bottom:946.666288pt;}
.y166{bottom:947.306288pt;}
.y4c{bottom:948.426287pt;}
.y128{bottom:966.026280pt;}
.y4b{bottom:966.506280pt;}
.y55{bottom:966.986280pt;}
.y97{bottom:967.146280pt;}
.y165{bottom:967.466280pt;}
.y163{bottom:970.506278pt;}
.y4a{bottom:984.586273pt;}
.y54{bottom:986.666272pt;}
.y127{bottom:986.826272pt;}
.y53{bottom:987.306272pt;}
.y96{bottom:987.466272pt;}
.y164{bottom:987.626272pt;}
.y162{bottom:990.826270pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y48{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y125{bottom:1007.626264pt;}
.y52{bottom:1007.786264pt;}
.y95{bottom:1007.946263pt;}
.y126{bottom:1010.986262pt;}
.y161{bottom:1011.306262pt;}
.y50{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y4f{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h20{height:10.720000pt;}
.hb{height:12.000000pt;}
.h16{height:13.440000pt;}
.h13{height:16.640000pt;}
.h9{height:16.687493pt;}
.h15{height:16.800000pt;}
.hd{height:17.920000pt;}
.h11{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1d{height:21.120000pt;}
.h1{height:21.760000pt;}
.h19{height:23.034366pt;}
.hf{height:23.068116pt;}
.h1b{height:24.203115pt;}
.h27{height:28.075614pt;}
.hc{height:28.621551pt;}
.h10{height:32.159987pt;}
.h22{height:32.432175pt;}
.h17{height:36.304673pt;}
.h1a{height:38.387485pt;}
.h18{height:40.177171pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h24{height:42.862483pt;}
.h12{height:42.874983pt;}
.h14{height:44.533732pt;}
.h1f{height:47.999981pt;}
.h8{height:48.406231pt;}
.h21{height:49.919980pt;}
.h2{height:52.320917pt;}
.h1e{height:56.159978pt;}
.ha{height:56.815915pt;}
.h23{height:59.531226pt;}
.h26{height:62.091225pt;}
.h1c{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h25{height:120.331202pt;}
.h0{height:1122.666667pt;}
.w1f{width:2.880000pt;}
.w2{width:4.160000pt;}
.w14{width:4.480000pt;}
.w28{width:5.120000pt;}
.w38{width:6.080000pt;}
.w4{width:6.240000pt;}
.w21{width:6.880000pt;}
.w10{width:7.200000pt;}
.w7{width:7.360000pt;}
.w2e{width:7.520000pt;}
.w6{width:7.840000pt;}
.w1a{width:8.000000pt;}
.wf{width:8.480000pt;}
.w2a{width:8.800000pt;}
.w17{width:9.600000pt;}
.w19{width:9.920000pt;}
.w34{width:10.560000pt;}
.w3b{width:10.720000pt;}
.we{width:10.880000pt;}
.wc{width:11.040000pt;}
.w23{width:13.280000pt;}
.w26{width:16.960000pt;}
.w31{width:17.760000pt;}
.w5{width:22.080000pt;}
.w18{width:23.200000pt;}
.w1c{width:34.560000pt;}
.w27{width:36.000000pt;}
.w36{width:36.800000pt;}
.w35{width:36.960000pt;}
.w1e{width:37.760000pt;}
.w25{width:40.320000pt;}
.w30{width:41.120000pt;}
.w22{width:41.600000pt;}
.w2d{width:42.080000pt;}
.w32{width:42.560000pt;}
.w2c{width:43.200000pt;}
.w8{width:57.920000pt;}
.wa{width:58.880000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.w15{width:73.440000pt;}
.w11{width:75.840000pt;}
.w37{width:76.320000pt;}
.w1d{width:78.720000pt;}
.w2b{width:79.360000pt;}
.w9{width:83.680000pt;}
.w39{width:90.080000pt;}
.wb{width:98.720000pt;}
.w29{width:101.920000pt;}
.w1b{width:117.920000pt;}
.w3a{width:139.520000pt;}
.w24{width:164.960000pt;}
.w33{width:168.640000pt;}
.w2f{width:168.800000pt;}
.w20{width:170.400000pt;}
.w13{width:172.480000pt;}
.w12{width:274.880000pt;}
.wd{width:386.880000pt;}
.w16{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:95.999962pt;}
.x24{left:99.359960pt;}
.xa{left:103.200000pt;}
.x3a{left:107.519957pt;}
.x3b{left:111.199956pt;}
.xc{left:116.159918pt;}
.x4d{left:121.759957pt;}
.x4c{left:125.599950pt;}
.x48{left:127.359949pt;}
.x49{left:131.039948pt;}
.x63{left:132.160000pt;}
.x5c{left:133.920000pt;}
.x5d{left:136.800000pt;}
.x5e{left:137.760000pt;}
.x3c{left:141.759943pt;}
.x76{left:143.840000pt;}
.x66{left:145.760000pt;}
.x2d{left:149.599940pt;}
.x5f{left:151.040000pt;}
.x18{left:153.120000pt;}
.x2e{left:154.079938pt;}
.x3d{left:161.919935pt;}
.x3e{left:165.599934pt;}
.x20{left:171.040000pt;}
.x7a{left:176.799929pt;}
.xd{left:178.079873pt;}
.xe{left:182.079870pt;}
.xb{left:183.999926pt;}
.x27{left:221.440000pt;}
.xf{left:230.879841pt;}
.x77{left:233.920000pt;}
.x19{left:236.800000pt;}
.x2b{left:239.519904pt;}
.x2c{left:243.999902pt;}
.x51{left:248.479901pt;}
.x56{left:250.719900pt;}
.x52{left:252.959899pt;}
.x55{left:263.199895pt;}
.x53{left:267.199893pt;}
.x3f{left:287.839885pt;}
.x4a{left:289.759884pt;}
.x54{left:290.719884pt;}
.x40{left:292.799883pt;}
.x1a{left:295.679882pt;}
.x1b{left:300.000000pt;}
.x7c{left:301.439879pt;}
.x41{left:303.039879pt;}
.x42{left:306.719877pt;}
.x7b{left:312.799875pt;}
.x67{left:314.560000pt;}
.x60{left:316.000000pt;}
.x64{left:327.040000pt;}
.x9{left:335.999866pt;}
.x4e{left:339.839864pt;}
.x43{left:341.599863pt;}
.x4f{left:344.319862pt;}
.x4b{left:348.319861pt;}
.x44{left:353.119859pt;}
.x61{left:356.320000pt;}
.x45{left:359.199856pt;}
.x50{left:361.439855pt;}
.x46{left:362.879855pt;}
.x47{left:366.559853pt;}
.x65{left:370.240000pt;}
.x62{left:373.280000pt;}
.x68{left:374.719850pt;}
.x38{left:377.439849pt;}
.x57{left:381.119848pt;}
.x39{left:382.399847pt;}
.x28{left:384.959846pt;}
.x1c{left:398.720000pt;}
.x10{left:403.680026pt;}
.x26{left:411.200424pt;}
.x25{left:423.519831pt;}
.x2f{left:434.560000pt;}
.x30{left:438.720000pt;}
.x21{left:445.920000pt;}
.x31{left:448.640000pt;}
.x6f{left:451.200000pt;}
.x6a{left:453.920000pt;}
.x32{left:456.640000pt;}
.x74{left:458.239817pt;}
.x6b{left:461.440000pt;}
.x1e{left:462.553148pt;}
.x1d{left:481.760000pt;}
.x1{left:488.000000pt;}
.x29{left:489.111938pt;}
.x70{left:491.520000pt;}
.x69{left:495.039802pt;}
.x5a{left:514.879794pt;}
.x5b{left:519.359792pt;}
.x2a{left:523.359791pt;}
.x71{left:528.320000pt;}
.x72{left:531.200000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x58{left:571.039772pt;}
.x33{left:574.400000pt;}
.x59{left:575.519770pt;}
.x75{left:578.879768pt;}
.x11{left:580.479582pt;}
.x37{left:583.199767pt;}
.x12{left:584.479579pt;}
.x13{left:588.479576pt;}
.x14{left:592.319763pt;}
.x73{left:607.520000pt;}
.x34{left:608.960000pt;}
.x22{left:618.400000pt;}
.x23{left:622.880000pt;}
.x4{left:626.720000pt;}
.x6c{left:630.080000pt;}
.x5{left:642.080000pt;}
.x78{left:655.039738pt;}
.x79{left:661.439735pt;}
.x6{left:664.160000pt;}
.x6d{left:671.200000pt;}
.x7{left:686.240000pt;}
.x35{left:687.680000pt;}
.x6e{left:688.800000pt;}
.x36{left:692.160000pt;}
.x1f{left:693.600000pt;}
.x15{left:696.639721pt;}
.x16{left:708.479713pt;}
.x17{left:724.159650pt;}
}




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