
    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_6b7edae88128b292b22a8bed.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_049a839e8a256b40cf6e4d86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_759ca37053d1437d07d5b084.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_f2e9440df3fbe7149d757feb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c8c3b6afbc33dffbd109a1cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_71241554d0f871b29a8795f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_2941c94c8cdf37386045cbf7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_804e9ede0a58fb22fe11d866.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_d7c845f0e6bccbfca8337510.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_609f4e5a68b7337672784062.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1ced6b00ce8ec4c0a1ef1b39.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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_0d23ef02d2501f572a829560.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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;}
.m6{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.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);}
.m5{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.321023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321023,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.335288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335288,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.369259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369259,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-56.333845px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:16.559984px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls3a{letter-spacing:-0.666000px;}
.ls11{letter-spacing:-0.612000px;}
.ls20{letter-spacing:-0.569211px;}
.lse{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.460200px;}
.ls1b{letter-spacing:-0.427523px;}
.ls25{letter-spacing:-0.427514px;}
.ls34{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls35{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.053280px;}
.ls30{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.331920px;}
.ls4{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.460200px;}
.ls2d{letter-spacing:0.466560px;}
.ls2e{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.900000px;}
.ls32{letter-spacing:7.200000px;}
.ls39{letter-spacing:16.506720px;}
.lsb{letter-spacing:20.826720px;}
.ls38{letter-spacing:46.026720px;}
.ls37{letter-spacing:46.170720px;}
.ls21{letter-spacing:84.847970px;}
.ls2b{letter-spacing:85.385798px;}
.ls28{letter-spacing:87.521614px;}
.ls1c{letter-spacing:88.057816px;}
.ls26{letter-spacing:88.234138px;}
.ls15{letter-spacing:118.491719px;}
.ls17{letter-spacing:118.636661px;}
.ls14{letter-spacing:119.171654px;}
.ls1f{letter-spacing:121.016566px;}
.ls13{letter-spacing:121.486813px;}
.ls29{letter-spacing:121.606478px;}
.ls24{letter-spacing:122.910272px;}
.ls2a{letter-spacing:122.912797px;}
.ls1a{letter-spacing:123.031554px;}
.ls23{letter-spacing:123.622796px;}
.lsa{letter-spacing:124.650720px;}
.ls1e{letter-spacing:125.404232px;}
.ls19{letter-spacing:126.178596px;}
.ls5{letter-spacing:126.180000px;}
.ls31{letter-spacing:126.324000px;}
.ls33{letter-spacing:135.042000px;}
.ls10{letter-spacing:154.146720px;}
.ls1{letter-spacing:154.170720px;}
.ls18{letter-spacing:201.060000px;}
.ls27{letter-spacing:354.777236px;}
.ls2c{letter-spacing:363.988139px;}
.ls1d{letter-spacing:372.954241px;}
.ls22{letter-spacing:373.959571px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.146400px;}
.wse{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.075600px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.479800px;}
.ws1a{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws12{word-spacing:-8.136000px;}
.ws7{word-spacing:0.000000px;}
.ws11{word-spacing:1.082400px;}
.ws17{word-spacing:2.402400px;}
.ws14{word-spacing:9.002400px;}
.ws10{word-spacing:31.312080px;}
.ws16{word-spacing:32.620080px;}
.ws13{word-spacing:39.220080px;}
.ws19{word-spacing:66.902400px;}
.ws18{word-spacing:97.120080px;}
.ws15{word-spacing:109.194000px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1588.921920px;}
._4{margin-left:-1170.942000px;}
._40{margin-left:-1094.262720px;}
._6{margin-left:-1085.872320px;}
._8{margin-left:-49.680000px;}
._9{margin-left:-41.760000px;}
._7{margin-left:-33.120000px;}
._a{margin-left:-31.680000px;}
._c{margin-left:-8.438160px;}
._5{margin-left:-6.955200px;}
._25{margin-left:-5.813760px;}
._d{margin-left:-4.227360px;}
._30{margin-left:-3.197280px;}
._b{margin-left:-2.195520px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._13{width:2.569680px;}
._e{width:3.653040px;}
._12{width:4.673520px;}
._11{width:5.856480px;}
._f{width:7.136160px;}
._10{width:8.375760px;}
._18{width:9.740880px;}
._15{width:11.473920px;}
._16{width:13.266720px;}
._28{width:15.973920px;}
._17{width:17.210880px;}
._1a{width:18.579120px;}
._14{width:19.823760px;}
._19{width:21.095280px;}
._2c{width:22.292640px;}
._27{width:23.306400px;}
._22{width:24.979680px;}
._29{width:26.951760px;}
._24{width:28.845360px;}
._23{width:29.880000px;}
._1d{width:31.006080px;}
._1b{width:32.382720px;}
._1c{width:33.838560px;}
._26{width:35.308800px;}
._1e{width:36.692640px;}
._1f{width:37.701360px;}
._2a{width:38.844000px;}
._2b{width:40.696560px;}
._2f{width:41.772240px;}
._21{width:43.027200px;}
._20{width:44.280000px;}
._34{width:46.282800px;}
._33{width:47.621520px;}
._32{width:48.883680px;}
._38{width:50.676480px;}
._2e{width:52.290000px;}
._2d{width:53.305920px;}
._43{width:54.365040px;}
._42{width:55.756080px;}
._39{width:57.060000px;}
._36{width:58.863600px;}
._47{width:60.700320px;}
._46{width:61.777200px;}
._3d{width:66.142320px;}
._3c{width:67.170240px;}
._31{width:69.978960px;}
._37{width:71.293680px;}
._49{width:74.759760px;}
._45{width:76.020960px;}
._44{width:79.899120px;}
._35{width:81.975120px;}
._41{width:100.321440px;}
._3b{width:113.940000px;}
._3e{width:123.862320px;}
._48{width:146.531520px;}
._3a{width:201.204000px;}
._3f{width:226.548000px;}
._4b{width:319.529520px;}
._4a{width:322.245120px;}
._4d{width:329.617440px;}
._4c{width:391.203840px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs8{font-size:41.855367px;}
.fsa{font-size:41.914778px;}
.fs6{font-size:41.915639px;}
.fsd{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:72.319405px;}
.fsb{font-size:72.422058px;}
.fs7{font-size:72.423545px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd1{bottom:3.825867px;}
.ye8{bottom:3.831297px;}
.ybe{bottom:3.831376px;}
.y144{bottom:6.114000px;}
.y124{bottom:6.120000px;}
.y199{bottom:6.150000px;}
.y132{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y3f{bottom:6.840000px;}
.y11f{bottom:7.740000px;}
.yd5{bottom:8.466564px;}
.yec{bottom:8.478582px;}
.yc2{bottom:8.478756px;}
.y12c{bottom:9.360000px;}
.y12a{bottom:9.540000px;}
.y197{bottom:10.515000px;}
.y140{bottom:10.800000px;}
.y9{bottom:11.736000px;}
.y18d{bottom:11.955000px;}
.y136{bottom:12.060000px;}
.y126{bottom:12.240000px;}
.y1b5{bottom:12.285000px;}
.y1be{bottom:12.414000px;}
.y14b{bottom:12.420000px;}
.y8{bottom:12.456000px;}
.y1bc{bottom:12.960000px;}
.y1c8{bottom:13.320000px;}
.y1cb{bottom:15.330000px;}
.y184{bottom:15.450000px;}
.y18f{bottom:15.510000px;}
.y1dc{bottom:15.840000px;}
.y148{bottom:16.020000px;}
.y16c{bottom:16.560000px;}
.y16a{bottom:17.280000px;}
.y167{bottom:17.460000px;}
.yd3{bottom:17.890114px;}
.yea{bottom:17.915508px;}
.yc0{bottom:17.915876px;}
.y17f{bottom:18.930000px;}
.yd2{bottom:22.529775px;}
.ye9{bottom:22.561754px;}
.ybf{bottom:22.562217px;}
.y128{bottom:25.920000px;}
.y149{bottom:25.950000px;}
.y123{bottom:25.965000px;}
.y12e{bottom:26.100000px;}
.y191{bottom:28.050000px;}
.yd0{bottom:29.969536px;}
.ye7{bottom:30.012076px;}
.ybd{bottom:30.012692px;}
.y18a{bottom:32.550000px;}
.y1dd{bottom:32.760000px;}
.y1c5{bottom:33.915000px;}
.yd4{bottom:34.610679px;}
.yeb{bottom:34.659806px;}
.yc1{bottom:34.660518px;}
.y1d8{bottom:36.435000px;}
.ya{bottom:36.900000px;}
.y1b8{bottom:38.160000px;}
.y1ba{bottom:38.340000px;}
.y17e{bottom:39.525000px;}
.y1ca{bottom:40.650000px;}
.y183{bottom:40.755000px;}
.y18e{bottom:40.830000px;}
.y134{bottom:45.750000px;}
.y122{bottom:45.765000px;}
.y186{bottom:47.700000px;}
.y1c0{bottom:49.065000px;}
.y1cd{bottom:51.585000px;}
.y6{bottom:52.380000px;}
.y176{bottom:54.720000px;}
.y3c{bottom:60.000000px;}
.y192{bottom:60.945000px;}
.y121{bottom:65.745000px;}
.y1c9{bottom:65.955000px;}
.y182{bottom:66.060000px;}
.y18c{bottom:77.550000px;}
.y1c7{bottom:79.200000px;}
.y1d3{bottom:79.380000px;}
.y146{bottom:81.396000px;}
.y1db{bottom:82.005000px;}
.y18b{bottom:82.590000px;}
.y3b{bottom:82.656000px;}
.y76{bottom:83.916000px;}
.y198{bottom:84.750000px;}
.y1ce{bottom:84.930000px;}
.yf0{bottom:86.076000px;}
.y1da{bottom:88.665000px;}
.y177{bottom:89.970000px;}
.y173{bottom:91.296000px;}
.y39{bottom:92.016000px;}
.yb9{bottom:92.916000px;}
.y181{bottom:92.985000px;}
.y193{bottom:93.855000px;}
.ya7{bottom:94.716000px;}
.y11c{bottom:97.416000px;}
.y187{bottom:100.725000px;}
.y145{bottom:101.916000px;}
.y1c3{bottom:102.315000px;}
.y75{bottom:103.716000px;}
.yef{bottom:105.876000px;}
.y1c6{bottom:106.920000px;}
.y1d4{bottom:107.130000px;}
.y172{bottom:111.096000px;}
.y38{bottom:111.816000px;}
.yb8{bottom:112.716000px;}
.y1d9{bottom:112.785000px;}
.y17c{bottom:113.430000px;}
.ya6{bottom:114.696000px;}
.y11b{bottom:117.216000px;}
.y1cf{bottom:118.260000px;}
.y180{bottom:120.705000px;}
.y74{bottom:123.696000px;}
.y178{bottom:125.205000px;}
.yee{bottom:125.856000px;}
.y194{bottom:126.720000px;}
.y1c1{bottom:128.910000px;}
.y171{bottom:130.896000px;}
.y37{bottom:131.616000px;}
.y1df{bottom:132.336000px;}
.yb7{bottom:132.696000px;}
.ya5{bottom:134.496000px;}
.y1d5{bottom:134.895000px;}
.y11a{bottom:137.016000px;}
.y1bd{bottom:137.736000px;}
.y73{bottom:143.496000px;}
.yed{bottom:145.836000px;}
.y143{bottom:146.376000px;}
.y170{bottom:150.690000px;}
.y1d0{bottom:151.560000px;}
.y36{bottom:151.590000px;}
.yb6{bottom:152.490000px;}
.y188{bottom:153.795000px;}
.ya4{bottom:154.290000px;}
.y1c4{bottom:155.550000px;}
.y119{bottom:156.810000px;}
.y195{bottom:159.630000px;}
.y179{bottom:160.455000px;}
.ye6{bottom:162.090000px;}
.y1d6{bottom:162.690000px;}
.y72{bottom:163.290000px;}
.y1bb{bottom:164.370000px;}
.y142{bottom:166.890000px;}
.y16f{bottom:170.670000px;}
.y35{bottom:171.390000px;}
.y17d{bottom:172.185000px;}
.yb5{bottom:172.290000px;}
.ya3{bottom:174.090000px;}
.y118{bottom:176.790000px;}
.y71{bottom:183.090000px;}
.ye5{bottom:184.530000px;}
.y1d1{bottom:184.890000px;}
.y1d7{bottom:190.440000px;}
.y16e{bottom:190.470000px;}
.y141{bottom:190.830000px;}
.y34{bottom:191.190000px;}
.y1b9{bottom:191.550000px;}
.yb4{bottom:192.090000px;}
.y196{bottom:192.525000px;}
.ya2{bottom:193.890000px;}
.y17a{bottom:195.690000px;}
.y117{bottom:196.590000px;}
.y70{bottom:202.890000px;}
.y189{bottom:206.820000px;}
.y1c2{bottom:208.770000px;}
.y16d{bottom:209.910000px;}
.y174{bottom:210.270000px;}
.y33{bottom:210.990000px;}
.yb3{bottom:211.890000px;}
.ya1{bottom:213.870000px;}
.y116{bottom:216.390000px;}
.y1d2{bottom:218.235000px;}
.ye4{bottom:220.890000px;}
.y6f{bottom:222.870000px;}
.y32{bottom:230.790000px;}
.y17b{bottom:230.940000px;}
.y13f{bottom:231.150000px;}
.yb2{bottom:231.870000px;}
.ya0{bottom:233.670000px;}
.y115{bottom:236.190000px;}
.ye3{bottom:240.690000px;}
.y6e{bottom:242.670000px;}
.y1b7{bottom:244.110000px;}
.y16b{bottom:244.470000px;}
.y31{bottom:250.770000px;}
.yb1{bottom:251.670000px;}
.y9f{bottom:253.470000px;}
.y114{bottom:255.990000px;}
.y13e{bottom:256.350000px;}
.ye2{bottom:260.490000px;}
.y6d{bottom:262.470000px;}
.y30{bottom:270.570000px;}
.yb0{bottom:271.470000px;}
.y9e{bottom:273.270000px;}
.y169{bottom:275.430000px;}
.y113{bottom:275.970000px;}
.ye1{bottom:280.290000px;}
.y6c{bottom:282.270000px;}
.y13d{bottom:282.990000px;}
.y2f{bottom:290.370000px;}
.yaf{bottom:291.270000px;}
.y9d{bottom:293.070000px;}
.y112{bottom:295.770000px;}
.y1b6{bottom:296.670000px;}
.ye0{bottom:300.090000px;}
.y6b{bottom:302.070000px;}
.y168{bottom:307.110000px;}
.y2e{bottom:310.170000px;}
.yae{bottom:311.070000px;}
.y9c{bottom:313.050000px;}
.y111{bottom:315.570000px;}
.ydf{bottom:320.070000px;}
.y6a{bottom:322.050000px;}
.y1b4{bottom:323.310000px;}
.y2d{bottom:330.015000px;}
.yad{bottom:331.095000px;}
.y9b{bottom:332.535000px;}
.y110{bottom:335.415000px;}
.y166{bottom:339.015000px;}
.yde{bottom:339.915000px;}
.y69{bottom:341.895000px;}
.y13c{bottom:343.335000px;}
.y2c{bottom:349.995000px;}
.yac{bottom:350.895000px;}
.y10f{bottom:355.215000px;}
.y1b3{bottom:355.755000px;}
.ydd{bottom:359.715000px;}
.y68{bottom:361.695000px;}
.y2b{bottom:369.795000px;}
.yab{bottom:370.695000px;}
.y165{bottom:370.875000px;}
.y13b{bottom:371.415000px;}
.y10e{bottom:375.195000px;}
.ydc{bottom:379.515000px;}
.y67{bottom:381.495000px;}
.y2a{bottom:389.595000px;}
.yaa{bottom:390.495000px;}
.y164{bottom:391.395000px;}
.y10d{bottom:394.995000px;}
.ydb{bottom:399.315000px;}
.y66{bottom:401.295000px;}
.y13a{bottom:405.975000px;}
.y29{bottom:409.395000px;}
.ya9{bottom:410.295000px;}
.y10c{bottom:414.795000px;}
.y1b2{bottom:415.155000px;}
.y163{bottom:417.855000px;}
.yda{bottom:419.295000px;}
.y65{bottom:420.915000px;}
.y82{bottom:421.275000px;}
.y1af{bottom:424.875000px;}
.y28{bottom:428.835000px;}
.y3a{bottom:429.195000px;}
.y139{bottom:429.735000px;}
.ya8{bottom:430.275000px;}
.y10b{bottom:434.595000px;}
.y1b1{bottom:434.955000px;}
.y151{bottom:437.655000px;}
.yd9{bottom:439.095000px;}
.y81{bottom:441.075000px;}
.y1ae{bottom:444.855000px;}
.y27{bottom:448.815000px;}
.y64{bottom:450.075000px;}
.y162{bottom:451.515000px;}
.y1b0{bottom:451.695000px;}
.y1bf{bottom:452.700000px;}
.y10a{bottom:454.395000px;}
.y150{bottom:457.455000px;}
.yd8{bottom:458.895000px;}
.y80{bottom:460.875000px;}
.y1ad{bottom:464.655000px;}
.y26{bottom:468.975000px;}
.y63{bottom:469.875000px;}
.y138{bottom:470.235000px;}
.y161{bottom:471.315000px;}
.y109{bottom:474.375000px;}
.y14f{bottom:477.255000px;}
.yd7{bottom:478.695000px;}
.y7f{bottom:480.675000px;}
.y1ac{bottom:484.455000px;}
.y62{bottom:489.675000px;}
.y25{bottom:490.935000px;}
.y160{bottom:491.115000px;}
.y137{bottom:493.995000px;}
.y175{bottom:494.100000px;}
.y108{bottom:494.175000px;}
.yd6{bottom:498.495000px;}
.y7e{bottom:500.475000px;}
.y1ab{bottom:504.255000px;}
.y61{bottom:509.475000px;}
.y24{bottom:510.915000px;}
.y15f{bottom:511.095000px;}
.y107{bottom:513.975000px;}
.ycf{bottom:514.740000px;}
.y7d{bottom:520.455000px;}
.y1aa{bottom:524.055000px;}
.y60{bottom:529.455000px;}
.y23{bottom:530.715000px;}
.y15e{bottom:530.895000px;}
.y106{bottom:533.775000px;}
.y135{bottom:534.495000px;}
.yce{bottom:537.195000px;}
.y7c{bottom:540.255000px;}
.y1a9{bottom:544.035000px;}
.y5f{bottom:549.255000px;}
.y22{bottom:550.515000px;}
.y15d{bottom:550.695000px;}
.y105{bottom:553.575000px;}
.y7b{bottom:560.055000px;}
.y133{bottom:561.135000px;}
.y1a8{bottom:563.835000px;}
.y5e{bottom:569.055000px;}
.y21{bottom:570.315000px;}
.y15c{bottom:570.495000px;}
.ycd{bottom:573.555000px;}
.y7a{bottom:579.855000px;}
.y1a7{bottom:583.635000px;}
.y5d{bottom:588.855000px;}
.y20{bottom:590.115000px;}
.y15b{bottom:590.295000px;}
.ycc{bottom:593.355000px;}
.y79{bottom:599.685000px;}
.y1a6{bottom:603.465000px;}
.y5c{bottom:608.685000px;}
.y1f{bottom:610.125000px;}
.y15a{bottom:610.305000px;}
.ycb{bottom:613.185000px;}
.y78{bottom:619.305000px;}
.y8c{bottom:619.665000px;}
.y131{bottom:621.285000px;}
.y1a5{bottom:623.265000px;}
.y5b{bottom:628.665000px;}
.y1e{bottom:629.925000px;}
.y159{bottom:630.105000px;}
.yca{bottom:632.985000px;}
.y8b{bottom:639.465000px;}
.y1a4{bottom:643.245000px;}
.y130{bottom:647.745000px;}
.y5a{bottom:648.465000px;}
.y158{bottom:649.545000px;}
.y1d{bottom:649.725000px;}
.yc9{bottom:652.785000px;}
.y8a{bottom:659.265000px;}
.y1a3{bottom:662.685000px;}
.y12f{bottom:667.905000px;}
.y59{bottom:668.265000px;}
.y157{bottom:669.345000px;}
.y1c{bottom:669.525000px;}
.yc8{bottom:672.765000px;}
.y89{bottom:679.065000px;}
.y12d{bottom:682.305000px;}
.y156{bottom:686.085000px;}
.y190{bottom:686.160000px;}
.y58{bottom:688.065000px;}
.y1b{bottom:689.325000px;}
.yc7{bottom:692.565000px;}
.y1a2{bottom:697.245000px;}
.y88{bottom:698.865000px;}
.y57{bottom:707.865000px;}
.y1a{bottom:709.305000px;}
.yc6{bottom:712.365000px;}
.y1a1{bottom:717.945000px;}
.y87{bottom:718.845000px;}
.y12b{bottom:722.805000px;}
.y56{bottom:727.845000px;}
.y19{bottom:729.105000px;}
.yc5{bottom:732.165000px;}
.y1a0{bottom:738.465000px;}
.y86{bottom:738.645000px;}
.y129{bottom:746.565000px;}
.y1de{bottom:747.285000px;}
.y55{bottom:747.645000px;}
.y18{bottom:748.905000px;}
.yc4{bottom:751.965000px;}
.y85{bottom:758.445000px;}
.y19f{bottom:758.985000px;}
.y54{bottom:767.445000px;}
.ybc{bottom:768.165000px;}
.y17{bottom:768.705000px;}
.y127{bottom:770.505000px;}
.y104{bottom:771.945000px;}
.y84{bottom:778.245000px;}
.y19e{bottom:779.685000px;}
.y53{bottom:787.245000px;}
.y16{bottom:788.685000px;}
.yc3{bottom:790.665000px;}
.y103{bottom:791.745000px;}
.y83{bottom:797.685000px;}
.y9a{bottom:798.045000px;}
.y19d{bottom:800.205000px;}
.y52{bottom:807.045000px;}
.y15{bottom:810.645000px;}
.y125{bottom:810.825000px;}
.y102{bottom:811.545000px;}
.y99{bottom:818.025000px;}
.y19c{bottom:826.665000px;}
.y51{bottom:827.025000px;}
.y101{bottom:831.345000px;}
.y14{bottom:835.665000px;}
.y120{bottom:837.465000px;}
.y98{bottom:837.825000px;}
.y19b{bottom:846.465000px;}
.y50{bottom:846.825000px;}
.y13{bottom:850.425000px;}
.y100{bottom:851.145000px;}
.y97{bottom:857.625000px;}
.y19a{bottom:866.310000px;}
.y4f{bottom:866.670000px;}
.yff{bottom:871.170000px;}
.y12{bottom:875.490000px;}
.y96{bottom:877.470000px;}
.y1cc{bottom:883.620000px;}
.y4e{bottom:886.470000px;}
.y11{bottom:890.070000px;}
.yfe{bottom:890.970000px;}
.y95{bottom:897.270000px;}
.y155{bottom:898.890000px;}
.y4d{bottom:906.270000px;}
.yfd{bottom:910.770000px;}
.y10{bottom:915.090000px;}
.y94{bottom:917.250000px;}
.y11e{bottom:917.610000px;}
.y154{bottom:918.690000px;}
.y4c{bottom:926.250000px;}
.yfc{bottom:930.570000px;}
.yf{bottom:934.890000px;}
.y93{bottom:937.050000px;}
.y153{bottom:938.490000px;}
.ybb{bottom:945.690000px;}
.y4b{bottom:946.050000px;}
.ye{bottom:950.010000px;}
.yfb{bottom:950.370000px;}
.y152{bottom:955.230000px;}
.y185{bottom:955.980000px;}
.y92{bottom:956.850000px;}
.yba{bottom:965.490000px;}
.y4a{bottom:965.850000px;}
.yfa{bottom:970.350000px;}
.yd{bottom:971.430000px;}
.y14e{bottom:975.030000px;}
.y91{bottom:976.650000px;}
.y49{bottom:985.650000px;}
.yf9{bottom:990.150000px;}
.yc{bottom:994.470000px;}
.y90{bottom:996.450000px;}
.y48{bottom:1005.450000px;}
.y14d{bottom:1008.330000px;}
.yf8{bottom:1009.950000px;}
.y8f{bottom:1016.430000px;}
.y47{bottom:1025.430000px;}
.yb{bottom:1026.150000px;}
.yf7{bottom:1029.390000px;}
.y8e{bottom:1036.230000px;}
.y14c{bottom:1041.630000px;}
.y46{bottom:1045.230000px;}
.yf6{bottom:1049.550000px;}
.y5{bottom:1055.130000px;}
.y8d{bottom:1055.670000px;}
.y45{bottom:1065.030000px;}
.yf5{bottom:1069.530000px;}
.y14a{bottom:1074.930000px;}
.y44{bottom:1084.830000px;}
.y4{bottom:1088.970000px;}
.yf4{bottom:1089.330000px;}
.y43{bottom:1104.630000px;}
.y147{bottom:1108.230000px;}
.yf3{bottom:1109.130000px;}
.y3{bottom:1119.930000px;}
.y42{bottom:1124.610000px;}
.yf1{bottom:1125.240000px;}
.y11d{bottom:1144.080000px;}
.y41{bottom:1144.440000px;}
.yf2{bottom:1147.860000px;}
.y2{bottom:1150.740000px;}
.y77{bottom:1163.880000px;}
.y40{bottom:1164.240000px;}
.y1{bottom:1182.600000px;}
.y3e{bottom:1193.400000px;}
.y3d{bottom:1215.180000px;}
.h32{height:19.800000px;}
.h2e{height:19.980000px;}
.h27{height:21.420000px;}
.h4{height:21.816000px;}
.h2c{height:23.040000px;}
.h2b{height:23.220000px;}
.h31{height:24.480000px;}
.h30{height:25.740000px;}
.h3f{height:25.776000px;}
.h29{height:25.920000px;}
.h42{height:26.460000px;}
.hd{height:27.147656px;}
.h6{height:29.464453px;}
.h38{height:30.240000px;}
.h37{height:30.960000px;}
.h35{height:31.140000px;}
.h36{height:31.176000px;}
.h34{height:32.580000px;}
.hc{height:37.771172px;}
.h7{height:39.183750px;}
.h2a{height:39.600000px;}
.h33{height:39.636000px;}
.h2d{height:39.780000px;}
.h1d{height:41.058317px;}
.h1b{height:41.078754px;}
.h23{height:41.116596px;}
.h17{height:41.117441px;}
.h21{height:41.137062px;}
.h15{height:41.137907px;}
.hf{height:41.726953px;}
.he{height:42.164648px;}
.h12{height:45.549492px;}
.h5{height:46.736719px;}
.h3b{height:47.980898px;}
.h1f{height:50.213962px;}
.h25{height:50.285237px;}
.h19{height:50.286270px;}
.h26{height:50.364141px;}
.h40{height:51.660000px;}
.h41{height:51.840000px;}
.h1a{height:52.499311px;}
.h20{height:52.573830px;}
.h14{height:52.574910px;}
.h3a{height:53.709961px;}
.hb{height:58.651172px;}
.h2f{height:59.436000px;}
.h3e{height:59.439023px;}
.h10{height:60.226875px;}
.h45{height:61.423863px;}
.h11{height:62.211094px;}
.h13{height:65.010937px;}
.h8{height:65.884219px;}
.h3{height:66.757500px;}
.h9{height:67.565039px;}
.h1e{height:70.942229px;}
.h1c{height:70.977541px;}
.h24{height:71.042927px;}
.h18{height:71.044386px;}
.h22{height:71.078289px;}
.h16{height:71.079749px;}
.h2{height:78.367500px;}
.h28{height:79.416000px;}
.ha{height:96.508125px;}
.h3d{height:207.000000px;}
.h3c{height:221.940000px;}
.h43{height:224.100000px;}
.h44{height:234.000000px;}
.h39{height:247.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:42.696000px;}
.wf{width:47.520000px;}
.wd{width:48.780000px;}
.w19{width:49.320000px;}
.w23{width:49.356000px;}
.wc{width:50.220000px;}
.w4{width:55.296000px;}
.w24{width:55.440000px;}
.w1a{width:55.476000px;}
.w18{width:57.060000px;}
.w22{width:57.240000px;}
.w17{width:58.680000px;}
.wb{width:59.220000px;}
.w10{width:59.760000px;}
.w12{width:59.940000px;}
.w13{width:60.120000px;}
.w1b{width:62.100000px;}
.w1d{width:62.136000px;}
.w1e{width:62.280000px;}
.w1c{width:63.720000px;}
.w25{width:65.880000px;}
.w11{width:66.816000px;}
.w21{width:68.796000px;}
.w16{width:68.976000px;}
.w2a{width:73.440000px;}
.w26{width:73.620000px;}
.w2b{width:73.656000px;}
.w28{width:80.280000px;}
.w15{width:93.600000px;}
.w29{width:100.656000px;}
.w27{width:113.976000px;}
.w8{width:140.249304px;}
.w20{width:154.110000px;}
.w31{width:174.270000px;}
.w7{width:180.004247px;}
.wa{width:185.970000px;}
.w5{width:197.997127px;}
.w2c{width:201.450000px;}
.w6{width:210.751263px;}
.w34{width:243.750000px;}
.w2d{width:342.795000px;}
.w2e{width:345.600000px;}
.w32{width:349.455000px;}
.w2f{width:351.720000px;}
.w30{width:359.280000px;}
.w35{width:360.000000px;}
.w33{width:360.975000px;}
.w36{width:627.660000px;}
.w14{width:640.365000px;}
.w9{width:687.525000px;}
.w1f{width:707.370000px;}
.w3{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:1.524530px;}
.x2e{left:2.995413px;}
.x1b{left:4.015408px;}
.x26{left:5.263229px;}
.x35{left:7.740000px;}
.x5f{left:9.108000px;}
.x6e{left:10.440000px;}
.x2d{left:12.159870px;}
.x64{left:14.040000px;}
.x62{left:15.048000px;}
.x15{left:16.380000px;}
.x76{left:21.060000px;}
.x5e{left:22.788000px;}
.x7a{left:24.660000px;}
.x19{left:26.100454px;}
.x31{left:27.136786px;}
.x65{left:31.710000px;}
.x28{left:35.835397px;}
.x77{left:37.620000px;}
.x2f{left:41.400233px;}
.x23{left:42.477355px;}
.x1d{left:45.698689px;}
.x60{left:48.456000px;}
.x73{left:52.590000px;}
.x1{left:54.179987px;}
.x2b{left:55.663680px;}
.x6f{left:56.805000px;}
.x7{left:62.279987px;}
.x21{left:63.452205px;}
.x1a{left:64.866895px;}
.x30{left:66.434037px;}
.x56{left:68.579987px;}
.x12{left:70.500000px;}
.xe{left:72.539987px;}
.xc{left:75.419987px;}
.x13{left:79.379987px;}
.x7f{left:80.999987px;}
.x17{left:83.989309px;}
.x1f{left:85.320347px;}
.x27{left:86.775032px;}
.x47{left:92.880000px;}
.x1c{left:98.855220px;}
.x74{left:100.230000px;}
.x34{left:102.816000px;}
.x16{left:108.090000px;}
.x2c{left:109.796163px;}
.x2{left:118.296000px;}
.x3f{left:126.396000px;}
.xa{left:128.735987px;}
.x71{left:131.295000px;}
.x67{left:132.510000px;}
.x66{left:136.050000px;}
.x25{left:141.971073px;}
.x68{left:143.135987px;}
.x50{left:149.796000px;}
.x18{left:158.273073px;}
.x20{left:165.751671px;}
.x5c{left:174.090000px;}
.x69{left:184.350000px;}
.x79{left:188.070000px;}
.xb{left:196.769987px;}
.x40{left:220.710000px;}
.x51{left:224.130000px;}
.x48{left:247.710000px;}
.x78{left:268.530000px;}
.x8{left:277.229987px;}
.x10{left:286.094987px;}
.x29{left:288.074987px;}
.x36{left:289.515000px;}
.x1e{left:306.074987px;}
.x6{left:309.459000px;}
.x5{left:314.499000px;}
.x7e{left:315.579000px;}
.x49{left:317.415000px;}
.x24{left:318.854987px;}
.x7d{left:320.619000px;}
.x5d{left:323.070000px;}
.x6d{left:335.340000px;}
.x52{left:338.835000px;}
.x61{left:339.870000px;}
.x37{left:349.455000px;}
.x70{left:354.390000px;}
.x6a{left:359.355000px;}
.x4a{left:376.815000px;}
.xf{left:387.794987px;}
.x38{left:400.395000px;}
.x41{left:407.775000px;}
.x14{left:418.754987px;}
.x53{left:419.835000px;}
.x4{left:422.889000px;}
.xd{left:423.974987px;}
.x7c{left:429.009000px;}
.x4b{left:434.775000px;}
.x7b{left:442.509000px;}
.x3{left:444.669000px;}
.x9{left:446.474987px;}
.x39{left:449.895000px;}
.x42{left:457.815000px;}
.x11{left:473.144987px;}
.x63{left:479.340000px;}
.x58{left:480.884987px;}
.x4c{left:484.845000px;}
.x6b{left:487.724987px;}
.x3a{left:493.305000px;}
.x80{left:500.504987px;}
.x6c{left:505.545000px;}
.x43{left:514.185000px;}
.x54{left:521.205000px;}
.x2a{left:527.115000px;}
.x5a{left:539.384987px;}
.x3b{left:541.545000px;}
.x44{left:577.005000px;}
.x72{left:580.245000px;}
.x55{left:595.365000px;}
.x3c{left:602.025000px;}
.x4d{left:607.605000px;}
.x59{left:614.444987px;}
.x75{left:618.045000px;}
.x45{left:641.625000px;}
.x5b{left:656.024987px;}
.x32{left:667.409987px;}
.x3d{left:669.570000px;}
.x4e{left:675.150000px;}
.x46{left:704.490000px;}
.x3e{left:730.230000px;}
.x4f{left:738.150000px;}
.x33{left:757.409987px;}
.x57{left:832.649987px;}
@media print{
.v5{vertical-align:-50.074528pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.719986pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls3a{letter-spacing:-0.592000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls20{letter-spacing:-0.505965pt;}
.lse{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls1b{letter-spacing:-0.380020pt;}
.ls25{letter-spacing:-0.380012pt;}
.ls34{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls35{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls30{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.295040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.409067pt;}
.ls2d{letter-spacing:0.414720pt;}
.ls2e{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls32{letter-spacing:6.400000pt;}
.ls39{letter-spacing:14.672640pt;}
.lsb{letter-spacing:18.512640pt;}
.ls38{letter-spacing:40.912640pt;}
.ls37{letter-spacing:41.040640pt;}
.ls21{letter-spacing:75.420418pt;}
.ls2b{letter-spacing:75.898487pt;}
.ls28{letter-spacing:77.796990pt;}
.ls1c{letter-spacing:78.273614pt;}
.ls26{letter-spacing:78.430345pt;}
.ls15{letter-spacing:105.325973pt;}
.ls17{letter-spacing:105.454810pt;}
.ls14{letter-spacing:105.930359pt;}
.ls1f{letter-spacing:107.570281pt;}
.ls13{letter-spacing:107.988278pt;}
.ls29{letter-spacing:108.094647pt;}
.ls24{letter-spacing:109.253575pt;}
.ls2a{letter-spacing:109.255820pt;}
.ls1a{letter-spacing:109.361381pt;}
.ls23{letter-spacing:109.886930pt;}
.lsa{letter-spacing:110.800640pt;}
.ls1e{letter-spacing:111.470429pt;}
.ls19{letter-spacing:112.158752pt;}
.ls5{letter-spacing:112.160000pt;}
.ls31{letter-spacing:112.288000pt;}
.ls33{letter-spacing:120.037333pt;}
.ls10{letter-spacing:137.019307pt;}
.ls1{letter-spacing:137.040640pt;}
.ls18{letter-spacing:178.720000pt;}
.ls27{letter-spacing:315.357543pt;}
.ls2c{letter-spacing:323.545012pt;}
.ls1d{letter-spacing:331.514881pt;}
.ls22{letter-spacing:332.408507pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.400533pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.870933pt;}
.ws1a{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws12{word-spacing:-7.232000pt;}
.ws7{word-spacing:0.000000pt;}
.ws11{word-spacing:0.962133pt;}
.ws17{word-spacing:2.135467pt;}
.ws14{word-spacing:8.002133pt;}
.ws10{word-spacing:27.832960pt;}
.ws16{word-spacing:28.995627pt;}
.ws13{word-spacing:34.862293pt;}
.ws19{word-spacing:59.468800pt;}
.ws18{word-spacing:86.328960pt;}
.ws15{word-spacing:97.061333pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1412.375040pt;}
._4{margin-left:-1040.837333pt;}
._40{margin-left:-972.677973pt;}
._6{margin-left:-965.219840pt;}
._8{margin-left:-44.160000pt;}
._9{margin-left:-37.120000pt;}
._7{margin-left:-29.440000pt;}
._a{margin-left:-28.160000pt;}
._c{margin-left:-7.500587pt;}
._5{margin-left:-6.182400pt;}
._25{margin-left:-5.167787pt;}
._d{margin-left:-3.757653pt;}
._30{margin-left:-2.842027pt;}
._b{margin-left:-1.951573pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._13{width:2.284160pt;}
._e{width:3.247147pt;}
._12{width:4.154240pt;}
._11{width:5.205760pt;}
._f{width:6.343253pt;}
._10{width:7.445120pt;}
._18{width:8.658560pt;}
._15{width:10.199040pt;}
._16{width:11.792640pt;}
._28{width:14.199040pt;}
._17{width:15.298560pt;}
._1a{width:16.514773pt;}
._14{width:17.621120pt;}
._19{width:18.751360pt;}
._2c{width:19.815680pt;}
._27{width:20.716800pt;}
._22{width:22.204160pt;}
._29{width:23.957120pt;}
._24{width:25.640320pt;}
._23{width:26.560000pt;}
._1d{width:27.560960pt;}
._1b{width:28.784640pt;}
._1c{width:30.078720pt;}
._26{width:31.385600pt;}
._1e{width:32.615680pt;}
._1f{width:33.512320pt;}
._2a{width:34.528000pt;}
._2b{width:36.174720pt;}
._2f{width:37.130880pt;}
._21{width:38.246400pt;}
._20{width:39.360000pt;}
._34{width:41.140267pt;}
._33{width:42.330240pt;}
._32{width:43.452160pt;}
._38{width:45.045760pt;}
._2e{width:46.480000pt;}
._2d{width:47.383040pt;}
._43{width:48.324480pt;}
._42{width:49.560960pt;}
._39{width:50.720000pt;}
._36{width:52.323200pt;}
._47{width:53.955840pt;}
._46{width:54.913067pt;}
._3d{width:58.793173pt;}
._3c{width:59.706880pt;}
._31{width:62.203520pt;}
._37{width:63.372160pt;}
._49{width:66.453120pt;}
._45{width:67.574187pt;}
._44{width:71.021440pt;}
._35{width:72.866773pt;}
._41{width:89.174613pt;}
._3b{width:101.280000pt;}
._3e{width:110.099840pt;}
._48{width:130.250240pt;}
._3a{width:178.848000pt;}
._3f{width:201.376000pt;}
._4b{width:284.026240pt;}
._4a{width:286.440107pt;}
._4d{width:292.993280pt;}
._4c{width:347.736747pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs8{font-size:37.204771pt;}
.fsa{font-size:37.257580pt;}
.fs6{font-size:37.258346pt;}
.fsd{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:64.283916pt;}
.fsb{font-size:64.375162pt;}
.fs7{font-size:64.376485pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd1{bottom:3.400770pt;}
.ye8{bottom:3.405598pt;}
.ybe{bottom:3.405668pt;}
.y144{bottom:5.434667pt;}
.y124{bottom:5.440000pt;}
.y199{bottom:5.466667pt;}
.y132{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y3f{bottom:6.080000pt;}
.y11f{bottom:6.880000pt;}
.yd5{bottom:7.525835pt;}
.yec{bottom:7.536517pt;}
.yc2{bottom:7.536672pt;}
.y12c{bottom:8.320000pt;}
.y12a{bottom:8.480000pt;}
.y197{bottom:9.346667pt;}
.y140{bottom:9.600000pt;}
.y9{bottom:10.432000pt;}
.y18d{bottom:10.626667pt;}
.y136{bottom:10.720000pt;}
.y126{bottom:10.880000pt;}
.y1b5{bottom:10.920000pt;}
.y1be{bottom:11.034667pt;}
.y14b{bottom:11.040000pt;}
.y8{bottom:11.072000pt;}
.y1bc{bottom:11.520000pt;}
.y1c8{bottom:11.840000pt;}
.y1cb{bottom:13.626667pt;}
.y184{bottom:13.733333pt;}
.y18f{bottom:13.786667pt;}
.y1dc{bottom:14.080000pt;}
.y148{bottom:14.240000pt;}
.y16c{bottom:14.720000pt;}
.y16a{bottom:15.360000pt;}
.y167{bottom:15.520000pt;}
.yd3{bottom:15.902324pt;}
.yea{bottom:15.924896pt;}
.yc0{bottom:15.925223pt;}
.y17f{bottom:16.826667pt;}
.yd2{bottom:20.026466pt;}
.ye9{bottom:20.054892pt;}
.ybf{bottom:20.055304pt;}
.y128{bottom:23.040000pt;}
.y149{bottom:23.066667pt;}
.y123{bottom:23.080000pt;}
.y12e{bottom:23.200000pt;}
.y191{bottom:24.933333pt;}
.yd0{bottom:26.639588pt;}
.ye7{bottom:26.677401pt;}
.ybd{bottom:26.677949pt;}
.y18a{bottom:28.933333pt;}
.y1dd{bottom:29.120000pt;}
.y1c5{bottom:30.146667pt;}
.yd4{bottom:30.765048pt;}
.yeb{bottom:30.808717pt;}
.yc1{bottom:30.809349pt;}
.y1d8{bottom:32.386667pt;}
.ya{bottom:32.800000pt;}
.y1b8{bottom:33.920000pt;}
.y1ba{bottom:34.080000pt;}
.y17e{bottom:35.133333pt;}
.y1ca{bottom:36.133333pt;}
.y183{bottom:36.226667pt;}
.y18e{bottom:36.293333pt;}
.y134{bottom:40.666667pt;}
.y122{bottom:40.680000pt;}
.y186{bottom:42.400000pt;}
.y1c0{bottom:43.613333pt;}
.y1cd{bottom:45.853333pt;}
.y6{bottom:46.560000pt;}
.y176{bottom:48.640000pt;}
.y3c{bottom:53.333333pt;}
.y192{bottom:54.173333pt;}
.y121{bottom:58.440000pt;}
.y1c9{bottom:58.626667pt;}
.y182{bottom:58.720000pt;}
.y18c{bottom:68.933333pt;}
.y1c7{bottom:70.400000pt;}
.y1d3{bottom:70.560000pt;}
.y146{bottom:72.352000pt;}
.y1db{bottom:72.893333pt;}
.y18b{bottom:73.413333pt;}
.y3b{bottom:73.472000pt;}
.y76{bottom:74.592000pt;}
.y198{bottom:75.333333pt;}
.y1ce{bottom:75.493333pt;}
.yf0{bottom:76.512000pt;}
.y1da{bottom:78.813333pt;}
.y177{bottom:79.973333pt;}
.y173{bottom:81.152000pt;}
.y39{bottom:81.792000pt;}
.yb9{bottom:82.592000pt;}
.y181{bottom:82.653333pt;}
.y193{bottom:83.426667pt;}
.ya7{bottom:84.192000pt;}
.y11c{bottom:86.592000pt;}
.y187{bottom:89.533333pt;}
.y145{bottom:90.592000pt;}
.y1c3{bottom:90.946667pt;}
.y75{bottom:92.192000pt;}
.yef{bottom:94.112000pt;}
.y1c6{bottom:95.040000pt;}
.y1d4{bottom:95.226667pt;}
.y172{bottom:98.752000pt;}
.y38{bottom:99.392000pt;}
.yb8{bottom:100.192000pt;}
.y1d9{bottom:100.253333pt;}
.y17c{bottom:100.826667pt;}
.ya6{bottom:101.952000pt;}
.y11b{bottom:104.192000pt;}
.y1cf{bottom:105.120000pt;}
.y180{bottom:107.293333pt;}
.y74{bottom:109.952000pt;}
.y178{bottom:111.293333pt;}
.yee{bottom:111.872000pt;}
.y194{bottom:112.640000pt;}
.y1c1{bottom:114.586667pt;}
.y171{bottom:116.352000pt;}
.y37{bottom:116.992000pt;}
.y1df{bottom:117.632000pt;}
.yb7{bottom:117.952000pt;}
.ya5{bottom:119.552000pt;}
.y1d5{bottom:119.906667pt;}
.y11a{bottom:121.792000pt;}
.y1bd{bottom:122.432000pt;}
.y73{bottom:127.552000pt;}
.yed{bottom:129.632000pt;}
.y143{bottom:130.112000pt;}
.y170{bottom:133.946667pt;}
.y1d0{bottom:134.720000pt;}
.y36{bottom:134.746667pt;}
.yb6{bottom:135.546667pt;}
.y188{bottom:136.706667pt;}
.ya4{bottom:137.146667pt;}
.y1c4{bottom:138.266667pt;}
.y119{bottom:139.386667pt;}
.y195{bottom:141.893333pt;}
.y179{bottom:142.626667pt;}
.ye6{bottom:144.080000pt;}
.y1d6{bottom:144.613333pt;}
.y72{bottom:145.146667pt;}
.y1bb{bottom:146.106667pt;}
.y142{bottom:148.346667pt;}
.y16f{bottom:151.706667pt;}
.y35{bottom:152.346667pt;}
.y17d{bottom:153.053333pt;}
.yb5{bottom:153.146667pt;}
.ya3{bottom:154.746667pt;}
.y118{bottom:157.146667pt;}
.y71{bottom:162.746667pt;}
.ye5{bottom:164.026667pt;}
.y1d1{bottom:164.346667pt;}
.y1d7{bottom:169.280000pt;}
.y16e{bottom:169.306667pt;}
.y141{bottom:169.626667pt;}
.y34{bottom:169.946667pt;}
.y1b9{bottom:170.266667pt;}
.yb4{bottom:170.746667pt;}
.y196{bottom:171.133333pt;}
.ya2{bottom:172.346667pt;}
.y17a{bottom:173.946667pt;}
.y117{bottom:174.746667pt;}
.y70{bottom:180.346667pt;}
.y189{bottom:183.840000pt;}
.y1c2{bottom:185.573333pt;}
.y16d{bottom:186.586667pt;}
.y174{bottom:186.906667pt;}
.y33{bottom:187.546667pt;}
.yb3{bottom:188.346667pt;}
.ya1{bottom:190.106667pt;}
.y116{bottom:192.346667pt;}
.y1d2{bottom:193.986667pt;}
.ye4{bottom:196.346667pt;}
.y6f{bottom:198.106667pt;}
.y32{bottom:205.146667pt;}
.y17b{bottom:205.280000pt;}
.y13f{bottom:205.466667pt;}
.yb2{bottom:206.106667pt;}
.ya0{bottom:207.706667pt;}
.y115{bottom:209.946667pt;}
.ye3{bottom:213.946667pt;}
.y6e{bottom:215.706667pt;}
.y1b7{bottom:216.986667pt;}
.y16b{bottom:217.306667pt;}
.y31{bottom:222.906667pt;}
.yb1{bottom:223.706667pt;}
.y9f{bottom:225.306667pt;}
.y114{bottom:227.546667pt;}
.y13e{bottom:227.866667pt;}
.ye2{bottom:231.546667pt;}
.y6d{bottom:233.306667pt;}
.y30{bottom:240.506667pt;}
.yb0{bottom:241.306667pt;}
.y9e{bottom:242.906667pt;}
.y169{bottom:244.826667pt;}
.y113{bottom:245.306667pt;}
.ye1{bottom:249.146667pt;}
.y6c{bottom:250.906667pt;}
.y13d{bottom:251.546667pt;}
.y2f{bottom:258.106667pt;}
.yaf{bottom:258.906667pt;}
.y9d{bottom:260.506667pt;}
.y112{bottom:262.906667pt;}
.y1b6{bottom:263.706667pt;}
.ye0{bottom:266.746667pt;}
.y6b{bottom:268.506667pt;}
.y168{bottom:272.986667pt;}
.y2e{bottom:275.706667pt;}
.yae{bottom:276.506667pt;}
.y9c{bottom:278.266667pt;}
.y111{bottom:280.506667pt;}
.ydf{bottom:284.506667pt;}
.y6a{bottom:286.266667pt;}
.y1b4{bottom:287.386667pt;}
.y2d{bottom:293.346667pt;}
.yad{bottom:294.306667pt;}
.y9b{bottom:295.586667pt;}
.y110{bottom:298.146667pt;}
.y166{bottom:301.346667pt;}
.yde{bottom:302.146667pt;}
.y69{bottom:303.906667pt;}
.y13c{bottom:305.186667pt;}
.y2c{bottom:311.106667pt;}
.yac{bottom:311.906667pt;}
.y10f{bottom:315.746667pt;}
.y1b3{bottom:316.226667pt;}
.ydd{bottom:319.746667pt;}
.y68{bottom:321.506667pt;}
.y2b{bottom:328.706667pt;}
.yab{bottom:329.506667pt;}
.y165{bottom:329.666667pt;}
.y13b{bottom:330.146667pt;}
.y10e{bottom:333.506667pt;}
.ydc{bottom:337.346667pt;}
.y67{bottom:339.106667pt;}
.y2a{bottom:346.306667pt;}
.yaa{bottom:347.106667pt;}
.y164{bottom:347.906667pt;}
.y10d{bottom:351.106667pt;}
.ydb{bottom:354.946667pt;}
.y66{bottom:356.706667pt;}
.y13a{bottom:360.866667pt;}
.y29{bottom:363.906667pt;}
.ya9{bottom:364.706667pt;}
.y10c{bottom:368.706667pt;}
.y1b2{bottom:369.026667pt;}
.y163{bottom:371.426667pt;}
.yda{bottom:372.706667pt;}
.y65{bottom:374.146667pt;}
.y82{bottom:374.466667pt;}
.y1af{bottom:377.666667pt;}
.y28{bottom:381.186667pt;}
.y3a{bottom:381.506667pt;}
.y139{bottom:381.986667pt;}
.ya8{bottom:382.466667pt;}
.y10b{bottom:386.306667pt;}
.y1b1{bottom:386.626667pt;}
.y151{bottom:389.026667pt;}
.yd9{bottom:390.306667pt;}
.y81{bottom:392.066667pt;}
.y1ae{bottom:395.426667pt;}
.y27{bottom:398.946667pt;}
.y64{bottom:400.066667pt;}
.y162{bottom:401.346667pt;}
.y1b0{bottom:401.506667pt;}
.y1bf{bottom:402.400000pt;}
.y10a{bottom:403.906667pt;}
.y150{bottom:406.626667pt;}
.yd8{bottom:407.906667pt;}
.y80{bottom:409.666667pt;}
.y1ad{bottom:413.026667pt;}
.y26{bottom:416.866667pt;}
.y63{bottom:417.666667pt;}
.y138{bottom:417.986667pt;}
.y161{bottom:418.946667pt;}
.y109{bottom:421.666667pt;}
.y14f{bottom:424.226667pt;}
.yd7{bottom:425.506667pt;}
.y7f{bottom:427.266667pt;}
.y1ac{bottom:430.626667pt;}
.y62{bottom:435.266667pt;}
.y25{bottom:436.386667pt;}
.y160{bottom:436.546667pt;}
.y137{bottom:439.106667pt;}
.y175{bottom:439.200000pt;}
.y108{bottom:439.266667pt;}
.yd6{bottom:443.106667pt;}
.y7e{bottom:444.866667pt;}
.y1ab{bottom:448.226667pt;}
.y61{bottom:452.866667pt;}
.y24{bottom:454.146667pt;}
.y15f{bottom:454.306667pt;}
.y107{bottom:456.866667pt;}
.ycf{bottom:457.546667pt;}
.y7d{bottom:462.626667pt;}
.y1aa{bottom:465.826667pt;}
.y60{bottom:470.626667pt;}
.y23{bottom:471.746667pt;}
.y15e{bottom:471.906667pt;}
.y106{bottom:474.466667pt;}
.y135{bottom:475.106667pt;}
.yce{bottom:477.506667pt;}
.y7c{bottom:480.226667pt;}
.y1a9{bottom:483.586667pt;}
.y5f{bottom:488.226667pt;}
.y22{bottom:489.346667pt;}
.y15d{bottom:489.506667pt;}
.y105{bottom:492.066667pt;}
.y7b{bottom:497.826667pt;}
.y133{bottom:498.786667pt;}
.y1a8{bottom:501.186667pt;}
.y5e{bottom:505.826667pt;}
.y21{bottom:506.946667pt;}
.y15c{bottom:507.106667pt;}
.ycd{bottom:509.826667pt;}
.y7a{bottom:515.426667pt;}
.y1a7{bottom:518.786667pt;}
.y5d{bottom:523.426667pt;}
.y20{bottom:524.546667pt;}
.y15b{bottom:524.706667pt;}
.ycc{bottom:527.426667pt;}
.y79{bottom:533.053333pt;}
.y1a6{bottom:536.413333pt;}
.y5c{bottom:541.053333pt;}
.y1f{bottom:542.333333pt;}
.y15a{bottom:542.493333pt;}
.ycb{bottom:545.053333pt;}
.y78{bottom:550.493333pt;}
.y8c{bottom:550.813333pt;}
.y131{bottom:552.253333pt;}
.y1a5{bottom:554.013333pt;}
.y5b{bottom:558.813333pt;}
.y1e{bottom:559.933333pt;}
.y159{bottom:560.093333pt;}
.yca{bottom:562.653333pt;}
.y8b{bottom:568.413333pt;}
.y1a4{bottom:571.773333pt;}
.y130{bottom:575.773333pt;}
.y5a{bottom:576.413333pt;}
.y158{bottom:577.373333pt;}
.y1d{bottom:577.533333pt;}
.yc9{bottom:580.253333pt;}
.y8a{bottom:586.013333pt;}
.y1a3{bottom:589.053333pt;}
.y12f{bottom:593.693333pt;}
.y59{bottom:594.013333pt;}
.y157{bottom:594.973333pt;}
.y1c{bottom:595.133333pt;}
.yc8{bottom:598.013333pt;}
.y89{bottom:603.613333pt;}
.y12d{bottom:606.493333pt;}
.y156{bottom:609.853333pt;}
.y190{bottom:609.920000pt;}
.y58{bottom:611.613333pt;}
.y1b{bottom:612.733333pt;}
.yc7{bottom:615.613333pt;}
.y1a2{bottom:619.773333pt;}
.y88{bottom:621.213333pt;}
.y57{bottom:629.213333pt;}
.y1a{bottom:630.493333pt;}
.yc6{bottom:633.213333pt;}
.y1a1{bottom:638.173333pt;}
.y87{bottom:638.973333pt;}
.y12b{bottom:642.493333pt;}
.y56{bottom:646.973333pt;}
.y19{bottom:648.093333pt;}
.yc5{bottom:650.813333pt;}
.y1a0{bottom:656.413333pt;}
.y86{bottom:656.573333pt;}
.y129{bottom:663.613333pt;}
.y1de{bottom:664.253333pt;}
.y55{bottom:664.573333pt;}
.y18{bottom:665.693333pt;}
.yc4{bottom:668.413333pt;}
.y85{bottom:674.173333pt;}
.y19f{bottom:674.653333pt;}
.y54{bottom:682.173333pt;}
.ybc{bottom:682.813333pt;}
.y17{bottom:683.293333pt;}
.y127{bottom:684.893333pt;}
.y104{bottom:686.173333pt;}
.y84{bottom:691.773333pt;}
.y19e{bottom:693.053333pt;}
.y53{bottom:699.773333pt;}
.y16{bottom:701.053333pt;}
.yc3{bottom:702.813333pt;}
.y103{bottom:703.773333pt;}
.y83{bottom:709.053333pt;}
.y9a{bottom:709.373333pt;}
.y19d{bottom:711.293333pt;}
.y52{bottom:717.373333pt;}
.y15{bottom:720.573333pt;}
.y125{bottom:720.733333pt;}
.y102{bottom:721.373333pt;}
.y99{bottom:727.133333pt;}
.y19c{bottom:734.813333pt;}
.y51{bottom:735.133333pt;}
.y101{bottom:738.973333pt;}
.y14{bottom:742.813333pt;}
.y120{bottom:744.413333pt;}
.y98{bottom:744.733333pt;}
.y19b{bottom:752.413333pt;}
.y50{bottom:752.733333pt;}
.y13{bottom:755.933333pt;}
.y100{bottom:756.573333pt;}
.y97{bottom:762.333333pt;}
.y19a{bottom:770.053333pt;}
.y4f{bottom:770.373333pt;}
.yff{bottom:774.373333pt;}
.y12{bottom:778.213333pt;}
.y96{bottom:779.973333pt;}
.y1cc{bottom:785.440000pt;}
.y4e{bottom:787.973333pt;}
.y11{bottom:791.173333pt;}
.yfe{bottom:791.973333pt;}
.y95{bottom:797.573333pt;}
.y155{bottom:799.013333pt;}
.y4d{bottom:805.573333pt;}
.yfd{bottom:809.573333pt;}
.y10{bottom:813.413333pt;}
.y94{bottom:815.333333pt;}
.y11e{bottom:815.653333pt;}
.y154{bottom:816.613333pt;}
.y4c{bottom:823.333333pt;}
.yfc{bottom:827.173333pt;}
.yf{bottom:831.013333pt;}
.y93{bottom:832.933333pt;}
.y153{bottom:834.213333pt;}
.ybb{bottom:840.613333pt;}
.y4b{bottom:840.933333pt;}
.ye{bottom:844.453333pt;}
.yfb{bottom:844.773333pt;}
.y152{bottom:849.093333pt;}
.y185{bottom:849.760000pt;}
.y92{bottom:850.533333pt;}
.yba{bottom:858.213333pt;}
.y4a{bottom:858.533333pt;}
.yfa{bottom:862.533333pt;}
.yd{bottom:863.493333pt;}
.y14e{bottom:866.693333pt;}
.y91{bottom:868.133333pt;}
.y49{bottom:876.133333pt;}
.yf9{bottom:880.133333pt;}
.yc{bottom:883.973333pt;}
.y90{bottom:885.733333pt;}
.y48{bottom:893.733333pt;}
.y14d{bottom:896.293333pt;}
.yf8{bottom:897.733333pt;}
.y8f{bottom:903.493333pt;}
.y47{bottom:911.493333pt;}
.yb{bottom:912.133333pt;}
.yf7{bottom:915.013333pt;}
.y8e{bottom:921.093333pt;}
.y14c{bottom:925.893333pt;}
.y46{bottom:929.093333pt;}
.yf6{bottom:932.933333pt;}
.y5{bottom:937.893333pt;}
.y8d{bottom:938.373333pt;}
.y45{bottom:946.693333pt;}
.yf5{bottom:950.693333pt;}
.y14a{bottom:955.493333pt;}
.y44{bottom:964.293333pt;}
.y4{bottom:967.973333pt;}
.yf4{bottom:968.293333pt;}
.y43{bottom:981.893333pt;}
.y147{bottom:985.093333pt;}
.yf3{bottom:985.893333pt;}
.y3{bottom:995.493333pt;}
.y42{bottom:999.653333pt;}
.yf1{bottom:1000.213333pt;}
.y11d{bottom:1016.960000pt;}
.y41{bottom:1017.280000pt;}
.yf2{bottom:1020.320000pt;}
.y2{bottom:1022.880000pt;}
.y77{bottom:1034.560000pt;}
.y40{bottom:1034.880000pt;}
.y1{bottom:1051.200000pt;}
.y3e{bottom:1060.800000pt;}
.y3d{bottom:1080.160000pt;}
.h32{height:17.600000pt;}
.h2e{height:17.760000pt;}
.h27{height:19.040000pt;}
.h4{height:19.392000pt;}
.h2c{height:20.480000pt;}
.h2b{height:20.640000pt;}
.h31{height:21.760000pt;}
.h30{height:22.880000pt;}
.h3f{height:22.912000pt;}
.h29{height:23.040000pt;}
.h42{height:23.520000pt;}
.hd{height:24.131250pt;}
.h6{height:26.190625pt;}
.h38{height:26.880000pt;}
.h37{height:27.520000pt;}
.h35{height:27.680000pt;}
.h36{height:27.712000pt;}
.h34{height:28.960000pt;}
.hc{height:33.574375pt;}
.h7{height:34.830000pt;}
.h2a{height:35.200000pt;}
.h33{height:35.232000pt;}
.h2d{height:35.360000pt;}
.h1d{height:36.496281pt;}
.h1b{height:36.514448pt;}
.h23{height:36.548085pt;}
.h17{height:36.548836pt;}
.h21{height:36.566278pt;}
.h15{height:36.567029pt;}
.hf{height:37.090625pt;}
.he{height:37.479688pt;}
.h12{height:40.488438pt;}
.h5{height:41.543750pt;}
.h3b{height:42.649687pt;}
.h1f{height:44.634633pt;}
.h25{height:44.697989pt;}
.h19{height:44.698907pt;}
.h26{height:44.768125pt;}
.h40{height:45.920000pt;}
.h41{height:46.080000pt;}
.h1a{height:46.666054pt;}
.h20{height:46.732293pt;}
.h14{height:46.733253pt;}
.h3a{height:47.742188pt;}
.hb{height:52.134375pt;}
.h2f{height:52.832000pt;}
.h3e{height:52.834688pt;}
.h10{height:53.535000pt;}
.h45{height:54.598989pt;}
.h11{height:55.298750pt;}
.h13{height:57.787500pt;}
.h8{height:58.563750pt;}
.h3{height:59.340000pt;}
.h9{height:60.057813pt;}
.h1e{height:63.059759pt;}
.h1c{height:63.091148pt;}
.h24{height:63.149268pt;}
.h18{height:63.150565pt;}
.h22{height:63.180701pt;}
.h16{height:63.181999pt;}
.h2{height:69.660000pt;}
.h28{height:70.592000pt;}
.ha{height:85.785000pt;}
.h3d{height:184.000000pt;}
.h3c{height:197.280000pt;}
.h43{height:199.200000pt;}
.h44{height:208.000000pt;}
.h39{height:220.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:37.952000pt;}
.wf{width:42.240000pt;}
.wd{width:43.360000pt;}
.w19{width:43.840000pt;}
.w23{width:43.872000pt;}
.wc{width:44.640000pt;}
.w4{width:49.152000pt;}
.w24{width:49.280000pt;}
.w1a{width:49.312000pt;}
.w18{width:50.720000pt;}
.w22{width:50.880000pt;}
.w17{width:52.160000pt;}
.wb{width:52.640000pt;}
.w10{width:53.120000pt;}
.w12{width:53.280000pt;}
.w13{width:53.440000pt;}
.w1b{width:55.200000pt;}
.w1d{width:55.232000pt;}
.w1e{width:55.360000pt;}
.w1c{width:56.640000pt;}
.w25{width:58.560000pt;}
.w11{width:59.392000pt;}
.w21{width:61.152000pt;}
.w16{width:61.312000pt;}
.w2a{width:65.280000pt;}
.w26{width:65.440000pt;}
.w2b{width:65.472000pt;}
.w28{width:71.360000pt;}
.w15{width:83.200000pt;}
.w29{width:89.472000pt;}
.w27{width:101.312000pt;}
.w8{width:124.666048pt;}
.w20{width:136.986667pt;}
.w31{width:154.906667pt;}
.w7{width:160.003775pt;}
.wa{width:165.306667pt;}
.w5{width:175.997446pt;}
.w2c{width:179.066667pt;}
.w6{width:187.334456pt;}
.w34{width:216.666667pt;}
.w2d{width:304.706667pt;}
.w2e{width:307.200000pt;}
.w32{width:310.626667pt;}
.w2f{width:312.640000pt;}
.w30{width:319.360000pt;}
.w35{width:320.000000pt;}
.w33{width:320.866667pt;}
.w36{width:557.920000pt;}
.w14{width:569.213333pt;}
.w9{width:611.133333pt;}
.w1f{width:628.773333pt;}
.w3{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:1.355138pt;}
.x2e{left:2.662589pt;}
.x1b{left:3.569252pt;}
.x26{left:4.678425pt;}
.x35{left:6.880000pt;}
.x5f{left:8.096000pt;}
.x6e{left:9.280000pt;}
.x2d{left:10.808774pt;}
.x64{left:12.480000pt;}
.x62{left:13.376000pt;}
.x15{left:14.560000pt;}
.x76{left:18.720000pt;}
.x5e{left:20.256000pt;}
.x7a{left:21.920000pt;}
.x19{left:23.200403pt;}
.x31{left:24.121588pt;}
.x65{left:28.186667pt;}
.x28{left:31.853686pt;}
.x77{left:33.440000pt;}
.x2f{left:36.800207pt;}
.x23{left:37.757649pt;}
.x1d{left:40.621057pt;}
.x60{left:43.072000pt;}
.x73{left:46.746667pt;}
.x1{left:48.159988pt;}
.x2b{left:49.478826pt;}
.x6f{left:50.493333pt;}
.x7{left:55.359988pt;}
.x21{left:56.401960pt;}
.x1a{left:57.659462pt;}
.x30{left:59.052478pt;}
.x56{left:60.959988pt;}
.x12{left:62.666667pt;}
.xe{left:64.479988pt;}
.xc{left:67.039988pt;}
.x13{left:70.559988pt;}
.x7f{left:71.999988pt;}
.x17{left:74.657164pt;}
.x1f{left:75.840308pt;}
.x27{left:77.133362pt;}
.x47{left:82.560000pt;}
.x1c{left:87.871307pt;}
.x74{left:89.093333pt;}
.x34{left:91.392000pt;}
.x16{left:96.080000pt;}
.x2c{left:97.596589pt;}
.x2{left:105.152000pt;}
.x3f{left:112.352000pt;}
.xa{left:114.431988pt;}
.x71{left:116.706667pt;}
.x67{left:117.786667pt;}
.x66{left:120.933333pt;}
.x25{left:126.196510pt;}
.x68{left:127.231988pt;}
.x50{left:133.152000pt;}
.x18{left:140.687176pt;}
.x20{left:147.334819pt;}
.x5c{left:154.746667pt;}
.x69{left:163.866667pt;}
.x79{left:167.173333pt;}
.xb{left:174.906655pt;}
.x40{left:196.186667pt;}
.x51{left:199.226667pt;}
.x48{left:220.186667pt;}
.x78{left:238.693333pt;}
.x8{left:246.426655pt;}
.x10{left:254.306655pt;}
.x29{left:256.066655pt;}
.x36{left:257.346667pt;}
.x1e{left:272.066655pt;}
.x6{left:275.074667pt;}
.x5{left:279.554667pt;}
.x7e{left:280.514667pt;}
.x49{left:282.146667pt;}
.x24{left:283.426655pt;}
.x7d{left:284.994667pt;}
.x5d{left:287.173333pt;}
.x6d{left:298.080000pt;}
.x52{left:301.186667pt;}
.x61{left:302.106667pt;}
.x37{left:310.626667pt;}
.x70{left:315.013333pt;}
.x6a{left:319.426667pt;}
.x4a{left:334.946667pt;}
.xf{left:344.706655pt;}
.x38{left:355.906667pt;}
.x41{left:362.466667pt;}
.x14{left:372.226655pt;}
.x53{left:373.186667pt;}
.x4{left:375.901333pt;}
.xd{left:376.866655pt;}
.x7c{left:381.341333pt;}
.x4b{left:386.466667pt;}
.x7b{left:393.341333pt;}
.x3{left:395.261333pt;}
.x9{left:396.866655pt;}
.x39{left:399.906667pt;}
.x42{left:406.946667pt;}
.x11{left:420.573322pt;}
.x63{left:426.080000pt;}
.x58{left:427.453322pt;}
.x4c{left:430.973333pt;}
.x6b{left:433.533322pt;}
.x3a{left:438.493333pt;}
.x80{left:444.893322pt;}
.x6c{left:449.373333pt;}
.x43{left:457.053333pt;}
.x54{left:463.293333pt;}
.x2a{left:468.546667pt;}
.x5a{left:479.453322pt;}
.x3b{left:481.373333pt;}
.x44{left:512.893333pt;}
.x72{left:515.773333pt;}
.x55{left:529.213333pt;}
.x3c{left:535.133333pt;}
.x4d{left:540.093333pt;}
.x59{left:546.173322pt;}
.x75{left:549.373333pt;}
.x45{left:570.333333pt;}
.x5b{left:583.133322pt;}
.x32{left:593.253322pt;}
.x3d{left:595.173333pt;}
.x4e{left:600.133333pt;}
.x46{left:626.213333pt;}
.x3e{left:649.093333pt;}
.x4f{left:656.133333pt;}
.x33{left:673.253322pt;}
.x57{left:740.133322pt;}
}




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