
    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_392c535140a7b05eba8e9abb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.947000;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_0ac4131e3a76a41daa9ad542.woff')format("woff");}.ff2{font-family:ff2;line-height:0.955000;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_05f72e936ddca384aca2de5b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_bc61596e5e355614a3f71df7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bec84a6f74608ba99cb14d42.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_dab8701e120c2df86a7c2e5e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.947000;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_536cb5c1a26283c226cc6678.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_810b6acace2d302901a1c41e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_97c9cd6a74aca50b2b736429.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_ef4ea02fd11060b993c8980d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3d9762cbf53a755ce1a70cd2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ef4ea02fd11060b993c8980d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fbd80aad6254cb19e36cb7c2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c93cc52ca5267e52051b0894.woff')format("woff");}.fff{font-family:fff;line-height:0.745000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0b05088e6873e0ad9cdd88bf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.746094;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;}
.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(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);}
.v2{vertical-align:-24.948003px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.937587px;}
.ls2{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000069px;}
.ls22{letter-spacing:0.000072px;}
.ls24{letter-spacing:0.000090px;}
.lsa{letter-spacing:0.000110px;}
.ls11{letter-spacing:0.000135px;}
.lsf{letter-spacing:0.000180px;}
.lsd{letter-spacing:0.000225px;}
.ls14{letter-spacing:0.000315px;}
.ls32{letter-spacing:19.810820px;}
.ls2c{letter-spacing:27.011948px;}
.ls2a{letter-spacing:28.163933px;}
.ls31{letter-spacing:30.107482px;}
.ls2d{letter-spacing:30.179924px;}
.ls2b{letter-spacing:30.395943px;}
.ls29{letter-spacing:42.131950px;}
.ls33{letter-spacing:54.769088px;}
.ls28{letter-spacing:56.304083px;}
.ls34{letter-spacing:57.263879px;}
.ls2f{letter-spacing:57.647779px;}
.ls30{letter-spacing:57.743773px;}
.ls8{letter-spacing:61.138564px;}
.ls26{letter-spacing:74.660157px;}
.ls35{letter-spacing:77.994141px;}
.ls2e{letter-spacing:83.083466px;}
.ls0{letter-spacing:89.290762px;}
.ls23{letter-spacing:99.587423px;}
.ls27{letter-spacing:100.935151px;}
.ls5{letter-spacing:112.618654px;}
.ls7{letter-spacing:139.690613px;}
.ls4{letter-spacing:178.210874px;}
.ls3{letter-spacing:184.762915px;}
.ls6{letter-spacing:186.706672px;}
.ls9{letter-spacing:191.890708px;}
.ls1{letter-spacing:195.996094px;}
.lsb{letter-spacing:200.997070px;}
.ls18{letter-spacing:1258.303174px;}
.ls15{letter-spacing:1286.743174px;}
.ls1b{letter-spacing:1490.143354px;}
.ls1c{letter-spacing:1492.087399px;}
.ls16{letter-spacing:1578.055444px;}
.ls1a{letter-spacing:1666.615894px;}
.ls1e{letter-spacing:1771.591669px;}
.lsc{letter-spacing:1851.655669px;}
.ls10{letter-spacing:1956.704159px;}
.ls19{letter-spacing:1982.192389px;}
.ls12{letter-spacing:1993.855975px;}
.ls20{letter-spacing:2015.528195px;}
.ls17{letter-spacing:2079.608317px;}
.ls1f{letter-spacing:2090.768204px;}
.ls13{letter-spacing:2178.464321px;}
.ls21{letter-spacing:2199.632762px;}
.ls1d{letter-spacing:2217.560744px;}
.lse{letter-spacing:2254.064713px;}
.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;}
}
.wsb{word-spacing:-59.999999px;}
.ws9{word-spacing:-34.919999px;}
.wsa{word-spacing:-28.836000px;}
.ws5{word-spacing:-22.799999px;}
.ws6{word-spacing:-19.200001px;}
.ws4{word-spacing:-14.976090px;}
.ws3{word-spacing:-14.976072px;}
.ws1{word-spacing:-14.976000px;}
.ws2{word-spacing:-13.680000px;}
.ws7{word-spacing:-8.985600px;}
.ws8{word-spacing:-7.488000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-208.224000px;}
._f{margin-left:-172.311606px;}
._5{margin-left:-167.568147px;}
._10{margin-left:-114.651368px;}
._7{margin-left:-74.952000px;}
._11{margin-left:-43.200440px;}
._b{margin-left:-25.576344px;}
._12{margin-left:-13.950262px;}
._31{margin-left:-10.212856px;}
._4{margin-left:-8.719487px;}
._8{margin-left:-6.783071px;}
._3{margin-left:-5.414545px;}
._0{margin-left:-4.388041px;}
._2{margin-left:-3.367656px;}
._1{margin-left:-1.864197px;}
._d{width:1.864382px;}
._20{width:4.500315px;}
._29{width:8.129061px;}
._2a{width:9.279954px;}
._14{width:13.387750px;}
._24{width:18.000261px;}
._25{width:22.268920px;}
._30{width:23.459423px;}
._2b{width:26.568360px;}
._2c{width:27.984258px;}
._19{width:29.587750px;}
._26{width:30.760939px;}
._23{width:32.053537px;}
._22{width:35.752905px;}
._21{width:36.831897px;}
._15{width:38.676094px;}
._28{width:40.004326px;}
._27{width:41.492718px;}
._2f{width:44.449198px;}
._18{width:45.584135px;}
._2e{width:49.500455px;}
._1d{width:53.148094px;}
._36{width:54.600770px;}
._1b{width:56.099878px;}
._1c{width:58.468291px;}
._37{width:59.477083px;}
._35{width:62.844680px;}
._16{width:66.972094px;}
._34{width:68.281036px;}
._33{width:71.704867px;}
._32{width:76.989208px;}
._1f{width:81.732094px;}
._1a{width:97.802639px;}
._17{width:104.340094px;}
._13{width:127.308094px;}
._c{width:134.788291px;}
._9{width:137.235755px;}
._1e{width:150.996025px;}
._e{width:192.907527px;}
._a{width:195.996094px;}
._2d{width:697.136633px;}
.fc6{color:rgb(17,85,204);}
.fc4{color:rgb(171,80,62);}
.fc2{color:rgb(58,55,54);}
.fc1{color:rgb(57,82,164);}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:43.200002px;}
.fs4{font-size:48.000002px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:59.999999px;}
.fs3{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.fs6{font-size:96.000003px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:119.999997px;}
.y0{bottom:0.000000px;}
.y137{bottom:12.553711px;}
.y43{bottom:12.554809px;}
.y41{bottom:12.554993px;}
.y4c{bottom:12.555168px;}
.y142{bottom:12.555171px;}
.y13c{bottom:12.555175px;}
.y139{bottom:12.556641px;}
.y46{bottom:35.234614px;}
.y4b{bottom:35.235168px;}
.y141{bottom:35.235351px;}
.y24{bottom:56.744940px;}
.y45{bottom:57.914794px;}
.y23{bottom:71.865045px;}
.y85{bottom:75.134760px;}
.y3b{bottom:75.135135px;}
.y22{bottom:86.984985px;}
.y21{bottom:102.105015px;}
.ycd{bottom:109.334475px;}
.y3a{bottom:109.335015px;}
.y4f{bottom:109.335210px;}
.y1e3{bottom:109.335930px;}
.y50{bottom:115.366332px;}
.y3e{bottom:115.366515px;}
.y70{bottom:115.366698px;}
.y10f{bottom:115.366699px;}
.y27{bottom:115.366882px;}
.yce{bottom:115.367431px;}
.y1e4{bottom:115.368164px;}
.y20{bottom:117.225030px;}
.y1f{bottom:132.344970px;}
.y10e{bottom:141.448242px;}
.y3d{bottom:141.448608px;}
.y26{bottom:141.448791px;}
.y6f{bottom:141.448974px;}
.y1b0{bottom:145.275882px;}
.ycc{bottom:145.275886px;}
.y1e2{bottom:146.291021px;}
.y151{bottom:146.887208px;}
.y18c{bottom:151.512885px;}
.yed{bottom:160.927724px;}
.y10c{bottom:169.009259px;}
.y1af{bottom:170.410830px;}
.ycb{bottom:170.412300px;}
.y1e1{bottom:172.376958px;}
.y150{bottom:172.968756px;}
.y16b{bottom:180.150877px;}
.y131{bottom:180.150885px;}
.y1b2{bottom:183.076181px;}
.y1e{bottom:185.241030px;}
.yec{bottom:187.009275px;}
.y2{bottom:192.789002px;}
.yba{bottom:194.173088px;}
.y10b{bottom:195.090810px;}
.y18b{bottom:197.540040px;}
.y1e0{bottom:198.457034px;}
.y14f{bottom:199.051762px;}
.y130{bottom:206.232415px;}
.y16a{bottom:206.232420px;}
.y1b1{bottom:208.212595px;}
.yeb{bottom:213.091556px;}
.y1d{bottom:219.261015px;}
.yb9{bottom:220.255365px;}
.y10a{bottom:221.173821px;}
.y18a{bottom:223.620124px;}
.y1df{bottom:224.540045px;}
.y14e{bottom:225.133305px;}
.y12f{bottom:232.315425px;}
.yea{bottom:239.173095px;}
.y6d{bottom:245.520991px;}
.yb8{bottom:246.336913px;}
.y109{bottom:247.253901px;}
.y189{bottom:249.703131px;}
.y1de{bottom:250.620120px;}
.y14d{bottom:251.214840px;}
.y1c{bottom:253.281000px;}
.y169{bottom:258.396968px;}
.y12e{bottom:258.396970px;}
.ye9{bottom:265.254643px;}
.yb7{bottom:272.419185px;}
.y1fc{bottom:273.090824px;}
.y108{bottom:273.336907px;}
.y1ae{bottom:273.949208px;}
.y188{bottom:275.786137px;}
.y1dd{bottom:276.703125px;}
.y14c{bottom:277.296387px;}
.y168{bottom:284.479978px;}
.y12d{bottom:284.479980px;}
.y1b{bottom:287.300996px;}
.ye8{bottom:291.336915px;}
.y107{bottom:299.418450px;}
.y1ad{bottom:300.030756px;}
.y187{bottom:301.867680px;}
.y1dc{bottom:302.786130px;}
.y14b{bottom:303.379407px;}
.y167{bottom:310.561522px;}
.y12c{bottom:310.561530px;}
.y6c{bottom:313.603275px;}
.yb6{bottom:316.500726px;}
.y1a{bottom:321.320985px;}
.y106{bottom:325.501470px;}
.y1ac{bottom:326.112295px;}
.y186{bottom:327.949226px;}
.y1db{bottom:328.869154px;}
.y1fb{bottom:329.173830px;}
.y14a{bottom:329.460941px;}
.ye7{bottom:335.418454px;}
.y12b{bottom:336.643065px;}
.y6b{bottom:339.685545px;}
.yb5{bottom:342.582998px;}
.y105{bottom:351.583009px;}
.y1ab{bottom:352.195305px;}
.y185{bottom:354.030769px;}
.y1da{bottom:354.949217px;}
.y1fa{bottom:355.253903px;}
.y19{bottom:355.341060px;}
.y149{bottom:355.543943px;}
.ye6{bottom:361.501461px;}
.y12a{bottom:362.724615px;}
.y6a{bottom:365.767095px;}
.yb4{bottom:368.665275px;}
.y104{bottom:377.666010px;}
.y1aa{bottom:378.278330px;}
.y184{bottom:380.112308px;}
.y1d9{bottom:381.029301px;}
.y1c8{bottom:381.030757px;}
.y1f9{bottom:381.336913px;}
.y148{bottom:381.625491px;}
.ye5{bottom:387.583000px;}
.y129{bottom:388.807620px;}
.y18{bottom:389.360955px;}
.y69{bottom:391.849005px;}
.yb3{bottom:394.747552px;}
.y103{bottom:403.747549px;}
.y1a9{bottom:404.358405px;}
.y183{bottom:406.195315px;}
.y1c7{bottom:407.112300px;}
.y1d8{bottom:407.112311px;}
.y9e{bottom:407.113766px;}
.y1f8{bottom:407.419925px;}
.y147{bottom:407.707030px;}
.ye4{bottom:413.666010px;}
.y128{bottom:414.889162px;}
.y166{bottom:414.889163px;}
.y17{bottom:415.443060px;}
.y68{bottom:417.930915px;}
.yb2{bottom:420.829095px;}
.y20f{bottom:424.195315px;}
.y102{bottom:429.829096px;}
.y1a8{bottom:430.441415px;}
.y182{bottom:432.278325px;}
.y9d{bottom:433.195305px;}
.y1d7{bottom:433.195313px;}
.y1f7{bottom:433.500000px;}
.y146{bottom:433.790040px;}
.y127{bottom:440.970705px;}
.y165{bottom:440.970711px;}
.y16{bottom:441.524970px;}
.y67{bottom:444.013185px;}
.y39{bottom:446.761231px;}
.y20e{bottom:450.278325px;}
.y101{bottom:455.911378px;}
.y1a7{bottom:456.521490px;}
.ye3{bottom:457.747569px;}
.y181{bottom:458.358397px;}
.y9c{bottom:459.276853px;}
.y1d6{bottom:459.278323px;}
.y1c6{bottom:459.278328px;}
.y1f6{bottom:459.583005px;}
.yb1{bottom:464.911376px;}
.y164{bottom:467.053717px;}
.y66{bottom:470.095455px;}
.y15{bottom:470.294955px;}
.y145{bottom:471.565427px;}
.y20d{bottom:476.358405px;}
.y100{bottom:481.992921px;}
.ye2{bottom:483.829094px;}
.y180{bottom:484.441399px;}
.y1d5{bottom:485.358400px;}
.y1c5{bottom:485.358403px;}
.y9b{bottom:485.359125px;}
.y1f5{bottom:485.666012px;}
.y126{bottom:487.747561px;}
.yb0{bottom:490.992915px;}
.y163{bottom:493.135260px;}
.y14{bottom:494.877000px;}
.y65{bottom:496.177005px;}
.y1a6{bottom:500.605950px;}
.y20c{bottom:502.441403px;}
.yff{bottom:508.075193px;}
.ye1{bottom:509.911384px;}
.y17f{bottom:510.521486px;}
.y9a{bottom:511.441410px;}
.y1c4{bottom:511.441415px;}
.y1f4{bottom:511.746096px;}
.yaf{bottom:517.075192px;}
.y162{bottom:519.216795px;}
.y13{bottom:520.959045px;}
.y64{bottom:522.259275px;}
.y38{bottom:522.781125px;}
.y144{bottom:523.690430px;}
.y20b{bottom:528.521483px;}
.yfe{bottom:534.156741px;}
.ye0{bottom:535.992926px;}
.y17e{bottom:536.605939px;}
.y1c3{bottom:537.521490px;}
.y99{bottom:537.522945px;}
.y125{bottom:537.829103px;}
.y1f3{bottom:537.829106px;}
.y84{bottom:542.605231px;}
.yae{bottom:543.156735px;}
.y1a5{bottom:544.687504px;}
.y63{bottom:544.939080px;}
.y161{bottom:545.299798px;}
.y12{bottom:548.387968px;}
.y20a{bottom:554.607420px;}
.y37{bottom:556.801215px;}
.yfd{bottom:560.238280px;}
.ydf{bottom:562.075199px;}
.y17d{bottom:562.687486px;}
.y140{bottom:563.244144px;}
.y98{bottom:563.605222px;}
.y1c2{bottom:563.605950px;}
.y1d4{bottom:563.607418px;}
.y1f2{bottom:563.912108px;}
.y124{bottom:563.912114px;}
.y1a4{bottom:570.769044px;}
.y160{bottom:571.381341px;}
.y62{bottom:572.119260px;}
.y11{bottom:577.470015px;}
.y83{bottom:580.686765px;}
.y209{bottom:580.687500px;}
.y143{bottom:585.924320px;}
.yfc{bottom:586.321290px;}
.yad{bottom:587.239013px;}
.yde{bottom:588.156742px;}
.y17c{bottom:588.769047px;}
.y97{bottom:589.686765px;}
.y1d3{bottom:589.687493px;}
.y1c1{bottom:589.687506px;}
.y1f1{bottom:589.992188px;}
.y123{bottom:589.992190px;}
.y36{bottom:590.821110px;}
.y1a3{bottom:596.850569px;}
.y15f{bottom:597.462884px;}
.y61{bottom:599.299065px;}
.yca{bottom:604.626705px;}
.y10{bottom:604.898986px;}
.y208{bottom:606.767571px;}
.y82{bottom:606.769050px;}
.yac{bottom:613.321290px;}
.ydd{bottom:614.238285px;}
.y17b{bottom:614.850581px;}
.y1d2{bottom:615.767573px;}
.y1c0{bottom:615.769049px;}
.y96{bottom:615.769050px;}
.y1f0{bottom:616.075195px;}
.y122{bottom:616.075200px;}
.y1a2{bottom:622.932120px;}
.y15e{bottom:623.545895px;}
.y35{bottom:624.841185px;}
.y13f{bottom:625.479500px;}
.y60{bottom:626.479245px;}
.yfb{bottom:630.402831px;}
.yc9{bottom:630.708990px;}
.y207{bottom:632.850581px;}
.y81{bottom:632.851320px;}
.yf{bottom:635.328001px;}
.yab{bottom:639.403567px;}
.ydc{bottom:640.321296px;}
.y17a{bottom:640.932124px;}
.y1d1{bottom:641.850580px;}
.y1bf{bottom:641.850592px;}
.y95{bottom:641.851318px;}
.y121{bottom:642.156746px;}
.y1ef{bottom:642.158205px;}
.y1a1{bottom:649.016598px;}
.y15d{bottom:649.625970px;}
.y5f{bottom:653.659425px;}
.yfa{bottom:656.485837px;}
.yc8{bottom:656.790520px;}
.y34{bottom:658.861080px;}
.y80{bottom:658.933230px;}
.y206{bottom:658.933583px;}
.y13e{bottom:665.034664px;}
.yaa{bottom:665.485110px;}
.ye{bottom:665.757018px;}
.ydb{bottom:666.402839px;}
.y179{bottom:667.015131px;}
.y1be{bottom:667.932135px;}
.y94{bottom:667.933590px;}
.y1ee{bottom:668.238285px;}
.y120{bottom:668.238289px;}
.y1a0{bottom:675.096673px;}
.y5e{bottom:680.839230px;}
.yf9{bottom:682.567380px;}
.yc7{bottom:682.873530px;}
.y7f{bottom:685.015140px;}
.y205{bottom:685.016593px;}
.y15c{bottom:687.402827px;}
.yda{bottom:692.485845px;}
.y33{bottom:692.881170px;}
.y178{bottom:693.096670px;}
.y93{bottom:694.015133px;}
.y1bd{bottom:694.016595px;}
.y1ed{bottom:694.321289px;}
.y11f{bottom:694.321296px;}
.yd{bottom:694.838970px;}
.y19f{bottom:701.179685px;}
.y4e{bottom:701.356201px;}
.y197{bottom:702.402832px;}
.y13d{bottom:704.589845px;}
.y5d{bottom:708.019410px;}
.yc6{bottom:708.955080px;}
.ya9{bottom:709.567380px;}
.y204{bottom:711.096670px;}
.y7e{bottom:711.097410px;}
.yd9{bottom:718.567393px;}
.y177{bottom:719.179680px;}
.y1d0{bottom:720.096675px;}
.y1bc{bottom:720.096687px;}
.y92{bottom:720.097410px;}
.y11e{bottom:720.402835px;}
.y1ec{bottom:720.404300px;}
.yc{bottom:720.921015px;}
.yf8{bottom:726.649663px;}
.y32{bottom:726.901245px;}
.y19e{bottom:727.259760px;}
.y196{bottom:728.484375px;}
.y4d{bottom:732.481196px;}
.yc5{bottom:735.038092px;}
.y5c{bottom:735.199215px;}
.ya8{bottom:735.648923px;}
.y7d{bottom:737.178960px;}
.y203{bottom:737.179680px;}
.y13b{bottom:744.145025px;}
.yd8{bottom:744.649665px;}
.y176{bottom:745.261232px;}
.y91{bottom:746.178958px;}
.y1cf{bottom:746.179679px;}
.y1bb{bottom:746.179680px;}
.y1eb{bottom:746.484375px;}
.y15b{bottom:746.485836px;}
.y11d{bottom:746.485845px;}
.yb{bottom:747.003015px;}
.yf7{bottom:752.731206px;}
.y31{bottom:760.921140px;}
.yc4{bottom:761.119635px;}
.ya7{bottom:761.731200px;}
.y5b{bottom:762.379035px;}
.y202{bottom:763.259760px;}
.y7c{bottom:763.261230px;}
.yd7{bottom:770.731207px;}
.y175{bottom:771.342792px;}
.y19d{bottom:771.344233px;}
.y4a{bottom:772.036017px;}
.y1ba{bottom:772.259764px;}
.y1ce{bottom:772.259771px;}
.y90{bottom:772.261230px;}
.y195{bottom:772.567376px;}
.y15a{bottom:772.567378px;}
.y11c{bottom:772.567380px;}
.ya{bottom:773.084970px;}
.yf6{bottom:778.812749px;}
.y13a{bottom:783.700198px;}
.ya6{bottom:787.813477px;}
.y7b{bottom:789.343140px;}
.y201{bottom:789.345708px;}
.y5a{bottom:789.559200px;}
.y49{bottom:794.716193px;}
.y30{bottom:794.941230px;}
.yd6{bottom:796.812750px;}
.y174{bottom:797.424326px;}
.y19c{bottom:797.425776px;}
.y8f{bottom:798.342780px;}
.y1b9{bottom:798.344234px;}
.y1cd{bottom:798.345708px;}
.y1ea{bottom:798.650385px;}
.y194{bottom:798.650388px;}
.y159{bottom:798.650390px;}
.y11b{bottom:798.650391px;}
.yf5{bottom:804.895026px;}
.yc3{bottom:805.201170px;}
.y9{bottom:809.054995px;}
.ya5{bottom:813.895020px;}
.y7a{bottom:815.425050px;}
.y200{bottom:815.425784px;}
.y59{bottom:816.739020px;}
.y138{bottom:823.253904px;}
.y19b{bottom:823.507319px;}
.y173{bottom:823.507328px;}
.y8e{bottom:824.425043px;}
.y1b8{bottom:824.425777px;}
.y1cc{bottom:824.425784px;}
.y158{bottom:824.730465px;}
.y11a{bottom:824.730471px;}
.y193{bottom:824.730476px;}
.y2f{bottom:828.961305px;}
.yf4{bottom:830.976565px;}
.y48{bottom:834.271177px;}
.y1ff{bottom:841.505860px;}
.y79{bottom:841.507320px;}
.yd5{bottom:843.588869px;}
.y58{bottom:843.919185px;}
.y19a{bottom:849.588862px;}
.y172{bottom:849.588876px;}
.y1cb{bottom:850.505860px;}
.y8d{bottom:850.507320px;}
.y157{bottom:850.813470px;}
.y119{bottom:850.813477px;}
.y1e9{bottom:850.813481px;}
.yc2{bottom:851.976554px;}
.y8{bottom:852.524960px;}
.yf3{bottom:857.059575px;}
.ya4{bottom:857.976566px;}
.y136{bottom:862.810543px;}
.y2e{bottom:862.981200px;}
.y1fe{bottom:867.588870px;}
.y78{bottom:867.589605px;}
.y57{bottom:871.099365px;}
.y47{bottom:873.826357px;}
.y199{bottom:875.670405px;}
.y171{bottom:875.671882px;}
.y1b7{bottom:876.588870px;}
.y8c{bottom:876.589597px;}
.y1e8{bottom:876.893556px;}
.y192{bottom:876.893564px;}
.y118{bottom:876.895020px;}
.ya3{bottom:884.058839px;}
.y77{bottom:893.671140px;}
.yd4{bottom:893.671863px;}
.y1fd{bottom:893.671875px;}
.y7{bottom:895.995001px;}
.y2d{bottom:897.001095px;}
.y56{bottom:898.279170px;}
.yf2{bottom:901.141117px;}
.y170{bottom:901.753425px;}
.y1ca{bottom:902.670405px;}
.y1b6{bottom:902.670421px;}
.y8b{bottom:902.671140px;}
.y156{bottom:902.976563px;}
.y117{bottom:902.976574px;}
.y191{bottom:902.978017px;}
.ya2{bottom:910.141116px;}
.y135{bottom:910.447260px;}
.yc1{bottom:911.059575px;}
.y44{bottom:913.381346px;}
.y76{bottom:919.753050px;}
.yd3{bottom:919.753414px;}
.y198{bottom:919.754883px;}
.y55{bottom:925.458990px;}
.yf1{bottom:927.222660px;}
.y8a{bottom:928.753425px;}
.y1c9{bottom:928.754880px;}
.y1b5{bottom:928.754883px;}
.y190{bottom:929.059565px;}
.y116{bottom:929.059567px;}
.y1e7{bottom:929.059570px;}
.y155{bottom:929.059574px;}
.y2c{bottom:931.021185px;}
.ya1{bottom:936.223393px;}
.y134{bottom:936.528802px;}
.yc0{bottom:937.141123px;}
.y6{bottom:943.965001px;}
.y16f{bottom:945.834958px;}
.y75{bottom:945.834960px;}
.yd2{bottom:945.835696px;}
.y54{bottom:952.639155px;}
.y89{bottom:954.834958px;}
.y115{bottom:955.141111px;}
.y154{bottom:955.141117px;}
.y18f{bottom:955.141125px;}
.y1e6{bottom:955.142580px;}
.y42{bottom:958.741331px;}
.ya0{bottom:962.305665px;}
.y133{bottom:962.610345px;}
.ybf{bottom:963.223395px;}
.y2b{bottom:965.041260px;}
.yf0{bottom:971.305664px;}
.y74{bottom:971.917230px;}
.yd1{bottom:971.917234px;}
.y16e{bottom:971.917968px;}
.y53{bottom:979.819335px;}
.y88{bottom:980.917234px;}
.y1b4{bottom:980.917968px;}
.y114{bottom:981.222658px;}
.y153{bottom:981.222660px;}
.y5{bottom:982.047000px;}
.yef{bottom:997.387208px;}
.y16d{bottom:997.998044px;}
.yd0{bottom:997.998782px;}
.y73{bottom:997.999512px;}
.y40{bottom:998.296143px;}
.y2a{bottom:999.061156px;}
.y132{bottom:1000.387209px;}
.y1b3{bottom:1006.998044px;}
.y52{bottom:1006.999146px;}
.y87{bottom:1006.999511px;}
.y1e5{bottom:1007.302734px;}
.y18e{bottom:1007.304202px;}
.y113{bottom:1007.305664px;}
.ybe{bottom:1007.305667px;}
.y4{bottom:1008.128999px;}
.y9f{bottom:1009.081056px;}
.ycf{bottom:1024.081054px;}
.y72{bottom:1024.081421px;}
.y86{bottom:1033.081054px;}
.y29{bottom:1033.081146px;}
.ybd{bottom:1033.387206px;}
.y112{bottom:1033.387207px;}
.y152{bottom:1033.387209px;}
.y18d{bottom:1033.388672px;}
.y3{bottom:1034.210998px;}
.y51{bottom:1037.581054px;}
.yee{bottom:1041.469482px;}
.y1{bottom:1052.210998px;}
.y111{bottom:1059.468748px;}
.ybc{bottom:1059.468754px;}
.y71{bottom:1073.551027px;}
.y28{bottom:1073.551210px;}
.y3f{bottom:1073.551393px;}
.y16c{bottom:1073.551759px;}
.ybb{bottom:1085.551026px;}
.y110{bottom:1085.551758px;}
.y6e{bottom:1103.551026px;}
.y25{bottom:1103.551209px;}
.y3c{bottom:1103.551392px;}
.y10d{bottom:1103.551758px;}
.h19{height:26.568000px;}
.h8{height:35.424001px;}
.hc{height:37.800000px;}
.h1d{height:38.428711px;}
.h11{height:38.429810px;}
.hf{height:38.429993px;}
.h1f{height:38.430175px;}
.h1e{height:38.431641px;}
.hd{height:39.852000px;}
.h1a{height:44.279999px;}
.h23{height:44.280017px;}
.h6{height:46.200001px;}
.h15{height:49.968000px;}
.ha{height:50.400000px;}
.h4{height:52.560000px;}
.h2{height:53.136000px;}
.h10{height:54.360000px;}
.h13{height:61.110168px;}
.h20{height:61.110351px;}
.h5{height:61.319998px;}
.h21{height:61.819174px;}
.h18{height:61.819188px;}
.h22{height:61.819210px;}
.h17{height:70.080002px;}
.h12{height:83.789794px;}
.h3{height:88.439998px;}
.h1b{height:140.834475px;}
.hb{height:140.835015px;}
.h14{height:140.835210px;}
.h24{height:140.835930px;}
.h7{height:144.344970px;}
.h1c{height:159.448242px;}
.he{height:159.448608px;}
.h9{height:159.448791px;}
.h16{height:159.448974px;}
.h1{height:210.789002px;}
.h0{height:1263.000000px;}
.w3{width:77.625000px;}
.w2{width:111.375000px;}
.w4{width:234.000000px;}
.w5{width:243.000000px;}
.w7{width:310.500000px;}
.w6{width:362.250000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x12{left:6.750000px;}
.x2{left:108.000000px;}
.x11{left:109.125000px;}
.x1f{left:112.995071px;}
.x18{left:114.668032px;}
.x5{left:134.865366px;}
.x1a{left:160.875000px;}
.x19{left:162.000000px;}
.x4{left:167.177513px;}
.x13{left:221.625000px;}
.x8{left:264.457315px;}
.x6{left:276.648780px;}
.xc{left:280.817568px;}
.x14{left:300.375000px;}
.x17{left:302.633719px;}
.x16{left:325.395450px;}
.xa{left:335.103449px;}
.x10{left:364.544044px;}
.x7{left:369.443543px;}
.x3{left:379.058580px;}
.x9{left:383.924554px;}
.x1{left:446.456700px;}
.x1d{left:472.500000px;}
.x15{left:535.500000px;}
.xe{left:568.913378px;}
.xd{left:620.831700px;}
.xb{left:731.250000px;}
.x20{left:732.897473px;}
.x21{left:734.449973px;}
.x1b{left:735.516473px;}
.x1e{left:737.068973px;}
.x1c{left:739.688051px;}
.xf{left:741.753551px;}
@media print{
.v2{vertical-align:-22.176002pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.611188pt;}
.ls2{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000061pt;}
.ls22{letter-spacing:0.000064pt;}
.ls24{letter-spacing:0.000080pt;}
.lsa{letter-spacing:0.000098pt;}
.ls11{letter-spacing:0.000120pt;}
.lsf{letter-spacing:0.000160pt;}
.lsd{letter-spacing:0.000200pt;}
.ls14{letter-spacing:0.000280pt;}
.ls32{letter-spacing:17.609618pt;}
.ls2c{letter-spacing:24.010620pt;}
.ls2a{letter-spacing:25.034607pt;}
.ls31{letter-spacing:26.762206pt;}
.ls2d{letter-spacing:26.826599pt;}
.ls2b{letter-spacing:27.018616pt;}
.ls29{letter-spacing:37.450622pt;}
.ls33{letter-spacing:48.683634pt;}
.ls28{letter-spacing:50.048074pt;}
.ls34{letter-spacing:50.901226pt;}
.ls2f{letter-spacing:51.242470pt;}
.ls30{letter-spacing:51.327798pt;}
.ls8{letter-spacing:54.345390pt;}
.ls26{letter-spacing:66.364584pt;}
.ls35{letter-spacing:69.328125pt;}
.ls2e{letter-spacing:73.851970pt;}
.ls0{letter-spacing:79.369566pt;}
.ls23{letter-spacing:88.522154pt;}
.ls27{letter-spacing:89.720134pt;}
.ls5{letter-spacing:100.105470pt;}
.ls7{letter-spacing:124.169434pt;}
.ls4{letter-spacing:158.409666pt;}
.ls3{letter-spacing:164.233702pt;}
.ls6{letter-spacing:165.961486pt;}
.ls9{letter-spacing:170.569518pt;}
.ls1{letter-spacing:174.218750pt;}
.lsb{letter-spacing:178.664063pt;}
.ls18{letter-spacing:1118.491710pt;}
.ls15{letter-spacing:1143.771710pt;}
.ls1b{letter-spacing:1324.571870pt;}
.ls1c{letter-spacing:1326.299910pt;}
.ls16{letter-spacing:1402.715950pt;}
.ls1a{letter-spacing:1481.436350pt;}
.ls1e{letter-spacing:1574.748150pt;}
.lsc{letter-spacing:1645.916150pt;}
.ls10{letter-spacing:1739.292586pt;}
.ls19{letter-spacing:1761.948790pt;}
.ls12{letter-spacing:1772.316422pt;}
.ls20{letter-spacing:1791.580618pt;}
.ls17{letter-spacing:1848.540726pt;}
.ls1f{letter-spacing:1858.460626pt;}
.ls13{letter-spacing:1936.412730pt;}
.ls21{letter-spacing:1955.229122pt;}
.ls1d{letter-spacing:1971.165106pt;}
.lse{letter-spacing:2003.613078pt;}
.wsb{word-spacing:-53.333332pt;}
.ws9{word-spacing:-31.039999pt;}
.wsa{word-spacing:-25.632000pt;}
.ws5{word-spacing:-20.266666pt;}
.ws6{word-spacing:-17.066667pt;}
.ws4{word-spacing:-13.312080pt;}
.ws3{word-spacing:-13.312064pt;}
.ws1{word-spacing:-13.312000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws7{word-spacing:-7.987200pt;}
.ws8{word-spacing:-6.656000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-185.088000pt;}
._f{margin-left:-153.165872pt;}
._5{margin-left:-148.949464pt;}
._10{margin-left:-101.912327pt;}
._7{margin-left:-66.624000pt;}
._11{margin-left:-38.400391pt;}
._b{margin-left:-22.734528pt;}
._12{margin-left:-12.400233pt;}
._31{margin-left:-9.078094pt;}
._4{margin-left:-7.750655pt;}
._8{margin-left:-6.029396pt;}
._3{margin-left:-4.812929pt;}
._0{margin-left:-3.900481pt;}
._2{margin-left:-2.993472pt;}
._1{margin-left:-1.657064pt;}
._d{width:1.657228pt;}
._20{width:4.000280pt;}
._29{width:7.225832pt;}
._2a{width:8.248848pt;}
._14{width:11.900222pt;}
._24{width:16.000232pt;}
._25{width:19.794596pt;}
._30{width:20.852820pt;}
._2b{width:23.616320pt;}
._2c{width:24.874896pt;}
._19{width:26.300222pt;}
._26{width:27.343057pt;}
._23{width:28.492033pt;}
._22{width:31.780360pt;}
._21{width:32.739464pt;}
._15{width:34.378750pt;}
._28{width:35.559401pt;}
._27{width:36.882416pt;}
._2f{width:39.510399pt;}
._18{width:40.519231pt;}
._2e{width:44.000404pt;}
._1d{width:47.242750pt;}
._36{width:48.534018pt;}
._1b{width:49.866558pt;}
._1c{width:51.971814pt;}
._37{width:52.868518pt;}
._35{width:55.861938pt;}
._16{width:59.530750pt;}
._34{width:60.694254pt;}
._33{width:63.737660pt;}
._32{width:68.434852pt;}
._1f{width:72.650750pt;}
._1a{width:86.935679pt;}
._17{width:92.746750pt;}
._13{width:113.162750pt;}
._c{width:119.811814pt;}
._9{width:121.987338pt;}
._1e{width:134.218689pt;}
._e{width:171.473357pt;}
._a{width:174.218750pt;}
._2d{width:619.677007pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:38.400002pt;}
.fs4{font-size:42.666668pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333332pt;}
.fs3{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.fs6{font-size:85.333336pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:106.666664pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:11.158855pt;}
.y43{bottom:11.159831pt;}
.y41{bottom:11.159993pt;}
.y4c{bottom:11.160149pt;}
.y142{bottom:11.160152pt;}
.y13c{bottom:11.160156pt;}
.y139{bottom:11.161459pt;}
.y46{bottom:31.319657pt;}
.y4b{bottom:31.320149pt;}
.y141{bottom:31.320312pt;}
.y24{bottom:50.439946pt;}
.y45{bottom:51.479817pt;}
.y23{bottom:63.880040pt;}
.y85{bottom:66.786453pt;}
.y3b{bottom:66.786787pt;}
.y22{bottom:77.319986pt;}
.y21{bottom:90.760013pt;}
.ycd{bottom:97.186200pt;}
.y3a{bottom:97.186680pt;}
.y4f{bottom:97.186853pt;}
.y1e3{bottom:97.187493pt;}
.y50{bottom:102.547851pt;}
.y3e{bottom:102.548013pt;}
.y70{bottom:102.548176pt;}
.y10f{bottom:102.548177pt;}
.y27{bottom:102.548340pt;}
.yce{bottom:102.548828pt;}
.y1e4{bottom:102.549479pt;}
.y20{bottom:104.200026pt;}
.y1f{bottom:117.639973pt;}
.y10e{bottom:125.731771pt;}
.y3d{bottom:125.732096pt;}
.y26{bottom:125.732259pt;}
.y6f{bottom:125.732421pt;}
.y1b0{bottom:129.134117pt;}
.ycc{bottom:129.134121pt;}
.y1e2{bottom:130.036463pt;}
.y151{bottom:130.566407pt;}
.y18c{bottom:134.678120pt;}
.yed{bottom:143.046866pt;}
.y10c{bottom:150.230452pt;}
.y1af{bottom:151.476293pt;}
.ycb{bottom:151.477600pt;}
.y1e1{bottom:153.223963pt;}
.y150{bottom:153.750005pt;}
.y16b{bottom:160.134113pt;}
.y131{bottom:160.134120pt;}
.y1b2{bottom:162.734383pt;}
.y1e{bottom:164.658693pt;}
.yec{bottom:166.230467pt;}
.y2{bottom:171.368001pt;}
.yba{bottom:172.598301pt;}
.y10b{bottom:173.414053pt;}
.y18b{bottom:175.591147pt;}
.y1e0{bottom:176.406252pt;}
.y14f{bottom:176.934899pt;}
.y130{bottom:183.317702pt;}
.y16a{bottom:183.317707pt;}
.y1b1{bottom:185.077862pt;}
.yeb{bottom:189.414717pt;}
.y1d{bottom:194.898680pt;}
.yb9{bottom:195.782547pt;}
.y10a{bottom:196.598952pt;}
.y18a{bottom:198.773444pt;}
.y1df{bottom:199.591151pt;}
.y14e{bottom:200.118493pt;}
.y12f{bottom:206.502600pt;}
.yea{bottom:212.598307pt;}
.y6d{bottom:218.240881pt;}
.yb8{bottom:218.966145pt;}
.y109{bottom:219.781245pt;}
.y189{bottom:221.958339pt;}
.y1de{bottom:222.773440pt;}
.y14d{bottom:223.302080pt;}
.y1c{bottom:225.138667pt;}
.y169{bottom:229.686194pt;}
.y12e{bottom:229.686195pt;}
.ye9{bottom:235.781905pt;}
.yb7{bottom:242.150387pt;}
.y1fc{bottom:242.747399pt;}
.y108{bottom:242.966139pt;}
.y1ae{bottom:243.510407pt;}
.y188{bottom:245.143233pt;}
.y1dd{bottom:245.958333pt;}
.y14c{bottom:246.485678pt;}
.y168{bottom:252.871092pt;}
.y12d{bottom:252.871093pt;}
.y1b{bottom:255.378663pt;}
.ye8{bottom:258.966147pt;}
.y107{bottom:266.149733pt;}
.y1ad{bottom:266.694005pt;}
.y187{bottom:268.326827pt;}
.y1dc{bottom:269.143227pt;}
.y14b{bottom:269.670584pt;}
.y167{bottom:276.054686pt;}
.y12c{bottom:276.054693pt;}
.y6c{bottom:278.758467pt;}
.yb6{bottom:281.333979pt;}
.y1a{bottom:285.618653pt;}
.y106{bottom:289.334640pt;}
.y1ac{bottom:289.877595pt;}
.y186{bottom:291.510423pt;}
.y1db{bottom:292.328137pt;}
.y1fb{bottom:292.598960pt;}
.y14a{bottom:292.854170pt;}
.ye7{bottom:298.149737pt;}
.y12b{bottom:299.238280pt;}
.y6b{bottom:301.942707pt;}
.yb5{bottom:304.518221pt;}
.y105{bottom:312.518230pt;}
.y1ab{bottom:313.062493pt;}
.y185{bottom:314.694017pt;}
.y1da{bottom:315.510415pt;}
.y1fa{bottom:315.781247pt;}
.y19{bottom:315.858720pt;}
.y149{bottom:316.039061pt;}
.ye6{bottom:321.334632pt;}
.y12a{bottom:322.421880pt;}
.y6a{bottom:325.126307pt;}
.yb4{bottom:327.702467pt;}
.y104{bottom:335.703120pt;}
.y1aa{bottom:336.247404pt;}
.y184{bottom:337.877607pt;}
.y1d9{bottom:338.692712pt;}
.y1c8{bottom:338.694006pt;}
.y1f9{bottom:338.966145pt;}
.y148{bottom:339.222659pt;}
.ye5{bottom:344.518222pt;}
.y129{bottom:345.606773pt;}
.y18{bottom:346.098627pt;}
.y69{bottom:348.310227pt;}
.yb3{bottom:350.886713pt;}
.y103{bottom:358.886710pt;}
.y1a9{bottom:359.429693pt;}
.y183{bottom:361.062502pt;}
.y1c7{bottom:361.877600pt;}
.y1d8{bottom:361.877610pt;}
.y9e{bottom:361.878903pt;}
.y1f8{bottom:362.151044pt;}
.y147{bottom:362.406249pt;}
.ye4{bottom:367.703120pt;}
.y128{bottom:368.790366pt;}
.y166{bottom:368.790367pt;}
.y17{bottom:369.282720pt;}
.y68{bottom:371.494147pt;}
.yb2{bottom:374.070307pt;}
.y20f{bottom:377.062502pt;}
.y102{bottom:382.070308pt;}
.y1a8{bottom:382.614591pt;}
.y182{bottom:384.247400pt;}
.y9d{bottom:385.062493pt;}
.y1d7{bottom:385.062501pt;}
.y1f7{bottom:385.333333pt;}
.y146{bottom:385.591147pt;}
.y127{bottom:391.973960pt;}
.y165{bottom:391.973965pt;}
.y16{bottom:392.466640pt;}
.y67{bottom:394.678387pt;}
.y39{bottom:397.121095pt;}
.y20e{bottom:400.247400pt;}
.y101{bottom:405.254558pt;}
.y1a7{bottom:405.796880pt;}
.ye3{bottom:406.886728pt;}
.y181{bottom:407.429687pt;}
.y9c{bottom:408.246091pt;}
.y1d6{bottom:408.247399pt;}
.y1c6{bottom:408.247403pt;}
.y1f6{bottom:408.518227pt;}
.yb1{bottom:413.254557pt;}
.y164{bottom:415.158859pt;}
.y66{bottom:417.862627pt;}
.y15{bottom:418.039960pt;}
.y145{bottom:419.169268pt;}
.y20d{bottom:423.429693pt;}
.y100{bottom:428.438152pt;}
.ye2{bottom:430.070306pt;}
.y180{bottom:430.614577pt;}
.y1d5{bottom:431.429689pt;}
.y1c5{bottom:431.429692pt;}
.y9b{bottom:431.430333pt;}
.y1f5{bottom:431.703121pt;}
.y126{bottom:433.553388pt;}
.yb0{bottom:436.438147pt;}
.y163{bottom:438.342453pt;}
.y14{bottom:439.890667pt;}
.y65{bottom:441.046227pt;}
.y1a6{bottom:444.983067pt;}
.y20c{bottom:446.614580pt;}
.yff{bottom:451.622394pt;}
.ye1{bottom:453.254564pt;}
.y17f{bottom:453.796877pt;}
.y9a{bottom:454.614587pt;}
.y1c4{bottom:454.614591pt;}
.y1f4{bottom:454.885418pt;}
.yaf{bottom:459.622393pt;}
.y162{bottom:461.526040pt;}
.y13{bottom:463.074707pt;}
.y64{bottom:464.230467pt;}
.y38{bottom:464.694333pt;}
.y144{bottom:465.502604pt;}
.y20b{bottom:469.796873pt;}
.yfe{bottom:474.805992pt;}
.ye0{bottom:476.438157pt;}
.y17e{bottom:476.983057pt;}
.y1c3{bottom:477.796880pt;}
.y99{bottom:477.798173pt;}
.y125{bottom:478.070314pt;}
.y1f3{bottom:478.070316pt;}
.y84{bottom:482.315761pt;}
.yae{bottom:482.805987pt;}
.y1a5{bottom:484.166670pt;}
.y63{bottom:484.390293pt;}
.y161{bottom:484.710932pt;}
.y12{bottom:487.455972pt;}
.y20a{bottom:492.984373pt;}
.y37{bottom:494.934413pt;}
.yfd{bottom:497.989582pt;}
.ydf{bottom:499.622399pt;}
.y17d{bottom:500.166655pt;}
.y140{bottom:500.661461pt;}
.y98{bottom:500.982419pt;}
.y1c2{bottom:500.983067pt;}
.y1d4{bottom:500.984372pt;}
.y1f2{bottom:501.255207pt;}
.y124{bottom:501.255212pt;}
.y1a4{bottom:507.350261pt;}
.y160{bottom:507.894526pt;}
.y62{bottom:508.550453pt;}
.y11{bottom:513.306680pt;}
.y83{bottom:516.166013pt;}
.y209{bottom:516.166667pt;}
.y143{bottom:520.821617pt;}
.yfc{bottom:521.174480pt;}
.yad{bottom:521.990234pt;}
.yde{bottom:522.805993pt;}
.y17c{bottom:523.350264pt;}
.y97{bottom:524.166013pt;}
.y1d3{bottom:524.166661pt;}
.y1c1{bottom:524.166672pt;}
.y1f1{bottom:524.437500pt;}
.y123{bottom:524.437502pt;}
.y36{bottom:525.174320pt;}
.y1a3{bottom:530.533839pt;}
.y15f{bottom:531.078119pt;}
.y61{bottom:532.710280pt;}
.yca{bottom:537.445960pt;}
.y10{bottom:537.687987pt;}
.y208{bottom:539.348952pt;}
.y82{bottom:539.350267pt;}
.yac{bottom:545.174480pt;}
.ydd{bottom:545.989587pt;}
.y17b{bottom:546.533850pt;}
.y1d2{bottom:547.348954pt;}
.y1c0{bottom:547.350265pt;}
.y96{bottom:547.350267pt;}
.y1f0{bottom:547.622395pt;}
.y122{bottom:547.622400pt;}
.y1a2{bottom:553.717440pt;}
.y15e{bottom:554.263018pt;}
.y35{bottom:555.414387pt;}
.y13f{bottom:555.981777pt;}
.y60{bottom:556.870440pt;}
.yfb{bottom:560.358072pt;}
.yc9{bottom:560.630213pt;}
.y207{bottom:562.533850pt;}
.y81{bottom:562.534507pt;}
.yf{bottom:564.736001pt;}
.yab{bottom:568.358726pt;}
.ydc{bottom:569.174485pt;}
.y17a{bottom:569.717444pt;}
.y1d1{bottom:570.533849pt;}
.y1bf{bottom:570.533859pt;}
.y95{bottom:570.534505pt;}
.y121{bottom:570.805996pt;}
.y1ef{bottom:570.807293pt;}
.y1a1{bottom:576.903643pt;}
.y15d{bottom:577.445307pt;}
.y5f{bottom:581.030600pt;}
.yfa{bottom:583.542966pt;}
.yc8{bottom:583.813795pt;}
.y34{bottom:585.654293pt;}
.y80{bottom:585.718427pt;}
.y206{bottom:585.718741pt;}
.y13e{bottom:591.141924pt;}
.yaa{bottom:591.542320pt;}
.ye{bottom:591.784016pt;}
.ydb{bottom:592.358079pt;}
.y179{bottom:592.902339pt;}
.y1be{bottom:593.717453pt;}
.y94{bottom:593.718747pt;}
.y1ee{bottom:593.989587pt;}
.y120{bottom:593.989590pt;}
.y1a0{bottom:600.085932pt;}
.y5e{bottom:605.190427pt;}
.yf9{bottom:606.726560pt;}
.yc7{bottom:606.998693pt;}
.y7f{bottom:608.902347pt;}
.y205{bottom:608.903639pt;}
.y15c{bottom:611.024735pt;}
.yda{bottom:615.542973pt;}
.y33{bottom:615.894373pt;}
.y178{bottom:616.085929pt;}
.y93{bottom:616.902341pt;}
.y1bd{bottom:616.903640pt;}
.y1ed{bottom:617.174479pt;}
.y11f{bottom:617.174485pt;}
.yd{bottom:617.634640pt;}
.y19f{bottom:623.270831pt;}
.y4e{bottom:623.427734pt;}
.y197{bottom:624.358073pt;}
.y13d{bottom:626.302084pt;}
.y5d{bottom:629.350587pt;}
.yc6{bottom:630.182293pt;}
.ya9{bottom:630.726560pt;}
.y204{bottom:632.085929pt;}
.y7e{bottom:632.086587pt;}
.yd9{bottom:638.726571pt;}
.y177{bottom:639.270827pt;}
.y1d0{bottom:640.085933pt;}
.y1bc{bottom:640.085944pt;}
.y92{bottom:640.086587pt;}
.y11e{bottom:640.358075pt;}
.y1ec{bottom:640.359378pt;}
.yc{bottom:640.818680pt;}
.yf8{bottom:645.910811pt;}
.y32{bottom:646.134440pt;}
.y19e{bottom:646.453120pt;}
.y196{bottom:647.541667pt;}
.y4d{bottom:651.094396pt;}
.yc5{bottom:653.367193pt;}
.y5c{bottom:653.510413pt;}
.ya8{bottom:653.910154pt;}
.y7d{bottom:655.270187pt;}
.y203{bottom:655.270827pt;}
.y13b{bottom:661.462244pt;}
.yd8{bottom:661.910813pt;}
.y176{bottom:662.454428pt;}
.y91{bottom:663.270185pt;}
.y1cf{bottom:663.270826pt;}
.y1bb{bottom:663.270827pt;}
.y1eb{bottom:663.541667pt;}
.y15b{bottom:663.542966pt;}
.y11d{bottom:663.542973pt;}
.yb{bottom:664.002680pt;}
.yf7{bottom:669.094405pt;}
.y31{bottom:676.374347pt;}
.yc4{bottom:676.550787pt;}
.ya7{bottom:677.094400pt;}
.y5b{bottom:677.670253pt;}
.y202{bottom:678.453120pt;}
.y7c{bottom:678.454427pt;}
.yd7{bottom:685.094406pt;}
.y175{bottom:685.638037pt;}
.y19d{bottom:685.639318pt;}
.y4a{bottom:686.254237pt;}
.y1ba{bottom:686.453124pt;}
.y1ce{bottom:686.453130pt;}
.y90{bottom:686.454427pt;}
.y195{bottom:686.726556pt;}
.y15a{bottom:686.726559pt;}
.y11c{bottom:686.726560pt;}
.ya{bottom:687.186640pt;}
.yf6{bottom:692.277999pt;}
.y13a{bottom:696.622399pt;}
.ya6{bottom:700.278646pt;}
.y7b{bottom:701.638347pt;}
.y201{bottom:701.640630pt;}
.y5a{bottom:701.830400pt;}
.y49{bottom:706.414393pt;}
.y30{bottom:706.614427pt;}
.yd6{bottom:708.278000pt;}
.y174{bottom:708.821623pt;}
.y19c{bottom:708.822912pt;}
.y8f{bottom:709.638027pt;}
.y1b9{bottom:709.639319pt;}
.y1cd{bottom:709.640630pt;}
.y1ea{bottom:709.911453pt;}
.y194{bottom:709.911456pt;}
.y159{bottom:709.911458pt;}
.y11b{bottom:709.911459pt;}
.yf5{bottom:715.462245pt;}
.yc3{bottom:715.734373pt;}
.y9{bottom:719.159996pt;}
.ya5{bottom:723.462240pt;}
.y7a{bottom:724.822267pt;}
.y200{bottom:724.822919pt;}
.y59{bottom:725.990240pt;}
.y138{bottom:731.781248pt;}
.y19b{bottom:732.006505pt;}
.y173{bottom:732.006514pt;}
.y8e{bottom:732.822261pt;}
.y1b8{bottom:732.822913pt;}
.y1cc{bottom:732.822919pt;}
.y158{bottom:733.093747pt;}
.y11a{bottom:733.093752pt;}
.y193{bottom:733.093756pt;}
.y2f{bottom:736.854493pt;}
.yf4{bottom:738.645835pt;}
.y48{bottom:741.574380pt;}
.y1ff{bottom:748.005209pt;}
.y79{bottom:748.006507pt;}
.yd5{bottom:749.856773pt;}
.y58{bottom:750.150387pt;}
.y19a{bottom:755.190099pt;}
.y172{bottom:755.190112pt;}
.y1cb{bottom:756.005209pt;}
.y8d{bottom:756.006507pt;}
.y157{bottom:756.278640pt;}
.y119{bottom:756.278646pt;}
.y1e9{bottom:756.278650pt;}
.yc2{bottom:757.312493pt;}
.y8{bottom:757.799965pt;}
.yf3{bottom:761.830733pt;}
.ya4{bottom:762.645836pt;}
.y136{bottom:766.942705pt;}
.y2e{bottom:767.094400pt;}
.y1fe{bottom:771.190107pt;}
.y78{bottom:771.190760pt;}
.y57{bottom:774.310547pt;}
.y47{bottom:776.734540pt;}
.y199{bottom:778.373693pt;}
.y171{bottom:778.375006pt;}
.y1b7{bottom:779.190107pt;}
.y8c{bottom:779.190753pt;}
.y1e8{bottom:779.460939pt;}
.y192{bottom:779.460946pt;}
.y118{bottom:779.462240pt;}
.ya3{bottom:785.830079pt;}
.y77{bottom:794.374347pt;}
.yd4{bottom:794.374990pt;}
.y1fd{bottom:794.375000pt;}
.y7{bottom:796.440001pt;}
.y2d{bottom:797.334307pt;}
.y56{bottom:798.470373pt;}
.yf2{bottom:801.014326pt;}
.y170{bottom:801.558600pt;}
.y1ca{bottom:802.373693pt;}
.y1b6{bottom:802.373708pt;}
.y8b{bottom:802.374347pt;}
.y156{bottom:802.645834pt;}
.y117{bottom:802.645844pt;}
.y191{bottom:802.647126pt;}
.ya2{bottom:809.014325pt;}
.y135{bottom:809.286453pt;}
.yc1{bottom:809.830733pt;}
.y44{bottom:811.894529pt;}
.y76{bottom:817.558267pt;}
.yd3{bottom:817.558591pt;}
.y198{bottom:817.559896pt;}
.y55{bottom:822.630213pt;}
.yf1{bottom:824.197920pt;}
.y8a{bottom:825.558600pt;}
.y1c9{bottom:825.559893pt;}
.y1b5{bottom:825.559896pt;}
.y190{bottom:825.830724pt;}
.y116{bottom:825.830727pt;}
.y1e7{bottom:825.830729pt;}
.y155{bottom:825.830732pt;}
.y2c{bottom:827.574387pt;}
.ya1{bottom:832.198571pt;}
.y134{bottom:832.470046pt;}
.yc0{bottom:833.014331pt;}
.y6{bottom:839.080001pt;}
.y16f{bottom:840.742185pt;}
.y75{bottom:840.742187pt;}
.yd2{bottom:840.742841pt;}
.y54{bottom:846.790360pt;}
.y89{bottom:848.742185pt;}
.y115{bottom:849.014321pt;}
.y154{bottom:849.014326pt;}
.y18f{bottom:849.014333pt;}
.y1e6{bottom:849.015627pt;}
.y42{bottom:852.214516pt;}
.ya0{bottom:855.382813pt;}
.y133{bottom:855.653640pt;}
.ybf{bottom:856.198573pt;}
.y2b{bottom:857.814453pt;}
.yf0{bottom:863.382813pt;}
.y74{bottom:863.926427pt;}
.yd1{bottom:863.926431pt;}
.y16e{bottom:863.927083pt;}
.y53{bottom:870.950520pt;}
.y88{bottom:871.926431pt;}
.y1b4{bottom:871.927083pt;}
.y114{bottom:872.197919pt;}
.y153{bottom:872.197920pt;}
.y5{bottom:872.930667pt;}
.yef{bottom:886.566407pt;}
.y16d{bottom:887.109373pt;}
.yd0{bottom:887.110029pt;}
.y73{bottom:887.110677pt;}
.y40{bottom:887.374349pt;}
.y2a{bottom:888.054361pt;}
.y132{bottom:889.233075pt;}
.y1b3{bottom:895.109373pt;}
.y52{bottom:895.110352pt;}
.y87{bottom:895.110677pt;}
.y1e5{bottom:895.380208pt;}
.y18e{bottom:895.381513pt;}
.y113{bottom:895.382813pt;}
.ybe{bottom:895.382815pt;}
.y4{bottom:896.114665pt;}
.y9f{bottom:896.960939pt;}
.ycf{bottom:910.294271pt;}
.y72{bottom:910.294596pt;}
.y86{bottom:918.294271pt;}
.y29{bottom:918.294352pt;}
.ybd{bottom:918.566405pt;}
.y112{bottom:918.566407pt;}
.y152{bottom:918.566408pt;}
.y18d{bottom:918.567708pt;}
.y3{bottom:919.298665pt;}
.y51{bottom:922.294271pt;}
.yee{bottom:925.750651pt;}
.y1{bottom:935.298665pt;}
.y111{bottom:941.749998pt;}
.ybc{bottom:941.750003pt;}
.y71{bottom:954.267579pt;}
.y28{bottom:954.267742pt;}
.y3f{bottom:954.267905pt;}
.y16c{bottom:954.268230pt;}
.ybb{bottom:964.934245pt;}
.y110{bottom:964.934896pt;}
.y6e{bottom:980.934245pt;}
.y25{bottom:980.934408pt;}
.y3c{bottom:980.934571pt;}
.y10d{bottom:980.934896pt;}
.h19{height:23.616000pt;}
.h8{height:31.488001pt;}
.hc{height:33.600000pt;}
.h1d{height:34.158855pt;}
.h11{height:34.159831pt;}
.hf{height:34.159993pt;}
.h1f{height:34.160156pt;}
.h1e{height:34.161459pt;}
.hd{height:35.424000pt;}
.h1a{height:39.359999pt;}
.h23{height:39.360015pt;}
.h6{height:41.066668pt;}
.h15{height:44.416000pt;}
.ha{height:44.800000pt;}
.h4{height:46.720000pt;}
.h2{height:47.232000pt;}
.h10{height:48.320000pt;}
.h13{height:54.320149pt;}
.h20{height:54.320312pt;}
.h5{height:54.506665pt;}
.h21{height:54.950377pt;}
.h18{height:54.950389pt;}
.h22{height:54.950409pt;}
.h17{height:62.293335pt;}
.h12{height:74.479817pt;}
.h3{height:78.613331pt;}
.h1b{height:125.186200pt;}
.hb{height:125.186680pt;}
.h14{height:125.186853pt;}
.h24{height:125.187493pt;}
.h7{height:128.306640pt;}
.h1c{height:141.731771pt;}
.he{height:141.732096pt;}
.h9{height:141.732259pt;}
.h16{height:141.732421pt;}
.h1{height:187.368001pt;}
.h0{height:1122.666667pt;}
.w3{width:69.000000pt;}
.w2{width:99.000000pt;}
.w4{width:208.000000pt;}
.w5{width:216.000000pt;}
.w7{width:276.000000pt;}
.w6{width:322.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x12{left:6.000000pt;}
.x2{left:96.000000pt;}
.x11{left:97.000000pt;}
.x1f{left:100.440063pt;}
.x18{left:101.927139pt;}
.x5{left:119.880325pt;}
.x1a{left:143.000000pt;}
.x19{left:144.000000pt;}
.x4{left:148.602234pt;}
.x13{left:197.000000pt;}
.x8{left:235.073169pt;}
.x6{left:245.910027pt;}
.xc{left:249.615616pt;}
.x14{left:267.000000pt;}
.x17{left:269.007750pt;}
.x16{left:289.240400pt;}
.xa{left:297.869732pt;}
.x10{left:324.039150pt;}
.x7{left:328.394260pt;}
.x3{left:336.940960pt;}
.x9{left:341.266270pt;}
.x1{left:396.850400pt;}
.x1d{left:420.000000pt;}
.x15{left:476.000000pt;}
.xe{left:505.700780pt;}
.xd{left:551.850400pt;}
.xb{left:650.000000pt;}
.x20{left:651.464420pt;}
.x21{left:652.844420pt;}
.x1b{left:653.792420pt;}
.x1e{left:655.172420pt;}
.x1c{left:657.500490pt;}
.xf{left:659.336490pt;}
}




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