
    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_24b8516195e22fa286826244.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_7d8120ae1151549264274578.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.152832;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_3f5bb88e7e3b3c1ffa675dfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_75271e3aaed7d85edc83455b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_531ba72bdb15f9ac35a7fbfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_7c54bb75dc5620038692ba76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_f8cfdd387dcdf9426b28287b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_73817333576e747fcb4b1fd1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.683000;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_f5303f878f8308575874b3eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.230000;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_d21a63813a491c001fb36c53.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.234000;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_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.379486px;}
.v1{vertical-align:3.738382px;}
.v3{vertical-align:9.866068px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:5.826297px;}
.ls10{letter-spacing:9.779313px;}
.lsd{letter-spacing:10.118839px;}
.lsc{letter-spacing:10.123621px;}
.ls9{letter-spacing:10.458365px;}
.ls3{letter-spacing:11.137418px;}
.ls2{letter-spacing:11.142200px;}
.ls15{letter-spacing:13.179357px;}
.ls12{letter-spacing:13.518884px;}
.lsb{letter-spacing:13.858410px;}
.ls16{letter-spacing:13.863192px;}
.ls5{letter-spacing:14.197936px;}
.ls8{letter-spacing:14.202718px;}
.ls4{letter-spacing:14.542244px;}
.lsf{letter-spacing:15.226079px;}
.lse{letter-spacing:15.560823px;}
.ls6{letter-spacing:16.584184px;}
.ls7{letter-spacing:16.923710px;}
.ls11{letter-spacing:17.263237px;}
.ls13{letter-spacing:17.942289px;}
.ls14{letter-spacing:17.947071px;}
.lsa{letter-spacing:18.965650px;}
.ls0{letter-spacing:19.038201px;}
.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;}
}
.ws2{word-spacing:-24.230394px;}
.ws3{word-spacing:-18.565183px;}
.ws4{word-spacing:-14.011436px;}
.ws7{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws9{word-spacing:-11.208832px;}
.ws6{word-spacing:-10.061328px;}
.ws8{word-spacing:-9.563850px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:13.040514px;}
._5{margin-left:-17.343592px;}
._4c{margin-left:-12.286654px;}
._e{margin-left:-5.066997px;}
._c{margin-left:-3.842551px;}
._8{margin-left:-2.638229px;}
._6{margin-left:-1.557976px;}
._4{width:1.050077px;}
._1{width:2.151900px;}
._2{width:3.300507px;}
._3{width:4.328069px;}
._7{width:5.913421px;}
._9{width:6.980764px;}
._a{width:8.030891px;}
._d{width:20.318240px;}
._10{width:22.112975px;}
._4b{width:23.989961px;}
._b{width:29.854401px;}
._f{width:47.911459px;}
._1b{width:56.728933px;}
._29{width:58.316532px;}
._18{width:65.757207px;}
._34{width:70.060940px;}
._19{width:83.603351px;}
._2e{width:87.046337px;}
._0{width:90.724104px;}
._25{width:95.003460px;}
._3d{width:96.801464px;}
._32{width:101.009558px;}
._2c{width:104.490800px;}
._1e{width:121.897007px;}
._20{width:126.028590px;}
._1c{width:143.358286px;}
._1a{width:151.550781px;}
._22{width:172.929710px;}
._3f{width:301.435438px;}
._26{width:366.831098px;}
._39{width:368.879709px;}
._31{width:382.056747px;}
._3b{width:400.687127px;}
._3a{width:415.453711px;}
._35{width:459.676954px;}
._3e{width:484.334506px;}
._27{width:496.822947px;}
._12{width:499.401294px;}
._2f{width:517.939928px;}
._38{width:535.766944px;}
._49{width:563.310765px;}
._47{width:583.165318px;}
._21{width:586.340583px;}
._4a{width:607.380986px;}
._14{width:609.003015px;}
._36{width:610.977061px;}
._15{width:616.615839px;}
._37{width:630.470134px;}
._13{width:645.842965px;}
._48{width:655.391513px;}
._16{width:664.588111px;}
._46{width:694.526787px;}
._11{width:699.630057px;}
._42{width:749.687248px;}
._44{width:798.921948px;}
._3c{width:816.829368px;}
._23{width:843.569893px;}
._45{width:857.223178px;}
._43{width:886.603325px;}
._2d{width:918.703498px;}
._1d{width:937.066090px;}
._30{width:944.887373px;}
._2b{width:981.098056px;}
._41{width:1029.372478px;}
._28{width:1033.295603px;}
._40{width:1068.699029px;}
._1f{width:1133.983815px;}
._33{width:1141.082139px;}
._2a{width:1219.981955px;}
._24{width:1278.053652px;}
._17{width:1983.385643px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs6{font-size:26.761800px;}
.fsd{font-size:28.693800px;}
.fs7{font-size:38.255400px;}
.fsb{font-size:38.256000px;}
.fsc{font-size:40.933200px;}
.fs8{font-size:41.842200px;}
.fs5{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs4{font-size:44.327400px;}
.fs9{font-size:47.820600px;}
.fs1{font-size:57.384000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsa{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:53.097757px;}
.y4{bottom:79.512757px;}
.ybe{bottom:84.188850px;}
.y1e0{bottom:84.191888px;}
.y1a6{bottom:84.193114px;}
.y191{bottom:84.193541px;}
.y15b{bottom:84.194220px;}
.ya9{bottom:84.198034px;}
.y79{bottom:84.282915px;}
.yf0{bottom:91.077577px;}
.y3{bottom:93.852757px;}
.y173{bottom:95.077018px;}
.y1df{bottom:96.097925px;}
.y1a5{bottom:99.840014px;}
.y15a{bottom:99.841121px;}
.ya8{bottom:99.844934px;}
.y78{bottom:100.015892px;}
.yef{bottom:103.918959px;}
.y239{bottom:106.810206px;}
.y22f{bottom:106.819853px;}
.y2{bottom:108.012757px;}
.y1de{bottom:108.088124px;}
.y172{bottom:110.725114px;}
.y1a4{bottom:115.571796px;}
.y190{bottom:115.572223px;}
.y159{bottom:115.572903px;}
.ya7{bottom:115.577911px;}
.y77{bottom:115.662793px;}
.yee{bottom:116.759384px;}
.y238{bottom:118.715286px;}
.y22e{bottom:118.724934px;}
.y1dd{bottom:119.993204px;}
.y3a{bottom:122.456736px;}
.y171{bottom:126.456896px;}
.yed{bottom:129.599809px;}
.y237{bottom:130.705485px;}
.y22d{bottom:130.715133px;}
.y1a3{bottom:131.218697px;}
.y158{bottom:131.220998px;}
.ya6{bottom:131.224812px;}
.y76{bottom:131.394575px;}
.y1dc{bottom:131.983403px;}
.y39{bottom:136.828200px;}
.y170{bottom:142.188678px;}
.yec{bottom:142.441190px;}
.y236{bottom:142.696640px;}
.y22c{bottom:142.706288px;}
.y1db{bottom:143.974558px;}
.y157{bottom:146.952780px;}
.ya5{bottom:146.956593px;}
.y75{bottom:147.041475px;}
.y18f{bottom:149.162608px;}
.y235{bottom:154.601721px;}
.y22b{bottom:154.611368px;}
.y1da{bottom:155.879638px;}
.y16f{bottom:157.835578px;}
.y13d{bottom:159.279000px;}
.yeb{bottom:162.169500px;}
.y1a2{bottom:162.598574px;}
.y156{bottom:162.599681px;}
.ya4{bottom:162.603494px;}
.y74{bottom:162.774452px;}
.y18e{bottom:164.809508px;}
.y234{bottom:166.591920px;}
.y22a{bottom:166.601567px;}
.y1d9{bottom:167.869837px;}
.y35{bottom:168.208036px;}
.y16e{bottom:173.568555px;}
.y155{bottom:178.331462px;}
.ya3{bottom:178.336471px;}
.y73{bottom:178.421353px;}
.y233{bottom:178.497000px;}
.y229{bottom:178.506647px;}
.y1d8{bottom:179.775874px;}
.y18d{bottom:180.542486px;}
.yea{bottom:181.899036px;}
.y34{bottom:182.494500px;}
.y232{bottom:182.749500px;}
.y132{bottom:187.521365px;}
.y16d{bottom:189.215456px;}
.y228{bottom:190.497803px;}
.y1d7{bottom:191.766073px;}
.y154{bottom:193.979558px;}
.ya2{bottom:193.983371px;}
.y1a1{bottom:194.062138px;}
.y72{bottom:194.153135px;}
.ye9{bottom:196.270500px;}
.y18c{bottom:196.274268px;}
.y131{bottom:200.362747px;}
.y227{bottom:202.488001px;}
.y1d6{bottom:203.671153px;}
.y16c{bottom:204.947238px;}
.y1a0{bottom:209.709038px;}
.y153{bottom:209.711340px;}
.ya1{bottom:209.715153px;}
.y71{bottom:209.800035px;}
.y18b{bottom:211.921168px;}
.y130{bottom:213.288290px;}
.y226{bottom:214.393082px;}
.y1d5{bottom:215.661352px;}
.y16b{bottom:220.594138px;}
.y152{bottom:225.358240px;}
.ya0{bottom:225.362054px;}
.y19f{bottom:225.442016px;}
.y70{bottom:225.533012px;}
.y12f{bottom:226.128715px;}
.y225{bottom:226.383281px;}
.y1d4{bottom:227.652507px;}
.y18a{bottom:227.652950px;}
.ye8{bottom:230.294749px;}
.y33{bottom:231.989698px;}
.y16a{bottom:236.327115px;}
.y224{bottom:238.289317px;}
.y12e{bottom:238.970096px;}
.y1d3{bottom:239.557588px;}
.y19e{bottom:241.088916px;}
.y151{bottom:241.090022px;}
.y9f{bottom:241.095031px;}
.y6f{bottom:241.179913px;}
.y189{bottom:243.301046px;}
.ye7{bottom:246.026530px;}
.y32{bottom:247.636598px;}
.y223{bottom:250.279516px;}
.y1d2{bottom:251.547786px;}
.y12d{bottom:251.810521px;}
.y169{bottom:251.974016px;}
.y150{bottom:256.738118px;}
.y9e{bottom:256.741931px;}
.y19d{bottom:256.820698px;}
.y6e{bottom:256.911695px;}
.y188{bottom:259.032828px;}
.ye6{bottom:261.673431px;}
.y222{bottom:262.184597px;}
.y31{bottom:263.369576px;}
.y1d1{bottom:263.452867px;}
.y12c{bottom:264.650946px;}
.y168{bottom:267.705798px;}
.y19c{bottom:272.467598px;}
.y14f{bottom:272.469900px;}
.y9d{bottom:272.473713px;}
.y6d{bottom:272.558595px;}
.y221{bottom:274.175752px;}
.y187{bottom:274.679728px;}
.y1d0{bottom:275.444022px;}
.ye5{bottom:277.406408px;}
.y12b{bottom:277.492328px;}
.y30{bottom:279.016476px;}
.y167{bottom:283.352698px;}
.y220{bottom:286.165951px;}
.y1cf{bottom:287.434221px;}
.y14e{bottom:288.116800px;}
.y9c{bottom:288.120614px;}
.y19b{bottom:288.200576px;}
.y6c{bottom:288.290377px;}
.y12a{bottom:290.332753px;}
.y186{bottom:290.411510px;}
.ye4{bottom:293.053308px;}
.y2f{bottom:294.748258px;}
.y21f{bottom:298.071031px;}
.y166{bottom:299.084480px;}
.y1ce{bottom:299.339301px;}
.y129{bottom:303.259252px;}
.y19a{bottom:303.847476px;}
.y14d{bottom:303.848582px;}
.y9b{bottom:303.853591px;}
.y6b{bottom:303.938473px;}
.y185{bottom:306.059606px;}
.ye3{bottom:308.785090px;}
.y21e{bottom:310.061230px;}
.y2e{bottom:310.395158px;}
.y1cd{bottom:311.329500px;}
.y1cc{bottom:311.330888px;}
.y165{bottom:314.732576px;}
.y128{bottom:316.099677px;}
.y14c{bottom:319.495483px;}
.y9a{bottom:319.500491px;}
.y199{bottom:319.579258px;}
.y6a{bottom:319.670254px;}
.y184{bottom:321.791387px;}
.y21d{bottom:321.967267px;}
.y1cb{bottom:323.236925px;}
.ye2{bottom:324.431991px;}
.y2d{bottom:326.128136px;}
.y127{bottom:328.940102px;}
.y164{bottom:330.464358px;}
.y21c{bottom:333.957465px;}
.y198{bottom:335.226158px;}
.y1ca{bottom:335.227124px;}
.y14b{bottom:335.228460px;}
.y99{bottom:335.232273px;}
.y69{bottom:335.317155px;}
.y183{bottom:337.438288px;}
.ye1{bottom:340.164968px;}
.y126{bottom:341.781484px;}
.y2c{bottom:341.859917px;}
.y21b{bottom:345.947664px;}
.y163{bottom:346.111258px;}
.y1c9{bottom:347.132204px;}
.y14a{bottom:350.875360px;}
.y98{bottom:350.879174px;}
.y197{bottom:350.959136px;}
.y68{bottom:351.048937px;}
.y182{bottom:353.170070px;}
.y125{bottom:354.621909px;}
.ye0{bottom:355.811868px;}
.y2b{bottom:357.506818px;}
.y21a{bottom:357.852745px;}
.y1c8{bottom:359.122403px;}
.y162{bottom:361.843040px;}
.y196{bottom:366.606036px;}
.y149{bottom:366.607142px;}
.y97{bottom:366.610955px;}
.y67{bottom:366.697032px;}
.y124{bottom:367.463290px;}
.y181{bottom:368.818166px;}
.y219{bottom:369.843900px;}
.y1c7{bottom:371.113558px;}
.ydf{bottom:371.543650px;}
.y161{bottom:377.491136px;}
.y123{bottom:380.303715px;}
.y218{bottom:381.748980px;}
.y148{bottom:382.254043px;}
.y195{bottom:382.337818px;}
.y66{bottom:382.428814px;}
.y1c6{bottom:383.018638px;}
.y180{bottom:384.549947px;}
.yde{bottom:387.190551px;}
.y2a{bottom:388.885500px;}
.y122{bottom:393.144140px;}
.y160{bottom:393.222917px;}
.y217{bottom:393.739179px;}
.y1c5{bottom:395.008837px;}
.y194{bottom:397.984718px;}
.y147{bottom:397.987020px;}
.y96{bottom:397.990833px;}
.y65{bottom:398.075715px;}
.y17f{bottom:400.196848px;}
.ydd{bottom:402.923528px;}
.y216{bottom:405.730334px;}
.y121{bottom:406.070640px;}
.y1c4{bottom:406.914874px;}
.y15f{bottom:408.869818px;}
.y193{bottom:413.716500px;}
.y64{bottom:413.807497px;}
.y17e{bottom:415.928630px;}
.y215{bottom:417.635415px;}
.ydc{bottom:418.570428px;}
.y1c3{bottom:418.905073px;}
.y120{bottom:418.911065px;}
.y15e{bottom:424.601600px;}
.y146{bottom:429.365702px;}
.y95{bottom:429.369515px;}
.y63{bottom:429.455592px;}
.y214{bottom:429.625613px;}
.y1c2{bottom:430.895272px;}
.y17d{bottom:431.575530px;}
.y11f{bottom:431.752446px;}
.ydb{bottom:434.302210px;}
.y15d{bottom:440.248500px;}
.y213{bottom:441.530694px;}
.y1c1{bottom:442.800352px;}
.y11e{bottom:444.592871px;}
.y29{bottom:444.673038px;}
.y62{bottom:445.187374px;}
.y17c{bottom:447.308507px;}
.y1a7{bottom:447.391500px;}
.yda{bottom:449.949111px;}
.y212{bottom:453.521849px;}
.y1c0{bottom:454.791507px;}
.y11d{bottom:457.433296px;}
.y28{bottom:459.044502px;}
.y61{bottom:460.834275px;}
.y145{bottom:461.340946px;}
.y94{bottom:462.279652px;}
.y17b{bottom:462.955408px;}
.y211{bottom:465.426929px;}
.y1bf{bottom:466.696588px;}
.y11c{bottom:470.274678px;}
.y27{bottom:473.330966px;}
.y174{bottom:473.925000px;}
.y60{bottom:476.566057px;}
.y144{bottom:476.987847px;}
.y210{bottom:477.417128px;}
.y1be{bottom:478.686786px;}
.y17a{bottom:478.687190px;}
.yd9{bottom:481.328988px;}
.y11b{bottom:483.115103px;}
.y93{bottom:485.836080px;}
.y26{bottom:487.702430px;}
.y20f{bottom:489.407327px;}
.y1bd{bottom:490.591867px;}
.y5f{bottom:492.212957px;}
.y143{bottom:492.719629px;}
.y179{bottom:494.334090px;}
.y11a{bottom:495.956484px;}
.yd8{bottom:497.060770px;}
.y231{bottom:501.143127px;}
.y20e{bottom:501.313364px;}
.y25{bottom:502.073895px;}
.y1bc{bottom:502.583022px;}
.y5e{bottom:507.945934px;}
.y142{bottom:508.451410px;}
.y119{bottom:508.882027px;}
.y92{bottom:509.306430px;}
.y178{bottom:510.067067px;}
.yd7{bottom:512.707670px;}
.y20d{bottom:513.303562px;}
.y1bb{bottom:514.573221px;}
.y24{bottom:516.360359px;}
.y118{bottom:521.722452px;}
.y5d{bottom:523.592835px;}
.y141{bottom:524.098311px;}
.y91{bottom:525.038212px;}
.y20c{bottom:525.208643px;}
.y177{bottom:525.713968px;}
.y1ba{bottom:526.478301px;}
.yd6{bottom:528.439452px;}
.y23{bottom:530.731823px;}
.y117{bottom:534.563834px;}
.y20b{bottom:537.198842px;}
.y1b9{bottom:538.468500px;}
.y5c{bottom:539.324616px;}
.yd5{bottom:544.172430px;}
.y22{bottom:545.103287px;}
.y116{bottom:547.404259px;}
.y90{bottom:548.594640px;}
.y20a{bottom:549.189997px;}
.y5b{bottom:554.971517px;}
.y140{bottom:555.478188px;}
.y176{bottom:557.092650px;}
.y19{bottom:558.540112px;}
.y21{bottom:559.389751px;}
.yd4{bottom:559.819330px;}
.y115{bottom:560.244684px;}
.y209{bottom:561.095077px;}
.y8f{bottom:564.241540px;}
.y1b8{bottom:566.026444px;}
.y5a{bottom:570.704494px;}
.y18{bottom:571.381494px;}
.y208{bottom:573.085276px;}
.y114{bottom:573.086065px;}
.y20{bottom:573.761215px;}
.yd3{bottom:575.551112px;}
.y8e{bottom:579.973322px;}
.y17{bottom:584.221919px;}
.y207{bottom:584.991313px;}
.y113{bottom:585.926490px;}
.y59{bottom:586.351394px;}
.y1f{bottom:588.132679px;}
.y13f{bottom:589.408100px;}
.yd2{bottom:591.198012px;}
.y8d{bottom:595.620222px;}
.y206{bottom:596.981512px;}
.y16{bottom:597.063300px;}
.y175{bottom:597.996000px;}
.y112{bottom:598.852990px;}
.y1b7{bottom:598.936581px;}
.y58{bottom:602.083176px;}
.y1e{bottom:602.504143px;}
.y13e{bottom:605.055000px;}
.y205{bottom:608.886592px;}
.y15{bottom:609.903725px;}
.y8c{bottom:611.352004px;}
.y111{bottom:611.693415px;}
.y1b6{bottom:614.669558px;}
.y1d{bottom:616.790608px;}
.y57{bottom:617.730077px;}
.y204{bottom:620.876791px;}
.yd1{bottom:622.577890px;}
.y14{bottom:622.829269px;}
.y110{bottom:624.533840px;}
.y8b{bottom:627.000100px;}
.y1c{bottom:631.162072px;}
.y192{bottom:631.587000px;}
.y203{bottom:632.867946px;}
.y56{bottom:633.463054px;}
.y13{bottom:635.670650px;}
.y10f{bottom:637.375221px;}
.ybd{bottom:638.055027px;}
.yd0{bottom:638.309672px;}
.y15c{bottom:638.730000px;}
.y8a{bottom:642.731882px;}
.y202{bottom:644.773027px;}
.y1b{bottom:645.533536px;}
.y1b5{bottom:646.048240px;}
.y12{bottom:648.511075px;}
.y55{bottom:649.194836px;}
.y10e{bottom:650.215646px;}
.ybc{bottom:653.786809px;}
.ycf{bottom:653.956572px;}
.y201{bottom:656.763225px;}
.y89{bottom:658.378782px;}
.y1a{bottom:659.820000px;}
.y11{bottom:661.351500px;}
.y10d{bottom:663.057028px;}
.y54{bottom:664.841736px;}
.y200{bottom:668.668306px;}
.yce{bottom:669.689550px;}
.y88{bottom:674.110564px;}
.y10c{bottom:675.897453px;}
.y1b4{bottom:679.043259px;}
.y53{bottom:680.573518px;}
.y1ff{bottom:680.659461px;}
.ybb{bottom:685.165491px;}
.ycd{bottom:685.336450px;}
.y10b{bottom:688.737878px;}
.y10{bottom:689.158500px;}
.y87{bottom:689.758660px;}
.y1fe{bottom:692.649660px;}
.y1b3{bottom:694.690159px;}
.y52{bottom:696.221614px;}
.ycc{bottom:701.068232px;}
.y10a{bottom:701.664377px;}
.y1fd{bottom:704.554740px;}
.y86{bottom:705.490442px;}
.y51{bottom:711.953396px;}
.y109{bottom:714.504802px;}
.y1fc{bottom:716.545895px;}
.yba{bottom:718.670995px;}
.y85{bottom:721.137342px;}
.y1b2{bottom:726.070037px;}
.y108{bottom:727.345227px;}
.y50{bottom:727.600296px;}
.y1fb{bottom:728.450976px;}
.ycb{bottom:732.446914px;}
.yb9{bottom:734.317895px;}
.y84{bottom:736.869124px;}
.y13c{bottom:738.397652px;}
.yf{bottom:738.567000px;}
.y107{bottom:740.186609px;}
.y1fa{bottom:740.441174px;}
.ye{bottom:742.818000px;}
.y4f{bottom:743.332078px;}
.yca{bottom:748.095010px;}
.yb8{bottom:750.050872px;}
.y13b{bottom:751.238077px;}
.yd{bottom:751.492500px;}
.y1f9{bottom:752.346255px;}
.y83{bottom:752.516024px;}
.y106{bottom:753.027034px;}
.yc{bottom:755.745000px;}
.y1b1{bottom:757.874323px;}
.y4e{bottom:758.978978px;}
.yc9{bottom:763.826792px;}
.y13a{bottom:764.079459px;}
.yb{bottom:764.334000px;}
.y1f8{bottom:764.337410px;}
.yb7{bottom:765.697773px;}
.y105{bottom:765.868415px;}
.y82{bottom:768.249002px;}
.ya{bottom:768.585000px;}
.y1b0{bottom:773.521223px;}
.y4d{bottom:774.711956px;}
.y1f7{bottom:776.327609px;}
.y139{bottom:776.919884px;}
.y104{bottom:778.708840px;}
.yc8{bottom:779.473692px;}
.yb6{bottom:781.429555px;}
.y81{bottom:783.895902px;}
.y1f6{bottom:788.232689px;}
.y8{bottom:788.995500px;}
.y138{bottom:789.760309px;}
.y4c{bottom:790.358856px;}
.y103{bottom:791.549265px;}
.yc7{bottom:795.205474px;}
.y9{bottom:795.969000px;}
.yb5{bottom:797.076455px;}
.y80{bottom:799.627684px;}
.y1f5{bottom:800.222888px;}
.y137{bottom:802.601690px;}
.y102{bottom:804.475765px;}
.y1af{bottom:804.899905px;}
.y4b{bottom:806.090638px;}
.yc6{bottom:810.853570px;}
.y1f4{bottom:812.128925px;}
.yb4{bottom:812.809432px;}
.y7f{bottom:815.274584px;}
.y101{bottom:817.316190px;}
.y4a{bottom:821.737538px;}
.y136{bottom:822.330000px;}
.y1f3{bottom:824.119124px;}
.y7{bottom:826.412716px;}
.yc5{bottom:826.585352px;}
.yb3{bottom:828.456333px;}
.y100{bottom:830.157571px;}
.y7e{bottom:831.007562px;}
.y1f2{bottom:836.109322px;}
.y1ae{bottom:836.705386px;}
.y49{bottom:837.470516px;}
.y135{bottom:842.059536px;}
.yff{bottom:842.997996px;}
.yb2{bottom:844.188115px;}
.y7d{bottom:846.739344px;}
.y1f1{bottom:848.014403px;}
.y6{bottom:852.264000px;}
.y1ad{bottom:852.352286px;}
.y48{bottom:853.117416px;}
.yfe{bottom:855.838421px;}
.y134{bottom:856.431000px;}
.yc4{bottom:857.964034px;}
.yb1{bottom:859.835015px;}
.y1f0{bottom:860.005558px;}
.y7c{bottom:862.386244px;}
.yfd{bottom:868.679803px;}
.y47{bottom:868.849198px;}
.y1ef{bottom:871.910638px;}
.yc3{bottom:873.612130px;}
.yb0{bottom:875.567992px;}
.yfc{bottom:881.520228px;}
.y1ac{bottom:883.730969px;}
.y1ee{bottom:883.900837px;}
.y46{bottom:884.496098px;}
.y5{bottom:885.174000px;}
.yaf{bottom:891.299774px;}
.y7b{bottom:893.766122px;}
.yfb{bottom:894.361609px;}
.y1ed{bottom:895.806874px;}
.y45{bottom:900.229076px;}
.yc2{bottom:904.990812px;}
.yae{bottom:906.946674px;}
.yfa{bottom:907.287152px;}
.y1ec{bottom:907.797073px;}
.y1ab{bottom:915.535254px;}
.y44{bottom:915.875976px;}
.y1eb{bottom:919.787272px;}
.yf9{bottom:920.127577px;}
.yad{bottom:922.678456px;}
.y38{bottom:931.096500px;}
.y1aa{bottom:931.182155px;}
.y43{bottom:931.607758px;}
.y1ea{bottom:931.692352px;}
.yf8{bottom:932.968959px;}
.yac{bottom:938.325357px;}
.yc1{bottom:941.812674px;}
.y1e9{bottom:943.683507px;}
.yf7{bottom:945.809384px;}
.y1a9{bottom:946.915132px;}
.y42{bottom:947.254658px;}
.yab{bottom:954.058334px;}
.y1e8{bottom:955.588588px;}
.yc0{bottom:957.544456px;}
.yf6{bottom:958.649809px;}
.y41{bottom:962.987636px;}
.y1e7{bottom:967.578786px;}
.y37{bottom:971.490000px;}
.yf5{bottom:971.491190px;}
.y1a8{bottom:978.293814px;}
.y40{bottom:978.634536px;}
.y1e6{bottom:979.568985px;}
.yaa{bottom:985.437016px;}
.ybf{bottom:988.924334px;}
.yf4{bottom:991.219500px;}
.y1e5{bottom:991.475022px;}
.y3f{bottom:994.366318px;}
.y1e4{bottom:1003.465221px;}
.y3e{bottom:1010.013218px;}
.yf3{bottom:1010.947536px;}
.y36{bottom:1014.009000px;}
.y1e3{bottom:1015.370301px;}
.yf2{bottom:1025.319000px;}
.y3d{bottom:1025.745000px;}
.y1e2{bottom:1027.360500px;}
.y1{bottom:1054.632757px;}
.y23a{bottom:1055.072628px;}
.yf1{bottom:1055.075402px;}
.y1e1{bottom:1055.075685px;}
.y230{bottom:1055.082276px;}
.y133{bottom:1055.083065px;}
.y7a{bottom:1055.083500px;}
.y3b{bottom:1055.097757px;}
.h8{height:23.521113px;}
.h14{height:25.219160px;}
.h10{height:27.957376px;}
.h9{height:33.622910px;}
.hf{height:33.623438px;}
.h13{height:34.303856px;}
.he{height:34.478653px;}
.h12{height:36.564511px;}
.h11{height:36.568337px;}
.ha{height:36.775371px;}
.h7{height:37.122363px;}
.h2{height:37.826367px;}
.h6{height:38.959629px;}
.hb{height:42.029824px;}
.h3{height:50.435156px;}
.h5{height:55.689609px;}
.h4{height:70.925098px;}
.hd{height:73.551270px;}
.h1{height:1113.750000px;}
.hc{height:1114.015500px;}
.h0{height:1114.015503px;}
.w2{width:816.375000px;}
.w3{width:816.378000px;}
.w0{width:816.378021px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x2{left:58.335000px;}
.xc{left:64.800000px;}
.xf{left:66.075450px;}
.x16{left:67.436100px;}
.x27{left:70.412550px;}
.xe{left:76.449339px;}
.x3{left:81.125843px;}
.x18{left:85.378839px;}
.x81{left:88.695552px;}
.x28{left:89.885505px;}
.x24{left:94.818427px;}
.x5d{left:104.342011px;}
.x53{left:111.570369px;}
.x38{left:112.762531px;}
.x26{left:116.502678px;}
.x72{left:118.459210px;}
.x3b{left:119.566254px;}
.x65{left:120.669416px;}
.x30{left:128.238394px;}
.x6c{left:132.575452px;}
.x4b{left:135.466604px;}
.x31{left:142.950465px;}
.x6d{left:150.008438px;}
.x7f{left:152.473999px;}
.x5a{left:161.402809px;}
.x57{left:174.159072px;}
.x70{left:179.346505px;}
.x29{left:181.642038px;}
.x41{left:190.063305px;}
.x32{left:191.166615px;}
.x71{left:200.861341px;}
.x39{left:204.009312px;}
.x73{left:206.813882px;}
.x3c{left:209.706497px;}
.x33{left:210.813000px;}
.x36{left:214.128821px;}
.x34{left:216.679500px;}
.x66{left:219.229672px;}
.x7e{left:230.029171px;}
.x1a{left:231.052500px;}
.x6e{left:234.705894px;}
.x1b{left:239.980500px;}
.x4{left:246.784500px;}
.x63{left:249.588201px;}
.x5{left:252.822000px;}
.x6f{left:256.305849px;}
.x6{left:257.329500px;}
.x43{left:258.431893px;}
.x22{left:259.795500px;}
.x7{left:263.281500px;}
.x5e{left:264.469551px;}
.x78{left:266.680714px;}
.x25{left:273.058954px;}
.x20{left:276.547500px;}
.x1c{left:277.738500px;}
.x1f{left:282.670500px;}
.x15{left:284.116500px;}
.x1d{left:286.752000px;}
.x1e{left:289.048500px;}
.x12{left:291.940500px;}
.xd{left:296.617500px;}
.x23{left:297.637500px;}
.x44{left:298.655533px;}
.x10{left:304.951500px;}
.x48{left:311.240603px;}
.x2e{left:317.704063px;}
.x67{left:322.211296px;}
.x7b{left:325.872380px;}
.x76{left:327.993600px;}
.x5f{left:333.946140px;}
.x60{left:336.242420px;}
.x59{left:338.027991px;}
.x64{left:342.620552px;}
.x1{left:343.785000px;}
.x79{left:345.430500px;}
.x2f{left:348.488183px;}
.x35{left:354.951731px;}
.x4f{left:357.501902px;}
.x54{left:367.706530px;}
.x3d{left:371.959125px;}
.x11{left:374.088000px;}
.x5b{left:378.251631px;}
.x77{left:384.458570px;}
.x69{left:387.095323px;}
.x37{left:388.712121px;}
.x21{left:402.570000px;}
.x14{left:405.255000px;}
.x2b{left:416.263363px;}
.x4c{left:424.852447px;}
.x6a{left:427.403126px;}
.x2a{left:446.536774px;}
.x3e{left:452.320331px;}
.x52{left:463.969550px;}
.x5c{left:466.521185px;}
.x3a{left:468.817972px;}
.x2c{left:471.623709px;}
.x42{left:479.787708px;}
.x8{left:481.407000px;}
.x61{left:485.059752px;}
.x68{left:486.504849px;}
.x9{left:488.041500px;}
.x4d{left:493.308572px;}
.x45{left:494.753670px;}
.x55{left:501.982028px;}
.x3f{left:511.592291px;}
.x46{left:514.397818px;}
.x80{left:526.302898px;}
.x50{left:534.127084px;}
.x4e{left:553.260522px;}
.x7a{left:562.108082px;}
.x49{left:570.523272px;}
.x6b{left:581.322771px;}
.x19{left:585.489770px;}
.x2d{left:600.202021px;}
.xa{left:605.733990px;}
.x7c{left:617.634797px;}
.xb{left:625.975500px;}
.x51{left:629.965469px;}
.x74{left:640.679850px;}
.x47{left:641.955667px;}
.x13{left:650.085000px;}
.x62{left:656.242146px;}
.x17{left:681.838864px;}
.x7d{left:691.873226px;}
.x40{left:697.911392px;}
.x58{left:710.156438px;}
.x75{left:716.023860px;}
.x4a{left:735.327535px;}
.x56{left:736.773589px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.115099pt;}
.v1{vertical-align:3.323006pt;}
.v3{vertical-align:8.769838pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:5.178931pt;}
.ls10{letter-spacing:8.692722pt;}
.lsd{letter-spacing:8.994524pt;}
.lsc{letter-spacing:8.998774pt;}
.ls9{letter-spacing:9.296325pt;}
.ls3{letter-spacing:9.899927pt;}
.ls2{letter-spacing:9.904178pt;}
.ls15{letter-spacing:11.714984pt;}
.ls12{letter-spacing:12.016785pt;}
.lsb{letter-spacing:12.318587pt;}
.ls16{letter-spacing:12.322837pt;}
.ls5{letter-spacing:12.620388pt;}
.ls8{letter-spacing:12.624638pt;}
.ls4{letter-spacing:12.926440pt;}
.lsf{letter-spacing:13.534292pt;}
.lse{letter-spacing:13.831843pt;}
.ls6{letter-spacing:14.741497pt;}
.ls7{letter-spacing:15.043298pt;}
.ls11{letter-spacing:15.345099pt;}
.ls13{letter-spacing:15.948701pt;}
.ls14{letter-spacing:15.952952pt;}
.lsa{letter-spacing:16.858356pt;}
.ls0{letter-spacing:16.922845pt;}
.ws2{word-spacing:-21.538128pt;}
.ws3{word-spacing:-16.502385pt;}
.ws4{word-spacing:-12.454610pt;}
.ws7{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws9{word-spacing:-9.963406pt;}
.ws6{word-spacing:-8.943403pt;}
.ws8{word-spacing:-8.501200pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:11.591568pt;}
._5{margin-left:-15.416526pt;}
._4c{margin-left:-10.921470pt;}
._e{margin-left:-4.503998pt;}
._c{margin-left:-3.415601pt;}
._8{margin-left:-2.345093pt;}
._6{margin-left:-1.384867pt;}
._4{width:0.933402pt;}
._1{width:1.912800pt;}
._2{width:2.933784pt;}
._3{width:3.847173pt;}
._7{width:5.256374pt;}
._9{width:6.205123pt;}
._a{width:7.138570pt;}
._d{width:18.060658pt;}
._10{width:19.655977pt;}
._4b{width:21.324410pt;}
._b{width:26.537245pt;}
._f{width:42.587964pt;}
._1b{width:50.425718pt;}
._29{width:51.836917pt;}
._18{width:58.450851pt;}
._34{width:62.276391pt;}
._19{width:74.314090pt;}
._2e{width:77.374522pt;}
._0{width:80.643648pt;}
._25{width:84.447520pt;}
._3d{width:86.045746pt;}
._32{width:89.786274pt;}
._2c{width:92.880711pt;}
._1e{width:108.352895pt;}
._20{width:112.025413pt;}
._1c{width:127.429588pt;}
._1a{width:134.711805pt;}
._22{width:153.715298pt;}
._3f{width:267.942612pt;}
._26{width:326.072087pt;}
._39{width:327.893074pt;}
._31{width:339.605998pt;}
._3b{width:356.166335pt;}
._3a{width:369.292188pt;}
._35{width:408.601737pt;}
._3e{width:430.519561pt;}
._27{width:441.620398pt;}
._12{width:443.912261pt;}
._2f{width:460.391047pt;}
._38{width:476.237284pt;}
._49{width:500.720680pt;}
._47{width:518.369171pt;}
._21{width:521.191630pt;}
._4a{width:539.894210pt;}
._14{width:541.336013pt;}
._36{width:543.090721pt;}
._15{width:548.102968pt;}
._37{width:560.417897pt;}
._13{width:574.082636pt;}
._48{width:582.570234pt;}
._16{width:590.744988pt;}
._46{width:617.357144pt;}
._11{width:621.893384pt;}
._42{width:666.388665pt;}
._44{width:710.152843pt;}
._3c{width:726.070550pt;}
._23{width:749.839905pt;}
._45{width:761.976158pt;}
._43{width:788.091844pt;}
._2d{width:816.625332pt;}
._1d{width:832.947636pt;}
._30{width:839.899887pt;}
._2b{width:872.087161pt;}
._41{width:914.997758pt;}
._28{width:918.484980pt;}
._40{width:949.954692pt;}
._1f{width:1007.985614pt;}
._33{width:1014.295234pt;}
._2a{width:1084.428404pt;}
._24{width:1136.047691pt;}
._17{width:1763.009460pt;}
.fs6{font-size:23.788267pt;}
.fsd{font-size:25.505600pt;}
.fs7{font-size:34.004800pt;}
.fsb{font-size:34.005333pt;}
.fsc{font-size:36.385067pt;}
.fs8{font-size:37.193067pt;}
.fs5{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs4{font-size:39.402133pt;}
.fs9{font-size:42.507200pt;}
.fs1{font-size:51.008000pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsa{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:47.198006pt;}
.y4{bottom:70.678006pt;}
.ybe{bottom:74.834533pt;}
.y1e0{bottom:74.837234pt;}
.y1a6{bottom:74.838324pt;}
.y191{bottom:74.838703pt;}
.y15b{bottom:74.839307pt;}
.ya9{bottom:74.842696pt;}
.y79{bottom:74.918147pt;}
.yf0{bottom:80.957847pt;}
.y3{bottom:83.424673pt;}
.y173{bottom:84.512905pt;}
.y1df{bottom:85.420378pt;}
.y1a5{bottom:88.746679pt;}
.y15a{bottom:88.747663pt;}
.ya8{bottom:88.751052pt;}
.y78{bottom:88.903016pt;}
.yef{bottom:92.372408pt;}
.y239{bottom:94.942405pt;}
.y22f{bottom:94.950981pt;}
.y2{bottom:96.011340pt;}
.y1de{bottom:96.078332pt;}
.y172{bottom:98.422324pt;}
.y1a4{bottom:102.730486pt;}
.y190{bottom:102.730865pt;}
.y159{bottom:102.731469pt;}
.ya7{bottom:102.735921pt;}
.y77{bottom:102.811371pt;}
.yee{bottom:103.786119pt;}
.y238{bottom:105.524699pt;}
.y22e{bottom:105.533275pt;}
.y1dd{bottom:106.660626pt;}
.y3a{bottom:108.850432pt;}
.y171{bottom:112.406130pt;}
.yed{bottom:115.199830pt;}
.y237{bottom:116.182653pt;}
.y22d{bottom:116.191229pt;}
.y1a3{bottom:116.638841pt;}
.y158{bottom:116.640887pt;}
.ya6{bottom:116.644277pt;}
.y76{bottom:116.795177pt;}
.y1dc{bottom:117.318580pt;}
.y39{bottom:121.625067pt;}
.y170{bottom:126.389936pt;}
.yec{bottom:126.614391pt;}
.y236{bottom:126.841458pt;}
.y22c{bottom:126.850034pt;}
.y1db{bottom:127.977385pt;}
.y157{bottom:130.624694pt;}
.ya5{bottom:130.628083pt;}
.y75{bottom:130.703533pt;}
.y18f{bottom:132.588985pt;}
.y235{bottom:137.423752pt;}
.y22b{bottom:137.432327pt;}
.y1da{bottom:138.559679pt;}
.y16f{bottom:140.298292pt;}
.y13d{bottom:141.581333pt;}
.yeb{bottom:144.150667pt;}
.y1a2{bottom:144.532066pt;}
.y156{bottom:144.533049pt;}
.ya4{bottom:144.536439pt;}
.y74{bottom:144.688402pt;}
.y18e{bottom:146.497341pt;}
.y234{bottom:148.081706pt;}
.y22a{bottom:148.090282pt;}
.y1d9{bottom:149.217633pt;}
.y35{bottom:149.518254pt;}
.y16e{bottom:154.283160pt;}
.y155{bottom:158.516856pt;}
.ya3{bottom:158.521308pt;}
.y73{bottom:158.596758pt;}
.y233{bottom:158.664000pt;}
.y229{bottom:158.672576pt;}
.y1d8{bottom:159.800777pt;}
.y18d{bottom:160.482210pt;}
.yea{bottom:161.688032pt;}
.y34{bottom:162.217333pt;}
.y232{bottom:162.444000pt;}
.y132{bottom:166.685658pt;}
.y16d{bottom:168.191516pt;}
.y228{bottom:169.331380pt;}
.y1d7{bottom:170.458731pt;}
.y154{bottom:172.426274pt;}
.ya2{bottom:172.429664pt;}
.y1a1{bottom:172.499678pt;}
.y72{bottom:172.580564pt;}
.ye9{bottom:174.462667pt;}
.y18c{bottom:174.466016pt;}
.y131{bottom:178.100219pt;}
.y227{bottom:179.989335pt;}
.y1d6{bottom:181.041025pt;}
.y16c{bottom:182.175322pt;}
.y1a0{bottom:186.408034pt;}
.y153{bottom:186.410080pt;}
.ya1{bottom:186.413470pt;}
.y71{bottom:186.488920pt;}
.y18b{bottom:188.374372pt;}
.y130{bottom:189.589591pt;}
.y226{bottom:190.571628pt;}
.y1d5{bottom:191.698980pt;}
.y16b{bottom:196.083678pt;}
.y152{bottom:200.318436pt;}
.ya0{bottom:200.321825pt;}
.y19f{bottom:200.392903pt;}
.y70{bottom:200.473789pt;}
.y12f{bottom:201.003302pt;}
.y225{bottom:201.229583pt;}
.y1d4{bottom:202.357784pt;}
.y18a{bottom:202.358178pt;}
.ye8{bottom:204.706443pt;}
.y33{bottom:206.213065pt;}
.y16a{bottom:210.068547pt;}
.y224{bottom:211.812727pt;}
.y12e{bottom:212.417863pt;}
.y1d3{bottom:212.940078pt;}
.y19e{bottom:214.301259pt;}
.y151{bottom:214.302242pt;}
.y9f{bottom:214.306694pt;}
.y6f{bottom:214.382145pt;}
.y189{bottom:216.267596pt;}
.ye7{bottom:218.690249pt;}
.y32{bottom:220.121421pt;}
.y223{bottom:222.470681pt;}
.y1d2{bottom:223.598032pt;}
.y12d{bottom:223.831575pt;}
.y169{bottom:223.976903pt;}
.y150{bottom:228.211661pt;}
.y9e{bottom:228.215050pt;}
.y19d{bottom:228.285065pt;}
.y6e{bottom:228.365951pt;}
.y188{bottom:230.251402pt;}
.ye6{bottom:232.598605pt;}
.y222{bottom:233.052975pt;}
.y31{bottom:234.106289pt;}
.y1d1{bottom:234.180326pt;}
.y12c{bottom:235.245286pt;}
.y168{bottom:237.960709pt;}
.y19c{bottom:242.193421pt;}
.y14f{bottom:242.195467pt;}
.y9d{bottom:242.198856pt;}
.y6d{bottom:242.274307pt;}
.y221{bottom:243.711779pt;}
.y187{bottom:244.159758pt;}
.y1d0{bottom:244.839131pt;}
.ye5{bottom:246.583474pt;}
.y12b{bottom:246.659847pt;}
.y30{bottom:248.014645pt;}
.y167{bottom:251.869065pt;}
.y220{bottom:254.369734pt;}
.y1cf{bottom:255.497085pt;}
.y14e{bottom:256.103823pt;}
.y9c{bottom:256.107212pt;}
.y19b{bottom:256.178289pt;}
.y6c{bottom:256.258113pt;}
.y12a{bottom:258.073558pt;}
.y186{bottom:258.143564pt;}
.ye4{bottom:260.491830pt;}
.y2f{bottom:261.998451pt;}
.y21f{bottom:264.952028pt;}
.y166{bottom:265.852871pt;}
.y1ce{bottom:266.079379pt;}
.y129{bottom:269.563780pt;}
.y19a{bottom:270.086645pt;}
.y14d{bottom:270.087629pt;}
.y9b{bottom:270.092081pt;}
.y6b{bottom:270.167531pt;}
.y185{bottom:272.052983pt;}
.ye3{bottom:274.475636pt;}
.y21e{bottom:275.609982pt;}
.y2e{bottom:275.906807pt;}
.y1cd{bottom:276.737333pt;}
.y1cc{bottom:276.738567pt;}
.y165{bottom:279.762289pt;}
.y128{bottom:280.977491pt;}
.y14c{bottom:283.995985pt;}
.y9a{bottom:284.000437pt;}
.y199{bottom:284.070451pt;}
.y6a{bottom:284.151337pt;}
.y184{bottom:286.036789pt;}
.y21d{bottom:286.193126pt;}
.y1cb{bottom:287.321711pt;}
.ye2{bottom:288.383992pt;}
.y2d{bottom:289.891676pt;}
.y127{bottom:292.391202pt;}
.y164{bottom:293.746096pt;}
.y21c{bottom:296.851080pt;}
.y198{bottom:297.978807pt;}
.y1ca{bottom:297.979665pt;}
.y14b{bottom:297.980853pt;}
.y99{bottom:297.984243pt;}
.y69{bottom:298.059693pt;}
.y183{bottom:299.945145pt;}
.ye1{bottom:302.368861pt;}
.y126{bottom:303.805763pt;}
.y2c{bottom:303.875482pt;}
.y21b{bottom:307.509035pt;}
.y163{bottom:307.654451pt;}
.y1c9{bottom:308.561959pt;}
.y14a{bottom:311.889209pt;}
.y98{bottom:311.892599pt;}
.y197{bottom:311.963676pt;}
.y68{bottom:312.043499pt;}
.y182{bottom:313.928951pt;}
.y125{bottom:315.219475pt;}
.ye0{bottom:316.277216pt;}
.y2b{bottom:317.783838pt;}
.y21a{bottom:318.091329pt;}
.y1c8{bottom:319.219914pt;}
.y162{bottom:321.638258pt;}
.y196{bottom:325.872032pt;}
.y149{bottom:325.873015pt;}
.y97{bottom:325.876405pt;}
.y67{bottom:325.952918pt;}
.y124{bottom:326.634036pt;}
.y181{bottom:327.838369pt;}
.y219{bottom:328.750133pt;}
.y1c7{bottom:329.878718pt;}
.ydf{bottom:330.261022pt;}
.y161{bottom:335.547676pt;}
.y123{bottom:338.047747pt;}
.y218{bottom:339.332427pt;}
.y148{bottom:339.781371pt;}
.y195{bottom:339.855838pt;}
.y66{bottom:339.936724pt;}
.y1c6{bottom:340.461012pt;}
.y180{bottom:341.822175pt;}
.yde{bottom:344.169378pt;}
.y2a{bottom:345.676000pt;}
.y122{bottom:349.461458pt;}
.y160{bottom:349.531482pt;}
.y217{bottom:349.990381pt;}
.y1c5{bottom:351.118966pt;}
.y194{bottom:353.764194pt;}
.y147{bottom:353.766240pt;}
.y96{bottom:353.769629pt;}
.y65{bottom:353.845080pt;}
.y17f{bottom:355.730531pt;}
.ydd{bottom:358.154247pt;}
.y216{bottom:360.649186pt;}
.y121{bottom:360.951680pt;}
.y1c4{bottom:361.702110pt;}
.y15f{bottom:363.439838pt;}
.y193{bottom:367.748000pt;}
.y64{bottom:367.828886pt;}
.y17e{bottom:369.714337pt;}
.y215{bottom:371.231480pt;}
.ydc{bottom:372.062603pt;}
.y1c3{bottom:372.360065pt;}
.y120{bottom:372.365391pt;}
.y15e{bottom:377.423644pt;}
.y146{bottom:381.658402pt;}
.y95{bottom:381.661791pt;}
.y63{bottom:381.738304pt;}
.y214{bottom:381.889434pt;}
.y1c2{bottom:383.018019pt;}
.y17d{bottom:383.622693pt;}
.y11f{bottom:383.779952pt;}
.ydb{bottom:386.046409pt;}
.y15d{bottom:391.332000pt;}
.y213{bottom:392.471728pt;}
.y1c1{bottom:393.600313pt;}
.y11e{bottom:395.193663pt;}
.y29{bottom:395.264923pt;}
.y62{bottom:395.722110pt;}
.y17c{bottom:397.607562pt;}
.y1a7{bottom:397.681333pt;}
.yda{bottom:399.954765pt;}
.y212{bottom:403.130532pt;}
.y1c0{bottom:404.259118pt;}
.y11d{bottom:406.607375pt;}
.y28{bottom:408.039557pt;}
.y61{bottom:409.630466pt;}
.y145{bottom:410.080841pt;}
.y94{bottom:410.915246pt;}
.y17b{bottom:411.515918pt;}
.y211{bottom:413.712826pt;}
.y1bf{bottom:414.841411pt;}
.y11c{bottom:418.021936pt;}
.y27{bottom:420.738637pt;}
.y174{bottom:421.266667pt;}
.y60{bottom:423.614272pt;}
.y144{bottom:423.989197pt;}
.y210{bottom:424.370781pt;}
.y1be{bottom:425.499366pt;}
.y17a{bottom:425.499724pt;}
.yd9{bottom:427.847990pt;}
.y11b{bottom:429.435647pt;}
.y93{bottom:431.854293pt;}
.y26{bottom:433.513271pt;}
.y20f{bottom:435.028735pt;}
.y1bd{bottom:436.081659pt;}
.y5f{bottom:437.522628pt;}
.y143{bottom:437.973003pt;}
.y179{bottom:439.408080pt;}
.y11a{bottom:440.850208pt;}
.yd8{bottom:441.831796pt;}
.y231{bottom:445.460558pt;}
.y20e{bottom:445.611879pt;}
.y25{bottom:446.287906pt;}
.y1bc{bottom:446.740464pt;}
.y5e{bottom:451.507497pt;}
.y142{bottom:451.956809pt;}
.y119{bottom:452.339580pt;}
.y92{bottom:452.716827pt;}
.y178{bottom:453.392949pt;}
.yd7{bottom:455.740152pt;}
.y20d{bottom:456.269833pt;}
.y1bb{bottom:457.398418pt;}
.y24{bottom:458.986985pt;}
.y118{bottom:463.753291pt;}
.y5d{bottom:465.415853pt;}
.y141{bottom:465.865165pt;}
.y91{bottom:466.700633pt;}
.y20c{bottom:466.852127pt;}
.y177{bottom:467.301305pt;}
.y1ba{bottom:467.980712pt;}
.yd6{bottom:469.723958pt;}
.y23{bottom:471.761620pt;}
.y117{bottom:475.167852pt;}
.y20b{bottom:477.510082pt;}
.y1b9{bottom:478.638667pt;}
.y5c{bottom:479.399659pt;}
.yd5{bottom:483.708826pt;}
.y22{bottom:484.536255pt;}
.y116{bottom:486.581563pt;}
.y90{bottom:487.639680pt;}
.y20a{bottom:488.168886pt;}
.y5b{bottom:493.308015pt;}
.y140{bottom:493.758390pt;}
.y176{bottom:495.193466pt;}
.y19{bottom:496.480100pt;}
.y21{bottom:497.235334pt;}
.yd4{bottom:497.617182pt;}
.y115{bottom:497.995275pt;}
.y209{bottom:498.751180pt;}
.y8f{bottom:501.548036pt;}
.y1b8{bottom:503.134617pt;}
.y5a{bottom:507.292884pt;}
.y18{bottom:507.894661pt;}
.y208{bottom:509.409134pt;}
.y114{bottom:509.409836pt;}
.y20{bottom:510.009969pt;}
.yd3{bottom:511.600988pt;}
.y8e{bottom:515.531842pt;}
.y17{bottom:519.308372pt;}
.y207{bottom:519.992278pt;}
.y113{bottom:520.823547pt;}
.y59{bottom:521.201240pt;}
.y1f{bottom:522.784604pt;}
.y13f{bottom:523.918311pt;}
.yd2{bottom:525.509344pt;}
.y8d{bottom:529.440198pt;}
.y206{bottom:530.650233pt;}
.y16{bottom:530.722934pt;}
.y175{bottom:531.552000pt;}
.y112{bottom:532.313769pt;}
.y1b7{bottom:532.388072pt;}
.y58{bottom:535.185046pt;}
.y1e{bottom:535.559239pt;}
.y13e{bottom:537.826667pt;}
.y205{bottom:541.232526pt;}
.y15{bottom:542.136645pt;}
.y8c{bottom:543.424004pt;}
.y111{bottom:543.727480pt;}
.y1b6{bottom:546.372941pt;}
.y1d{bottom:548.258318pt;}
.y57{bottom:549.093401pt;}
.y204{bottom:551.890481pt;}
.yd1{bottom:553.402569pt;}
.y14{bottom:553.626017pt;}
.y110{bottom:555.141191pt;}
.y8b{bottom:557.333422pt;}
.y1c{bottom:561.032953pt;}
.y192{bottom:561.410667pt;}
.y203{bottom:562.549285pt;}
.y56{bottom:563.078270pt;}
.y13{bottom:565.040578pt;}
.y10f{bottom:566.555752pt;}
.ybd{bottom:567.160024pt;}
.yd0{bottom:567.386375pt;}
.y15c{bottom:567.760000pt;}
.y8a{bottom:571.317228pt;}
.y202{bottom:573.131579pt;}
.y1b{bottom:573.807587pt;}
.y1b5{bottom:574.265103pt;}
.y12{bottom:576.454289pt;}
.y55{bottom:577.062076pt;}
.y10e{bottom:577.969463pt;}
.ybc{bottom:581.143830pt;}
.ycf{bottom:581.294731pt;}
.y201{bottom:583.789534pt;}
.y89{bottom:585.225584pt;}
.y1a{bottom:586.506667pt;}
.y11{bottom:587.868000pt;}
.y10d{bottom:589.384025pt;}
.y54{bottom:590.970432pt;}
.y200{bottom:594.371827pt;}
.yce{bottom:595.279600pt;}
.y88{bottom:599.209390pt;}
.y10c{bottom:600.797736pt;}
.y1b4{bottom:603.594008pt;}
.y53{bottom:604.954238pt;}
.y1ff{bottom:605.030632pt;}
.ybb{bottom:609.035992pt;}
.ycd{bottom:609.187955pt;}
.y10b{bottom:612.211447pt;}
.y10{bottom:612.585333pt;}
.y87{bottom:613.118809pt;}
.y1fe{bottom:615.688586pt;}
.y1b3{bottom:617.502364pt;}
.y52{bottom:618.863657pt;}
.ycc{bottom:623.171762pt;}
.y10a{bottom:623.701669pt;}
.y1fd{bottom:626.270880pt;}
.y86{bottom:627.102615pt;}
.y51{bottom:632.847463pt;}
.y109{bottom:635.115380pt;}
.y1fc{bottom:636.929685pt;}
.yba{bottom:638.818662pt;}
.y85{bottom:641.010971pt;}
.y1b2{bottom:645.395588pt;}
.y108{bottom:646.529091pt;}
.y50{bottom:646.755819pt;}
.y1fb{bottom:647.511978pt;}
.ycb{bottom:651.063924pt;}
.yb9{bottom:652.727018pt;}
.y84{bottom:654.994777pt;}
.y13c{bottom:656.353469pt;}
.yf{bottom:656.504000pt;}
.y107{bottom:657.943652pt;}
.y1fa{bottom:658.169933pt;}
.ye{bottom:660.282667pt;}
.y4f{bottom:660.739625pt;}
.yca{bottom:664.973342pt;}
.yb8{bottom:666.711887pt;}
.y13b{bottom:667.767180pt;}
.yd{bottom:667.993333pt;}
.y1f9{bottom:668.752227pt;}
.y83{bottom:668.903133pt;}
.y106{bottom:669.357363pt;}
.yc{bottom:671.773333pt;}
.y1b1{bottom:673.666064pt;}
.y4e{bottom:674.647981pt;}
.yc9{bottom:678.957148pt;}
.y13a{bottom:679.181741pt;}
.yb{bottom:679.408000pt;}
.y1f8{bottom:679.411031pt;}
.yb7{bottom:680.620242pt;}
.y105{bottom:680.771925pt;}
.y82{bottom:682.888002pt;}
.ya{bottom:683.186667pt;}
.y1b0{bottom:687.574420pt;}
.y4d{bottom:688.632850pt;}
.y1f7{bottom:690.068986pt;}
.y139{bottom:690.595452pt;}
.y104{bottom:692.185636pt;}
.yc8{bottom:692.865504pt;}
.yb6{bottom:694.604049pt;}
.y81{bottom:696.796357pt;}
.y1f6{bottom:700.651279pt;}
.y8{bottom:701.329333pt;}
.y138{bottom:702.009163pt;}
.y4c{bottom:702.541205pt;}
.y103{bottom:703.599347pt;}
.yc7{bottom:706.849310pt;}
.y9{bottom:707.528000pt;}
.yb5{bottom:708.512404pt;}
.y80{bottom:710.780163pt;}
.y1f5{bottom:711.309234pt;}
.y137{bottom:713.423725pt;}
.y102{bottom:715.089569pt;}
.y1af{bottom:715.466582pt;}
.y4b{bottom:716.525012pt;}
.yc6{bottom:720.758729pt;}
.y1f4{bottom:721.892378pt;}
.yb4{bottom:722.497273pt;}
.y7f{bottom:724.688519pt;}
.y101{bottom:726.503280pt;}
.y4a{bottom:730.433367pt;}
.y136{bottom:730.960000pt;}
.y1f3{bottom:732.550332pt;}
.y7{bottom:734.589081pt;}
.yc5{bottom:734.742535pt;}
.yb3{bottom:736.405629pt;}
.y100{bottom:737.917841pt;}
.y7e{bottom:738.673388pt;}
.y1f2{bottom:743.208287pt;}
.y1ae{bottom:743.738121pt;}
.y49{bottom:744.418236pt;}
.y135{bottom:748.497365pt;}
.yff{bottom:749.331552pt;}
.yb2{bottom:750.389435pt;}
.y7d{bottom:752.657194pt;}
.y1f1{bottom:753.790580pt;}
.y6{bottom:757.568000pt;}
.y1ad{bottom:757.646477pt;}
.y48{bottom:758.326592pt;}
.yfe{bottom:760.745263pt;}
.y134{bottom:761.272000pt;}
.yc4{bottom:762.634697pt;}
.yb1{bottom:764.297791pt;}
.y1f0{bottom:764.449385pt;}
.y7c{bottom:766.565550pt;}
.yfd{bottom:772.159825pt;}
.y47{bottom:772.310398pt;}
.y1ef{bottom:775.031679pt;}
.yc3{bottom:776.544115pt;}
.yb0{bottom:778.282660pt;}
.yfc{bottom:783.573536pt;}
.y1ac{bottom:785.538639pt;}
.y1ee{bottom:785.689633pt;}
.y46{bottom:786.218754pt;}
.y5{bottom:786.821333pt;}
.yaf{bottom:792.266466pt;}
.y7b{bottom:794.458775pt;}
.yfb{bottom:794.988097pt;}
.y1ed{bottom:796.272777pt;}
.y45{bottom:800.203623pt;}
.yc2{bottom:804.436277pt;}
.yae{bottom:806.174822pt;}
.yfa{bottom:806.477469pt;}
.y1ec{bottom:806.930731pt;}
.y1ab{bottom:813.809115pt;}
.y44{bottom:814.111979pt;}
.y1eb{bottom:817.588686pt;}
.yf9{bottom:817.891180pt;}
.yad{bottom:820.158628pt;}
.y38{bottom:827.641333pt;}
.y1aa{bottom:827.717471pt;}
.y43{bottom:828.095785pt;}
.y1ea{bottom:828.170980pt;}
.yf8{bottom:829.305741pt;}
.yac{bottom:834.066984pt;}
.yc1{bottom:837.166821pt;}
.y1e9{bottom:838.829784pt;}
.yf7{bottom:840.719452pt;}
.y1a9{bottom:841.702339pt;}
.y42{bottom:842.004141pt;}
.yab{bottom:848.051852pt;}
.y1e8{bottom:849.412078pt;}
.yc0{bottom:851.150627pt;}
.yf6{bottom:852.133163pt;}
.y41{bottom:855.989009pt;}
.y1e7{bottom:860.070032pt;}
.y37{bottom:863.546667pt;}
.yf5{bottom:863.547725pt;}
.y1a8{bottom:869.594501pt;}
.y40{bottom:869.897365pt;}
.y1e6{bottom:870.727987pt;}
.yaa{bottom:875.944014pt;}
.ybf{bottom:879.043852pt;}
.yf4{bottom:881.084000pt;}
.y1e5{bottom:881.311131pt;}
.y3f{bottom:883.881171pt;}
.y1e4{bottom:891.969085pt;}
.y3e{bottom:897.789527pt;}
.yf3{bottom:898.620032pt;}
.y36{bottom:901.341333pt;}
.y1e3{bottom:902.551379pt;}
.yf2{bottom:911.394667pt;}
.y3d{bottom:911.773333pt;}
.y1e2{bottom:913.209333pt;}
.y1{bottom:937.451340pt;}
.y23a{bottom:937.842336pt;}
.yf1{bottom:937.844802pt;}
.y1e1{bottom:937.845053pt;}
.y230{bottom:937.850912pt;}
.y133{bottom:937.851613pt;}
.y7a{bottom:937.852000pt;}
.y3b{bottom:937.864673pt;}
.h8{height:20.907656pt;}
.h14{height:22.417031pt;}
.h10{height:24.851001pt;}
.h9{height:29.887031pt;}
.hf{height:29.887500pt;}
.h13{height:30.492317pt;}
.he{height:30.647691pt;}
.h12{height:32.501788pt;}
.h11{height:32.505188pt;}
.ha{height:32.689219pt;}
.h7{height:32.997656pt;}
.h2{height:33.623437pt;}
.h6{height:34.630781pt;}
.hb{height:37.359844pt;}
.h3{height:44.831250pt;}
.h5{height:49.501875pt;}
.h4{height:63.044531pt;}
.hd{height:65.378906pt;}
.h1{height:990.000000pt;}
.hc{height:990.236000pt;}
.h0{height:990.236003pt;}
.w2{width:725.666667pt;}
.w3{width:725.669333pt;}
.w0{width:725.669352pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.853333pt;}
.xc{left:57.600000pt;}
.xf{left:58.733733pt;}
.x16{left:59.943200pt;}
.x27{left:62.588933pt;}
.xe{left:67.954968pt;}
.x3{left:72.111860pt;}
.x18{left:75.892301pt;}
.x81{left:78.840491pt;}
.x28{left:79.898227pt;}
.x24{left:84.283046pt;}
.x5d{left:92.748454pt;}
.x53{left:99.173661pt;}
.x38{left:100.233361pt;}
.x26{left:103.557936pt;}
.x72{left:105.297075pt;}
.x3b{left:106.281115pt;}
.x65{left:107.261703pt;}
.x30{left:113.989684pt;}
.x6c{left:117.844847pt;}
.x4b{left:120.414759pt;}
.x31{left:127.067080pt;}
.x6d{left:133.340834pt;}
.x7f{left:135.532443pt;}
.x5a{left:143.469164pt;}
.x57{left:154.808064pt;}
.x70{left:159.419115pt;}
.x29{left:161.459590pt;}
.x41{left:168.945160pt;}
.x32{left:169.925880pt;}
.x71{left:178.543415pt;}
.x39{left:181.341610pt;}
.x73{left:183.834562pt;}
.x3c{left:186.405775pt;}
.x33{left:187.389333pt;}
.x36{left:190.336730pt;}
.x34{left:192.604000pt;}
.x66{left:194.870819pt;}
.x7e{left:204.470374pt;}
.x1a{left:205.380000pt;}
.x6e{left:208.627461pt;}
.x1b{left:213.316000pt;}
.x4{left:219.364000pt;}
.x63{left:221.856179pt;}
.x5{left:224.730667pt;}
.x6f{left:227.827421pt;}
.x6{left:228.737333pt;}
.x43{left:229.717238pt;}
.x22{left:230.929333pt;}
.x7{left:234.028000pt;}
.x5e{left:235.084046pt;}
.x78{left:237.049523pt;}
.x25{left:242.719070pt;}
.x20{left:245.820000pt;}
.x1c{left:246.878667pt;}
.x1f{left:251.262667pt;}
.x15{left:252.548000pt;}
.x1d{left:254.890667pt;}
.x1e{left:256.932000pt;}
.x12{left:259.502667pt;}
.xd{left:263.660000pt;}
.x23{left:264.566667pt;}
.x44{left:265.471585pt;}
.x10{left:271.068000pt;}
.x48{left:276.658314pt;}
.x2e{left:282.403612pt;}
.x67{left:286.410041pt;}
.x7b{left:289.664338pt;}
.x76{left:291.549866pt;}
.x5f{left:296.841013pt;}
.x60{left:298.882151pt;}
.x59{left:300.469325pt;}
.x64{left:304.551602pt;}
.x1{left:305.586667pt;}
.x79{left:307.049333pt;}
.x2f{left:309.767274pt;}
.x35{left:315.512649pt;}
.x4f{left:317.779469pt;}
.x54{left:326.850249pt;}
.x3d{left:330.630333pt;}
.x11{left:332.522667pt;}
.x5b{left:336.223672pt;}
.x77{left:341.740951pt;}
.x69{left:344.084732pt;}
.x37{left:345.521885pt;}
.x21{left:357.840000pt;}
.x14{left:360.226667pt;}
.x2b{left:370.011878pt;}
.x4c{left:377.646619pt;}
.x6a{left:379.913889pt;}
.x2a{left:396.921577pt;}
.x3e{left:402.062516pt;}
.x52{left:412.417377pt;}
.x5c{left:414.685498pt;}
.x3a{left:416.727086pt;}
.x2c{left:419.221074pt;}
.x42{left:426.477963pt;}
.x8{left:427.917333pt;}
.x61{left:431.164224pt;}
.x68{left:432.448755pt;}
.x9{left:433.814667pt;}
.x4d{left:438.496509pt;}
.x45{left:439.781040pt;}
.x55{left:446.206247pt;}
.x3f{left:454.748703pt;}
.x46{left:457.242505pt;}
.x80{left:467.824799pt;}
.x50{left:474.779630pt;}
.x4e{left:491.787131pt;}
.x7a{left:499.651629pt;}
.x49{left:507.131797pt;}
.x6b{left:516.731352pt;}
.x19{left:520.435351pt;}
.x2d{left:533.512907pt;}
.xa{left:538.430213pt;}
.x7c{left:549.008708pt;}
.xb{left:556.422667pt;}
.x51{left:559.969305pt;}
.x74{left:569.493200pt;}
.x47{left:570.627260pt;}
.x13{left:577.853333pt;}
.x62{left:583.326352pt;}
.x17{left:606.078991pt;}
.x7d{left:614.998423pt;}
.x40{left:620.365681pt;}
.x58{left:631.250167pt;}
.x75{left:636.465653pt;}
.x4a{left:653.624475pt;}
.x56{left:654.909857pt;}
}




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