
    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_8c685f68a7faa7a18082092d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_5058903d248a4b36a74c88f3.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_6a35b2a61b7b36b1f943722b.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_c47c27f9f9bfa855c5c3e2ba.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_0f874f72eff4241ab439aa3a.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_5cfac3de768098623de4c930.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_8704d90999fff720bd876a3c.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_9ede5cb2a3fe8da1a0d1e52f.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_d4e98507b269ae120190658a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_246a5ef9fcabc66358bb0d45.woff')format("woff");}.ffd{font-family:ffd;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;}
.m4{transform:matrix(0.000000,0.249854,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249854,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249854,-0.250000,0.000000,0,0);}
.m9{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);}
.m6{transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249847,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);}
.m5{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);}
.m7{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);}
.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);}
.m8{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:-33.119987px;}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.018600px;}
.lsa{letter-spacing:0.021238px;}
.lsb{letter-spacing:0.021240px;}
.ls7{letter-spacing:0.021282px;}
.ls6{letter-spacing:0.155922px;}
.lsc{letter-spacing:0.741660px;}
.ls3{letter-spacing:0.903087px;}
.ls2{letter-spacing:18.193733px;}
.ls9{letter-spacing:87.327565px;}
.ls5{letter-spacing:88.047565px;}
.ls0{letter-spacing:1276.761705px;}
.sc_{text-shadow:none;}
.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;}
.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;}
.ws8{word-spacing:-18.155914px;}
.wsa{word-spacing:-18.021275px;}
.ws7{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.374074px;}
.ws5{word-spacing:-13.505755px;}
.ws2{word-spacing:-13.147195px;}
.wsb{word-spacing:-12.203995px;}
.ws9{word-spacing:-12.059995px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:320.418052px;}
.wsd{word-spacing:439.217543px;}
._1e{margin-left:-8.038005px;}
._19{margin-left:-6.012390px;}
._3{margin-left:-4.412503px;}
._2{margin-left:-2.954503px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._5{width:2.443372px;}
._b{width:4.424415px;}
._a{width:5.469102px;}
._9{width:6.534200px;}
._c{width:7.629076px;}
._f{width:8.971761px;}
._6{width:10.185585px;}
._14{width:11.240248px;}
._11{width:12.254289px;}
._4{width:13.926665px;}
._17{width:15.215352px;}
._10{width:16.447832px;}
._12{width:18.343515px;}
._15{width:19.458534px;}
._18{width:20.513656px;}
._16{width:22.380876px;}
._7{width:23.658765px;}
._e{width:25.172217px;}
._d{width:27.002069px;}
._8{width:28.382911px;}
._25{width:29.516030px;}
._26{width:31.013889px;}
._27{width:34.634661px;}
._28{width:35.744542px;}
._2c{width:38.144727px;}
._23{width:40.106358px;}
._13{width:41.496948px;}
._29{width:56.106023px;}
._2a{width:57.553904px;}
._2d{width:62.251767px;}
._2b{width:66.321647px;}
._1d{width:139.341260px;}
._1a{width:142.592307px;}
._21{width:198.127361px;}
._1f{width:212.504100px;}
._1c{width:286.332137px;}
._1b{width:381.529127px;}
._22{width:574.433727px;}
._20{width:1597.200402px;}
._24{width:2584.204476px;}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcd{color:rgb(13,13,13);}
.fcb{color:rgb(0,176,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fca{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fcc{color:transparent;}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y5{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y4{bottom:0.120234px;}
.y15{bottom:3.599045px;}
.y14c{bottom:3.958968px;}
.y14e{bottom:3.958976px;}
.y152{bottom:3.959002px;}
.y154{bottom:3.959010px;}
.y158{bottom:3.959036px;}
.y15a{bottom:3.959044px;}
.y15c{bottom:3.959053px;}
.y15f{bottom:3.959070px;}
.y161{bottom:3.959078px;}
.y163{bottom:3.959087px;}
.y165{bottom:3.959095px;}
.y167{bottom:3.959104px;}
.y16b{bottom:3.959129px;}
.y16d{bottom:3.959138px;}
.y16f{bottom:3.959146px;}
.y171{bottom:3.959155px;}
.y10a{bottom:3.959168px;}
.y174{bottom:3.959172px;}
.y10c{bottom:3.959176px;}
.y176{bottom:3.959180px;}
.y10e{bottom:3.959185px;}
.y178{bottom:3.959189px;}
.y110{bottom:3.959194px;}
.y17a{bottom:3.959197px;}
.y112{bottom:3.959202px;}
.y17c{bottom:3.959206px;}
.y114{bottom:3.959211px;}
.y116{bottom:3.959219px;}
.y118{bottom:3.959228px;}
.y11a{bottom:3.959236px;}
.y11c{bottom:3.959245px;}
.y11e{bottom:3.959254px;}
.y120{bottom:3.959262px;}
.y122{bottom:3.959271px;}
.y124{bottom:3.959279px;}
.y126{bottom:3.959288px;}
.y128{bottom:3.959296px;}
.y12a{bottom:3.959305px;}
.y12c{bottom:3.959314px;}
.y12e{bottom:3.959322px;}
.y130{bottom:3.959691px;}
.y132{bottom:3.959699px;}
.y134{bottom:3.960008px;}
.y14a{bottom:4.318959px;}
.y12{bottom:4.319045px;}
.y4e{bottom:4.498947px;}
.ya{bottom:4.500038px;}
.ycf{bottom:6.119237px;}
.ydb{bottom:6.119263px;}
.ye6{bottom:6.119289px;}
.ycd{bottom:16.199231px;}
.yd9{bottom:16.199257px;}
.ye4{bottom:16.199282px;}
.yb{bottom:32.880287px;}
.y9{bottom:50.520240px;}
.y7{bottom:55.020278px;}
.y8{bottom:56.100278px;}
.y133{bottom:126.120240px;}
.y147{bottom:129.539948px;}
.y1c7{bottom:130.439948px;}
.y46{bottom:136.020246px;}
.y210{bottom:136.559945px;}
.y18a{bottom:140.879944px;}
.y95{bottom:143.579943px;}
.y131{bottom:147.540240px;}
.y1c6{bottom:151.139940px;}
.y1dd{bottom:154.199938px;}
.y1ef{bottom:155.279938px;}
.y45{bottom:156.719937px;}
.y20f{bottom:157.259937px;}
.y189{bottom:161.579935px;}
.y7f{bottom:165.359934px;}
.yfb{bottom:166.439920px;}
.y12f{bottom:168.960240px;}
.yfa{bottom:169.139922px;}
.yf9{bottom:169.319922px;}
.y1c5{bottom:171.839931px;}
.yf8{bottom:172.379924px;}
.y1dc{bottom:174.899930px;}
.y19c{bottom:175.439930px;}
.y146{bottom:175.619930px;}
.y1ee{bottom:175.979930px;}
.y94{bottom:176.159930px;}
.y44{bottom:177.419929px;}
.y20e{bottom:177.959929px;}
.y23d{bottom:178.499929px;}
.yf7{bottom:179.759928px;}
.y188{bottom:182.279927px;}
.y7e{bottom:186.059926px;}
.y12d{bottom:190.380600px;}
.y1c4{bottom:192.539923px;}
.y43{bottom:198.119921px;}
.y20d{bottom:198.659921px;}
.y23c{bottom:200.819920px;}
.y187{bottom:202.979919px;}
.y1db{bottom:203.699919px;}
.y1ed{bottom:204.779918px;}
.y145{bottom:206.579917px;}
.y7d{bottom:206.759917px;}
.y93{bottom:208.919916px;}
.y12b{bottom:211.800600px;}
.y1c3{bottom:213.239915px;}
.y1b4{bottom:216.479913px;}
.y19b{bottom:217.199913px;}
.y25e{bottom:217.559913px;}
.y42{bottom:218.819912px;}
.y20c{bottom:219.359912px;}
.y23b{bottom:223.139911px;}
.y186{bottom:223.679911px;}
.y7c{bottom:227.459909px;}
.yf6{bottom:230.700013px;}
.y129{bottom:233.220600px;}
.y1eb{bottom:233.579907px;}
.yf5{bottom:233.580015px;}
.y1c2{bottom:233.939906px;}
.yf4{bottom:236.640016px;}
.yf3{bottom:237.005905px;}
.y144{bottom:237.719905px;}
.y19a{bottom:237.899905px;}
.y41{bottom:239.519904px;}
.y20b{bottom:240.059904px;}
.y92{bottom:241.679903px;}
.y185{bottom:244.379902px;}
.y23a{bottom:245.459902px;}
.y7b{bottom:248.159901px;}
.y1ea{bottom:250.139900px;}
.y25d{bottom:250.319900px;}
.y1c1{bottom:254.639898px;}
.y127{bottom:254.820600px;}
.y1b3{bottom:258.059897px;}
.y199{bottom:258.599897px;}
.y40{bottom:260.219896px;}
.y20a{bottom:260.759896px;}
.y184{bottom:265.079894px;}
.y1e0{bottom:267.599893px;}
.y143{bottom:268.679893px;}
.y7a{bottom:268.859892px;}
.ye5{bottom:271.920600px;}
.y91{bottom:274.259890px;}
.y1c0{bottom:275.339890px;}
.y125{bottom:276.240600px;}
.ye3{bottom:277.860600px;}
.y1b2{bottom:278.759888px;}
.y198{bottom:279.299888px;}
.y239{bottom:279.839888px;}
.y3f{bottom:281.279887px;}
.y209{bottom:281.459887px;}
.y1df{bottom:281.999887px;}
.y25c{bottom:283.079887px;}
.y1de{bottom:284.159886px;}
.y183{bottom:285.779886px;}
.y79{bottom:289.559884px;}
.y1e1{bottom:294.239882px;}
.y90{bottom:294.959882px;}
.yec{bottom:295.139888px;}
.yf0{bottom:295.139890px;}
.y1bf{bottom:296.039882px;}
.y1ec{bottom:296.219882px;}
.y123{bottom:297.660600px;}
.yea{bottom:299.459874px;}
.y1b1{bottom:299.459880px;}
.y142{bottom:299.819880px;}
.y197{bottom:299.999880px;}
.y208{bottom:302.159879px;}
.ye9{bottom:302.699876px;}
.yf2{bottom:302.699879px;}
.yeb{bottom:304.319879px;}
.yef{bottom:304.319880px;}
.ye8{bottom:305.219878px;}
.yed{bottom:305.219879px;}
.yf1{bottom:305.219881px;}
.ye7{bottom:305.579878px;}
.ye1{bottom:306.479877px;}
.yee{bottom:307.199880px;}
.ye2{bottom:308.279878px;}
.y78{bottom:310.259876px;}
.y8f{bottom:315.659874px;}
.y53{bottom:316.379873px;}
.y1be{bottom:316.559873px;}
.y25b{bottom:318.359873px;}
.y121{bottom:319.080600px;}
.y1b0{bottom:320.159872px;}
.y196{bottom:320.699872px;}
.y1e2{bottom:320.879872px;}
.y207{bottom:322.859871px;}
.y238{bottom:324.479870px;}
.y182{bottom:327.179869px;}
.y141{bottom:330.779868px;}
.y77{bottom:330.959868px;}
.y52{bottom:335.819866px;}
.yda{bottom:336.180600px;}
.y8e{bottom:336.359865px;}
.y1bd{bottom:337.259865px;}
.y11f{bottom:340.500600px;}
.y1af{bottom:340.859864px;}
.y195{bottom:341.399863px;}
.yd8{bottom:342.120600px;}
.y206{bottom:343.559863px;}
.y1e3{bottom:347.519861px;}
.y181{bottom:347.879861px;}
.y76{bottom:351.659859px;}
.y25a{bottom:353.099859px;}
.y51{bottom:355.619858px;}
.y8d{bottom:357.059857px;}
.y1bc{bottom:357.959857px;}
.y237{bottom:358.859856px;}
.ye0{bottom:359.399864px;}
.y1ae{bottom:361.559855px;}
.y140{bottom:361.919855px;}
.y11d{bottom:361.920600px;}
.y194{bottom:362.099855px;}
.y205{bottom:364.259854px;}
.yde{bottom:366.779853px;}
.ydc{bottom:366.959853px;}
.y180{bottom:368.579853px;}
.ydd{bottom:369.479855px;}
.y24{bottom:370.379852px;}
.yd6{bottom:370.739852px;}
.ydf{bottom:371.459856px;}
.y75{bottom:372.359851px;}
.yd7{bottom:372.539853px;}
.y1e4{bottom:374.159850px;}
.y50{bottom:375.419850px;}
.y8c{bottom:377.759849px;}
.y1bb{bottom:378.659849px;}
.y236{bottom:381.179848px;}
.y1ad{bottom:382.259847px;}
.y193{bottom:382.799847px;}
.y11b{bottom:383.520600px;}
.y204{bottom:384.959846px;}
.y17f{bottom:389.279844px;}
.y13f{bottom:392.879843px;}
.y74{bottom:393.059843px;}
.y4f{bottom:395.219842px;}
.y259{bottom:397.739841px;}
.y8b{bottom:398.459841px;}
.yce{bottom:400.620600px;}
.y1e5{bottom:400.799840px;}
.y1ac{bottom:402.959839px;}
.y192{bottom:403.499839px;}
.y119{bottom:404.940600px;}
.y203{bottom:405.659838px;}
.ycc{bottom:406.560600px;}
.y73{bottom:413.759834px;}
.y8a{bottom:419.159832px;}
.y1ba{bottom:420.419832px;}
.y1ab{bottom:423.659831px;}
.yd5{bottom:423.839835px;}
.y13e{bottom:424.019830px;}
.y191{bottom:424.199830px;}
.y202{bottom:426.359829px;}
.y117{bottom:426.360600px;}
.y1e6{bottom:427.439829px;}
.y17e{bottom:430.859828px;}
.yd3{bottom:431.219824px;}
.yd2{bottom:431.399825px;}
.y258{bottom:432.119827px;}
.yd1{bottom:433.919826px;}
.yd0{bottom:434.279826px;}
.y72{bottom:434.459826px;}
.yca{bottom:435.179826px;}
.yd4{bottom:435.899827px;}
.ycb{bottom:436.979827px;}
.y235{bottom:437.879825px;}
.y3e{bottom:439.319824px;}
.y1b9{bottom:441.119824px;}
.y1aa{bottom:444.359822px;}
.y190{bottom:444.899822px;}
.y201{bottom:447.059821px;}
.y115{bottom:447.780600px;}
.y89{bottom:451.919819px;}
.y1e7{bottom:454.079818px;}
.y257{bottom:454.439818px;}
.y13d{bottom:454.979818px;}
.y71{bottom:455.159818px;}
.y3d{bottom:456.419817px;}
.y234{bottom:460.199816px;}
.y17d{bottom:463.619815px;}
.y1a9{bottom:465.059814px;}
.y18f{bottom:465.599814px;}
.y200{bottom:467.759813px;}
.y113{bottom:469.200600px;}
.y1b8{bottom:469.919812px;}
.y88{bottom:472.619811px;}
.y70{bottom:475.859810px;}
.y256{bottom:476.759809px;}
.y1e8{bottom:480.719808px;}
.y17b{bottom:481.080600px;}
.y233{bottom:482.519807px;}
.yc7{bottom:482.699775px;}
.y3c{bottom:482.699807px;}
.y1d6{bottom:483.239807px;}
.y1a8{bottom:485.759806px;}
.y13c{bottom:486.119806px;}
.y18e{bottom:486.299805px;}
.yc9{bottom:488.459763px;}
.y1ff{bottom:488.459805px;}
.y111{bottom:490.620600px;}
.y87{bottom:493.319803px;}
.yc8{bottom:495.659767px;}
.y6f{bottom:496.559801px;}
.y1d5{bottom:499.799800px;}
.y3b{bottom:499.979800px;}
.yc6{bottom:500.159800px;}
.y179{bottom:502.500600px;}
.y232{bottom:504.839798px;}
.y1a7{bottom:506.459797px;}
.y18d{bottom:506.999797px;}
.y1e9{bottom:507.359797px;}
.y23{bottom:508.259797px;}
.y1fe{bottom:509.159796px;}
.y255{bottom:511.139796px;}
.y10f{bottom:512.040600px;}
.y86{bottom:514.019794px;}
.y1d4{bottom:516.359793px;}
.y13b{bottom:517.079793px;}
.y3a{bottom:517.259793px;}
.y22{bottom:523.739791px;}
.y177{bottom:523.920600px;}
.y1a6{bottom:527.159789px;}
.y1fd{bottom:529.859788px;}
.y254{bottom:533.459787px;}
.y10d{bottom:533.640600px;}
.y1ca{bottom:533.819786px;}
.y39{bottom:534.539786px;}
.y85{bottom:534.719786px;}
.y6e{bottom:537.959785px;}
.y231{bottom:539.219784px;}
.y21{bottom:539.399784px;}
.y1da{bottom:543.719783px;}
.y175{bottom:545.520600px;}
.yc2{bottom:547.859779px;}
.y1a5{bottom:547.859781px;}
.y1c9{bottom:548.039781px;}
.y13a{bottom:548.219781px;}
.y18c{bottom:548.579781px;}
.y1fc{bottom:550.559780px;}
.y38{bottom:551.819779px;}
.y20{bottom:551.999779px;}
.yc4{bottom:552.899782px;}
.y10b{bottom:555.060600px;}
.y84{bottom:555.419778px;}
.y253{bottom:555.779778px;}
.y6d{bottom:558.659777px;}
.y1cb{bottom:560.459776px;}
.yc5{bottom:561.539772px;}
.y230{bottom:561.539775px;}
.yc3{bottom:562.079773px;}
.y1d7{bottom:562.079775px;}
.y1d9{bottom:564.419774px;}
.yc1{bottom:564.599774px;}
.y173{bottom:566.940600px;}
.y1a4{bottom:568.559773px;}
.y37{bottom:568.919772px;}
.y1fb{bottom:571.259771px;}
.y83{bottom:576.119770px;}
.y109{bottom:576.480600px;}
.y18b{bottom:577.199769px;}
.y139{bottom:579.179768px;}
.y6c{bottom:579.359768px;}
.y22f{bottom:583.859766px;}
.y36{bottom:586.199766px;}
.y1cc{bottom:587.099765px;}
.y1a3{bottom:589.259764px;}
.y252{bottom:590.159764px;}
.y172{bottom:591.599763px;}
.y1fa{bottom:591.959763px;}
.y1d8{bottom:593.039763px;}
.y82{bottom:596.819761px;}
.y6b{bottom:600.059760px;}
.y35{bottom:603.479759px;}
.y22e{bottom:606.179758px;}
.y170{bottom:609.060600px;}
.y1a2{bottom:609.959756px;}
.y138{bottom:611.939755px;}
.ybd{bottom:612.119754px;}
.y251{bottom:612.479755px;}
.y1f9{bottom:612.659755px;}
.y1cd{bottom:613.739755px;}
.y108{bottom:613.919754px;}
.ybf{bottom:617.159742px;}
.y81{bottom:617.519753px;}
.y34{bottom:620.759752px;}
.ybe{bottom:623.279745px;}
.yc0{bottom:626.339732px;}
.ybc{bottom:628.859748px;}
.y16e{bottom:630.480600px;}
.y1a1{bottom:630.659748px;}
.y1f8{bottom:633.359747px;}
.y33{bottom:638.039745px;}
.y1ce{bottom:640.379744px;}
.y22d{bottom:640.559744px;}
.y6a{bottom:641.459743px;}
.y137{bottom:644.699742px;}
.y107{bottom:646.499741px;}
.y250{bottom:646.859741px;}
.y80{bottom:650.279740px;}
.y1a0{bottom:651.359739px;}
.y16c{bottom:651.900600px;}
.y1f7{bottom:654.059738px;}
.y32{bottom:655.139738px;}
.y1f{bottom:659.099736px;}
.y69{bottom:662.159735px;}
.y22c{bottom:662.879735px;}
.y1cf{bottom:667.019733px;}
.y106{bottom:667.199733px;}
.y24f{bottom:669.179732px;}
.y19f{bottom:672.059731px;}
.y31{bottom:672.419731px;}
.y16a{bottom:673.320600px;}
.y1f6{bottom:674.759730px;}
.y136{bottom:677.279729px;}
.yba{bottom:678.179722px;}
.y68{bottom:682.859727px;}
.yb6{bottom:684.839726px;}
.y105{bottom:687.899725px;}
.yb8{bottom:688.619713px;}
.yb9{bottom:688.799713px;}
.y30{bottom:689.699724px;}
.ybb{bottom:690.419714px;}
.y24e{bottom:691.499723px;}
.yb7{bottom:693.299716px;}
.y1d0{bottom:693.659723px;}
.y1e{bottom:693.839722px;}
.y1f5{bottom:695.459722px;}
.y22b{bottom:697.259721px;}
.y169{bottom:697.979721px;}
.y67{bottom:703.559719px;}
.y135{bottom:705.899718px;}
.y2f{bottom:706.979717px;}
.y104{bottom:708.599717px;}
.y1d{bottom:709.139716px;}
.y19e{bottom:713.819714px;}
.y1f4{bottom:716.159714px;}
.y168{bottom:718.679713px;}
.y22a{bottom:719.579712px;}
.y1d1{bottom:720.299712px;}
.y2e{bottom:724.259710px;}
.y1c{bottom:724.439710px;}
.y24d{bottom:725.699710px;}
.y103{bottom:729.299708px;}
.y1c8{bottom:735.959706px;}
.y166{bottom:736.320600px;}
.y1b{bottom:738.479705px;}
.y2d{bottom:741.539703px;}
.y229{bottom:741.899703px;}
.y19d{bottom:742.439703px;}
.y66{bottom:744.959702px;}
.y1d2{bottom:746.939701px;}
.yb4{bottom:747.659694px;}
.y24c{bottom:748.199701px;}
.y1f3{bottom:748.919700px;}
.y102{bottom:749.999700px;}
.yb5{bottom:751.439696px;}
.yb3{bottom:753.059697px;}
.yb2{bottom:755.039698px;}
.y164{bottom:757.740600px;}
.y2c{bottom:758.639697px;}
.y65{bottom:765.659694px;}
.y24b{bottom:770.519692px;}
.y101{bottom:770.699692px;}
.y1a{bottom:771.959691px;}
.y1d3{bottom:773.579691px;}
.y228{bottom:774.479690px;}
.y2b{bottom:775.919690px;}
.y162{bottom:779.160600px;}
.y1f2{bottom:781.499687px;}
.y64{bottom:786.359685px;}
.y100{bottom:791.399683px;}
.y2a{bottom:793.199683px;}
.y227{bottom:795.179682px;}
.y160{bottom:800.580600px;}
.y1f1{bottom:802.199679px;}
.y24a{bottom:804.719678px;}
.y19{bottom:805.619678px;}
.y63{bottom:807.059677px;}
.y1b7{bottom:809.759676px;}
.yb0{bottom:810.299663px;}
.y29{bottom:810.479676px;}
.yff{bottom:812.099675px;}
.y226{bottom:815.879674px;}
.yb1{bottom:817.319667px;}
.yaf{bottom:817.499667px;}
.y15e{bottom:822.000600px;}
.yae{bottom:823.079671px;}
.y249{bottom:827.219669px;}
.y28{bottom:827.759669px;}
.y1b6{bottom:830.459668px;}
.y1f0{bottom:830.999668px;}
.yfe{bottom:832.799667px;}
.y18{bottom:839.099664px;}
.y21c{bottom:844.499662px;}
.y27{bottom:845.039662px;}
.y15d{bottom:846.659661px;}
.y62{bottom:848.459661px;}
.y225{bottom:848.639661px;}
.y248{bottom:849.539660px;}
.y17{bottom:854.579658px;}
.y1b5{bottom:859.259656px;}
.y25{bottom:860.519656px;}
.y21b{bottom:860.879656px;}
.y26{bottom:862.139655px;}
.y15b{bottom:864.120600px;}
.yfd{bottom:865.559654px;}
.y61{bottom:869.159652px;}
.y224{bottom:869.339652px;}
.yac{bottom:874.559622px;}
.ya9{bottom:874.559637px;}
.y21a{bottom:877.439649px;}
.yab{bottom:881.759626px;}
.ya8{bottom:881.759641px;}
.y11{bottom:883.020600px;}
.yad{bottom:883.559612px;}
.yaa{bottom:883.559627px;}
.y247{bottom:883.739647px;}
.y14{bottom:883.920600px;}
.y159{bottom:885.540600px;}
.y13{bottom:887.519645px;}
.ya7{bottom:887.699645px;}
.y16{bottom:888.959644px;}
.y60{bottom:889.859644px;}
.y223{bottom:890.039644px;}
.yfc{bottom:894.179642px;}
.y213{bottom:894.899642px;}
.y246{bottom:906.059638px;}
.y157{bottom:907.140600px;}
.y5f{bottom:910.559636px;}
.y10{bottom:919.919632px;}
.y222{bottom:924.419630px;}
.y245{bottom:928.559629px;}
.y5e{bottom:931.259627px;}
.y156{bottom:931.799627px;}
.y214{bottom:934.859626px;}
.yf{bottom:940.619624px;}
.ya5{bottom:942.779594px;}
.ya2{bottom:942.779609px;}
.y221{bottom:946.739621px;}
.ya4{bottom:949.979599px;}
.ya1{bottom:949.979614px;}
.y21d{bottom:951.599619px;}
.y5d{bottom:951.959619px;}
.y155{bottom:953.219619px;}
.ya0{bottom:956.279617px;}
.ya3{bottom:957.719603px;}
.ya6{bottom:960.419515px;}
.y244{bottom:962.759615px;}
.y220{bottom:969.059612px;}
.y153{bottom:970.680600px;}
.y5c{bottom:972.659611px;}
.ye{bottom:973.379611px;}
.y215{bottom:974.819610px;}
.y212{bottom:978.239609px;}
.y243{bottom:985.079606px;}
.y151{bottom:992.100600px;}
.y5b{bottom:993.359603px;}
.y21f{bottom:1001.819599px;}
.yd{bottom:1005.959598px;}
.y242{bottom:1007.579597px;}
.y5a{bottom:1014.059594px;}
.y216{bottom:1014.779594px;}
.y150{bottom:1016.759593px;}
.yc{bottom:1026.659589px;}
.y9d{bottom:1033.679587px;}
.y21e{bottom:1034.399586px;}
.y59{bottom:1034.759586px;}
.y14f{bottom:1038.179585px;}
.y241{bottom:1040.159584px;}
.y9e{bottom:1044.659578px;}
.y9f{bottom:1048.259580px;}
.y47{bottom:1050.239580px;}
.y4c{bottom:1051.139580px;}
.y217{bottom:1054.739578px;}
.y58{bottom:1055.459578px;}
.y14d{bottom:1055.640600px;}
.y240{bottom:1060.859576px;}
.y4b{bottom:1069.499572px;}
.y57{bottom:1076.159570px;}
.y14b{bottom:1077.240600px;}
.y23f{bottom:1081.559567px;}
.y4a{bottom:1087.859565px;}
.y218{bottom:1094.699562px;}
.y56{bottom:1096.859561px;}
.y149{bottom:1097.580600px;}
.y148{bottom:1101.899559px;}
.y97{bottom:1109.825446px;}
.y98{bottom:1110.179557px;}
.y9a{bottom:1110.539558px;}
.y96{bottom:1111.619555px;}
.y9b{bottom:1111.979557px;}
.y49{bottom:1115.039554px;}
.y23e{bottom:1115.939554px;}
.y55{bottom:1117.559553px;}
.y99{bottom:1122.599550px;}
.y211{bottom:1123.139551px;}
.y9c{bottom:1123.499549px;}
.y4d{bottom:1127.640600px;}
.y48{bottom:1133.399547px;}
.y219{bottom:1134.659546px;}
.y54{bottom:1138.259545px;}
.y6{bottom:1167.239533px;}
.y3{bottom:1170.299532px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.940000px;}
.h17{height:6.120000px;}
.h16{height:16.200000px;}
.hd{height:19.260000px;}
.ha{height:20.160000px;}
.h6{height:20.340000px;}
.h18{height:20.520000px;}
.h15{height:33.518307px;}
.hc{height:35.991197px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:38.759750px;}
.h10{height:39.313461px;}
.h12{height:39.830258px;}
.hf{height:40.297132px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h13{height:43.390178px;}
.hb{height:44.149201px;}
.he{height:44.666701px;}
.h2{height:47.545293px;}
.h8{height:48.796855px;}
.h19{height:49.992168px;}
.h9{height:50.027324px;}
.h1a{height:51.679667px;}
.h14{height:52.417948px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w3{width:4.500000px;}
.w21{width:5.940000px;}
.w3b{width:7.560000px;}
.w52{width:7.740000px;}
.wa{width:9.000000px;}
.w2{width:9.720000px;}
.w10{width:10.620000px;}
.w8{width:10.980000px;}
.w42{width:13.500000px;}
.w7{width:13.680000px;}
.w25{width:17.280000px;}
.w23{width:18.000000px;}
.w2c{width:22.500000px;}
.w2e{width:23.940000px;}
.w11{width:26.100000px;}
.w20{width:27.540000px;}
.w15{width:28.980000px;}
.w4c{width:32.040000px;}
.w9{width:32.580000px;}
.w22{width:33.120000px;}
.w6{width:33.840000px;}
.w43{width:34.020000px;}
.w54{width:35.820000px;}
.w3d{width:36.000000px;}
.wc{width:39.960000px;}
.w29{width:40.500000px;}
.w4e{width:41.040000px;}
.w39{width:45.000000px;}
.w38{width:46.440000px;}
.w45{width:46.980000px;}
.w35{width:47.880000px;}
.w37{width:48.060000px;}
.w4f{width:53.100000px;}
.w41{width:54.540000px;}
.w3f{width:55.980000px;}
.w30{width:56.520000px;}
.w3c{width:57.060000px;}
.w1f{width:58.320000px;}
.w4{width:58.500000px;}
.w14{width:61.020000px;}
.w4a{width:65.880000px;}
.w3a{width:66.960000px;}
.w57{width:68.040000px;}
.w40{width:72.000000px;}
.w4b{width:72.900000px;}
.w44{width:74.520000px;}
.w4d{width:75.780000px;}
.w46{width:78.300000px;}
.w24{width:79.020000px;}
.w17{width:81.360000px;}
.w48{width:83.520000px;}
.wf{width:83.880000px;}
.w56{width:84.780000px;}
.wd{width:86.040000px;}
.w19{width:87.480000px;}
.w1c{width:89.460000px;}
.w1b{width:90.360000px;}
.w47{width:91.080000px;}
.w55{width:91.980000px;}
.w2b{width:92.520000px;}
.wb{width:95.400000px;}
.w53{width:99.540000px;}
.w3e{width:100.440000px;}
.w51{width:100.980000px;}
.w50{width:101.520000px;}
.w49{width:103.140000px;}
.w34{width:115.560000px;}
.w26{width:116.460000px;}
.w28{width:116.820000px;}
.w12{width:117.900000px;}
.w2a{width:128.520000px;}
.w27{width:133.740000px;}
.w59{width:133.920000px;}
.w36{width:134.100000px;}
.w13{width:135.900000px;}
.we{width:136.440000px;}
.w2d{width:140.580000px;}
.w33{width:144.000000px;}
.w31{width:154.080000px;}
.w18{width:157.500000px;}
.w2f{width:166.320000px;}
.w1e{width:168.300000px;}
.w1a{width:169.020000px;}
.w1d{width:169.380000px;}
.w58{width:169.920000px;}
.w32{width:173.520000px;}
.w16{width:176.040000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x25{left:-4.680255px;}
.x0{left:0.000000px;}
.x18{left:98.099961px;}
.x16{left:100.079960px;}
.x15{left:102.599959px;}
.x1{left:108.539957px;}
.x2{left:110.701628px;}
.x14{left:113.939954px;}
.x1a{left:115.019954px;}
.x2e{left:116.459953px;}
.x8{left:119.159952px;}
.x2d{left:120.419952px;}
.x2f{left:121.499951px;}
.xd{left:122.940000px;}
.x2b{left:125.459950px;}
.xb{left:127.259949px;}
.x73{left:129.600696px;}
.x5{left:132.659947px;}
.x30{left:136.619945px;}
.xbe{left:139.499944px;}
.xb0{left:143.819942px;}
.x19{left:146.699941px;}
.xb7{left:147.779941px;}
.x79{left:152.460000px;}
.x17{left:156.779937px;}
.xa9{left:158.939936px;}
.x2c{left:161.999935px;}
.x8c{left:163.440000px;}
.x9a{left:165.779934px;}
.x9b{left:168.299933px;}
.x1c{left:170.999830px;}
.x7c{left:172.440000px;}
.xab{left:177.479929px;}
.xaa{left:179.099928px;}
.xe{left:181.440000px;}
.xf{left:185.040000px;}
.x47{left:189.000000px;}
.x82{left:190.980000px;}
.x8f{left:192.240000px;}
.x31{left:194.579922px;}
.x4d{left:198.000000px;}
.x86{left:199.980000px;}
.xb9{left:202.859919px;}
.xb8{left:205.739918px;}
.x46{left:207.001472px;}
.x89{left:208.980000px;}
.x93{left:216.000000px;}
.x92{left:217.260000px;}
.x10{left:218.879912px;}
.x11{left:221.579911px;}
.x45{left:226.259095px;}
.xa6{left:232.559907px;}
.x9c{left:235.079906px;}
.x1b{left:241.019857px;}
.x9e{left:246.959901px;}
.x33{left:248.039901px;}
.x9d{left:249.839900px;}
.x50{left:251.460000px;}
.x8a{left:256.500000px;}
.x94{left:257.940000px;}
.xa5{left:259.732821px;}
.x12{left:260.820000px;}
.x32{left:262.259895px;}
.xa{left:265.499894px;}
.x1e{left:268.019893px;}
.x98{left:270.719892px;}
.x51{left:277.560000px;}
.x1d{left:280.799888px;}
.x13{left:282.592387px;}
.x26{left:284.399886px;}
.x70{left:287.820000px;}
.x6d{left:289.620000px;}
.x9{left:293.039233px;}
.x35{left:296.459881px;}
.x83{left:298.980000px;}
.x21{left:302.039901px;}
.x7d{left:306.540000px;}
.x71{left:308.700000px;}
.x34{left:310.499876px;}
.x87{left:317.880000px;}
.x5f{left:320.760000px;}
.xac{left:323.819870px;}
.x74{left:326.340000px;}
.x59{left:331.200000px;}
.x63{left:334.260000px;}
.x75{left:335.340000px;}
.x48{left:337.140000px;}
.x95{left:342.720000px;}
.xba{left:350.099860px;}
.x7a{left:352.440000px;}
.x37{left:354.419858px;}
.x60{left:358.200000px;}
.x54{left:359.640000px;}
.x36{left:368.639853px;}
.x61{left:370.260000px;}
.x9f{left:372.059851px;}
.xc{left:374.399452px;}
.xb6{left:375.839850px;}
.x4e{left:378.180000px;}
.x76{left:380.519848px;}
.x65{left:382.320000px;}
.x6b{left:385.740000px;}
.x20{left:388.259845px;}
.x69{left:395.820000px;}
.x22{left:399.599840px;}
.x99{left:402.119839px;}
.x67{left:408.060000px;}
.x57{left:410.760000px;}
.x40{left:417.419833px;}
.x1f{left:419.759607px;}
.x7b{left:423.899830px;}
.x96{left:427.860000px;}
.x6e{left:429.660000px;}
.x6{left:432.359827px;}
.x88{left:434.880000px;}
.x8b{left:441.900000px;}
.x38{left:445.859822px;}
.x84{left:446.940000px;}
.xb4{left:448.919820px;}
.xb5{left:454.499818px;}
.x7e{left:469.260000px;}
.x77{left:473.580000px;}
.xad{left:484.559806px;}
.x3a{left:489.599804px;}
.x23{left:496.439801px;}
.xa1{left:497.519801px;}
.xa0{left:499.679800px;}
.xbb{left:501.839799px;}
.x39{left:503.819798px;}
.x49{left:507.600000px;}
.xae{left:511.559795px;}
.xbc{left:512.639795px;}
.x27{left:514.799794px;}
.x62{left:516.600000px;}
.x28{left:519.299792px;}
.xa7{left:525.059790px;}
.x7f{left:526.320000px;}
.x64{left:530.100000px;}
.x66{left:531.540000px;}
.x55{left:536.580000px;}
.x41{left:543.059783px;}
.x4a{left:547.560000px;}
.x4b{left:552.060000px;}
.x6f{left:555.660000px;}
.x3c{left:557.279777px;}
.x68{left:564.120000px;}
.x5b{left:565.920000px;}
.x53{left:568.620000px;}
.x3b{left:571.499771px;}
.xb1{left:577.439769px;}
.xb2{left:581.759767px;}
.x8d{left:583.200000px;}
.x29{left:585.719766px;}
.x2a{left:588.779764px;}
.x4f{left:591.480000px;}
.x5c{left:593.460000px;}
.x56{left:595.080000px;}
.x58{left:597.960000px;}
.x5d{left:599.400000px;}
.x80{left:608.220000px;}
.x6c{left:623.160000px;}
.x52{left:625.500000px;}
.x42{left:626.759749px;}
.xa3{left:629.099748px;}
.xaf{left:630.899748px;}
.x5e{left:632.520000px;}
.xa2{left:636.659745px;}
.x4c{left:638.100000px;}
.x24{left:641.520000px;}
.x3d{left:655.199738px;}
.xbd{left:657.179737px;}
.x81{left:660.059736px;}
.x8e{left:664.560000px;}
.x4{left:666.179734px;}
.x78{left:668.699733px;}
.xa8{left:671.399731px;}
.x5a{left:676.980000px;}
.x6a{left:681.120000px;}
.x91{left:692.100000px;}
.x90{left:713.160000px;}
.x44{left:736.019455px;}
.x72{left:745.919607px;}
.x85{left:751.140000px;}
.x43{left:762.839695px;}
.xa4{left:772.378976px;}
.x3f{left:777.059689px;}
.x7{left:780.120000px;}
.xb3{left:782.999687px;}
.x3{left:784.979686px;}
.x97{left:787.499685px;}
.x3e{left:791.279683px;}
@media print{
.v2{vertical-align:-29.439988pt;}
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.016533pt;}
.lsa{letter-spacing:0.018878pt;}
.lsb{letter-spacing:0.018880pt;}
.ls7{letter-spacing:0.018917pt;}
.ls6{letter-spacing:0.138597pt;}
.lsc{letter-spacing:0.659253pt;}
.ls3{letter-spacing:0.802744pt;}
.ls2{letter-spacing:16.172207pt;}
.ls9{letter-spacing:77.624502pt;}
.ls5{letter-spacing:78.264502pt;}
.ls0{letter-spacing:1134.899294pt;}
.ws4{word-spacing:-28.816521pt;}
.ws8{word-spacing:-16.138591pt;}
.wsa{word-spacing:-16.018911pt;}
.ws7{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.776955pt;}
.ws5{word-spacing:-12.005115pt;}
.ws2{word-spacing:-11.686395pt;}
.wsb{word-spacing:-10.847996pt;}
.ws9{word-spacing:-10.719996pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:284.816046pt;}
.wsd{word-spacing:390.415594pt;}
._1e{margin-left:-7.144893pt;}
._19{margin-left:-5.344347pt;}
._3{margin-left:-3.922225pt;}
._2{margin-left:-2.626225pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._5{width:2.171886pt;}
._b{width:3.932813pt;}
._a{width:4.861424pt;}
._9{width:5.808178pt;}
._c{width:6.781401pt;}
._f{width:7.974899pt;}
._6{width:9.053853pt;}
._14{width:9.991332pt;}
._11{width:10.892701pt;}
._4{width:12.379258pt;}
._17{width:13.524757pt;}
._10{width:14.620295pt;}
._12{width:16.305347pt;}
._15{width:17.296475pt;}
._18{width:18.234361pt;}
._16{width:19.894112pt;}
._7{width:21.030014pt;}
._e{width:22.375304pt;}
._d{width:24.001839pt;}
._8{width:25.229254pt;}
._25{width:26.236472pt;}
._26{width:27.567901pt;}
._27{width:30.786365pt;}
._28{width:31.772926pt;}
._2c{width:33.906424pt;}
._23{width:35.650096pt;}
._13{width:36.886176pt;}
._29{width:49.872020pt;}
._2a{width:51.159026pt;}
._2d{width:55.334904pt;}
._2b{width:58.952576pt;}
._1d{width:123.858898pt;}
._1a{width:126.748717pt;}
._21{width:176.113210pt;}
._1f{width:188.892533pt;}
._1c{width:254.517455pt;}
._1b{width:339.137002pt;}
._22{width:510.607757pt;}
._20{width:1419.733691pt;}
._24{width:2297.070645pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y5{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:0.106875pt;}
.y15{bottom:3.199151pt;}
.y14c{bottom:3.519082pt;}
.y14e{bottom:3.519090pt;}
.y152{bottom:3.519113pt;}
.y154{bottom:3.519120pt;}
.y158{bottom:3.519143pt;}
.y15a{bottom:3.519150pt;}
.y15c{bottom:3.519158pt;}
.y15f{bottom:3.519173pt;}
.y161{bottom:3.519181pt;}
.y163{bottom:3.519188pt;}
.y165{bottom:3.519196pt;}
.y167{bottom:3.519203pt;}
.y16b{bottom:3.519226pt;}
.y16d{bottom:3.519233pt;}
.y16f{bottom:3.519241pt;}
.y171{bottom:3.519249pt;}
.y10a{bottom:3.519260pt;}
.y174{bottom:3.519264pt;}
.y10c{bottom:3.519268pt;}
.y176{bottom:3.519271pt;}
.y10e{bottom:3.519276pt;}
.y178{bottom:3.519279pt;}
.y110{bottom:3.519283pt;}
.y17a{bottom:3.519287pt;}
.y112{bottom:3.519291pt;}
.y17c{bottom:3.519294pt;}
.y114{bottom:3.519298pt;}
.y116{bottom:3.519306pt;}
.y118{bottom:3.519314pt;}
.y11a{bottom:3.519321pt;}
.y11c{bottom:3.519329pt;}
.y11e{bottom:3.519337pt;}
.y120{bottom:3.519344pt;}
.y122{bottom:3.519352pt;}
.y124{bottom:3.519359pt;}
.y126{bottom:3.519367pt;}
.y128{bottom:3.519375pt;}
.y12a{bottom:3.519382pt;}
.y12c{bottom:3.519390pt;}
.y12e{bottom:3.519398pt;}
.y130{bottom:3.519725pt;}
.y132{bottom:3.519733pt;}
.y134{bottom:3.520007pt;}
.y14a{bottom:3.839075pt;}
.y12{bottom:3.839151pt;}
.y4e{bottom:3.999064pt;}
.ya{bottom:4.000034pt;}
.ycf{bottom:5.439322pt;}
.ydb{bottom:5.439345pt;}
.ye6{bottom:5.439368pt;}
.ycd{bottom:14.399316pt;}
.yd9{bottom:14.399339pt;}
.ye4{bottom:14.399362pt;}
.yb{bottom:29.226922pt;}
.y9{bottom:44.906880pt;}
.y7{bottom:48.906914pt;}
.y8{bottom:49.866913pt;}
.y133{bottom:112.106880pt;}
.y147{bottom:115.146621pt;}
.y1c7{bottom:115.946620pt;}
.y46{bottom:120.906885pt;}
.y210{bottom:121.386618pt;}
.y18a{bottom:125.226617pt;}
.y95{bottom:127.626616pt;}
.y131{bottom:131.146880pt;}
.y1c6{bottom:134.346613pt;}
.y1dd{bottom:137.066612pt;}
.y1ef{bottom:138.026611pt;}
.y45{bottom:139.306611pt;}
.y20f{bottom:139.786611pt;}
.y189{bottom:143.626609pt;}
.y7f{bottom:146.986608pt;}
.yfb{bottom:147.946596pt;}
.y12f{bottom:150.186880pt;}
.yfa{bottom:150.346597pt;}
.yf9{bottom:150.506597pt;}
.y1c5{bottom:152.746606pt;}
.yf8{bottom:153.226599pt;}
.y1dc{bottom:155.466604pt;}
.y19c{bottom:155.946604pt;}
.y146{bottom:156.106604pt;}
.y1ee{bottom:156.426604pt;}
.y94{bottom:156.586604pt;}
.y44{bottom:157.706604pt;}
.y20e{bottom:158.186603pt;}
.y23d{bottom:158.666603pt;}
.yf7{bottom:159.786603pt;}
.y188{bottom:162.026602pt;}
.y7e{bottom:165.386601pt;}
.y12d{bottom:169.227200pt;}
.y1c4{bottom:171.146598pt;}
.y43{bottom:176.106596pt;}
.y20d{bottom:176.586596pt;}
.y23c{bottom:178.506595pt;}
.y187{bottom:180.426594pt;}
.y1db{bottom:181.066594pt;}
.y1ed{bottom:182.026594pt;}
.y145{bottom:183.626593pt;}
.y7d{bottom:183.786593pt;}
.y93{bottom:185.706592pt;}
.y12b{bottom:188.267200pt;}
.y1c3{bottom:189.546591pt;}
.y1b4{bottom:192.426590pt;}
.y19b{bottom:193.066589pt;}
.y25e{bottom:193.386589pt;}
.y42{bottom:194.506589pt;}
.y20c{bottom:194.986589pt;}
.y23b{bottom:198.346587pt;}
.y186{bottom:198.826587pt;}
.y7c{bottom:202.186586pt;}
.yf6{bottom:205.066678pt;}
.y129{bottom:207.307200pt;}
.y1eb{bottom:207.626584pt;}
.yf5{bottom:207.626680pt;}
.y1c2{bottom:207.946583pt;}
.yf4{bottom:210.346681pt;}
.yf3{bottom:210.671916pt;}
.y144{bottom:211.306582pt;}
.y19a{bottom:211.466582pt;}
.y41{bottom:212.906582pt;}
.y20b{bottom:213.386581pt;}
.y92{bottom:214.826581pt;}
.y185{bottom:217.226580pt;}
.y23a{bottom:218.186579pt;}
.y7b{bottom:220.586578pt;}
.y1ea{bottom:222.346578pt;}
.y25d{bottom:222.506578pt;}
.y1c1{bottom:226.346576pt;}
.y127{bottom:226.507200pt;}
.y1b3{bottom:229.386575pt;}
.y199{bottom:229.866575pt;}
.y40{bottom:231.306574pt;}
.y20a{bottom:231.786574pt;}
.y184{bottom:235.626572pt;}
.y1e0{bottom:237.866572pt;}
.y143{bottom:238.826571pt;}
.y7a{bottom:238.986571pt;}
.ye5{bottom:241.707200pt;}
.y91{bottom:243.786569pt;}
.y1c0{bottom:244.746569pt;}
.y125{bottom:245.547200pt;}
.ye3{bottom:246.987200pt;}
.y1b2{bottom:247.786568pt;}
.y198{bottom:248.266567pt;}
.y239{bottom:248.746567pt;}
.y3f{bottom:250.026567pt;}
.y209{bottom:250.186567pt;}
.y1df{bottom:250.666566pt;}
.y25c{bottom:251.626566pt;}
.y1de{bottom:252.586566pt;}
.y183{bottom:254.026565pt;}
.y79{bottom:257.386564pt;}
.y1e1{bottom:261.546562pt;}
.y90{bottom:262.186562pt;}
.yec{bottom:262.346567pt;}
.yf0{bottom:262.346568pt;}
.y1bf{bottom:263.146561pt;}
.y1ec{bottom:263.306561pt;}
.y123{bottom:264.587200pt;}
.yea{bottom:266.186555pt;}
.y1b1{bottom:266.186560pt;}
.y142{bottom:266.506560pt;}
.y197{bottom:266.666560pt;}
.y208{bottom:268.586559pt;}
.ye9{bottom:269.066556pt;}
.yf2{bottom:269.066559pt;}
.yeb{bottom:270.506559pt;}
.yef{bottom:270.506560pt;}
.ye8{bottom:271.306558pt;}
.yed{bottom:271.306559pt;}
.yf1{bottom:271.306560pt;}
.ye7{bottom:271.626558pt;}
.ye1{bottom:272.426558pt;}
.yee{bottom:273.066560pt;}
.ye2{bottom:274.026559pt;}
.y78{bottom:275.786556pt;}
.y8f{bottom:280.586554pt;}
.y53{bottom:281.226554pt;}
.y1be{bottom:281.386554pt;}
.y25b{bottom:282.986553pt;}
.y121{bottom:283.627200pt;}
.y1b0{bottom:284.586553pt;}
.y196{bottom:285.066553pt;}
.y1e2{bottom:285.226553pt;}
.y207{bottom:286.986552pt;}
.y238{bottom:288.426551pt;}
.y182{bottom:290.826550pt;}
.y141{bottom:294.026549pt;}
.y77{bottom:294.186549pt;}
.y52{bottom:298.506547pt;}
.yda{bottom:298.827200pt;}
.y8e{bottom:298.986547pt;}
.y1bd{bottom:299.786547pt;}
.y11f{bottom:302.667200pt;}
.y1af{bottom:302.986545pt;}
.y195{bottom:303.466545pt;}
.yd8{bottom:304.107200pt;}
.y206{bottom:305.386545pt;}
.y1e3{bottom:308.906543pt;}
.y181{bottom:309.226543pt;}
.y76{bottom:312.586542pt;}
.y25a{bottom:313.866541pt;}
.y51{bottom:316.106540pt;}
.y8d{bottom:317.386540pt;}
.y1bc{bottom:318.186539pt;}
.y237{bottom:318.986539pt;}
.ye0{bottom:319.466546pt;}
.y1ae{bottom:321.386538pt;}
.y140{bottom:321.706538pt;}
.y11d{bottom:321.707200pt;}
.y194{bottom:321.866538pt;}
.y205{bottom:323.786537pt;}
.yde{bottom:326.026536pt;}
.ydc{bottom:326.186536pt;}
.y180{bottom:327.626536pt;}
.ydd{bottom:328.426538pt;}
.y24{bottom:329.226535pt;}
.yd6{bottom:329.546535pt;}
.ydf{bottom:330.186539pt;}
.y75{bottom:330.986534pt;}
.yd7{bottom:331.146536pt;}
.y1e4{bottom:332.586534pt;}
.y50{bottom:333.706533pt;}
.y8c{bottom:335.786532pt;}
.y1bb{bottom:336.586532pt;}
.y236{bottom:338.826531pt;}
.y1ad{bottom:339.786531pt;}
.y193{bottom:340.266531pt;}
.y11b{bottom:340.907200pt;}
.y204{bottom:342.186530pt;}
.y17f{bottom:346.026528pt;}
.y13f{bottom:349.226527pt;}
.y74{bottom:349.386527pt;}
.y4f{bottom:351.306526pt;}
.y259{bottom:353.546525pt;}
.y8b{bottom:354.186525pt;}
.yce{bottom:356.107200pt;}
.y1e5{bottom:356.266524pt;}
.y1ac{bottom:358.186523pt;}
.y192{bottom:358.666523pt;}
.y119{bottom:359.947200pt;}
.y203{bottom:360.586522pt;}
.ycc{bottom:361.387200pt;}
.y73{bottom:367.786520pt;}
.y8a{bottom:372.586518pt;}
.y1ba{bottom:373.706517pt;}
.y1ab{bottom:376.586516pt;}
.yd5{bottom:376.746520pt;}
.y13e{bottom:376.906516pt;}
.y191{bottom:377.066516pt;}
.y202{bottom:378.986515pt;}
.y117{bottom:378.987200pt;}
.y1e6{bottom:379.946515pt;}
.y17e{bottom:382.986513pt;}
.yd3{bottom:383.306511pt;}
.yd2{bottom:383.466511pt;}
.y258{bottom:384.106513pt;}
.yd1{bottom:385.706512pt;}
.yd0{bottom:386.026512pt;}
.y72{bottom:386.186512pt;}
.yca{bottom:386.826512pt;}
.yd4{bottom:387.466513pt;}
.ycb{bottom:388.426513pt;}
.y235{bottom:389.226511pt;}
.y3e{bottom:390.506510pt;}
.y1b9{bottom:392.106510pt;}
.y1aa{bottom:394.986509pt;}
.y190{bottom:395.466508pt;}
.y201{bottom:397.386508pt;}
.y115{bottom:398.027200pt;}
.y89{bottom:401.706506pt;}
.y1e7{bottom:403.626505pt;}
.y257{bottom:403.946505pt;}
.y13d{bottom:404.426505pt;}
.y71{bottom:404.586505pt;}
.y3d{bottom:405.706504pt;}
.y234{bottom:409.066503pt;}
.y17d{bottom:412.106502pt;}
.y1a9{bottom:413.386501pt;}
.y18f{bottom:413.866501pt;}
.y200{bottom:415.786500pt;}
.y113{bottom:417.067200pt;}
.y1b8{bottom:417.706500pt;}
.y88{bottom:420.106499pt;}
.y70{bottom:422.986497pt;}
.y256{bottom:423.786497pt;}
.y1e8{bottom:427.306496pt;}
.y17b{bottom:427.627200pt;}
.y233{bottom:428.906495pt;}
.yc7{bottom:429.066466pt;}
.y3c{bottom:429.066495pt;}
.y1d6{bottom:429.546495pt;}
.y1a8{bottom:431.786494pt;}
.y13c{bottom:432.106494pt;}
.y18e{bottom:432.266494pt;}
.yc9{bottom:434.186456pt;}
.y1ff{bottom:434.186493pt;}
.y111{bottom:436.107200pt;}
.y87{bottom:438.506491pt;}
.yc8{bottom:440.586460pt;}
.y6f{bottom:441.386490pt;}
.y1d5{bottom:444.266489pt;}
.y3b{bottom:444.426489pt;}
.yc6{bottom:444.586489pt;}
.y179{bottom:446.667200pt;}
.y232{bottom:448.746487pt;}
.y1a7{bottom:450.186487pt;}
.y18d{bottom:450.666486pt;}
.y1e9{bottom:450.986486pt;}
.y23{bottom:451.786486pt;}
.y1fe{bottom:452.586486pt;}
.y255{bottom:454.346485pt;}
.y10f{bottom:455.147200pt;}
.y86{bottom:456.906484pt;}
.y1d4{bottom:458.986483pt;}
.y13b{bottom:459.626483pt;}
.y3a{bottom:459.786483pt;}
.y22{bottom:465.546480pt;}
.y177{bottom:465.707200pt;}
.y1a6{bottom:468.586479pt;}
.y1fd{bottom:470.986478pt;}
.y254{bottom:474.186477pt;}
.y10d{bottom:474.347200pt;}
.y1ca{bottom:474.506477pt;}
.y39{bottom:475.146477pt;}
.y85{bottom:475.306477pt;}
.y6e{bottom:478.186475pt;}
.y231{bottom:479.306475pt;}
.y21{bottom:479.466475pt;}
.y1da{bottom:483.306473pt;}
.y175{bottom:484.907200pt;}
.yc2{bottom:486.986470pt;}
.y1a5{bottom:486.986472pt;}
.y1c9{bottom:487.146472pt;}
.y13a{bottom:487.306472pt;}
.y18c{bottom:487.626472pt;}
.y1fc{bottom:489.386471pt;}
.y38{bottom:490.506470pt;}
.y20{bottom:490.666470pt;}
.yc4{bottom:491.466473pt;}
.y10b{bottom:493.387200pt;}
.y84{bottom:493.706469pt;}
.y253{bottom:494.026469pt;}
.y6d{bottom:496.586468pt;}
.y1cb{bottom:498.186467pt;}
.yc5{bottom:499.146464pt;}
.y230{bottom:499.146467pt;}
.yc3{bottom:499.626465pt;}
.y1d7{bottom:499.626467pt;}
.y1d9{bottom:501.706466pt;}
.yc1{bottom:501.866466pt;}
.y173{bottom:503.947200pt;}
.y1a4{bottom:505.386465pt;}
.y37{bottom:505.706464pt;}
.y1fb{bottom:507.786464pt;}
.y83{bottom:512.106462pt;}
.y109{bottom:512.427200pt;}
.y18b{bottom:513.066461pt;}
.y139{bottom:514.826461pt;}
.y6c{bottom:514.986461pt;}
.y22f{bottom:518.986459pt;}
.y36{bottom:521.066458pt;}
.y1cc{bottom:521.866458pt;}
.y1a3{bottom:523.786457pt;}
.y252{bottom:524.586457pt;}
.y172{bottom:525.866456pt;}
.y1fa{bottom:526.186456pt;}
.y1d8{bottom:527.146456pt;}
.y82{bottom:530.506454pt;}
.y6b{bottom:533.386453pt;}
.y35{bottom:536.426452pt;}
.y22e{bottom:538.826451pt;}
.y170{bottom:541.387200pt;}
.y1a2{bottom:542.186450pt;}
.y138{bottom:543.946449pt;}
.ybd{bottom:544.106448pt;}
.y251{bottom:544.426449pt;}
.y1f9{bottom:544.586449pt;}
.y1cd{bottom:545.546448pt;}
.y108{bottom:545.706448pt;}
.ybf{bottom:548.586437pt;}
.y81{bottom:548.906447pt;}
.y34{bottom:551.786446pt;}
.ybe{bottom:554.026440pt;}
.yc0{bottom:556.746428pt;}
.ybc{bottom:558.986443pt;}
.y16e{bottom:560.427200pt;}
.y1a1{bottom:560.586442pt;}
.y1f8{bottom:562.986441pt;}
.y33{bottom:567.146440pt;}
.y1ce{bottom:569.226439pt;}
.y22d{bottom:569.386439pt;}
.y6a{bottom:570.186439pt;}
.y137{bottom:573.066437pt;}
.y107{bottom:574.666437pt;}
.y250{bottom:574.986437pt;}
.y80{bottom:578.026435pt;}
.y1a0{bottom:578.986435pt;}
.y16c{bottom:579.467200pt;}
.y1f7{bottom:581.386434pt;}
.y32{bottom:582.346434pt;}
.y1f{bottom:585.866432pt;}
.y69{bottom:588.586431pt;}
.y22c{bottom:589.226431pt;}
.y1cf{bottom:592.906430pt;}
.y106{bottom:593.066429pt;}
.y24f{bottom:594.826429pt;}
.y19f{bottom:597.386428pt;}
.y31{bottom:597.706428pt;}
.y16a{bottom:598.507200pt;}
.y1f6{bottom:599.786427pt;}
.y136{bottom:602.026426pt;}
.yba{bottom:602.826420pt;}
.y68{bottom:606.986424pt;}
.yb6{bottom:608.746423pt;}
.y105{bottom:611.466422pt;}
.yb8{bottom:612.106412pt;}
.yb9{bottom:612.266412pt;}
.y30{bottom:613.066421pt;}
.ybb{bottom:613.706413pt;}
.y24e{bottom:614.666421pt;}
.yb7{bottom:616.266414pt;}
.y1d0{bottom:616.586420pt;}
.y1e{bottom:616.746420pt;}
.y1f5{bottom:618.186419pt;}
.y22b{bottom:619.786419pt;}
.y169{bottom:620.426418pt;}
.y67{bottom:625.386417pt;}
.y135{bottom:627.466416pt;}
.y2f{bottom:628.426415pt;}
.y104{bottom:629.866415pt;}
.y1d{bottom:630.346415pt;}
.y19e{bottom:634.506413pt;}
.y1f4{bottom:636.586412pt;}
.y168{bottom:638.826411pt;}
.y22a{bottom:639.626411pt;}
.y1d1{bottom:640.266411pt;}
.y2e{bottom:643.786409pt;}
.y1c{bottom:643.946409pt;}
.y24d{bottom:645.066409pt;}
.y103{bottom:648.266407pt;}
.y1c8{bottom:654.186405pt;}
.y166{bottom:654.507200pt;}
.y1b{bottom:656.426404pt;}
.y2d{bottom:659.146403pt;}
.y229{bottom:659.466403pt;}
.y19d{bottom:659.946403pt;}
.y66{bottom:662.186402pt;}
.y1d2{bottom:663.946401pt;}
.yb4{bottom:664.586394pt;}
.y24c{bottom:665.066401pt;}
.y1f3{bottom:665.706400pt;}
.y102{bottom:666.666400pt;}
.yb5{bottom:667.946396pt;}
.yb3{bottom:669.386397pt;}
.yb2{bottom:671.146398pt;}
.y164{bottom:673.547200pt;}
.y2c{bottom:674.346397pt;}
.y65{bottom:680.586394pt;}
.y24b{bottom:684.906393pt;}
.y101{bottom:685.066393pt;}
.y1a{bottom:686.186392pt;}
.y1d3{bottom:687.626392pt;}
.y228{bottom:688.426391pt;}
.y2b{bottom:689.706391pt;}
.y162{bottom:692.587200pt;}
.y1f2{bottom:694.666389pt;}
.y64{bottom:698.986387pt;}
.y100{bottom:703.466385pt;}
.y2a{bottom:705.066385pt;}
.y227{bottom:706.826384pt;}
.y160{bottom:711.627200pt;}
.y1f1{bottom:713.066381pt;}
.y24a{bottom:715.306381pt;}
.y19{bottom:716.106380pt;}
.y63{bottom:717.386380pt;}
.y1b7{bottom:719.786379pt;}
.yb0{bottom:720.266367pt;}
.y29{bottom:720.426378pt;}
.yff{bottom:721.866378pt;}
.y226{bottom:725.226377pt;}
.yb1{bottom:726.506371pt;}
.yaf{bottom:726.666371pt;}
.y15e{bottom:730.667200pt;}
.yae{bottom:731.626374pt;}
.y249{bottom:735.306373pt;}
.y28{bottom:735.786372pt;}
.y1b6{bottom:738.186371pt;}
.y1f0{bottom:738.666371pt;}
.yfe{bottom:740.266371pt;}
.y18{bottom:745.866368pt;}
.y21c{bottom:750.666366pt;}
.y27{bottom:751.146366pt;}
.y15d{bottom:752.586366pt;}
.y62{bottom:754.186365pt;}
.y225{bottom:754.346365pt;}
.y248{bottom:755.146365pt;}
.y17{bottom:759.626363pt;}
.y1b5{bottom:763.786361pt;}
.y25{bottom:764.906361pt;}
.y21b{bottom:765.226361pt;}
.y26{bottom:766.346360pt;}
.y15b{bottom:768.107200pt;}
.yfd{bottom:769.386359pt;}
.y61{bottom:772.586358pt;}
.y224{bottom:772.746358pt;}
.yac{bottom:777.386331pt;}
.ya9{bottom:777.386344pt;}
.y21a{bottom:779.946355pt;}
.yab{bottom:783.786335pt;}
.ya8{bottom:783.786348pt;}
.y11{bottom:784.907200pt;}
.yad{bottom:785.386322pt;}
.yaa{bottom:785.386336pt;}
.y247{bottom:785.546352pt;}
.y14{bottom:785.707200pt;}
.y159{bottom:787.147200pt;}
.y13{bottom:788.906351pt;}
.ya7{bottom:789.066351pt;}
.y16{bottom:790.186351pt;}
.y60{bottom:790.986350pt;}
.y223{bottom:791.146350pt;}
.yfc{bottom:794.826349pt;}
.y213{bottom:795.466348pt;}
.y246{bottom:805.386345pt;}
.y157{bottom:806.347200pt;}
.y5f{bottom:809.386343pt;}
.y10{bottom:817.706340pt;}
.y222{bottom:821.706338pt;}
.y245{bottom:825.386337pt;}
.y5e{bottom:827.786336pt;}
.y156{bottom:828.266335pt;}
.y214{bottom:830.986334pt;}
.yf{bottom:836.106332pt;}
.ya5{bottom:838.026306pt;}
.ya2{bottom:838.026320pt;}
.y221{bottom:841.546330pt;}
.ya4{bottom:844.426310pt;}
.ya1{bottom:844.426323pt;}
.y21d{bottom:845.866328pt;}
.y5d{bottom:846.186328pt;}
.y155{bottom:847.306328pt;}
.ya0{bottom:850.026327pt;}
.ya3{bottom:851.306314pt;}
.ya6{bottom:853.706236pt;}
.y244{bottom:855.786324pt;}
.y220{bottom:861.386322pt;}
.y153{bottom:862.827200pt;}
.y5c{bottom:864.586321pt;}
.ye{bottom:865.226321pt;}
.y215{bottom:866.506320pt;}
.y212{bottom:869.546319pt;}
.y243{bottom:875.626316pt;}
.y151{bottom:881.867200pt;}
.y5b{bottom:882.986313pt;}
.y21f{bottom:890.506310pt;}
.yd{bottom:894.186309pt;}
.y242{bottom:895.626308pt;}
.y5a{bottom:901.386306pt;}
.y216{bottom:902.026306pt;}
.y150{bottom:903.786305pt;}
.yc{bottom:912.586302pt;}
.y9d{bottom:918.826299pt;}
.y21e{bottom:919.466299pt;}
.y59{bottom:919.786299pt;}
.y14f{bottom:922.826298pt;}
.y241{bottom:924.586297pt;}
.y9e{bottom:928.586292pt;}
.y9f{bottom:931.786294pt;}
.y47{bottom:933.546293pt;}
.y4c{bottom:934.346293pt;}
.y217{bottom:937.546292pt;}
.y58{bottom:938.186291pt;}
.y14d{bottom:938.347200pt;}
.y240{bottom:942.986289pt;}
.y4b{bottom:950.666286pt;}
.y57{bottom:956.586284pt;}
.y14b{bottom:957.547200pt;}
.y23f{bottom:961.386282pt;}
.y4a{bottom:966.986280pt;}
.y218{bottom:973.066277pt;}
.y56{bottom:974.986277pt;}
.y149{bottom:975.627200pt;}
.y148{bottom:979.466275pt;}
.y97{bottom:986.511507pt;}
.y98{bottom:986.826273pt;}
.y9a{bottom:987.146274pt;}
.y96{bottom:988.106271pt;}
.y9b{bottom:988.426273pt;}
.y49{bottom:991.146270pt;}
.y23e{bottom:991.946270pt;}
.y55{bottom:993.386269pt;}
.y99{bottom:997.866267pt;}
.y211{bottom:998.346267pt;}
.y9c{bottom:998.666266pt;}
.y4d{bottom:1002.347200pt;}
.y48{bottom:1007.466264pt;}
.y219{bottom:1008.586263pt;}
.y54{bottom:1011.786262pt;}
.y6{bottom:1037.546252pt;}
.y3{bottom:1040.266251pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.280000pt;}
.h17{height:5.440000pt;}
.h16{height:14.400000pt;}
.hd{height:17.120000pt;}
.ha{height:17.920000pt;}
.h6{height:18.080000pt;}
.h18{height:18.240000pt;}
.h15{height:29.794051pt;}
.hc{height:31.992175pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:34.453111pt;}
.h10{height:34.945299pt;}
.h12{height:35.404673pt;}
.hf{height:35.819673pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h13{height:38.569047pt;}
.hb{height:39.243734pt;}
.he{height:39.703734pt;}
.h2{height:42.262483pt;}
.h8{height:43.374983pt;}
.h19{height:44.437482pt;}
.h9{height:44.468732pt;}
.h1a{height:45.937482pt;}
.h14{height:46.593731pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w3{width:4.000000pt;}
.w21{width:5.280000pt;}
.w3b{width:6.720000pt;}
.w52{width:6.880000pt;}
.wa{width:8.000000pt;}
.w2{width:8.640000pt;}
.w10{width:9.440000pt;}
.w8{width:9.760000pt;}
.w42{width:12.000000pt;}
.w7{width:12.160000pt;}
.w25{width:15.360000pt;}
.w23{width:16.000000pt;}
.w2c{width:20.000000pt;}
.w2e{width:21.280000pt;}
.w11{width:23.200000pt;}
.w20{width:24.480000pt;}
.w15{width:25.760000pt;}
.w4c{width:28.480000pt;}
.w9{width:28.960000pt;}
.w22{width:29.440000pt;}
.w6{width:30.080000pt;}
.w43{width:30.240000pt;}
.w54{width:31.840000pt;}
.w3d{width:32.000000pt;}
.wc{width:35.520000pt;}
.w29{width:36.000000pt;}
.w4e{width:36.480000pt;}
.w39{width:40.000000pt;}
.w38{width:41.280000pt;}
.w45{width:41.760000pt;}
.w35{width:42.560000pt;}
.w37{width:42.720000pt;}
.w4f{width:47.200000pt;}
.w41{width:48.480000pt;}
.w3f{width:49.760000pt;}
.w30{width:50.240000pt;}
.w3c{width:50.720000pt;}
.w1f{width:51.840000pt;}
.w4{width:52.000000pt;}
.w14{width:54.240000pt;}
.w4a{width:58.560000pt;}
.w3a{width:59.520000pt;}
.w57{width:60.480000pt;}
.w40{width:64.000000pt;}
.w4b{width:64.800000pt;}
.w44{width:66.240000pt;}
.w4d{width:67.360000pt;}
.w46{width:69.600000pt;}
.w24{width:70.240000pt;}
.w17{width:72.320000pt;}
.w48{width:74.240000pt;}
.wf{width:74.560000pt;}
.w56{width:75.360000pt;}
.wd{width:76.480000pt;}
.w19{width:77.760000pt;}
.w1c{width:79.520000pt;}
.w1b{width:80.320000pt;}
.w47{width:80.960000pt;}
.w55{width:81.760000pt;}
.w2b{width:82.240000pt;}
.wb{width:84.800000pt;}
.w53{width:88.480000pt;}
.w3e{width:89.280000pt;}
.w51{width:89.760000pt;}
.w50{width:90.240000pt;}
.w49{width:91.680000pt;}
.w34{width:102.720000pt;}
.w26{width:103.520000pt;}
.w28{width:103.840000pt;}
.w12{width:104.800000pt;}
.w2a{width:114.240000pt;}
.w27{width:118.880000pt;}
.w59{width:119.040000pt;}
.w36{width:119.200000pt;}
.w13{width:120.800000pt;}
.we{width:121.280000pt;}
.w2d{width:124.960000pt;}
.w33{width:128.000000pt;}
.w31{width:136.960000pt;}
.w18{width:140.000000pt;}
.w2f{width:147.840000pt;}
.w1e{width:149.600000pt;}
.w1a{width:150.240000pt;}
.w1d{width:150.560000pt;}
.w58{width:151.040000pt;}
.w32{width:154.240000pt;}
.w16{width:156.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x25{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x18{left:87.199965pt;}
.x16{left:88.959964pt;}
.x15{left:91.199964pt;}
.x1{left:96.479961pt;}
.x2{left:98.401447pt;}
.x14{left:101.279959pt;}
.x1a{left:102.239959pt;}
.x2e{left:103.519959pt;}
.x8{left:105.919958pt;}
.x2d{left:107.039957pt;}
.x2f{left:107.999957pt;}
.xd{left:109.280000pt;}
.x2b{left:111.519955pt;}
.xb{left:113.119955pt;}
.x73{left:115.200619pt;}
.x5{left:117.919953pt;}
.x30{left:121.439951pt;}
.xbe{left:123.999950pt;}
.xb0{left:127.839949pt;}
.x19{left:130.399948pt;}
.xb7{left:131.359947pt;}
.x79{left:135.520000pt;}
.x17{left:139.359944pt;}
.xa9{left:141.279943pt;}
.x2c{left:143.999942pt;}
.x8c{left:145.280000pt;}
.x9a{left:147.359941pt;}
.x9b{left:149.599940pt;}
.x1c{left:151.999849pt;}
.x7c{left:153.280000pt;}
.xab{left:157.759937pt;}
.xaa{left:159.199936pt;}
.xe{left:161.280000pt;}
.xf{left:164.480000pt;}
.x47{left:168.000000pt;}
.x82{left:169.760000pt;}
.x8f{left:170.880000pt;}
.x31{left:172.959931pt;}
.x4d{left:176.000000pt;}
.x86{left:177.760000pt;}
.xb9{left:180.319928pt;}
.xb8{left:182.879927pt;}
.x46{left:184.001308pt;}
.x89{left:185.760000pt;}
.x93{left:192.000000pt;}
.x92{left:193.120000pt;}
.x10{left:194.559922pt;}
.x11{left:196.959921pt;}
.x45{left:201.119196pt;}
.xa6{left:206.719917pt;}
.x9c{left:208.959916pt;}
.x1b{left:214.239873pt;}
.x9e{left:219.519912pt;}
.x33{left:220.479912pt;}
.x9d{left:222.079911pt;}
.x50{left:223.520000pt;}
.x8a{left:228.000000pt;}
.x94{left:229.280000pt;}
.xa5{left:230.873619pt;}
.x12{left:231.840000pt;}
.x32{left:233.119907pt;}
.xa{left:235.999906pt;}
.x1e{left:238.239905pt;}
.x98{left:240.639904pt;}
.x51{left:246.720000pt;}
.x1d{left:249.599900pt;}
.x13{left:251.193233pt;}
.x26{left:252.799899pt;}
.x70{left:255.840000pt;}
.x6d{left:257.440000pt;}
.x9{left:260.479319pt;}
.x35{left:263.519895pt;}
.x83{left:265.760000pt;}
.x21{left:268.479912pt;}
.x7d{left:272.480000pt;}
.x71{left:274.400000pt;}
.x34{left:275.999890pt;}
.x87{left:282.560000pt;}
.x5f{left:285.120000pt;}
.xac{left:287.839885pt;}
.x74{left:290.080000pt;}
.x59{left:294.400000pt;}
.x63{left:297.120000pt;}
.x75{left:298.080000pt;}
.x48{left:299.680000pt;}
.x95{left:304.640000pt;}
.xba{left:311.199876pt;}
.x7a{left:313.280000pt;}
.x37{left:315.039874pt;}
.x60{left:318.400000pt;}
.x54{left:319.680000pt;}
.x36{left:327.679869pt;}
.x61{left:329.120000pt;}
.x9f{left:330.719868pt;}
.xc{left:332.799513pt;}
.xb6{left:334.079866pt;}
.x4e{left:336.160000pt;}
.x76{left:338.239865pt;}
.x65{left:339.840000pt;}
.x6b{left:342.880000pt;}
.x20{left:345.119862pt;}
.x69{left:351.840000pt;}
.x22{left:355.199858pt;}
.x99{left:357.439857pt;}
.x67{left:362.720000pt;}
.x57{left:365.120000pt;}
.x40{left:371.039852pt;}
.x1f{left:373.119650pt;}
.x7b{left:376.799849pt;}
.x96{left:380.320000pt;}
.x6e{left:381.920000pt;}
.x6{left:384.319846pt;}
.x88{left:386.560000pt;}
.x8b{left:392.800000pt;}
.x38{left:396.319841pt;}
.x84{left:397.280000pt;}
.xb4{left:399.039840pt;}
.xb5{left:403.999838pt;}
.x7e{left:417.120000pt;}
.x77{left:420.960000pt;}
.xad{left:430.719828pt;}
.x3a{left:435.199826pt;}
.x23{left:441.279823pt;}
.xa1{left:442.239823pt;}
.xa0{left:444.159822pt;}
.xbb{left:446.079822pt;}
.x39{left:447.839821pt;}
.x49{left:451.200000pt;}
.xae{left:454.719818pt;}
.xbc{left:455.679818pt;}
.x27{left:457.599817pt;}
.x62{left:459.200000pt;}
.x28{left:461.599815pt;}
.xa7{left:466.719813pt;}
.x7f{left:467.840000pt;}
.x64{left:471.200000pt;}
.x66{left:472.480000pt;}
.x55{left:476.960000pt;}
.x41{left:482.719807pt;}
.x4a{left:486.720000pt;}
.x4b{left:490.720000pt;}
.x6f{left:493.920000pt;}
.x3c{left:495.359802pt;}
.x68{left:501.440000pt;}
.x5b{left:503.040000pt;}
.x53{left:505.440000pt;}
.x3b{left:507.999797pt;}
.xb1{left:513.279795pt;}
.xb2{left:517.119793pt;}
.x8d{left:518.400000pt;}
.x29{left:520.639792pt;}
.x2a{left:523.359791pt;}
.x4f{left:525.760000pt;}
.x5c{left:527.520000pt;}
.x56{left:528.960000pt;}
.x58{left:531.520000pt;}
.x5d{left:532.800000pt;}
.x80{left:540.640000pt;}
.x6c{left:553.920000pt;}
.x52{left:556.000000pt;}
.x42{left:557.119777pt;}
.xa3{left:559.199776pt;}
.xaf{left:560.799776pt;}
.x5e{left:562.240000pt;}
.xa2{left:565.919774pt;}
.x4c{left:567.200000pt;}
.x24{left:570.240000pt;}
.x3d{left:582.399767pt;}
.xbd{left:584.159766pt;}
.x81{left:586.719765pt;}
.x8e{left:590.720000pt;}
.x4{left:592.159763pt;}
.x78{left:594.399762pt;}
.xa8{left:596.799761pt;}
.x5a{left:601.760000pt;}
.x6a{left:605.440000pt;}
.x91{left:615.200000pt;}
.x90{left:633.920000pt;}
.x44{left:654.239516pt;}
.x72{left:663.039650pt;}
.x85{left:667.680000pt;}
.x43{left:678.079729pt;}
.xa4{left:686.559090pt;}
.x3f{left:690.719724pt;}
.x7{left:693.440000pt;}
.xb3{left:695.999722pt;}
.x3{left:697.759721pt;}
.x97{left:699.999720pt;}
.x3e{left:703.359719pt;}
}




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