
    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_125ffc3c1e2ca170a74eafa9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_74f7f461054dcb6700ad0e8e.woff2')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_d8a1e7dc222162070a7462a7.woff2')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_fb6439e9f877e6a83036d1b9.woff2')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_8fc94b359acf09286a1445dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_503ab9adf434d1cd239fc478.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d6d2239526e61baadc4f4e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c6dc7c90d2932345a070d932.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7661c02f3cf76b60c0637ca9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0cba73d461e4ecb394ab4fde.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_de6ea8717b4a86003504f382.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9f8b2dab8fdff33530f9c64a.woff2')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_c06cdb663a64ab2ca521138b.woff2')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_7e02030e2af4831bbf70a409.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9d2b154c9f77c057610dd09d.woff2')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_c53c194c36ac4e23ee90b49c.woff2')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_8e1db272b4454d7ef270571e.woff2')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_ae94eb01f2342f57e7c87b5e.woff2')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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.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);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.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);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.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);}
.ma{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;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.021282px;}
.ls5{letter-spacing:0.066132px;}
.ls2{letter-spacing:0.073080px;}
.ls4{letter-spacing:0.287215px;}
.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;}
}
.ws3{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-18.021275px;}
.ws2{word-spacing:-17.999993px;}
.ws9{word-spacing:-13.782126px;}
.ws8{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.301210px;}
.ws4{word-spacing:-13.013995px;}
.ws6{word-spacing:-8.675997px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._b{margin-left:-468.216941px;}
._a{margin-left:-388.053545px;}
._4{margin-left:-277.545825px;}
._6{margin-left:-219.254252px;}
._2{margin-left:-90.563177px;}
._9{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._1d{margin-left:-2.689098px;}
._3{margin-left:-1.684403px;}
._0{width:1.042791px;}
._11{width:2.531820px;}
._12{width:3.709192px;}
._c{width:4.994126px;}
._d{width:6.235688px;}
._21{width:7.673215px;}
._18{width:9.021935px;}
._24{width:10.069424px;}
._13{width:11.229214px;}
._3d{width:12.323563px;}
._17{width:14.776518px;}
._25{width:16.513114px;}
._1c{width:17.699340px;}
._2d{width:19.480935px;}
._14{width:20.665639px;}
._23{width:21.998118px;}
._20{width:23.622164px;}
._1f{width:24.831972px;}
._1a{width:26.217168px;}
._19{width:27.250933px;}
._2a{width:28.806571px;}
._29{width:30.272442px;}
._f{width:31.629131px;}
._e{width:32.934826px;}
._10{width:34.151376px;}
._1e{width:35.512098px;}
._2f{width:36.662483px;}
._15{width:37.697595px;}
._16{width:38.720224px;}
._31{width:40.116745px;}
._2c{width:41.126662px;}
._32{width:42.606250px;}
._37{width:44.311657px;}
._26{width:45.517053px;}
._2b{width:46.542203px;}
._1b{width:48.752760px;}
._2e{width:50.096480px;}
._35{width:51.634922px;}
._27{width:53.113487px;}
._28{width:54.621983px;}
._22{width:56.771362px;}
._3c{width:57.794146px;}
._3e{width:62.068564px;}
._30{width:63.201535px;}
._36{width:67.407623px;}
._38{width:73.103150px;}
._3a{width:75.090897px;}
._39{width:76.377342px;}
._3b{width:78.459216px;}
._33{width:88.869655px;}
._34{width:90.187716px;}
.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;}
.fsb{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fs6{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y42{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y182{bottom:3.059003px;}
.y187{bottom:3.059021px;}
.y189{bottom:3.059027px;}
.y18b{bottom:3.059034px;}
.y18d{bottom:3.059040px;}
.y18f{bottom:3.059046px;}
.y191{bottom:3.059052px;}
.ye3{bottom:3.059057px;}
.ye6{bottom:3.059063px;}
.ye8{bottom:3.059069px;}
.yea{bottom:3.059075px;}
.yf0{bottom:3.059112px;}
.yf2{bottom:3.059118px;}
.y20{bottom:3.059122px;}
.yf4{bottom:3.059124px;}
.yf6{bottom:3.059131px;}
.y122{bottom:3.059141px;}
.yf9{bottom:3.059143px;}
.y125{bottom:3.059153px;}
.y127{bottom:3.059159px;}
.y129{bottom:3.059166px;}
.y12b{bottom:3.059172px;}
.yff{bottom:3.059174px;}
.y12d{bottom:3.059178px;}
.y102{bottom:3.059180px;}
.y12f{bottom:3.059184px;}
.y104{bottom:3.059186px;}
.y107{bottom:3.059192px;}
.y109{bottom:3.059198px;}
.y132{bottom:3.059219px;}
.y136{bottom:3.059232px;}
.y138{bottom:3.059238px;}
.y13a{bottom:3.059244px;}
.y169{bottom:3.059245px;}
.y13c{bottom:3.059250px;}
.y16b{bottom:3.059252px;}
.y13e{bottom:3.059257px;}
.y16d{bottom:3.059258px;}
.y140{bottom:3.059263px;}
.y16f{bottom:3.059264px;}
.y171{bottom:3.059270px;}
.y173{bottom:3.059276px;}
.y10{bottom:3.239055px;}
.y1b{bottom:3.599105px;}
.y1e{bottom:3.599108px;}
.y15{bottom:3.959062px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y18{bottom:4.859080px;}
.y3d{bottom:6.478948px;}
.y9b{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y6e{bottom:111.359955px;}
.y1c9{bottom:112.259955px;}
.yc0{bottom:112.619955px;}
.y17b{bottom:112.620255px;}
.y98{bottom:112.800255px;}
.y149{bottom:112.980255px;}
.ye0{bottom:113.159955px;}
.y1ae{bottom:113.879954px;}
.y11c{bottom:113.880254px;}
.y3b{bottom:114.059954px;}
.y202{bottom:115.319954px;}
.y6d{bottom:134.759946px;}
.y1c8{bottom:135.299946px;}
.y17a{bottom:135.660246px;}
.ybf{bottom:136.019946px;}
.y97{bottom:136.200246px;}
.y148{bottom:136.380245px;}
.y1ad{bottom:136.739945px;}
.y1d9{bottom:136.919945px;}
.y11b{bottom:136.920245px;}
.y3a{bottom:137.099945px;}
.y201{bottom:137.999945px;}
.y6c{bottom:158.159937px;}
.y1c7{bottom:158.339937px;}
.y179{bottom:158.519937px;}
.ydf{bottom:159.059936px;}
.ybe{bottom:159.239936px;}
.y96{bottom:159.599936px;}
.y147{bottom:159.779936px;}
.y11a{bottom:159.959936px;}
.y39{bottom:160.139936px;}
.y200{bottom:160.679936px;}
.y119{bottom:175.079930px;}
.y1c6{bottom:181.199928px;}
.y6b{bottom:181.559927px;}
.yde{bottom:182.099927px;}
.ybd{bottom:182.639927px;}
.y95{bottom:182.819927px;}
.y1d8{bottom:182.999927px;}
.y38{bottom:183.179927px;}
.y146{bottom:183.359927px;}
.y1ac{bottom:183.719927px;}
.y118{bottom:198.299921px;}
.y1c5{bottom:204.239918px;}
.y178{bottom:204.599918px;}
.y6a{bottom:205.139918px;}
.ybc{bottom:205.859918px;}
.ydd{bottom:206.039918px;}
.y37{bottom:206.219918px;}
.y145{bottom:206.759917px;}
.y1ab{bottom:208.379917px;}
.y117{bottom:221.339911px;}
.y1c4{bottom:227.279909px;}
.y177{bottom:227.639909px;}
.y69{bottom:228.539909px;}
.y1ff{bottom:228.719909px;}
.y20f{bottom:228.899908px;}
.y1d7{bottom:229.079908px;}
.y36{bottom:229.259908px;}
.y94{bottom:229.439908px;}
.y144{bottom:230.159908px;}
.ydc{bottom:230.699908px;}
.y1aa{bottom:231.419907px;}
.y116{bottom:244.379902px;}
.y1c3{bottom:250.319900px;}
.y176{bottom:250.679900px;}
.y1fe{bottom:251.399899px;}
.y68{bottom:251.939899px;}
.y35{bottom:252.119899px;}
.ybb{bottom:252.659899px;}
.y93{bottom:252.839899px;}
.ydb{bottom:253.739899px;}
.y1a9{bottom:254.459898px;}
.y1c2{bottom:265.439894px;}
.y20e{bottom:267.239893px;}
.y115{bottom:267.419893px;}
.y175{bottom:273.719891px;}
.y1fd{bottom:274.079890px;}
.y1d6{bottom:274.979890px;}
.y34{bottom:275.159890px;}
.y67{bottom:275.519890px;}
.yba{bottom:275.879890px;}
.y92{bottom:276.239890px;}
.yda{bottom:276.779889px;}
.y143{bottom:277.139889px;}
.y1a8{bottom:277.499889px;}
.y1c1{bottom:288.659885px;}
.y174{bottom:289.379884px;}
.y114{bottom:290.279884px;}
.y1fc{bottom:296.759881px;}
.y1d5{bottom:298.019881px;}
.y33{bottom:298.199881px;}
.y66{bottom:298.919880px;}
.yb9{bottom:299.279880px;}
.y91{bottom:299.459880px;}
.yd9{bottom:299.639880px;}
.y142{bottom:300.359880px;}
.y172{bottom:306.660600px;}
.y1c0{bottom:311.699875px;}
.y113{bottom:313.319875px;}
.y1fb{bottom:319.619872px;}
.y1d4{bottom:320.699872px;}
.y32{bottom:321.239872px;}
.y1d3{bottom:321.419871px;}
.y170{bottom:322.140600px;}
.y65{bottom:322.319871px;}
.yb8{bottom:322.499871px;}
.yd8{bottom:322.679871px;}
.y90{bottom:322.859871px;}
.y1a7{bottom:323.399871px;}
.y141{bottom:324.299870px;}
.y20d{bottom:328.439869px;}
.y1bf{bottom:334.739866px;}
.y112{bottom:336.359865px;}
.y16e{bottom:337.440600px;}
.y13f{bottom:340.140600px;}
.y1fa{bottom:342.299863px;}
.y31{bottom:344.279862px;}
.y1d2{bottom:345.179862px;}
.yd7{bottom:345.719862px;}
.y64{bottom:345.899862px;}
.y8f{bottom:346.079862px;}
.y1a6{bottom:346.439861px;}
.y20c{bottom:351.659859px;}
.y16c{bottom:352.740600px;}
.y13d{bottom:355.620600px;}
.y1be{bottom:357.599857px;}
.y111{bottom:359.399856px;}
.y1f9{bottom:364.979854px;}
.y30{bottom:367.319853px;}
.y16a{bottom:368.040600px;}
.yd6{bottom:368.759852px;}
.y63{bottom:369.299852px;}
.y8e{bottom:369.479852px;}
.y13b{bottom:370.920600px;}
.y20b{bottom:374.699850px;}
.y1bd{bottom:380.639848px;}
.y110{bottom:382.439847px;}
.y2f{bottom:383.339847px;}
.y168{bottom:383.340600px;}
.y139{bottom:386.220600px;}
.y2e{bottom:387.119845px;}
.y1f8{bottom:387.659845px;}
.yd5{bottom:391.799843px;}
.y1d1{bottom:392.339843px;}
.yb7{bottom:392.519843px;}
.y62{bottom:392.699843px;}
.y8d{bottom:392.879843px;}
.y20a{bottom:397.739841px;}
.y137{bottom:401.520600px;}
.y166{bottom:402.599839px;}
.y1bc{bottom:403.679839px;}
.y10f{bottom:405.299838px;}
.y167{bottom:406.379837px;}
.y2d{bottom:407.639837px;}
.y1f7{bottom:410.339836px;}
.y209{bottom:412.859835px;}
.yd4{bottom:414.839834px;}
.y165{bottom:414.840600px;}
.y1a5{bottom:415.559834px;}
.y61{bottom:415.919834px;}
.y8c{bottom:416.099834px;}
.y135{bottom:416.820600px;}
.y10e{bottom:420.599832px;}
.y1bb{bottom:426.719829px;}
.y2c{bottom:430.679828px;}
.y1f6{bottom:433.019827px;}
.y133{bottom:436.079826px;}
.yd3{bottom:437.699825px;}
.y1a4{bottom:438.419825px;}
.y60{bottom:439.139824px;}
.y8b{bottom:439.499824px;}
.y1d0{bottom:439.679824px;}
.y134{bottom:439.859824px;}
.y164{bottom:443.279823px;}
.y10d{bottom:443.819822px;}
.y131{bottom:448.320600px;}
.y1ba{bottom:449.759820px;}
.y2b{bottom:453.719819px;}
.y1f5{bottom:455.699818px;}
.y208{bottom:459.119816px;}
.yd2{bottom:460.739816px;}
.y1a3{bottom:461.459815px;}
.y5f{bottom:462.359815px;}
.yb6{bottom:462.539815px;}
.y8a{bottom:462.719815px;}
.y1cf{bottom:463.439815px;}
.y163{bottom:466.319813px;}
.y10c{bottom:466.679813px;}
.y1b9{bottom:472.799811px;}
.y2a{bottom:476.039810px;}
.y29{bottom:476.759809px;}
.y1f4{bottom:478.379809px;}
.y162{bottom:481.439807px;}
.y207{bottom:482.159807px;}
.yd1{bottom:483.779806px;}
.y1a2{bottom:484.499806px;}
.y5e{bottom:485.759806px;}
.yb5{bottom:485.939806px;}
.y89{bottom:486.119806px;}
.y1ce{bottom:487.019805px;}
.y10b{bottom:489.719804px;}
.y1b8{bottom:495.659802px;}
.y28{bottom:499.799800px;}
.y1f3{bottom:501.059800px;}
.y108{bottom:501.780600px;}
.y10a{bottom:504.119798px;}
.y161{bottom:504.659798px;}
.y206{bottom:505.019798px;}
.yd0{bottom:506.819797px;}
.y1a1{bottom:507.539797px;}
.y5d{bottom:508.979796px;}
.yb4{bottom:509.159796px;}
.y88{bottom:509.339796px;}
.y1cd{bottom:510.599796px;}
.y106{bottom:517.260600px;}
.y1b7{bottom:518.699793px;}
.y205{bottom:520.319792px;}
.y27{bottom:522.659791px;}
.y130{bottom:522.839791px;}
.y1f2{bottom:523.739791px;}
.y160{bottom:527.699789px;}
.ycf{bottom:529.859788px;}
.y1a0{bottom:530.579788px;}
.y5c{bottom:532.379787px;}
.yb3{bottom:532.559787px;}
.y103{bottom:532.560600px;}
.y1cc{bottom:534.359786px;}
.y105{bottom:534.899786px;}
.y12e{bottom:537.240600px;}
.y1b6{bottom:541.019784px;}
.y1b5{bottom:541.739783px;}
.y204{bottom:543.359783px;}
.y26{bottom:545.699782px;}
.y1f1{bottom:546.419781px;}
.y101{bottom:547.860600px;}
.y15f{bottom:550.739780px;}
.y12c{bottom:552.540600px;}
.yce{bottom:552.719779px;}
.y19f{bottom:553.619779px;}
.y5b{bottom:555.779778px;}
.y87{bottom:556.319777px;}
.y1b4{bottom:557.399777px;}
.y1cb{bottom:557.939777px;}
.yfe{bottom:563.160600px;}
.y100{bottom:565.499774px;}
.y203{bottom:566.399773px;}
.y12a{bottom:567.840600px;}
.y25{bottom:568.739773px;}
.y1f0{bottom:569.099772px;}
.y15e{bottom:573.779770px;}
.ycd{bottom:575.759770px;}
.y19e{bottom:576.479769px;}
.y5a{bottom:578.999768px;}
.yb2{bottom:579.179768px;}
.y86{bottom:580.979768px;}
.y1ca{bottom:581.519767px;}
.y1b3{bottom:581.699767px;}
.y128{bottom:583.140600px;}
.yfd{bottom:588.719765px;}
.yfc{bottom:589.439764px;}
.y24{bottom:591.779763px;}
.y15d{bottom:596.819761px;}
.y126{bottom:598.620600px;}
.ycc{bottom:598.799760px;}
.y19d{bottom:599.519760px;}
.y59{bottom:602.399759px;}
.yb1{bottom:602.579759px;}
.y85{bottom:603.839758px;}
.y1b2{bottom:604.739758px;}
.yfb{bottom:612.479755px;}
.y124{bottom:613.920600px;}
.y1ef{bottom:614.459754px;}
.y23{bottom:614.819754px;}
.y15c{bottom:619.679752px;}
.ycb{bottom:621.839751px;}
.y19c{bottom:622.559751px;}
.y58{bottom:625.619750px;}
.y84{bottom:626.879749px;}
.yfa{bottom:627.599749px;}
.y1b1{bottom:627.779749px;}
.y123{bottom:632.999747px;}
.y1ee{bottom:637.139745px;}
.y22{bottom:638.759744px;}
.yf8{bottom:639.840600px;}
.y120{bottom:640.739744px;}
.y15b{bottom:642.719743px;}
.yca{bottom:644.879742px;}
.y121{bottom:645.240600px;}
.y19b{bottom:645.599742px;}
.yb0{bottom:648.659741px;}
.y57{bottom:649.019740px;}
.y83{bottom:649.919740px;}
.y1b0{bottom:650.819740px;}
.yf7{bottom:658.379737px;}
.y1ed{bottom:659.819736px;}
.y15a{bottom:665.759734px;}
.yc9{bottom:667.919733px;}
.y19a{bottom:668.639733px;}
.yf5{bottom:670.620600px;}
.yaf{bottom:671.699731px;}
.y21{bottom:672.419731px;}
.y82{bottom:672.959731px;}
.y11f{bottom:673.859730px;}
.y1ec{bottom:682.499727px;}
.yf3{bottom:685.920600px;}
.y159{bottom:688.799724px;}
.yc8{bottom:690.779724px;}
.y199{bottom:691.499723px;}
.y1f{bottom:692.220600px;}
.yae{bottom:694.739722px;}
.y56{bottom:695.639722px;}
.y81{bottom:695.999722px;}
.y11e{bottom:696.899721px;}
.yf1{bottom:701.220600px;}
.y1eb{bottom:703.919718px;}
.y158{bottom:711.839715px;}
.yc7{bottom:713.819714px;}
.y198{bottom:714.539714px;}
.yef{bottom:716.520600px;}
.yad{bottom:717.779713px;}
.y80{bottom:718.859712px;}
.y55{bottom:719.039712px;}
.y11d{bottom:719.759712px;}
.y1ea{bottom:725.339710px;}
.y1d{bottom:725.880600px;}
.y1c{bottom:729.479708px;}
.y1a{bottom:734.880600px;}
.y157{bottom:735.059706px;}
.yc6{bottom:736.859705px;}
.y197{bottom:737.579705px;}
.yac{bottom:740.819704px;}
.y7f{bottom:741.899703px;}
.y54{bottom:742.439703px;}
.yee{bottom:742.799703px;}
.y1e9{bottom:748.019701px;}
.y156{bottom:758.459697px;}
.yc5{bottom:759.899696px;}
.y196{bottom:760.619696px;}
.yab{bottom:763.679695px;}
.y7e{bottom:764.939694px;}
.y53{bottom:765.659694px;}
.yed{bottom:765.839694px;}
.y19{bottom:768.719693px;}
.y1e8{bottom:770.879692px;}
.yec{bottom:780.959688px;}
.y155{bottom:782.039687px;}
.yc4{bottom:782.939687px;}
.y195{bottom:783.659687px;}
.yaa{bottom:786.719685px;}
.y7d{bottom:787.979685px;}
.y52{bottom:788.879684px;}
.y1e7{bottom:793.559683px;}
.y17{bottom:794.460600px;}
.yeb{bottom:796.439681px;}
.y154{bottom:805.439678px;}
.yc3{bottom:805.979678px;}
.y194{bottom:806.699677px;}
.ye9{bottom:808.680600px;}
.ya9{bottom:809.759676px;}
.y7c{bottom:811.019676px;}
.y51{bottom:811.919675px;}
.y1e6{bottom:816.239674px;}
.y16{bottom:817.139673px;}
.ye7{bottom:823.980600px;}
.yc2{bottom:828.839668px;}
.y193{bottom:829.559668px;}
.ya8{bottom:832.799667px;}
.y7b{bottom:834.059666px;}
.y50{bottom:834.959666px;}
.y1e5{bottom:838.919664px;}
.ye5{bottom:839.280600px;}
.y11{bottom:839.820600px;}
.y14{bottom:840.720600px;}
.yc1{bottom:848.819660px;}
.y13{bottom:849.899660px;}
.y153{bottom:852.419659px;}
.y192{bottom:852.599659px;}
.ye2{bottom:854.580600px;}
.ya7{bottom:855.839658px;}
.y7a{bottom:856.919657px;}
.y210{bottom:857.099657px;}
.y4f{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.ye4{bottom:861.419655px;}
.y1e4{bottom:861.599655px;}
.y190{bottom:867.000600px;}
.y152{bottom:875.819650px;}
.ya6{bottom:878.879648px;}
.y79{bottom:879.959648px;}
.y4e{bottom:880.859648px;}
.y18e{bottom:882.300600px;}
.y1e3{bottom:884.279646px;}
.y1af{bottom:884.639646px;}
.ye{bottom:893.639643px;}
.y18c{bottom:897.600600px;}
.y151{bottom:899.219640px;}
.ya5{bottom:901.739639px;}
.y78{bottom:902.999639px;}
.y4d{bottom:903.899638px;}
.y1e2{bottom:906.959637px;}
.y18a{bottom:913.080600px;}
.y150{bottom:922.799631px;}
.ya4{bottom:924.779630px;}
.y77{bottom:926.039630px;}
.y4c{bottom:926.939629px;}
.y188{bottom:928.380600px;}
.y1e1{bottom:929.639628px;}
.yd{bottom:934.319626px;}
.y186{bottom:943.680600px;}
.y14f{bottom:946.199622px;}
.ya3{bottom:947.819621px;}
.y76{bottom:949.079620px;}
.y4b{bottom:949.979620px;}
.y1e0{bottom:952.319619px;}
.y185{bottom:962.039615px;}
.y184{bottom:962.759615px;}
.y14e{bottom:969.599612px;}
.y17e{bottom:970.499612px;}
.ya2{bottom:970.859612px;}
.y75{bottom:972.119611px;}
.y4a{bottom:973.019611px;}
.y180{bottom:974.279610px;}
.yc{bottom:974.999610px;}
.y183{bottom:978.239609px;}
.y17f{bottom:985.079606px;}
.y17d{bottom:985.799606px;}
.y181{bottom:990.480600px;}
.y14d{bottom:992.999603px;}
.ya1{bottom:993.899602px;}
.y74{bottom:994.979602px;}
.y49{bottom:995.879602px;}
.y1df{bottom:997.679601px;}
.yb{bottom:999.299600px;}
.y14c{bottom:1016.579593px;}
.ya0{bottom:1016.939593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.ye1{bottom:1018.199593px;}
.y48{bottom:1018.919592px;}
.y1de{bottom:1020.359592px;}
.y14b{bottom:1039.979584px;}
.y9f{bottom:1040.339584px;}
.y73{bottom:1041.059584px;}
.y17c{bottom:1041.239584px;}
.y47{bottom:1041.959583px;}
.y1dd{bottom:1043.039583px;}
.y41{bottom:1051.500600px;}
.y14a{bottom:1063.379575px;}
.y9e{bottom:1063.739575px;}
.y72{bottom:1064.099574px;}
.y46{bottom:1064.999574px;}
.y1dc{bottom:1065.719574px;}
.y40{bottom:1066.979573px;}
.y9d{bottom:1086.959565px;}
.y71{bottom:1087.139565px;}
.y3f{bottom:1087.319565px;}
.y45{bottom:1088.039565px;}
.y1db{bottom:1088.399565px;}
.y3e{bottom:1107.659557px;}
.y70{bottom:1110.359556px;}
.y44{bottom:1110.899556px;}
.y1da{bottom:1111.079556px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y3c{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y9c{bottom:1133.579547px;}
.y6f{bottom:1133.759546px;}
.y43{bottom:1133.939546px;}
.y9a{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y99{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h23{height:12.060000px;}
.hc{height:13.500000px;}
.h19{height:15.120000px;}
.h25{height:15.300000px;}
.h16{height:18.720000px;}
.h9{height:18.773430px;}
.h18{height:18.900000px;}
.h11{height:19.260000px;}
.he{height:20.160000px;}
.h13{height:20.340000px;}
.h5{height:20.520000px;}
.h20{height:23.760000px;}
.h1{height:24.480000px;}
.h1e{height:25.913662px;}
.h10{height:26.008583px;}
.h1d{height:27.228505px;}
.h1b{height:32.152136px;}
.hd{height:32.269909px;}
.h12{height:36.179986px;}
.h26{height:36.486196px;}
.h1a{height:40.842757px;}
.h1f{height:43.185920px;}
.h1c{height:45.199318px;}
.h6{height:47.988262px;}
.hf{height:48.164043px;}
.h14{height:48.234356px;}
.h17{height:50.100449px;}
.h22{height:53.999978px;}
.h8{height:54.457009px;}
.h24{height:56.159978px;}
.h2{height:57.215719px;}
.h21{height:63.179975px;}
.ha{height:64.058178px;}
.hb{height:67.696970px;}
.h15{height:70.628878px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w35{width:3.240000px;}
.w31{width:3.420000px;}
.wa{width:4.320000px;}
.w2{width:4.680000px;}
.wc{width:4.860000px;}
.w1a{width:5.040000px;}
.w16{width:6.840000px;}
.w4{width:7.020000px;}
.w47{width:7.380000px;}
.w46{width:7.560000px;}
.w21{width:7.740000px;}
.w13{width:8.100000px;}
.w8{width:8.280000px;}
.w23{width:8.640000px;}
.w7{width:8.820000px;}
.we{width:9.000000px;}
.w12{width:9.540000px;}
.w1f{width:10.800000px;}
.w6{width:12.420000px;}
.w11{width:12.960000px;}
.w42{width:13.140000px;}
.w40{width:13.320000px;}
.w3d{width:14.040000px;}
.w45{width:15.480000px;}
.w3e{width:15.840000px;}
.w43{width:16.020000px;}
.w33{width:18.720000px;}
.w44{width:19.620000px;}
.w3f{width:21.240000px;}
.w41{width:22.860000px;}
.w3b{width:23.940000px;}
.w52{width:24.480000px;}
.w54{width:24.660000px;}
.w5{width:24.840000px;}
.w68{width:25.020000px;}
.w39{width:25.560000px;}
.w2e{width:25.740000px;}
.w53{width:25.920000px;}
.w5f{width:26.280000px;}
.w55{width:26.460000px;}
.w5e{width:26.640000px;}
.w5d{width:27.360000px;}
.w2b{width:28.080000px;}
.w48{width:29.520000px;}
.w26{width:29.880000px;}
.w37{width:30.420000px;}
.w4a{width:31.320000px;}
.w5a{width:31.680000px;}
.w4c{width:31.860000px;}
.w51{width:32.040000px;}
.w50{width:32.220000px;}
.w5b{width:32.400000px;}
.w56{width:32.580000px;}
.w4e{width:32.940000px;}
.w60{width:33.120000px;}
.w5c{width:33.480000px;}
.w66{width:33.840000px;}
.w63{width:34.020000px;}
.w62{width:34.200000px;}
.w4d{width:34.380000px;}
.w1d{width:34.920000px;}
.w4f{width:36.360000px;}
.w67{width:36.900000px;}
.w64{width:37.260000px;}
.w19{width:37.440000px;}
.w61{width:37.800000px;}
.w65{width:38.520000px;}
.w57{width:40.500000px;}
.w69{width:40.860000px;}
.wd{width:41.400000px;}
.w22{width:43.920000px;}
.w1c{width:47.160000px;}
.w34{width:49.140000px;}
.w17{width:49.500000px;}
.w24{width:57.060000px;}
.w32{width:59.040000px;}
.w58{width:59.220000px;}
.w3a{width:64.980000px;}
.w29{width:66.780000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.w4b{width:78.120000px;}
.w14{width:81.360000px;}
.w59{width:83.160000px;}
.w30{width:90.900000px;}
.w28{width:93.060000px;}
.w2d{width:95.400000px;}
.w1b{width:102.600000px;}
.w49{width:105.840000px;}
.w2a{width:106.200000px;}
.w9{width:113.400000px;}
.w18{width:114.480000px;}
.w2c{width:119.880000px;}
.wb{width:123.840000px;}
.w25{width:128.160000px;}
.w3c{width:132.840000px;}
.w15{width:140.580000px;}
.w36{width:160.920000px;}
.w38{width:163.080000px;}
.w2f{width:183.600000px;}
.w20{width:209.160000px;}
.w10{width:214.740000px;}
.w27{width:218.520000px;}
.wf{width:347.760000px;}
.w1e{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x33{left:111.779955px;}
.xb{left:116.100000px;}
.x41{left:124.380000px;}
.xd{left:130.679908px;}
.x55{left:135.179946px;}
.x56{left:140.220000px;}
.x4d{left:142.200000px;}
.x4c{left:144.180000px;}
.x46{left:145.980000px;}
.x8e{left:150.660000px;}
.x8b{left:151.740000px;}
.x3f{left:160.020000px;}
.x53{left:169.560000px;}
.x49{left:176.580000px;}
.x40{left:178.740000px;}
.x4a{left:185.220000px;}
.x42{left:187.380000px;}
.x27{left:188.460000px;}
.x54{left:196.740000px;}
.xe{left:200.339857px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x47{left:209.160000px;}
.x50{left:212.400000px;}
.x51{left:215.820000px;}
.x1b{left:220.500000px;}
.x1c{left:224.820000px;}
.x5b{left:227.160000px;}
.x1d{left:229.500000px;}
.x4f{left:233.819906px;}
.x88{left:237.420000px;}
.x3b{left:239.399904px;}
.x3c{left:244.439902px;}
.x57{left:245.879902px;}
.x36{left:249.120000px;}
.x58{left:250.920000px;}
.x59{left:254.160000px;}
.x10{left:259.740421px;}
.x5d{left:261.719895px;}
.x43{left:264.060000px;}
.x5e{left:266.760000px;}
.x44{left:269.100000px;}
.x52{left:274.860000px;}
.x48{left:275.940000px;}
.x8c{left:290.160000px;}
.x5f{left:293.940000px;}
.x89{left:301.139880px;}
.x4b{left:310.860000px;}
.x3d{left:325.259870px;}
.x28{left:329.040000px;}
.x29{left:335.880000px;}
.xa4{left:340.739864px;}
.x8a{left:342.360000px;}
.x3e{left:347.760000px;}
.x1e{left:353.340000px;}
.x1f{left:357.660000px;}
.xa{left:360.179856px;}
.x20{left:362.520000px;}
.x8d{left:365.400000px;}
.x8f{left:367.920000px;}
.x2a{left:385.380000px;}
.x4e{left:388.260000px;}
.x5c{left:390.240000px;}
.xa2{left:393.479843px;}
.x90{left:394.560000px;}
.x45{left:397.260000px;}
.x91{left:400.140000px;}
.x21{left:403.919838px;}
.x22{left:408.780000px;}
.x19{left:413.279835px;}
.x5a{left:415.080000px;}
.x37{left:433.079827px;}
.x23{left:453.600000px;}
.x35{left:462.600512px;}
.x70{left:470.700000px;}
.x60{left:473.401268px;}
.x34{left:478.079809px;}
.xa3{left:480.959808px;}
.x25{left:482.212307px;}
.x82{left:483.660000px;}
.x76{left:484.740000px;}
.x6a{left:486.360000px;}
.x63{left:487.440000px;}
.x83{left:488.700000px;}
.x77{left:489.780000px;}
.x6b{left:491.400000px;}
.x64{left:492.480000px;}
.x11{left:493.920784px;}
.x2b{left:499.500000px;}
.x7e{left:504.540000px;}
.x78{left:505.620000px;}
.x12{left:507.240775px;}
.x65{left:508.320000px;}
.x85{left:514.620000px;}
.x6d{left:517.320000px;}
.x13{left:520.560767px;}
.x84{left:523.620000px;}
.x6c{left:526.320000px;}
.x38{left:529.010938px;}
.x14{left:533.700759px;}
.x2c{left:536.940000px;}
.x15{left:538.200756px;}
.x2d{left:541.980000px;}
.x1{left:549.000000px;}
.x16{left:551.520747px;}
.x17{left:569.160676px;}
.x93{left:572.932960px;}
.x31{left:576.359769px;}
.x32{left:581.399767px;}
.x39{left:588.779764px;}
.x95{left:596.699761px;}
.x72{left:605.879758px;}
.x9c{left:608.580000px;}
.x9e{left:609.660000px;}
.x9f{left:613.080000px;}
.x79{left:618.840000px;}
.x71{left:620.640000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x61{left:635.400000px;}
.xa0{left:638.100000px;}
.x96{left:642.239743px;}
.x2e{left:644.580000px;}
.x7f{left:646.920000px;}
.x97{left:649.439740px;}
.x73{left:651.419739px;}
.x74{left:658.619737px;}
.x1a{left:661.319735px;}
.x18{left:666.359733px;}
.x24{left:668.340000px;}
.x94{left:673.199731px;}
.x62{left:683.639727px;}
.x6e{left:685.260000px;}
.x66{left:689.580000px;}
.x2f{left:691.740000px;}
.x68{left:696.240000px;}
.x99{left:697.313721px;}
.x69{left:703.800000px;}
.x4{left:705.060000px;}
.x9a{left:708.120316px;}
.x67{left:710.640000px;}
.x86{left:712.800000px;}
.x6f{left:714.780000px;}
.x7a{left:715.860000px;}
.x7c{left:716.940000px;}
.x75{left:718.199713px;}
.x80{left:720.000000px;}
.x98{left:721.080000px;}
.x5{left:722.340000px;}
.xa1{left:723.420000px;}
.x30{left:726.660000px;}
.x9b{left:731.879707px;}
.x81{left:745.920000px;}
.x6{left:747.180000px;}
.x7d{left:748.980000px;}
.x7b{left:750.240000px;}
.x87{left:753.300000px;}
.x9d{left:755.100000px;}
.x92{left:757.799697px;}
.x7{left:759.600000px;}
.x8{left:772.020000px;}
.x26{left:780.300000px;}
.x3a{left:784.442336px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.018917pt;}
.ls5{letter-spacing:0.058784pt;}
.ls2{letter-spacing:0.064960pt;}
.ls4{letter-spacing:0.255302pt;}
.ws3{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-16.018911pt;}
.ws2{word-spacing:-15.999994pt;}
.ws9{word-spacing:-12.250779pt;}
.ws8{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.823298pt;}
.ws4{word-spacing:-11.567995pt;}
.ws6{word-spacing:-7.711997pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._b{margin-left:-416.192836pt;}
._a{margin-left:-344.936485pt;}
._4{margin-left:-246.707400pt;}
._6{margin-left:-194.892669pt;}
._2{margin-left:-80.500602pt;}
._9{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._1d{margin-left:-2.390309pt;}
._3{margin-left:-1.497247pt;}
._0{width:0.926926pt;}
._11{width:2.250507pt;}
._12{width:3.297059pt;}
._c{width:4.439223pt;}
._d{width:5.542833pt;}
._21{width:6.820636pt;}
._18{width:8.019498pt;}
._24{width:8.950599pt;}
._13{width:9.981524pt;}
._3d{width:10.954278pt;}
._17{width:13.134683pt;}
._25{width:14.678323pt;}
._1c{width:15.732747pt;}
._2d{width:17.316387pt;}
._14{width:18.369457pt;}
._23{width:19.553883pt;}
._20{width:20.997479pt;}
._1f{width:22.072864pt;}
._1a{width:23.304149pt;}
._19{width:24.223052pt;}
._2a{width:25.605841pt;}
._29{width:26.908838pt;}
._f{width:28.114783pt;}
._e{width:29.275400pt;}
._10{width:30.356778pt;}
._1e{width:31.566309pt;}
._2f{width:32.588874pt;}
._15{width:33.508973pt;}
._16{width:34.417977pt;}
._31{width:35.659329pt;}
._2c{width:36.557033pt;}
._32{width:37.872223pt;}
._37{width:39.388139pt;}
._26{width:40.459603pt;}
._2b{width:41.370847pt;}
._1b{width:43.335786pt;}
._2e{width:44.530204pt;}
._35{width:45.897708pt;}
._27{width:47.211988pt;}
._28{width:48.552874pt;}
._22{width:50.463433pt;}
._3c{width:51.372574pt;}
._3e{width:55.172057pt;}
._30{width:56.179142pt;}
._36{width:59.917887pt;}
._38{width:64.980577pt;}
._3a{width:66.747464pt;}
._39{width:67.890971pt;}
._3b{width:69.741525pt;}
._33{width:78.995249pt;}
._34{width:80.166859pt;}
.fs3{font-size:15.999994pt;}
.fsb{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fs6{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y42{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y182{bottom:2.719113pt;}
.y187{bottom:2.719130pt;}
.y189{bottom:2.719135pt;}
.y18b{bottom:2.719141pt;}
.y18d{bottom:2.719146pt;}
.y18f{bottom:2.719152pt;}
.y191{bottom:2.719157pt;}
.ye3{bottom:2.719162pt;}
.ye6{bottom:2.719167pt;}
.ye8{bottom:2.719173pt;}
.yea{bottom:2.719178pt;}
.yf0{bottom:2.719211pt;}
.yf2{bottom:2.719216pt;}
.y20{bottom:2.719219pt;}
.yf4{bottom:2.719222pt;}
.yf6{bottom:2.719227pt;}
.y122{bottom:2.719236pt;}
.yf9{bottom:2.719238pt;}
.y125{bottom:2.719247pt;}
.y127{bottom:2.719253pt;}
.y129{bottom:2.719258pt;}
.y12b{bottom:2.719264pt;}
.yff{bottom:2.719265pt;}
.y12d{bottom:2.719269pt;}
.y102{bottom:2.719271pt;}
.y12f{bottom:2.719275pt;}
.y104{bottom:2.719276pt;}
.y107{bottom:2.719282pt;}
.y109{bottom:2.719287pt;}
.y132{bottom:2.719306pt;}
.y136{bottom:2.719317pt;}
.y138{bottom:2.719323pt;}
.y13a{bottom:2.719328pt;}
.y169{bottom:2.719329pt;}
.y13c{bottom:2.719334pt;}
.y16b{bottom:2.719335pt;}
.y13e{bottom:2.719339pt;}
.y16d{bottom:2.719340pt;}
.y140{bottom:2.719345pt;}
.y16f{bottom:2.719346pt;}
.y171{bottom:2.719351pt;}
.y173{bottom:2.719357pt;}
.y10{bottom:2.879160pt;}
.y1b{bottom:3.199204pt;}
.y1e{bottom:3.199207pt;}
.y15{bottom:3.519166pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y18{bottom:4.319182pt;}
.y3d{bottom:5.759065pt;}
.y9b{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y6e{bottom:98.986627pt;}
.y1c9{bottom:99.786627pt;}
.yc0{bottom:100.106627pt;}
.y17b{bottom:100.106893pt;}
.y98{bottom:100.266893pt;}
.y149{bottom:100.426893pt;}
.ye0{bottom:100.586626pt;}
.y1ae{bottom:101.226626pt;}
.y11c{bottom:101.226893pt;}
.y3b{bottom:101.386626pt;}
.y202{bottom:102.506626pt;}
.y6d{bottom:119.786619pt;}
.y1c8{bottom:120.266619pt;}
.y17a{bottom:120.586885pt;}
.ybf{bottom:120.906618pt;}
.y97{bottom:121.066885pt;}
.y148{bottom:121.226885pt;}
.y1ad{bottom:121.546618pt;}
.y1d9{bottom:121.706618pt;}
.y11b{bottom:121.706885pt;}
.y3a{bottom:121.866618pt;}
.y201{bottom:122.666618pt;}
.y6c{bottom:140.586610pt;}
.y1c7{bottom:140.746610pt;}
.y179{bottom:140.906610pt;}
.ydf{bottom:141.386610pt;}
.ybe{bottom:141.546610pt;}
.y96{bottom:141.866610pt;}
.y147{bottom:142.026610pt;}
.y11a{bottom:142.186610pt;}
.y39{bottom:142.346610pt;}
.y200{bottom:142.826610pt;}
.y119{bottom:155.626604pt;}
.y1c6{bottom:161.066602pt;}
.y6b{bottom:161.386602pt;}
.yde{bottom:161.866602pt;}
.ybd{bottom:162.346602pt;}
.y95{bottom:162.506602pt;}
.y1d8{bottom:162.666602pt;}
.y38{bottom:162.826602pt;}
.y146{bottom:162.986601pt;}
.y1ac{bottom:163.306601pt;}
.y118{bottom:176.266596pt;}
.y1c5{bottom:181.546594pt;}
.y178{bottom:181.866594pt;}
.y6a{bottom:182.346594pt;}
.ybc{bottom:182.986593pt;}
.ydd{bottom:183.146593pt;}
.y37{bottom:183.306593pt;}
.y145{bottom:183.786593pt;}
.y1ab{bottom:185.226593pt;}
.y117{bottom:196.746588pt;}
.y1c4{bottom:202.026586pt;}
.y177{bottom:202.346586pt;}
.y69{bottom:203.146585pt;}
.y1ff{bottom:203.306585pt;}
.y20f{bottom:203.466585pt;}
.y1d7{bottom:203.626585pt;}
.y36{bottom:203.786585pt;}
.y94{bottom:203.946585pt;}
.y144{bottom:204.586585pt;}
.ydc{bottom:205.066585pt;}
.y1aa{bottom:205.706584pt;}
.y116{bottom:217.226580pt;}
.y1c3{bottom:222.506578pt;}
.y176{bottom:222.826578pt;}
.y1fe{bottom:223.466577pt;}
.y68{bottom:223.946577pt;}
.y35{bottom:224.106577pt;}
.ybb{bottom:224.586577pt;}
.y93{bottom:224.746577pt;}
.ydb{bottom:225.546576pt;}
.y1a9{bottom:226.186576pt;}
.y1c2{bottom:235.946572pt;}
.y20e{bottom:237.546572pt;}
.y115{bottom:237.706572pt;}
.y175{bottom:243.306569pt;}
.y1fd{bottom:243.626569pt;}
.y1d6{bottom:244.426569pt;}
.y34{bottom:244.586569pt;}
.y67{bottom:244.906569pt;}
.yba{bottom:245.226569pt;}
.y92{bottom:245.546568pt;}
.yda{bottom:246.026568pt;}
.y143{bottom:246.346568pt;}
.y1a8{bottom:246.666568pt;}
.y1c1{bottom:256.586564pt;}
.y174{bottom:257.226564pt;}
.y114{bottom:258.026563pt;}
.y1fc{bottom:263.786561pt;}
.y1d5{bottom:264.906561pt;}
.y33{bottom:265.066561pt;}
.y66{bottom:265.706560pt;}
.yb9{bottom:266.026560pt;}
.y91{bottom:266.186560pt;}
.yd9{bottom:266.346560pt;}
.y142{bottom:266.986560pt;}
.y172{bottom:272.587200pt;}
.y1c0{bottom:277.066556pt;}
.y113{bottom:278.506555pt;}
.y1fb{bottom:284.106553pt;}
.y1d4{bottom:285.066553pt;}
.y32{bottom:285.546552pt;}
.y1d3{bottom:285.706552pt;}
.y170{bottom:286.347200pt;}
.y65{bottom:286.506552pt;}
.yb8{bottom:286.666552pt;}
.yd8{bottom:286.826552pt;}
.y90{bottom:286.986552pt;}
.y1a7{bottom:287.466552pt;}
.y141{bottom:288.266551pt;}
.y20d{bottom:291.946550pt;}
.y1bf{bottom:297.546548pt;}
.y112{bottom:298.986547pt;}
.y16e{bottom:299.947200pt;}
.y13f{bottom:302.347200pt;}
.y1fa{bottom:304.266545pt;}
.y31{bottom:306.026544pt;}
.y1d2{bottom:306.826544pt;}
.yd7{bottom:307.306544pt;}
.y64{bottom:307.466544pt;}
.y8f{bottom:307.626544pt;}
.y1a6{bottom:307.946543pt;}
.y20c{bottom:312.586542pt;}
.y16c{bottom:313.547200pt;}
.y13d{bottom:316.107200pt;}
.y1be{bottom:317.866540pt;}
.y111{bottom:319.466539pt;}
.y1f9{bottom:324.426537pt;}
.y30{bottom:326.506536pt;}
.y16a{bottom:327.147200pt;}
.yd6{bottom:327.786536pt;}
.y63{bottom:328.266535pt;}
.y8e{bottom:328.426535pt;}
.y13b{bottom:329.707200pt;}
.y20b{bottom:333.066533pt;}
.y1bd{bottom:338.346531pt;}
.y110{bottom:339.946531pt;}
.y2f{bottom:340.746530pt;}
.y168{bottom:340.747200pt;}
.y139{bottom:343.307200pt;}
.y2e{bottom:344.106529pt;}
.y1f8{bottom:344.586529pt;}
.yd5{bottom:348.266527pt;}
.y1d1{bottom:348.746527pt;}
.yb7{bottom:348.906527pt;}
.y62{bottom:349.066527pt;}
.y8d{bottom:349.226527pt;}
.y20a{bottom:353.546525pt;}
.y137{bottom:356.907200pt;}
.y166{bottom:357.866524pt;}
.y1bc{bottom:358.826523pt;}
.y10f{bottom:360.266523pt;}
.y167{bottom:361.226522pt;}
.y2d{bottom:362.346522pt;}
.y1f7{bottom:364.746521pt;}
.y209{bottom:366.986520pt;}
.yd4{bottom:368.746519pt;}
.y165{bottom:368.747200pt;}
.y1a5{bottom:369.386519pt;}
.y61{bottom:369.706519pt;}
.y8c{bottom:369.866519pt;}
.y135{bottom:370.507200pt;}
.y10e{bottom:373.866517pt;}
.y1bb{bottom:379.306515pt;}
.y2c{bottom:382.826514pt;}
.y1f6{bottom:384.906513pt;}
.y133{bottom:387.626512pt;}
.yd3{bottom:389.066511pt;}
.y1a4{bottom:389.706511pt;}
.y60{bottom:390.346511pt;}
.y8b{bottom:390.666510pt;}
.y1d0{bottom:390.826510pt;}
.y134{bottom:390.986510pt;}
.y164{bottom:394.026509pt;}
.y10d{bottom:394.506509pt;}
.y131{bottom:398.507200pt;}
.y1ba{bottom:399.786507pt;}
.y2b{bottom:403.306505pt;}
.y1f5{bottom:405.066505pt;}
.y208{bottom:408.106503pt;}
.yd2{bottom:409.546503pt;}
.y1a3{bottom:410.186503pt;}
.y5f{bottom:410.986502pt;}
.yb6{bottom:411.146502pt;}
.y8a{bottom:411.306502pt;}
.y1cf{bottom:411.946502pt;}
.y163{bottom:414.506501pt;}
.y10c{bottom:414.826501pt;}
.y1b9{bottom:420.266499pt;}
.y2a{bottom:423.146497pt;}
.y29{bottom:423.786497pt;}
.y1f4{bottom:425.226497pt;}
.y162{bottom:427.946495pt;}
.y207{bottom:428.586495pt;}
.yd1{bottom:430.026495pt;}
.y1a2{bottom:430.666494pt;}
.y5e{bottom:431.786494pt;}
.yb5{bottom:431.946494pt;}
.y89{bottom:432.106494pt;}
.y1ce{bottom:432.906494pt;}
.y10b{bottom:435.306493pt;}
.y1b8{bottom:440.586490pt;}
.y28{bottom:444.266489pt;}
.y1f3{bottom:445.386489pt;}
.y108{bottom:446.027200pt;}
.y10a{bottom:448.106487pt;}
.y161{bottom:448.586487pt;}
.y206{bottom:448.906487pt;}
.yd0{bottom:450.506486pt;}
.y1a1{bottom:451.146486pt;}
.y5d{bottom:452.426486pt;}
.yb4{bottom:452.586486pt;}
.y88{bottom:452.746486pt;}
.y1cd{bottom:453.866485pt;}
.y106{bottom:459.787200pt;}
.y1b7{bottom:461.066482pt;}
.y205{bottom:462.506482pt;}
.y27{bottom:464.586481pt;}
.y130{bottom:464.746481pt;}
.y1f2{bottom:465.546480pt;}
.y160{bottom:469.066479pt;}
.ycf{bottom:470.986478pt;}
.y1a0{bottom:471.626478pt;}
.y5c{bottom:473.226477pt;}
.yb3{bottom:473.386477pt;}
.y103{bottom:473.387200pt;}
.y1cc{bottom:474.986477pt;}
.y105{bottom:475.466476pt;}
.y12e{bottom:477.547200pt;}
.y1b6{bottom:480.906474pt;}
.y1b5{bottom:481.546474pt;}
.y204{bottom:482.986473pt;}
.y26{bottom:485.066473pt;}
.y1f1{bottom:485.706472pt;}
.y101{bottom:486.987200pt;}
.y15f{bottom:489.546471pt;}
.y12c{bottom:491.147200pt;}
.yce{bottom:491.306470pt;}
.y19f{bottom:492.106470pt;}
.y5b{bottom:494.026469pt;}
.y87{bottom:494.506469pt;}
.y1b4{bottom:495.466468pt;}
.y1cb{bottom:495.946468pt;}
.yfe{bottom:500.587200pt;}
.y100{bottom:502.666466pt;}
.y203{bottom:503.466465pt;}
.y12a{bottom:504.747200pt;}
.y25{bottom:505.546464pt;}
.y1f0{bottom:505.866464pt;}
.y15e{bottom:510.026463pt;}
.ycd{bottom:511.786462pt;}
.y19e{bottom:512.426462pt;}
.y5a{bottom:514.666461pt;}
.yb2{bottom:514.826461pt;}
.y86{bottom:516.426460pt;}
.y1ca{bottom:516.906460pt;}
.y1b3{bottom:517.066460pt;}
.y128{bottom:518.347200pt;}
.yfd{bottom:523.306457pt;}
.yfc{bottom:523.946457pt;}
.y24{bottom:526.026456pt;}
.y15d{bottom:530.506454pt;}
.y126{bottom:532.107200pt;}
.ycc{bottom:532.266454pt;}
.y19d{bottom:532.906454pt;}
.y59{bottom:535.466452pt;}
.yb1{bottom:535.626452pt;}
.y85{bottom:536.746452pt;}
.y1b2{bottom:537.546452pt;}
.yfb{bottom:544.426449pt;}
.y124{bottom:545.707200pt;}
.y1ef{bottom:546.186448pt;}
.y23{bottom:546.506448pt;}
.y15c{bottom:550.826446pt;}
.ycb{bottom:552.746446pt;}
.y19c{bottom:553.386445pt;}
.y58{bottom:556.106444pt;}
.y84{bottom:557.226444pt;}
.yfa{bottom:557.866444pt;}
.y1b1{bottom:558.026443pt;}
.y123{bottom:562.666442pt;}
.y1ee{bottom:566.346440pt;}
.y22{bottom:567.786440pt;}
.yf8{bottom:568.747200pt;}
.y120{bottom:569.546439pt;}
.y15b{bottom:571.306438pt;}
.yca{bottom:573.226437pt;}
.y121{bottom:573.547200pt;}
.y19b{bottom:573.866437pt;}
.yb0{bottom:576.586436pt;}
.y57{bottom:576.906436pt;}
.y83{bottom:577.706436pt;}
.y1b0{bottom:578.506435pt;}
.yf7{bottom:585.226433pt;}
.y1ed{bottom:586.506432pt;}
.y15a{bottom:591.786430pt;}
.yc9{bottom:593.706429pt;}
.y19a{bottom:594.346429pt;}
.yf5{bottom:596.107200pt;}
.yaf{bottom:597.066428pt;}
.y21{bottom:597.706428pt;}
.y82{bottom:598.186427pt;}
.y11f{bottom:598.986427pt;}
.y1ec{bottom:606.666424pt;}
.yf3{bottom:609.707200pt;}
.y159{bottom:612.266422pt;}
.yc8{bottom:614.026421pt;}
.y199{bottom:614.666421pt;}
.y1f{bottom:615.307200pt;}
.yae{bottom:617.546420pt;}
.y56{bottom:618.346419pt;}
.y81{bottom:618.666419pt;}
.y11e{bottom:619.466419pt;}
.yf1{bottom:623.307200pt;}
.y1eb{bottom:625.706416pt;}
.y158{bottom:632.746414pt;}
.yc7{bottom:634.506413pt;}
.y198{bottom:635.146413pt;}
.yef{bottom:636.907200pt;}
.yad{bottom:638.026411pt;}
.y80{bottom:638.986411pt;}
.y55{bottom:639.146411pt;}
.y11d{bottom:639.786411pt;}
.y1ea{bottom:644.746409pt;}
.y1d{bottom:645.227200pt;}
.y1c{bottom:648.426407pt;}
.y1a{bottom:653.227200pt;}
.y157{bottom:653.386405pt;}
.yc6{bottom:654.986405pt;}
.y197{bottom:655.626404pt;}
.yac{bottom:658.506403pt;}
.y7f{bottom:659.466403pt;}
.y54{bottom:659.946403pt;}
.yee{bottom:660.266403pt;}
.y1e9{bottom:664.906401pt;}
.y156{bottom:674.186397pt;}
.yc5{bottom:675.466396pt;}
.y196{bottom:676.106396pt;}
.yab{bottom:678.826395pt;}
.y7e{bottom:679.946395pt;}
.y53{bottom:680.586394pt;}
.yed{bottom:680.746394pt;}
.y19{bottom:683.306393pt;}
.y1e8{bottom:685.226393pt;}
.yec{bottom:694.186389pt;}
.y155{bottom:695.146389pt;}
.yc4{bottom:695.946388pt;}
.y195{bottom:696.586388pt;}
.yaa{bottom:699.306387pt;}
.y7d{bottom:700.426386pt;}
.y52{bottom:701.226386pt;}
.y1e7{bottom:705.386385pt;}
.y17{bottom:706.187200pt;}
.yeb{bottom:707.946383pt;}
.y154{bottom:715.946380pt;}
.yc3{bottom:716.426380pt;}
.y194{bottom:717.066380pt;}
.ye9{bottom:718.827200pt;}
.ya9{bottom:719.786379pt;}
.y7c{bottom:720.906378pt;}
.y51{bottom:721.706378pt;}
.y1e6{bottom:725.546376pt;}
.y16{bottom:726.346376pt;}
.ye7{bottom:732.427200pt;}
.yc2{bottom:736.746372pt;}
.y193{bottom:737.386372pt;}
.ya8{bottom:740.266371pt;}
.y7b{bottom:741.386370pt;}
.y50{bottom:742.186370pt;}
.y1e5{bottom:745.706368pt;}
.ye5{bottom:746.027200pt;}
.y11{bottom:746.507200pt;}
.y14{bottom:747.307200pt;}
.yc1{bottom:754.506365pt;}
.y13{bottom:755.466364pt;}
.y153{bottom:757.706364pt;}
.y192{bottom:757.866364pt;}
.ye2{bottom:759.627200pt;}
.ya7{bottom:760.746362pt;}
.y7a{bottom:761.706362pt;}
.y210{bottom:761.866362pt;}
.y4f{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.ye4{bottom:765.706360pt;}
.y1e4{bottom:765.866360pt;}
.y190{bottom:770.667200pt;}
.y152{bottom:778.506355pt;}
.ya6{bottom:781.226354pt;}
.y79{bottom:782.186354pt;}
.y4e{bottom:782.986353pt;}
.y18e{bottom:784.267200pt;}
.y1e3{bottom:786.026352pt;}
.y1af{bottom:786.346352pt;}
.ye{bottom:794.346349pt;}
.y18c{bottom:797.867200pt;}
.y151{bottom:799.306347pt;}
.ya5{bottom:801.546346pt;}
.y78{bottom:802.666346pt;}
.y4d{bottom:803.466345pt;}
.y1e2{bottom:806.186344pt;}
.y18a{bottom:811.627200pt;}
.y150{bottom:820.266339pt;}
.ya4{bottom:822.026338pt;}
.y77{bottom:823.146337pt;}
.y4c{bottom:823.946337pt;}
.y188{bottom:825.227200pt;}
.y1e1{bottom:826.346336pt;}
.yd{bottom:830.506334pt;}
.y186{bottom:838.827200pt;}
.y14f{bottom:841.066330pt;}
.ya3{bottom:842.506330pt;}
.y76{bottom:843.626329pt;}
.y4b{bottom:844.426329pt;}
.y1e0{bottom:846.506328pt;}
.y185{bottom:855.146325pt;}
.y184{bottom:855.786324pt;}
.y14e{bottom:861.866322pt;}
.y17e{bottom:862.666322pt;}
.ya2{bottom:862.986321pt;}
.y75{bottom:864.106321pt;}
.y4a{bottom:864.906321pt;}
.y180{bottom:866.026320pt;}
.yc{bottom:866.666320pt;}
.y183{bottom:869.546319pt;}
.y17f{bottom:875.626316pt;}
.y17d{bottom:876.266316pt;}
.y181{bottom:880.427200pt;}
.y14d{bottom:882.666314pt;}
.ya1{bottom:883.466313pt;}
.y74{bottom:884.426313pt;}
.y49{bottom:885.226313pt;}
.y1df{bottom:886.826312pt;}
.yb{bottom:888.266311pt;}
.y14c{bottom:903.626305pt;}
.ya0{bottom:903.946305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.ye1{bottom:905.066305pt;}
.y48{bottom:905.706304pt;}
.y1de{bottom:906.986304pt;}
.y14b{bottom:924.426297pt;}
.y9f{bottom:924.746297pt;}
.y73{bottom:925.386297pt;}
.y17c{bottom:925.546296pt;}
.y47{bottom:926.186296pt;}
.y1dd{bottom:927.146296pt;}
.y41{bottom:934.667200pt;}
.y14a{bottom:945.226289pt;}
.y9e{bottom:945.546288pt;}
.y72{bottom:945.866288pt;}
.y46{bottom:946.666288pt;}
.y1dc{bottom:947.306288pt;}
.y40{bottom:948.426287pt;}
.y9d{bottom:966.186280pt;}
.y71{bottom:966.346280pt;}
.y3f{bottom:966.506280pt;}
.y45{bottom:967.146280pt;}
.y1db{bottom:967.466280pt;}
.y3e{bottom:984.586273pt;}
.y70{bottom:986.986272pt;}
.y44{bottom:987.466272pt;}
.y1da{bottom:987.626272pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y3c{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y9c{bottom:1007.626264pt;}
.y6f{bottom:1007.786264pt;}
.y43{bottom:1007.946263pt;}
.y9a{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y99{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h23{height:10.720000pt;}
.hc{height:12.000000pt;}
.h19{height:13.440000pt;}
.h25{height:13.600000pt;}
.h16{height:16.640000pt;}
.h9{height:16.687493pt;}
.h18{height:16.800000pt;}
.h11{height:17.120000pt;}
.he{height:17.920000pt;}
.h13{height:18.080000pt;}
.h5{height:18.240000pt;}
.h20{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1e{height:23.034366pt;}
.h10{height:23.118741pt;}
.h1d{height:24.203115pt;}
.h1b{height:28.579676pt;}
.hd{height:28.684364pt;}
.h12{height:32.159987pt;}
.h26{height:32.432175pt;}
.h1a{height:36.304673pt;}
.h1f{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h6{height:42.656233pt;}
.hf{height:42.812483pt;}
.h14{height:42.874983pt;}
.h17{height:44.533732pt;}
.h22{height:47.999981pt;}
.h8{height:48.406231pt;}
.h24{height:49.919980pt;}
.h2{height:50.858417pt;}
.h21{height:56.159978pt;}
.ha{height:56.940602pt;}
.hb{height:60.175084pt;}
.h15{height:62.781225pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w35{width:2.880000pt;}
.w31{width:3.040000pt;}
.wa{width:3.840000pt;}
.w2{width:4.160000pt;}
.wc{width:4.320000pt;}
.w1a{width:4.480000pt;}
.w16{width:6.080000pt;}
.w4{width:6.240000pt;}
.w47{width:6.560000pt;}
.w46{width:6.720000pt;}
.w21{width:6.880000pt;}
.w13{width:7.200000pt;}
.w8{width:7.360000pt;}
.w23{width:7.680000pt;}
.w7{width:7.840000pt;}
.we{width:8.000000pt;}
.w12{width:8.480000pt;}
.w1f{width:9.600000pt;}
.w6{width:11.040000pt;}
.w11{width:11.520000pt;}
.w42{width:11.680000pt;}
.w40{width:11.840000pt;}
.w3d{width:12.480000pt;}
.w45{width:13.760000pt;}
.w3e{width:14.080000pt;}
.w43{width:14.240000pt;}
.w33{width:16.640000pt;}
.w44{width:17.440000pt;}
.w3f{width:18.880000pt;}
.w41{width:20.320000pt;}
.w3b{width:21.280000pt;}
.w52{width:21.760000pt;}
.w54{width:21.920000pt;}
.w5{width:22.080000pt;}
.w68{width:22.240000pt;}
.w39{width:22.720000pt;}
.w2e{width:22.880000pt;}
.w53{width:23.040000pt;}
.w5f{width:23.360000pt;}
.w55{width:23.520000pt;}
.w5e{width:23.680000pt;}
.w5d{width:24.320000pt;}
.w2b{width:24.960000pt;}
.w48{width:26.240000pt;}
.w26{width:26.560000pt;}
.w37{width:27.040000pt;}
.w4a{width:27.840000pt;}
.w5a{width:28.160000pt;}
.w4c{width:28.320000pt;}
.w51{width:28.480000pt;}
.w50{width:28.640000pt;}
.w5b{width:28.800000pt;}
.w56{width:28.960000pt;}
.w4e{width:29.280000pt;}
.w60{width:29.440000pt;}
.w5c{width:29.760000pt;}
.w66{width:30.080000pt;}
.w63{width:30.240000pt;}
.w62{width:30.400000pt;}
.w4d{width:30.560000pt;}
.w1d{width:31.040000pt;}
.w4f{width:32.320000pt;}
.w67{width:32.800000pt;}
.w64{width:33.120000pt;}
.w19{width:33.280000pt;}
.w61{width:33.600000pt;}
.w65{width:34.240000pt;}
.w57{width:36.000000pt;}
.w69{width:36.320000pt;}
.wd{width:36.800000pt;}
.w22{width:39.040000pt;}
.w1c{width:41.920000pt;}
.w34{width:43.680000pt;}
.w17{width:44.000000pt;}
.w24{width:50.720000pt;}
.w32{width:52.480000pt;}
.w58{width:52.640000pt;}
.w3a{width:57.760000pt;}
.w29{width:59.360000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.w4b{width:69.440000pt;}
.w14{width:72.320000pt;}
.w59{width:73.920000pt;}
.w30{width:80.800000pt;}
.w28{width:82.720000pt;}
.w2d{width:84.800000pt;}
.w1b{width:91.200000pt;}
.w49{width:94.080000pt;}
.w2a{width:94.400000pt;}
.w9{width:100.800000pt;}
.w18{width:101.760000pt;}
.w2c{width:106.560000pt;}
.wb{width:110.080000pt;}
.w25{width:113.920000pt;}
.w3c{width:118.080000pt;}
.w15{width:124.960000pt;}
.w36{width:143.040000pt;}
.w38{width:144.960000pt;}
.w2f{width:163.200000pt;}
.w20{width:185.920000pt;}
.w10{width:190.880000pt;}
.w27{width:194.240000pt;}
.wf{width:309.120000pt;}
.w1e{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x33{left:99.359960pt;}
.xb{left:103.200000pt;}
.x41{left:110.560000pt;}
.xd{left:116.159918pt;}
.x55{left:120.159952pt;}
.x56{left:124.640000pt;}
.x4d{left:126.400000pt;}
.x4c{left:128.160000pt;}
.x46{left:129.760000pt;}
.x8e{left:133.920000pt;}
.x8b{left:134.880000pt;}
.x3f{left:142.240000pt;}
.x53{left:150.720000pt;}
.x49{left:156.960000pt;}
.x40{left:158.880000pt;}
.x4a{left:164.640000pt;}
.x42{left:166.560000pt;}
.x27{left:167.520000pt;}
.x54{left:174.880000pt;}
.xe{left:178.079873pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x47{left:185.920000pt;}
.x50{left:188.800000pt;}
.x51{left:191.840000pt;}
.x1b{left:196.000000pt;}
.x1c{left:199.840000pt;}
.x5b{left:201.920000pt;}
.x1d{left:204.000000pt;}
.x4f{left:207.839917pt;}
.x88{left:211.040000pt;}
.x3b{left:212.799915pt;}
.x3c{left:217.279913pt;}
.x57{left:218.559913pt;}
.x36{left:221.440000pt;}
.x58{left:223.040000pt;}
.x59{left:225.920000pt;}
.x10{left:230.880374pt;}
.x5d{left:232.639907pt;}
.x43{left:234.720000pt;}
.x5e{left:237.120000pt;}
.x44{left:239.200000pt;}
.x52{left:244.320000pt;}
.x48{left:245.280000pt;}
.x8c{left:257.920000pt;}
.x5f{left:261.280000pt;}
.x89{left:267.679893pt;}
.x4b{left:276.320000pt;}
.x3d{left:289.119884pt;}
.x28{left:292.480000pt;}
.x29{left:298.560000pt;}
.xa4{left:302.879879pt;}
.x8a{left:304.320000pt;}
.x3e{left:309.120000pt;}
.x1e{left:314.080000pt;}
.x1f{left:317.920000pt;}
.xa{left:320.159872pt;}
.x20{left:322.240000pt;}
.x8d{left:324.800000pt;}
.x8f{left:327.040000pt;}
.x2a{left:342.560000pt;}
.x4e{left:345.120000pt;}
.x5c{left:346.880000pt;}
.xa2{left:349.759860pt;}
.x90{left:350.720000pt;}
.x45{left:353.120000pt;}
.x91{left:355.680000pt;}
.x21{left:359.039856pt;}
.x22{left:363.360000pt;}
.x19{left:367.359853pt;}
.x5a{left:368.960000pt;}
.x37{left:384.959846pt;}
.x23{left:403.200000pt;}
.x35{left:411.200455pt;}
.x70{left:418.400000pt;}
.x60{left:420.801127pt;}
.x34{left:424.959830pt;}
.xa3{left:427.519829pt;}
.x25{left:428.633162pt;}
.x82{left:429.920000pt;}
.x76{left:430.880000pt;}
.x6a{left:432.320000pt;}
.x63{left:433.280000pt;}
.x83{left:434.400000pt;}
.x77{left:435.360000pt;}
.x6b{left:436.800000pt;}
.x64{left:437.760000pt;}
.x11{left:439.040697pt;}
.x2b{left:444.000000pt;}
.x7e{left:448.480000pt;}
.x78{left:449.440000pt;}
.x12{left:450.880689pt;}
.x65{left:451.840000pt;}
.x85{left:457.440000pt;}
.x6d{left:459.840000pt;}
.x13{left:462.720681pt;}
.x84{left:465.440000pt;}
.x6c{left:467.840000pt;}
.x38{left:470.231945pt;}
.x14{left:474.400675pt;}
.x2c{left:477.280000pt;}
.x15{left:478.400672pt;}
.x2d{left:481.760000pt;}
.x1{left:488.000000pt;}
.x16{left:490.240664pt;}
.x17{left:505.920601pt;}
.x93{left:509.273742pt;}
.x31{left:512.319795pt;}
.x32{left:516.799793pt;}
.x39{left:523.359791pt;}
.x95{left:530.399788pt;}
.x72{left:538.559785pt;}
.x9c{left:540.960000pt;}
.x9e{left:541.920000pt;}
.x9f{left:544.960000pt;}
.x79{left:550.080000pt;}
.x71{left:551.680000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x61{left:564.800000pt;}
.xa0{left:567.200000pt;}
.x96{left:570.879772pt;}
.x2e{left:572.960000pt;}
.x7f{left:575.040000pt;}
.x97{left:577.279769pt;}
.x73{left:579.039768pt;}
.x74{left:585.439766pt;}
.x1a{left:587.839765pt;}
.x18{left:592.319763pt;}
.x24{left:594.080000pt;}
.x94{left:598.399761pt;}
.x62{left:607.679757pt;}
.x6e{left:609.120000pt;}
.x66{left:612.960000pt;}
.x2f{left:614.880000pt;}
.x68{left:618.880000pt;}
.x99{left:619.834419pt;}
.x69{left:625.600000pt;}
.x4{left:626.720000pt;}
.x9a{left:629.440281pt;}
.x67{left:631.680000pt;}
.x86{left:633.600000pt;}
.x6f{left:635.360000pt;}
.x7a{left:636.320000pt;}
.x7c{left:637.280000pt;}
.x75{left:638.399745pt;}
.x80{left:640.000000pt;}
.x98{left:640.960000pt;}
.x5{left:642.080000pt;}
.xa1{left:643.040000pt;}
.x30{left:645.920000pt;}
.x9b{left:650.559740pt;}
.x81{left:663.040000pt;}
.x6{left:664.160000pt;}
.x7d{left:665.760000pt;}
.x7b{left:666.880000pt;}
.x87{left:669.600000pt;}
.x9d{left:671.200000pt;}
.x92{left:673.599731pt;}
.x7{left:675.200000pt;}
.x8{left:686.240000pt;}
.x26{left:693.600000pt;}
.x3a{left:697.282077pt;}
}




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