
    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_6384d5d33b74b358e8f91b6a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_70f5df66331886878a3c69c2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_870e8db9ad5effcd7c981412.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_704910e05c09a662209a966a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_d8f656914fb94ed3e1365afc.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_35bff71b11ae5075d9b4ef9d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682129;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_b73f57309733781b6dcef2ca.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_0a9f2b43d1168892e46bdf5b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_f7102c72407941880de398ec.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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_60bb69689e913c39096d65e7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858887;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_2513543219f29b3ae35fb335.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_bfe69879a1d812f01592079e.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2644978ab6c51c27608b4c3b.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{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);}
.m1{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);}
.m3{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);}
.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);}
.m4{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);}
.v2{vertical-align:-24.479990px;}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.519995px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.019560px;}
.lsf{letter-spacing:0.021282px;}
.ls7{letter-spacing:0.155922px;}
.ls3{letter-spacing:1.397778px;}
.ls2{letter-spacing:4.476118px;}
.ls8{letter-spacing:29.693328px;}
.ls5{letter-spacing:34.015846px;}
.lsc{letter-spacing:38.338425px;}
.lsa{letter-spacing:54.908378px;}
.ls6{letter-spacing:88.047565px;}
.lse{letter-spacing:91.649963px;}
.lsd{letter-spacing:111.821955px;}
.ls0{letter-spacing:1275.320844px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.418587px;}
.ws9{word-spacing:-18.155914px;}
.ws8{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.374074px;}
.wsc{word-spacing:-13.505755px;}
.ws2{word-spacing:-13.147195px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:544.435781px;}
.wsb{word-spacing:550.195779px;}
._1d{margin-left:-5.027812px;}
._10{margin-left:-3.759486px;}
._d{margin-left:-2.664355px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._7{width:2.116921px;}
._6{width:3.144550px;}
._4{width:4.346314px;}
._c{width:5.616148px;}
._b{width:6.650814px;}
._11{width:7.808916px;}
._12{width:9.435461px;}
._13{width:10.640344px;}
._14{width:11.663178px;}
._2{width:12.808950px;}
._f{width:14.319902px;}
._e{width:15.565886px;}
._8{width:16.799466px;}
._15{width:19.299094px;}
._16{width:20.367904px;}
._3{width:21.557317px;}
._17{width:23.272266px;}
._18{width:24.998718px;}
._20{width:26.663922px;}
._a{width:27.851989px;}
._2b{width:29.517629px;}
._5{width:30.598423px;}
._1b{width:33.774948px;}
._9{width:35.447679px;}
._1c{width:36.741716px;}
._19{width:43.525333px;}
._1a{width:44.639199px;}
._21{width:74.144230px;}
._25{width:89.289625px;}
._29{width:126.438429px;}
._28{width:131.706022px;}
._26{width:134.676247px;}
._2a{width:140.650366px;}
._23{width:147.601597px;}
._27{width:149.549968px;}
._24{width:170.676550px;}
._1f{width:214.810460px;}
._22{width:271.556207px;}
._1e{width:422.358488px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(13,13,13);}
.fcc{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y165{bottom:2.339697px;}
.y13{bottom:3.599050px;}
.y188{bottom:3.959235px;}
.y18c{bottom:3.959276px;}
.y190{bottom:3.959302px;}
.y194{bottom:3.959687px;}
.y10{bottom:4.319050px;}
.y49{bottom:4.498947px;}
.y8{bottom:4.500041px;}
.y9{bottom:25.320290px;}
.y7{bottom:43.140240px;}
.y5{bottom:47.640281px;}
.y6{bottom:48.720281px;}
.y15d{bottom:134.579946px;}
.ydb{bottom:138.000245px;}
.y10c{bottom:138.359945px;}
.y96{bottom:142.319943px;}
.y129{bottom:142.499943px;}
.y80{bottom:144.120242px;}
.y41{bottom:146.100242px;}
.yb2{bottom:148.439941px;}
.y15c{bottom:152.939939px;}
.y164{bottom:154.560240px;}
.yda{bottom:158.699937px;}
.y128{bottom:160.859936px;}
.y7f{bottom:164.819934px;}
.y1be{bottom:166.619933px;}
.y40{bottom:166.799933px;}
.y10b{bottom:168.779932px;}
.yb1{bottom:169.139932px;}
.yf5{bottom:169.319932px;}
.y137{bottom:173.819930px;}
.y12e{bottom:176.159930px;}
.y15e{bottom:176.339929px;}
.y95{bottom:176.879929px;}
.yd9{bottom:179.399928px;}
.y193{bottom:179.400240px;}
.y7e{bottom:185.519926px;}
.y3f{bottom:187.499925px;}
.y1bd{bottom:188.939924px;}
.yb0{bottom:189.839924px;}
.yf4{bottom:190.019924px;}
.y138{bottom:192.179923px;}
.y12c{bottom:193.259923px;}
.y139{bottom:196.499921px;}
.yd8{bottom:200.099920px;}
.y192{bottom:204.059918px;}
.y7d{bottom:206.219918px;}
.y3e{bottom:208.199917px;}
.y133{bottom:210.359916px;}
.y179{bottom:210.539916px;}
.yf3{bottom:210.719916px;}
.y1bc{bottom:211.259915px;}
.y12f{bottom:218.819912px;}
.y15f{bottom:218.999912px;}
.yd7{bottom:220.799912px;}
.y191{bottom:224.759910px;}
.y7c{bottom:226.919909px;}
.yaf{bottom:228.539909px;}
.y3d{bottom:228.899908px;}
.y178{bottom:231.239908px;}
.yf2{bottom:231.419907px;}
.y166{bottom:231.779907px;}
.y13a{bottom:233.219907px;}
.y1dd{bottom:234.839906px;}
.yd6{bottom:241.499903px;}
.y18f{bottom:242.220600px;}
.y134{bottom:244.559902px;}
.y1bb{bottom:245.459902px;}
.y7b{bottom:247.619901px;}
.yae{bottom:249.239900px;}
.y3c{bottom:249.599900px;}
.y177{bottom:251.939899px;}
.yf1{bottom:252.119899px;}
.y160{bottom:261.479895px;}
.y130{bottom:261.659895px;}
.yd5{bottom:262.199895px;}
.y12a{bottom:263.279895px;}
.y18e{bottom:266.879893px;}
.y1ba{bottom:267.959893px;}
.y7a{bottom:268.319893px;}
.y1dc{bottom:269.219892px;}
.yad{bottom:269.939892px;}
.y3b{bottom:270.299892px;}
.y176{bottom:272.639891px;}
.yf0{bottom:272.819891px;}
.y135{bottom:278.579889px;}
.y12b{bottom:282.179887px;}
.yac{bottom:286.679885px;}
.y18d{bottom:287.579885px;}
.y79{bottom:289.019884px;}
.y1db{bottom:291.539883px;}
.y175{bottom:293.339883px;}
.yef{bottom:293.519883px;}
.yd4{bottom:294.959882px;}
.y1b9{bottom:302.159879px;}
.y3a{bottom:303.059879px;}
.y161{bottom:303.959878px;}
.y131{bottom:304.319878px;}
.y18b{bottom:305.040600px;}
.y78{bottom:309.719876px;}
.y12d{bottom:310.259876px;}
.y136{bottom:312.779875px;}
.y174{bottom:314.039874px;}
.yee{bottom:314.219874px;}
.yd3{bottom:315.659874px;}
.y1b8{bottom:324.479870px;}
.y1da{bottom:325.739870px;}
.y18a{bottom:329.699868px;}
.y77{bottom:330.419868px;}
.y39{bottom:332.939867px;}
.y173{bottom:334.739866px;}
.yed{bottom:334.919866px;}
.y162{bottom:346.439861px;}
.y1b7{bottom:346.799861px;}
.y132{bottom:346.979861px;}
.y1d9{bottom:348.059861px;}
.yd2{bottom:348.419861px;}
.y189{bottom:350.399860px;}
.y76{bottom:351.119860px;}
.y23{bottom:355.259858px;}
.y172{bottom:355.439858px;}
.yec{bottom:355.619858px;}
.y4f{bottom:365.159854px;}
.yd1{bottom:369.119852px;}
.y1b6{bottom:369.299852px;}
.y1d8{bottom:370.559852px;}
.y75{bottom:371.819851px;}
.y171{bottom:376.139850px;}
.yeb{bottom:376.319849px;}
.y4e{bottom:383.699847px;}
.y163{bottom:389.099844px;}
.yd0{bottom:389.819844px;}
.y74{bottom:392.519843px;}
.y127{bottom:392.879843px;}
.y170{bottom:396.839841px;}
.yea{bottom:397.019841px;}
.y4d{bottom:402.419839px;}
.y1b5{bottom:403.499839px;}
.y187{bottom:409.260600px;}
.ycf{bottom:410.519836px;}
.y73{bottom:413.219835px;}
.y126{bottom:413.579835px;}
.y16f{bottom:417.539833px;}
.ye9{bottom:417.719833px;}
.y4c{bottom:420.959832px;}
.y1b4{bottom:425.819830px;}
.y1d7{bottom:427.079829px;}
.yce{bottom:431.219828px;}
.y10a{bottom:433.019827px;}
.y72{bottom:433.919826px;}
.y125{bottom:434.279826px;}
.ye8{bottom:438.419825px;}
.y4b{bottom:439.679824px;}
.y16e{bottom:439.859824px;}
.y15b{bottom:441.659823px;}
.y186{bottom:448.319821px;}
.y1d6{bottom:449.579820px;}
.ycd{bottom:451.919819px;}
.y109{bottom:453.719819px;}
.y71{bottom:454.619818px;}
.y124{bottom:454.979818px;}
.y4a{bottom:458.759816px;}
.ye7{bottom:459.119816px;}
.y16d{bottom:460.559816px;}
.y15a{bottom:462.359815px;}
.y94{bottom:462.899815px;}
.y185{bottom:470.639812px;}
.y1d5{bottom:471.899811px;}
.y108{bottom:474.419810px;}
.y70{bottom:475.319810px;}
.y123{bottom:475.679810px;}
.ye6{bottom:479.819808px;}
.y16c{bottom:481.259807px;}
.y1b3{bottom:482.519807px;}
.y159{bottom:483.059807px;}
.y93{bottom:483.599807px;}
.ycc{bottom:484.499806px;}
.y22{bottom:493.139803px;}
.y107{bottom:495.119802px;}
.y6f{bottom:496.019802px;}
.y122{bottom:496.379801px;}
.y38{bottom:500.519800px;}
.y16b{bottom:501.959799px;}
.y158{bottom:503.759798px;}
.y92{bottom:504.299798px;}
.y1b2{bottom:504.839798px;}
.y1d4{bottom:506.099798px;}
.y21{bottom:508.619797px;}
.y184{bottom:512.399795px;}
.y106{bottom:515.819794px;}
.y6e{bottom:516.719793px;}
.y121{bottom:517.079793px;}
.y37{bottom:517.799793px;}
.ycb{bottom:518.879792px;}
.y20{bottom:521.219792px;}
.y16a{bottom:522.659791px;}
.y157{bottom:524.459790px;}
.y91{bottom:524.999790px;}
.y1b1{bottom:527.159789px;}
.y1d3{bottom:528.419789px;}
.ye5{bottom:533.099787px;}
.y105{bottom:536.519785px;}
.y6d{bottom:537.419785px;}
.y120{bottom:537.779785px;}
.y169{bottom:543.359783px;}
.y156{bottom:545.159782px;}
.y90{bottom:546.239782px;}
.y1d2{bottom:550.919780px;}
.yca{bottom:553.259779px;}
.ye4{bottom:553.799778px;}
.y36{bottom:555.959778px;}
.y104{bottom:557.219777px;}
.y6c{bottom:558.119777px;}
.y11f{bottom:558.479777px;}
.y1b0{bottom:561.539775px;}
.y168{bottom:564.059774px;}
.y155{bottom:565.859774px;}
.y8f{bottom:566.939773px;}
.y35{bottom:573.239771px;}
.yc9{bottom:573.959770px;}
.ye3{bottom:574.499770px;}
.y103{bottom:577.919769px;}
.y6b{bottom:578.819768px;}
.y11e{bottom:579.179768px;}
.y1af{bottom:583.859766px;}
.y167{bottom:584.759766px;}
.y154{bottom:586.379765px;}
.y8e{bottom:587.639765px;}
.y34{bottom:590.519764px;}
.yc8{bottom:594.659762px;}
.y183{bottom:595.199762px;}
.y102{bottom:598.619761px;}
.y6a{bottom:599.519760px;}
.y11d{bottom:599.879760px;}
.ye2{bottom:603.299759px;}
.y153{bottom:607.079757px;}
.y1d1{bottom:607.439757px;}
.y33{bottom:607.799757px;}
.y8d{bottom:608.339757px;}
.yc7{bottom:615.359754px;}
.y182{bottom:615.899754px;}
.y1ae{bottom:618.239753px;}
.y101{bottom:619.319752px;}
.y69{bottom:620.219752px;}
.y11c{bottom:620.579752px;}
.y1f{bottom:621.659751px;}
.y32{bottom:625.079750px;}
.y152{bottom:627.779749px;}
.y8c{bottom:629.039748px;}
.y1d0{bottom:629.939748px;}
.yc6{bottom:636.059746px;}
.y181{bottom:636.599745px;}
.y100{bottom:640.019744px;}
.y68{bottom:640.919744px;}
.y11b{bottom:641.279743px;}
.y31{bottom:642.359743px;}
.y151{bottom:648.479741px;}
.y1e{bottom:649.559740px;}
.y8b{bottom:650.279740px;}
.yc5{bottom:656.759737px;}
.y30{bottom:659.459736px;}
.y1ad{bottom:659.999736px;}
.yff{bottom:660.719736px;}
.y67{bottom:661.619735px;}
.y11a{bottom:661.979735px;}
.y1cf{bottom:664.139734px;}
.y1d{bottom:664.859734px;}
.y150{bottom:669.179732px;}
.y8a{bottom:670.979732px;}
.y2f{bottom:676.739729px;}
.yc4{bottom:677.459729px;}
.yab{bottom:679.799728px;}
.y180{bottom:679.979728px;}
.y1c{bottom:680.159728px;}
.y1ac{bottom:680.699728px;}
.yfe{bottom:681.419727px;}
.y66{bottom:682.319727px;}
.y119{bottom:682.679727px;}
.y1ce{bottom:686.459725px;}
.y14f{bottom:689.879724px;}
.y89{bottom:691.679723px;}
.y2e{bottom:694.019722px;}
.y1b{bottom:694.379722px;}
.yc3{bottom:698.159721px;}
.yaa{bottom:700.499720px;}
.y1ab{bottom:701.399719px;}
.yfd{bottom:702.119719px;}
.y65{bottom:703.019719px;}
.y118{bottom:703.379719px;}
.y1cd{bottom:708.779716px;}
.y14e{bottom:710.579716px;}
.y2d{bottom:711.299715px;}
.y88{bottom:712.739715px;}
.y17f{bottom:714.359714px;}
.yc2{bottom:720.119712px;}
.y1a{bottom:721.019712px;}
.ya9{bottom:721.199712px;}
.y1aa{bottom:722.099711px;}
.yfc{bottom:722.819711px;}
.y64{bottom:723.719711px;}
.y117{bottom:724.079710px;}
.y2c{bottom:728.579709px;}
.y14d{bottom:731.279707px;}
.y87{bottom:733.439707px;}
.y17e{bottom:736.679705px;}
.yc1{bottom:740.819704px;}
.ya8{bottom:741.899703px;}
.y1a9{bottom:742.799703px;}
.y1cc{bottom:743.159703px;}
.yfb{bottom:743.519703px;}
.y63{bottom:744.419702px;}
.y116{bottom:744.779702px;}
.y2b{bottom:745.679702px;}
.y19{bottom:747.839701px;}
.y14c{bottom:751.979699px;}
.y17d{bottom:758.999696px;}
.ya7{bottom:762.599695px;}
.yc0{bottom:762.779695px;}
.y2a{bottom:762.959695px;}
.y1a8{bottom:763.499695px;}
.yfa{bottom:764.219694px;}
.y62{bottom:765.119694px;}
.y115{bottom:765.479694px;}
.y86{bottom:772.139691px;}
.y14b{bottom:772.679691px;}
.y18{bottom:774.659690px;}
.y29{bottom:780.239688px;}
.ya6{bottom:783.299687px;}
.ybf{bottom:783.479687px;}
.y1a7{bottom:784.199686px;}
.yf9{bottom:784.919686px;}
.y61{bottom:785.819686px;}
.y114{bottom:785.999686px;}
.y1cb{bottom:787.799685px;}
.y17{bottom:790.139684px;}
.y85{bottom:792.839683px;}
.y17c{bottom:793.199683px;}
.y14a{bottom:793.379683px;}
.y28{bottom:797.519681px;}
.ya5{bottom:803.999678px;}
.y1a6{bottom:804.899678px;}
.ybe{bottom:805.439678px;}
.y60{bottom:806.519677px;}
.y113{bottom:806.699677px;}
.y84{bottom:813.539675px;}
.y149{bottom:814.079674px;}
.y27{bottom:814.799674px;}
.yf8{bottom:817.499673px;}
.y1ca{bottom:822.179671px;}
.y1a5{bottom:825.599670px;}
.ya4{bottom:825.959670px;}
.y5f{bottom:827.219669px;}
.ybd{bottom:827.399669px;}
.y17b{bottom:827.579669px;}
.y26{bottom:832.079667px;}
.y16{bottom:833.879666px;}
.y83{bottom:834.239666px;}
.y148{bottom:834.779666px;}
.yf7{bottom:838.199665px;}
.y1c9{bottom:844.499662px;}
.y1a4{bottom:846.299661px;}
.ya3{bottom:846.839661px;}
.y24{bottom:847.559661px;}
.y5e{bottom:847.919661px;}
.ybc{bottom:848.099661px;}
.y25{bottom:849.179660px;}
.y15{bottom:850.619660px;}
.y82{bottom:854.939658px;}
.y147{bottom:855.479658px;}
.y17a{bottom:857.999657px;}
.y1c8{bottom:866.819653px;}
.yf6{bottom:866.999653px;}
.y5d{bottom:868.619653px;}
.ya2{bottom:868.799652px;}
.yf{bottom:870.780600px;}
.y12{bottom:871.680600px;}
.y11{bottom:875.279650px;}
.y146{bottom:876.179650px;}
.y1a1{bottom:876.359649px;}
.y14{bottom:876.719649px;}
.y1a3{bottom:887.699645px;}
.y5c{bottom:889.319644px;}
.ya1{bottom:889.499644px;}
.ybb{bottom:890.759644px;}
.y145{bottom:896.879641px;}
.y1c7{bottom:901.199640px;}
.y1a0{bottom:907.499637px;}
.y1a2{bottom:908.399637px;}
.ye{bottom:909.299636px;}
.y5b{bottom:910.019636px;}
.y112{bottom:910.199636px;}
.ya0{bottom:911.459635px;}
.yba{bottom:911.639635px;}
.y144{bottom:917.579633px;}
.y1c6{bottom:923.519631px;}
.y195{bottom:924.599630px;}
.y5a{bottom:930.719628px;}
.y111{bottom:930.899628px;}
.ye1{bottom:931.259627px;}
.yd{bottom:931.619627px;}
.y9f{bottom:932.159627px;}
.yb9{bottom:933.599627px;}
.y143{bottom:938.279625px;}
.y196{bottom:945.659622px;}
.y1c5{bottom:945.839622px;}
.y59{bottom:951.419619px;}
.y110{bottom:951.599619px;}
.ye0{bottom:951.959619px;}
.y9e{bottom:953.219619px;}
.yb8{bottom:954.299618px;}
.y142{bottom:958.979616px;}
.yc{bottom:964.379614px;}
.y197{bottom:966.539613px;}
.y58{bottom:972.119611px;}
.y10f{bottom:972.299611px;}
.ydf{bottom:972.659611px;}
.y9d{bottom:973.919610px;}
.yb7{bottom:974.999610px;}
.y141{bottom:979.679608px;}
.y1c4{bottom:980.219608px;}
.y198{bottom:987.419605px;}
.y57{bottom:992.819603px;}
.y10e{bottom:992.999603px;}
.yde{bottom:993.359603px;}
.y9c{bottom:994.619602px;}
.yb{bottom:996.959601px;}
.y140{bottom:1000.379600px;}
.y1c3{bottom:1002.539599px;}
.y199{bottom:1008.479597px;}
.y56{bottom:1013.519595px;}
.yb6{bottom:1013.699595px;}
.ydd{bottom:1014.059594px;}
.y9b{bottom:1015.319594px;}
.ya{bottom:1017.659593px;}
.y13f{bottom:1021.079592px;}
.y1c2{bottom:1024.859590px;}
.y19a{bottom:1029.359588px;}
.y55{bottom:1034.219586px;}
.yb5{bottom:1034.399586px;}
.ydc{bottom:1034.759586px;}
.y9a{bottom:1036.019586px;}
.y13e{bottom:1041.779583px;}
.y42{bottom:1050.239580px;}
.y19b{bottom:1050.419580px;}
.y47{bottom:1051.139580px;}
.y54{bottom:1054.919578px;}
.yb4{bottom:1055.099578px;}
.y81{bottom:1055.459578px;}
.y99{bottom:1058.159577px;}
.y1c1{bottom:1059.239576px;}
.y13d{bottom:1062.479575px;}
.y46{bottom:1069.499572px;}
.y19c{bottom:1071.299571px;}
.yb3{bottom:1075.799570px;}
.y53{bottom:1076.159570px;}
.y98{bottom:1078.859568px;}
.y1c0{bottom:1081.559567px;}
.y13c{bottom:1083.179567px;}
.y45{bottom:1087.859565px;}
.y19d{bottom:1092.179563px;}
.y10d{bottom:1096.499561px;}
.y52{bottom:1096.859561px;}
.y97{bottom:1099.559560px;}
.y13b{bottom:1103.879558px;}
.y19e{bottom:1113.239555px;}
.y44{bottom:1115.039554px;}
.y1bf{bottom:1115.939554px;}
.y51{bottom:1117.559553px;}
.y48{bottom:1127.640600px;}
.y43{bottom:1133.399547px;}
.y19f{bottom:1134.119546px;}
.y50{bottom:1138.259545px;}
.y4{bottom:1171.559531px;}
.y3{bottom:1174.619530px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h17{height:16.560000px;}
.hb{height:19.260000px;}
.h8{height:20.160000px;}
.h5{height:20.340000px;}
.h18{height:20.520000px;}
.ha{height:35.991197px;}
.hf{height:36.624009px;}
.h3{height:36.703110px;}
.h4{height:38.759750px;}
.he{height:39.339828px;}
.h10{height:39.830258px;}
.hd{height:40.297132px;}
.h1{height:42.894123px;}
.h11{height:43.390178px;}
.h13{height:43.536076px;}
.h9{height:44.149201px;}
.h12{height:44.256076px;}
.hc{height:44.666701px;}
.h2{height:47.545293px;}
.h6{height:48.796855px;}
.h7{height:51.679667px;}
.h14{height:52.417948px;}
.h15{height:52.453104px;}
.h16{height:54.414119px;}
.h0{height:1263.000000px;}
.w4{width:3.600000px;}
.w2{width:4.500000px;}
.wa{width:7.920000px;}
.wc{width:9.000000px;}
.w6{width:13.860000px;}
.w7{width:31.140000px;}
.w5{width:33.840000px;}
.we{width:41.040000px;}
.wd{width:46.080000px;}
.w3{width:58.500000px;}
.wb{width:78.480000px;}
.w8{width:82.080000px;}
.w9{width:135.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x26{left:-4.680255px;}
.x0{left:0.000000px;}
.x19{left:98.099961px;}
.x17{left:100.079960px;}
.x16{left:102.599959px;}
.x1{left:108.539957px;}
.x2{left:110.701628px;}
.x14{left:113.939954px;}
.x1b{left:115.019954px;}
.x15{left:116.099921px;}
.x51{left:118.439953px;}
.xb{left:120.779952px;}
.xd{left:122.940000px;}
.x9{left:126.359009px;}
.x5{left:132.659947px;}
.x30{left:134.999946px;}
.x4f{left:139.859944px;}
.x1a{left:146.699941px;}
.x2c{left:148.859940px;}
.x48{left:152.099939px;}
.x65{left:155.519938px;}
.x18{left:156.779937px;}
.x2d{left:158.579937px;}
.x31{left:161.999889px;}
.x63{left:163.979934px;}
.x8{left:165.419934px;}
.x1d{left:170.999830px;}
.x62{left:175.499930px;}
.x46{left:178.919928px;}
.xe{left:181.440000px;}
.xf{left:185.040000px;}
.x45{left:186.659925px;}
.x4d{left:190.259924px;}
.x34{left:192.959390px;}
.x64{left:203.219919px;}
.x10{left:218.879912px;}
.x11{left:221.579911px;}
.x5f{left:226.799870px;}
.x53{left:236.699905px;}
.x52{left:238.319905px;}
.x1c{left:241.019857px;}
.x33{left:247.501054px;}
.xa{left:256.319897px;}
.x12{left:260.640000px;}
.x36{left:261.899943px;}
.x4c{left:264.239323px;}
.x1f{left:268.019893px;}
.x38{left:276.479889px;}
.x1e{left:280.439888px;}
.x13{left:282.592387px;}
.x27{left:283.859886px;}
.x40{left:288.359885px;}
.x3f{left:291.419668px;}
.x2e{left:296.459881px;}
.x66{left:297.899881px;}
.x22{left:302.039901px;}
.x2f{left:305.639878px;}
.x41{left:309.419876px;}
.x60{left:326.699869px;}
.x54{left:329.039868px;}
.x55{left:340.739864px;}
.x2a{left:357.119857px;}
.x2b{left:361.619855px;}
.x3a{left:363.059855px;}
.x49{left:364.139854px;}
.x3b{left:366.839853px;}
.x4a{left:367.919853px;}
.x61{left:372.780000px;}
.x21{left:388.259845px;}
.x23{left:399.599840px;}
.xc{left:404.999599px;}
.x20{left:419.759607px;}
.x6{left:432.359827px;}
.x42{left:471.599811px;}
.x56{left:481.860000px;}
.x24{left:496.439801px;}
.x58{left:500.579800px;}
.x57{left:523.079791px;}
.x59{left:526.139790px;}
.x28{left:531.719787px;}
.x29{left:540.539784px;}
.x4e{left:580.680000px;}
.x3c{left:584.279766px;}
.x3d{left:589.499764px;}
.x5a{left:608.219757px;}
.x5b{left:622.079751px;}
.x5c{left:625.139750px;}
.x43{left:633.779746px;}
.x25{left:641.520000px;}
.x4{left:666.179734px;}
.x37{left:673.739731px;}
.x39{left:683.818793px;}
.x32{left:685.981523px;}
.x5d{left:704.339718px;}
.x5e{left:709.739716px;}
.x44{left:716.039714px;}
.x47{left:749.879700px;}
.x4b{left:753.659699px;}
.x35{left:755.819161px;}
.x50{left:770.399692px;}
.x3e{left:773.819690px;}
.x7{left:779.760000px;}
.x3{left:784.979686px;}
@media print{
.v2{vertical-align:-21.759991pt;}
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.239996pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.017387pt;}
.lsf{letter-spacing:0.018917pt;}
.ls7{letter-spacing:0.138597pt;}
.ls3{letter-spacing:1.242470pt;}
.ls2{letter-spacing:3.978772pt;}
.ls8{letter-spacing:26.394069pt;}
.ls5{letter-spacing:30.236308pt;}
.lsc{letter-spacing:34.078600pt;}
.lsa{letter-spacing:48.807447pt;}
.ls6{letter-spacing:78.264502pt;}
.lse{letter-spacing:81.466634pt;}
.lsd{letter-spacing:99.397294pt;}
.ls0{letter-spacing:1133.618528pt;}
.ws4{word-spacing:-28.816521pt;}
.ws9{word-spacing:-16.138591pt;}
.ws8{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.776955pt;}
.wsc{word-spacing:-12.005115pt;}
.ws2{word-spacing:-11.686395pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:483.942916pt;}
.wsb{word-spacing:489.062914pt;}
._1d{margin-left:-4.469166pt;}
._10{margin-left:-3.341766pt;}
._d{margin-left:-2.368316pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._7{width:1.881708pt;}
._6{width:2.795156pt;}
._4{width:3.863390pt;}
._c{width:4.992132pt;}
._b{width:5.911835pt;}
._11{width:6.941258pt;}
._12{width:8.387077pt;}
._13{width:9.458083pt;}
._14{width:10.367269pt;}
._2{width:11.385733pt;}
._f{width:12.728801pt;}
._e{width:13.836343pt;}
._8{width:14.932858pt;}
._15{width:17.154750pt;}
._16{width:18.104803pt;}
._3{width:19.162060pt;}
._17{width:20.686458pt;}
._18{width:22.221083pt;}
._20{width:23.701264pt;}
._a{width:24.757324pt;}
._2b{width:26.237893pt;}
._5{width:27.198598pt;}
._1b{width:30.022176pt;}
._9{width:31.509048pt;}
._1c{width:32.659303pt;}
._19{width:38.689185pt;}
._1a{width:39.679288pt;}
._21{width:65.905982pt;}
._25{width:79.368555pt;}
._29{width:112.389715pt;}
._28{width:117.072020pt;}
._26{width:119.712219pt;}
._2a{width:125.022548pt;}
._23{width:131.201420pt;}
._27{width:132.933305pt;}
._24{width:151.712489pt;}
._1f{width:190.942631pt;}
._22{width:241.383295pt;}
._1e{width:375.429767pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y165{bottom:2.079731pt;}
.y13{bottom:3.199155pt;}
.y188{bottom:3.519320pt;}
.y18c{bottom:3.519357pt;}
.y190{bottom:3.519379pt;}
.y194{bottom:3.519721pt;}
.y10{bottom:3.839156pt;}
.y49{bottom:3.999064pt;}
.y8{bottom:4.000036pt;}
.y9{bottom:22.506924pt;}
.y7{bottom:38.346880pt;}
.y5{bottom:42.346916pt;}
.y6{bottom:43.306916pt;}
.y15d{bottom:119.626619pt;}
.ydb{bottom:122.666884pt;}
.y10c{bottom:122.986617pt;}
.y96{bottom:126.506616pt;}
.y129{bottom:126.666616pt;}
.y80{bottom:128.106882pt;}
.y41{bottom:129.866881pt;}
.yb2{bottom:131.946614pt;}
.y15c{bottom:135.946612pt;}
.y164{bottom:137.386880pt;}
.yda{bottom:141.066610pt;}
.y128{bottom:142.986609pt;}
.y7f{bottom:146.506608pt;}
.y1be{bottom:148.106607pt;}
.y40{bottom:148.266607pt;}
.y10b{bottom:150.026607pt;}
.yb1{bottom:150.346607pt;}
.yf5{bottom:150.506606pt;}
.y137{bottom:154.506605pt;}
.y12e{bottom:156.586604pt;}
.y15e{bottom:156.746604pt;}
.y95{bottom:157.226604pt;}
.yd9{bottom:159.466603pt;}
.y193{bottom:159.466880pt;}
.y7e{bottom:164.906601pt;}
.y3f{bottom:166.666600pt;}
.y1bd{bottom:167.946599pt;}
.yb0{bottom:168.746599pt;}
.yf4{bottom:168.906599pt;}
.y138{bottom:170.826598pt;}
.y12c{bottom:171.786598pt;}
.y139{bottom:174.666597pt;}
.yd8{bottom:177.866596pt;}
.y192{bottom:181.386594pt;}
.y7d{bottom:183.306593pt;}
.y3e{bottom:185.066593pt;}
.y133{bottom:186.986592pt;}
.y179{bottom:187.146592pt;}
.yf3{bottom:187.306592pt;}
.y1bc{bottom:187.786592pt;}
.y12f{bottom:194.506589pt;}
.y15f{bottom:194.666589pt;}
.yd7{bottom:196.266588pt;}
.y191{bottom:199.786587pt;}
.y7c{bottom:201.706586pt;}
.yaf{bottom:203.146585pt;}
.y3d{bottom:203.466585pt;}
.y178{bottom:205.546584pt;}
.yf2{bottom:205.706584pt;}
.y166{bottom:206.026584pt;}
.y13a{bottom:207.306584pt;}
.y1dd{bottom:208.746583pt;}
.yd6{bottom:214.666581pt;}
.y18f{bottom:215.307200pt;}
.y134{bottom:217.386580pt;}
.y1bb{bottom:218.186579pt;}
.y7b{bottom:220.106579pt;}
.yae{bottom:221.546578pt;}
.y3c{bottom:221.866578pt;}
.y177{bottom:223.946577pt;}
.yf1{bottom:224.106577pt;}
.y160{bottom:232.426574pt;}
.y130{bottom:232.586574pt;}
.yd5{bottom:233.066573pt;}
.y12a{bottom:234.026573pt;}
.y18e{bottom:237.226572pt;}
.y1ba{bottom:238.186571pt;}
.y7a{bottom:238.506571pt;}
.y1dc{bottom:239.306571pt;}
.yad{bottom:239.946571pt;}
.y3b{bottom:240.266571pt;}
.y176{bottom:242.346570pt;}
.yf0{bottom:242.506570pt;}
.y135{bottom:247.626568pt;}
.y12b{bottom:250.826566pt;}
.yac{bottom:254.826565pt;}
.y18d{bottom:255.626564pt;}
.y79{bottom:256.906564pt;}
.y1db{bottom:259.146563pt;}
.y175{bottom:260.746562pt;}
.yef{bottom:260.906562pt;}
.yd4{bottom:262.186562pt;}
.y1b9{bottom:268.586559pt;}
.y3a{bottom:269.386559pt;}
.y161{bottom:270.186559pt;}
.y131{bottom:270.506558pt;}
.y18b{bottom:271.147200pt;}
.y78{bottom:275.306557pt;}
.y12d{bottom:275.786556pt;}
.y136{bottom:278.026555pt;}
.y174{bottom:279.146555pt;}
.yee{bottom:279.306555pt;}
.yd3{bottom:280.586554pt;}
.y1b8{bottom:288.426551pt;}
.y1da{bottom:289.546551pt;}
.y18a{bottom:293.066549pt;}
.y77{bottom:293.706549pt;}
.y39{bottom:295.946548pt;}
.y173{bottom:297.546548pt;}
.yed{bottom:297.706548pt;}
.y162{bottom:307.946543pt;}
.y1b7{bottom:308.266543pt;}
.y132{bottom:308.426543pt;}
.y1d9{bottom:309.386543pt;}
.yd2{bottom:309.706543pt;}
.y189{bottom:311.466542pt;}
.y76{bottom:312.106542pt;}
.y23{bottom:315.786540pt;}
.y172{bottom:315.946540pt;}
.yec{bottom:316.106540pt;}
.y4f{bottom:324.586537pt;}
.yd1{bottom:328.106535pt;}
.y1b6{bottom:328.266535pt;}
.y1d8{bottom:329.386535pt;}
.y75{bottom:330.506534pt;}
.y171{bottom:334.346533pt;}
.yeb{bottom:334.506533pt;}
.y4e{bottom:341.066530pt;}
.y163{bottom:345.866528pt;}
.yd0{bottom:346.506528pt;}
.y74{bottom:348.906527pt;}
.y127{bottom:349.226527pt;}
.y170{bottom:352.746526pt;}
.yea{bottom:352.906526pt;}
.y4d{bottom:357.706524pt;}
.y1b5{bottom:358.666523pt;}
.y187{bottom:363.787200pt;}
.ycf{bottom:364.906521pt;}
.y73{bottom:367.306520pt;}
.y126{bottom:367.626520pt;}
.y16f{bottom:371.146518pt;}
.ye9{bottom:371.306518pt;}
.y4c{bottom:374.186517pt;}
.y1b4{bottom:378.506515pt;}
.y1d7{bottom:379.626515pt;}
.yce{bottom:383.306513pt;}
.y10a{bottom:384.906513pt;}
.y72{bottom:385.706512pt;}
.y125{bottom:386.026512pt;}
.ye8{bottom:389.706511pt;}
.y4b{bottom:390.826510pt;}
.y16e{bottom:390.986510pt;}
.y15b{bottom:392.586510pt;}
.y186{bottom:398.506507pt;}
.y1d6{bottom:399.626507pt;}
.ycd{bottom:401.706506pt;}
.y109{bottom:403.306505pt;}
.y71{bottom:404.106505pt;}
.y124{bottom:404.426505pt;}
.y4a{bottom:407.786504pt;}
.ye7{bottom:408.106503pt;}
.y16d{bottom:409.386503pt;}
.y15a{bottom:410.986502pt;}
.y94{bottom:411.466502pt;}
.y185{bottom:418.346499pt;}
.y1d5{bottom:419.466499pt;}
.y108{bottom:421.706498pt;}
.y70{bottom:422.506498pt;}
.y123{bottom:422.826498pt;}
.ye6{bottom:426.506496pt;}
.y16c{bottom:427.786496pt;}
.y1b3{bottom:428.906495pt;}
.y159{bottom:429.386495pt;}
.y93{bottom:429.866495pt;}
.ycc{bottom:430.666494pt;}
.y22{bottom:438.346491pt;}
.y107{bottom:440.106491pt;}
.y6f{bottom:440.906490pt;}
.y122{bottom:441.226490pt;}
.y38{bottom:444.906489pt;}
.y16b{bottom:446.186488pt;}
.y158{bottom:447.786488pt;}
.y92{bottom:448.266487pt;}
.y1b2{bottom:448.746487pt;}
.y1d4{bottom:449.866487pt;}
.y21{bottom:452.106486pt;}
.y184{bottom:455.466484pt;}
.y106{bottom:458.506483pt;}
.y6e{bottom:459.306483pt;}
.y121{bottom:459.626483pt;}
.y37{bottom:460.266483pt;}
.ycb{bottom:461.226482pt;}
.y20{bottom:463.306481pt;}
.y16a{bottom:464.586481pt;}
.y157{bottom:466.186480pt;}
.y91{bottom:466.666480pt;}
.y1b1{bottom:468.586479pt;}
.y1d3{bottom:469.706479pt;}
.ye5{bottom:473.866477pt;}
.y105{bottom:476.906476pt;}
.y6d{bottom:477.706476pt;}
.y120{bottom:478.026475pt;}
.y169{bottom:482.986473pt;}
.y156{bottom:484.586473pt;}
.y90{bottom:485.546472pt;}
.y1d2{bottom:489.706471pt;}
.yca{bottom:491.786470pt;}
.ye4{bottom:492.266470pt;}
.y36{bottom:494.186469pt;}
.y104{bottom:495.306469pt;}
.y6c{bottom:496.106468pt;}
.y11f{bottom:496.426468pt;}
.y1b0{bottom:499.146467pt;}
.y168{bottom:501.386466pt;}
.y155{bottom:502.986465pt;}
.y8f{bottom:503.946465pt;}
.y35{bottom:509.546463pt;}
.yc9{bottom:510.186463pt;}
.ye3{bottom:510.666462pt;}
.y103{bottom:513.706461pt;}
.y6b{bottom:514.506461pt;}
.y11e{bottom:514.826461pt;}
.y1af{bottom:518.986459pt;}
.y167{bottom:519.786459pt;}
.y154{bottom:521.226458pt;}
.y8e{bottom:522.346458pt;}
.y34{bottom:524.906457pt;}
.yc8{bottom:528.586455pt;}
.y183{bottom:529.066455pt;}
.y102{bottom:532.106454pt;}
.y6a{bottom:532.906454pt;}
.y11d{bottom:533.226453pt;}
.ye2{bottom:536.266452pt;}
.y153{bottom:539.626451pt;}
.y1d1{bottom:539.946451pt;}
.y33{bottom:540.266451pt;}
.y8d{bottom:540.746450pt;}
.yc7{bottom:546.986448pt;}
.y182{bottom:547.466448pt;}
.y1ae{bottom:549.546447pt;}
.y101{bottom:550.506446pt;}
.y69{bottom:551.306446pt;}
.y11c{bottom:551.626446pt;}
.y1f{bottom:552.586446pt;}
.y32{bottom:555.626444pt;}
.y152{bottom:558.026443pt;}
.y8c{bottom:559.146443pt;}
.y1d0{bottom:559.946443pt;}
.yc6{bottom:565.386441pt;}
.y181{bottom:565.866440pt;}
.y100{bottom:568.906439pt;}
.y68{bottom:569.706439pt;}
.y11b{bottom:570.026439pt;}
.y31{bottom:570.986438pt;}
.y151{bottom:576.426436pt;}
.y1e{bottom:577.386436pt;}
.y8b{bottom:578.026435pt;}
.yc5{bottom:583.786433pt;}
.y30{bottom:586.186432pt;}
.y1ad{bottom:586.666432pt;}
.yff{bottom:587.306432pt;}
.y67{bottom:588.106431pt;}
.y11a{bottom:588.426431pt;}
.y1cf{bottom:590.346431pt;}
.y1d{bottom:590.986430pt;}
.y150{bottom:594.826429pt;}
.y8a{bottom:596.426428pt;}
.y2f{bottom:601.546426pt;}
.yc4{bottom:602.186426pt;}
.yab{bottom:604.266425pt;}
.y180{bottom:604.426425pt;}
.y1c{bottom:604.586425pt;}
.y1ac{bottom:605.066425pt;}
.yfe{bottom:605.706424pt;}
.y66{bottom:606.506424pt;}
.y119{bottom:606.826424pt;}
.y1ce{bottom:610.186423pt;}
.y14f{bottom:613.226421pt;}
.y89{bottom:614.826421pt;}
.y2e{bottom:616.906420pt;}
.y1b{bottom:617.226420pt;}
.yc3{bottom:620.586418pt;}
.yaa{bottom:622.666418pt;}
.y1ab{bottom:623.466417pt;}
.yfd{bottom:624.106417pt;}
.y65{bottom:624.906417pt;}
.y118{bottom:625.226417pt;}
.y1cd{bottom:630.026415pt;}
.y14e{bottom:631.626414pt;}
.y2d{bottom:632.266414pt;}
.y88{bottom:633.546413pt;}
.y17f{bottom:634.986413pt;}
.yc2{bottom:640.106411pt;}
.y1a{bottom:640.906410pt;}
.ya9{bottom:641.066410pt;}
.y1aa{bottom:641.866410pt;}
.yfc{bottom:642.506410pt;}
.y64{bottom:643.306409pt;}
.y117{bottom:643.626409pt;}
.y2c{bottom:647.626408pt;}
.y14d{bottom:650.026407pt;}
.y87{bottom:651.946406pt;}
.y17e{bottom:654.826405pt;}
.yc1{bottom:658.506403pt;}
.ya8{bottom:659.466403pt;}
.y1a9{bottom:660.266403pt;}
.y1cc{bottom:660.586402pt;}
.yfb{bottom:660.906402pt;}
.y63{bottom:661.706402pt;}
.y116{bottom:662.026402pt;}
.y2b{bottom:662.826402pt;}
.y19{bottom:664.746401pt;}
.y14c{bottom:668.426399pt;}
.y17d{bottom:674.666397pt;}
.ya7{bottom:677.866396pt;}
.yc0{bottom:678.026395pt;}
.y2a{bottom:678.186395pt;}
.y1a8{bottom:678.666395pt;}
.yfa{bottom:679.306395pt;}
.y62{bottom:680.106395pt;}
.y115{bottom:680.426394pt;}
.y86{bottom:686.346392pt;}
.y14b{bottom:686.826392pt;}
.y18{bottom:688.586391pt;}
.y29{bottom:693.546389pt;}
.ya6{bottom:696.266388pt;}
.ybf{bottom:696.426388pt;}
.y1a7{bottom:697.066388pt;}
.yf9{bottom:697.706388pt;}
.y61{bottom:698.506387pt;}
.y114{bottom:698.666387pt;}
.y1cb{bottom:700.266387pt;}
.y17{bottom:702.346386pt;}
.y85{bottom:704.746385pt;}
.y17c{bottom:705.066385pt;}
.y14a{bottom:705.226385pt;}
.y28{bottom:708.906383pt;}
.ya5{bottom:714.666381pt;}
.y1a6{bottom:715.466380pt;}
.ybe{bottom:715.946380pt;}
.y60{bottom:716.906380pt;}
.y113{bottom:717.066380pt;}
.y84{bottom:723.146377pt;}
.y149{bottom:723.626377pt;}
.y27{bottom:724.266377pt;}
.yf8{bottom:726.666376pt;}
.y1ca{bottom:730.826374pt;}
.y1a5{bottom:733.866373pt;}
.ya4{bottom:734.186373pt;}
.y5f{bottom:735.306373pt;}
.ybd{bottom:735.466372pt;}
.y17b{bottom:735.626372pt;}
.y26{bottom:739.626371pt;}
.y16{bottom:741.226370pt;}
.y83{bottom:741.546370pt;}
.y148{bottom:742.026370pt;}
.yf7{bottom:745.066369pt;}
.y1c9{bottom:750.666366pt;}
.y1a4{bottom:752.266366pt;}
.ya3{bottom:752.746366pt;}
.y24{bottom:753.386365pt;}
.y5e{bottom:753.706365pt;}
.ybc{bottom:753.866365pt;}
.y25{bottom:754.826365pt;}
.y15{bottom:756.106364pt;}
.y82{bottom:759.946363pt;}
.y147{bottom:760.426362pt;}
.y17a{bottom:762.666362pt;}
.y1c8{bottom:770.506358pt;}
.yf6{bottom:770.666358pt;}
.y5d{bottom:772.106358pt;}
.ya2{bottom:772.266358pt;}
.yf{bottom:774.027200pt;}
.y12{bottom:774.827200pt;}
.y11{bottom:778.026355pt;}
.y146{bottom:778.826355pt;}
.y1a1{bottom:778.986355pt;}
.y14{bottom:779.306355pt;}
.y1a3{bottom:789.066351pt;}
.y5c{bottom:790.506350pt;}
.ya1{bottom:790.666350pt;}
.ybb{bottom:791.786350pt;}
.y145{bottom:797.226348pt;}
.y1c7{bottom:801.066346pt;}
.y1a0{bottom:806.666344pt;}
.y1a2{bottom:807.466344pt;}
.ye{bottom:808.266343pt;}
.y5b{bottom:808.906343pt;}
.y112{bottom:809.066343pt;}
.ya0{bottom:810.186343pt;}
.yba{bottom:810.346343pt;}
.y144{bottom:815.626340pt;}
.y1c6{bottom:820.906338pt;}
.y195{bottom:821.866338pt;}
.y5a{bottom:827.306336pt;}
.y111{bottom:827.466336pt;}
.ye1{bottom:827.786336pt;}
.yd{bottom:828.106335pt;}
.y9f{bottom:828.586335pt;}
.yb9{bottom:829.866335pt;}
.y143{bottom:834.026333pt;}
.y196{bottom:840.586330pt;}
.y1c5{bottom:840.746330pt;}
.y59{bottom:845.706328pt;}
.y110{bottom:845.866328pt;}
.ye0{bottom:846.186328pt;}
.y9e{bottom:847.306328pt;}
.yb8{bottom:848.266327pt;}
.y142{bottom:852.426326pt;}
.yc{bottom:857.226324pt;}
.y197{bottom:859.146323pt;}
.y58{bottom:864.106321pt;}
.y10f{bottom:864.266321pt;}
.ydf{bottom:864.586321pt;}
.y9d{bottom:865.706320pt;}
.yb7{bottom:866.666320pt;}
.y141{bottom:870.826318pt;}
.y1c4{bottom:871.306318pt;}
.y198{bottom:877.706316pt;}
.y57{bottom:882.506314pt;}
.y10e{bottom:882.666314pt;}
.yde{bottom:882.986313pt;}
.y9c{bottom:884.106313pt;}
.yb{bottom:886.186312pt;}
.y140{bottom:889.226311pt;}
.y1c3{bottom:891.146310pt;}
.y199{bottom:896.426308pt;}
.y56{bottom:900.906306pt;}
.yb6{bottom:901.066306pt;}
.ydd{bottom:901.386306pt;}
.y9b{bottom:902.506306pt;}
.ya{bottom:904.586305pt;}
.y13f{bottom:907.626304pt;}
.y1c2{bottom:910.986302pt;}
.y19a{bottom:914.986301pt;}
.y55{bottom:919.306299pt;}
.yb5{bottom:919.466299pt;}
.ydc{bottom:919.786299pt;}
.y9a{bottom:920.906298pt;}
.y13e{bottom:926.026296pt;}
.y42{bottom:933.546293pt;}
.y19b{bottom:933.706293pt;}
.y47{bottom:934.346293pt;}
.y54{bottom:937.706292pt;}
.yb4{bottom:937.866292pt;}
.y81{bottom:938.186291pt;}
.y99{bottom:940.586290pt;}
.y1c1{bottom:941.546290pt;}
.y13d{bottom:944.426289pt;}
.y46{bottom:950.666286pt;}
.y19c{bottom:952.266286pt;}
.yb3{bottom:956.266284pt;}
.y53{bottom:956.586284pt;}
.y98{bottom:958.986283pt;}
.y1c0{bottom:961.386282pt;}
.y13c{bottom:962.826282pt;}
.y45{bottom:966.986280pt;}
.y19d{bottom:970.826278pt;}
.y10d{bottom:974.666277pt;}
.y52{bottom:974.986277pt;}
.y97{bottom:977.386276pt;}
.y13b{bottom:981.226274pt;}
.y19e{bottom:989.546271pt;}
.y44{bottom:991.146270pt;}
.y1bf{bottom:991.946270pt;}
.y51{bottom:993.386269pt;}
.y48{bottom:1002.347200pt;}
.y43{bottom:1007.466264pt;}
.y19f{bottom:1008.106263pt;}
.y50{bottom:1011.786262pt;}
.y4{bottom:1041.386250pt;}
.y3{bottom:1044.106249pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h17{height:14.720000pt;}
.hb{height:17.120000pt;}
.h8{height:17.920000pt;}
.h5{height:18.080000pt;}
.h18{height:18.240000pt;}
.ha{height:31.992175pt;}
.hf{height:32.554674pt;}
.h3{height:32.624987pt;}
.h4{height:34.453111pt;}
.he{height:34.968736pt;}
.h10{height:35.404673pt;}
.hd{height:35.819673pt;}
.h1{height:38.128110pt;}
.h11{height:38.569047pt;}
.h13{height:38.698735pt;}
.h9{height:39.243734pt;}
.h12{height:39.338734pt;}
.hc{height:39.703734pt;}
.h2{height:42.262483pt;}
.h6{height:43.374983pt;}
.h7{height:45.937482pt;}
.h14{height:46.593731pt;}
.h15{height:46.624981pt;}
.h16{height:48.368106pt;}
.h0{height:1122.666667pt;}
.w4{width:3.200000pt;}
.w2{width:4.000000pt;}
.wa{width:7.040000pt;}
.wc{width:8.000000pt;}
.w6{width:12.320000pt;}
.w7{width:27.680000pt;}
.w5{width:30.080000pt;}
.we{width:36.480000pt;}
.wd{width:40.960000pt;}
.w3{width:52.000000pt;}
.wb{width:69.760000pt;}
.w8{width:72.960000pt;}
.w9{width:120.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x26{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x19{left:87.199965pt;}
.x17{left:88.959964pt;}
.x16{left:91.199964pt;}
.x1{left:96.479961pt;}
.x2{left:98.401447pt;}
.x14{left:101.279959pt;}
.x1b{left:102.239959pt;}
.x15{left:103.199930pt;}
.x51{left:105.279958pt;}
.xb{left:107.359957pt;}
.xd{left:109.280000pt;}
.x9{left:112.319119pt;}
.x5{left:117.919953pt;}
.x30{left:119.999952pt;}
.x4f{left:124.319950pt;}
.x1a{left:130.399948pt;}
.x2c{left:132.319947pt;}
.x48{left:135.199946pt;}
.x65{left:138.239945pt;}
.x18{left:139.359944pt;}
.x2d{left:140.959944pt;}
.x31{left:143.999901pt;}
.x63{left:145.759942pt;}
.x8{left:147.039941pt;}
.x1d{left:151.999849pt;}
.x62{left:155.999938pt;}
.x46{left:159.039936pt;}
.xe{left:161.280000pt;}
.xf{left:164.480000pt;}
.x45{left:165.919934pt;}
.x4d{left:169.119932pt;}
.x34{left:171.519457pt;}
.x64{left:180.639928pt;}
.x10{left:194.559922pt;}
.x11{left:196.959921pt;}
.x5f{left:201.599885pt;}
.x53{left:210.399916pt;}
.x52{left:211.839915pt;}
.x1c{left:214.239873pt;}
.x33{left:220.000937pt;}
.xa{left:227.839909pt;}
.x12{left:231.680000pt;}
.x36{left:232.799949pt;}
.x4c{left:234.879398pt;}
.x1f{left:238.239905pt;}
.x38{left:245.759902pt;}
.x1e{left:249.279900pt;}
.x13{left:251.193233pt;}
.x27{left:252.319899pt;}
.x40{left:256.319897pt;}
.x3f{left:259.039705pt;}
.x2e{left:263.519895pt;}
.x66{left:264.799894pt;}
.x22{left:268.479912pt;}
.x2f{left:271.679891pt;}
.x41{left:275.039890pt;}
.x60{left:290.399884pt;}
.x54{left:292.479883pt;}
.x55{left:302.879879pt;}
.x2a{left:317.439873pt;}
.x2b{left:321.439871pt;}
.x3a{left:322.719871pt;}
.x49{left:323.679871pt;}
.x3b{left:326.079870pt;}
.x4a{left:327.039869pt;}
.x61{left:331.360000pt;}
.x21{left:345.119862pt;}
.x23{left:355.199858pt;}
.xc{left:359.999644pt;}
.x20{left:373.119650pt;}
.x6{left:384.319846pt;}
.x42{left:419.199832pt;}
.x56{left:428.320000pt;}
.x24{left:441.279823pt;}
.x58{left:444.959822pt;}
.x57{left:464.959814pt;}
.x59{left:467.679813pt;}
.x28{left:472.639811pt;}
.x29{left:480.479808pt;}
.x4e{left:516.160000pt;}
.x3c{left:519.359792pt;}
.x3d{left:523.999790pt;}
.x5a{left:540.639784pt;}
.x5b{left:552.959779pt;}
.x5c{left:555.679778pt;}
.x43{left:563.359775pt;}
.x25{left:570.240000pt;}
.x4{left:592.159763pt;}
.x37{left:598.879760pt;}
.x39{left:607.838927pt;}
.x32{left:609.761353pt;}
.x5d{left:626.079750pt;}
.x5e{left:630.879748pt;}
.x44{left:636.479745pt;}
.x47{left:666.559733pt;}
.x4b{left:669.919732pt;}
.x35{left:671.839254pt;}
.x50{left:684.799726pt;}
.x3e{left:687.839725pt;}
.x7{left:693.120000pt;}
.x3{left:697.759721pt;}
}




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