
    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_75e8ac978d0b7f34315de665.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a6db812c4b0ac36471d43271.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a900886a63fa777858fadea3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_1a4b7f2e7c27f4e879e2b241.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_220175fad01ba627b6ced576.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_39679fe374321ff4f63c7497.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a7e61cb74e59134b16681c0b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_18bc058c011176cc458583dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eb3849778e3bcea82ff91b8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000011,-0.249526,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.249526,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.249526,0.250000,0.000011,0,0);}
.m2{transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249104,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,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);}
.v6{vertical-align:-79.948200px;}
.v2{vertical-align:-33.072600px;}
.va{vertical-align:-30.196800px;}
.v7{vertical-align:-25.246200px;}
.v9{vertical-align:-17.973600px;}
.v4{vertical-align:-9.346200px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:9.346200px;}
.v8{vertical-align:17.973600px;}
.v5{vertical-align:25.837800px;}
.v3{vertical-align:30.196800px;}
.v1{vertical-align:33.072600px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.003670px;}
.ls1d{letter-spacing:0.066145px;}
.ls1c{letter-spacing:0.077121px;}
.ls9{letter-spacing:0.118847px;}
.ls17{letter-spacing:0.119449px;}
.ls1e{letter-spacing:0.129165px;}
.ls19{letter-spacing:0.198436px;}
.ls1{letter-spacing:0.238698px;}
.ls5{letter-spacing:0.354479px;}
.lse{letter-spacing:0.411180px;}
.ls6{letter-spacing:0.517211px;}
.ls16{letter-spacing:10.241355px;}
.ls12{letter-spacing:10.241957px;}
.ls15{letter-spacing:10.964692px;}
.ls0{letter-spacing:14.237560px;}
.ls10{letter-spacing:16.026247px;}
.ls14{letter-spacing:16.748982px;}
.lsf{letter-spacing:16.749585px;}
.ls8{letter-spacing:18.195657px;}
.ls2{letter-spacing:18.575778px;}
.ls1b{letter-spacing:18.918392px;}
.ls3{letter-spacing:19.299115px;}
.ls11{letter-spacing:22.533875px;}
.ls1a{letter-spacing:23.980550px;}
.lsd{letter-spacing:28.293755px;}
.ls13{letter-spacing:31.934250px;}
.ls18{letter-spacing:35.549130px;}
.lsb{letter-spacing:163.940607px;}
.lsc{letter-spacing:252.638099px;}
.lsa{letter-spacing:640.607825px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-36.043365px;}
.ws5{word-spacing:-17.974230px;}
.ws8{word-spacing:-17.953080px;}
.ws19{word-spacing:-17.889319px;}
.ws12{word-spacing:-16.734736px;}
.ws18{word-spacing:-16.602445px;}
.ws1{word-spacing:-16.536300px;}
.ws4{word-spacing:-14.918612px;}
.wsf{word-spacing:-10.425054px;}
.ws2{word-spacing:-0.024958px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:0.282710px;}
.ws11{word-spacing:0.579476px;}
.ws9{word-spacing:2.051735px;}
.wse{word-spacing:6.268692px;}
.ws10{word-spacing:6.349935px;}
.ws17{word-spacing:7.105327px;}
.ws16{word-spacing:7.294606px;}
.ws15{word-spacing:7.869366px;}
.wsa{word-spacing:9.293823px;}
.ws13{word-spacing:11.443544px;}
.ws6{word-spacing:30.235132px;}
.ws1b{word-spacing:50.722154px;}
.ws7{word-spacing:113.952198px;}
.wsc{word-spacing:262.042227px;}
.ws1a{word-spacing:274.359448px;}
.wsd{word-spacing:282.896350px;}
.wsb{word-spacing:389.749232px;}
._32{margin-left:-289.607490px;}
._2e{margin-left:-274.366983px;}
._33{margin-left:-262.207477px;}
._31{margin-left:-251.803515px;}
._2c{margin-left:-245.022959px;}
._2b{margin-left:-239.528977px;}
._25{margin-left:-216.385501px;}
._23{margin-left:-207.498732px;}
._24{margin-left:-205.446096px;}
._2f{margin-left:-202.515798px;}
._1f{margin-left:-192.381184px;}
._1d{margin-left:-165.919348px;}
._2d{margin-left:-159.615770px;}
._20{margin-left:-127.749888px;}
._21{margin-left:-107.618483px;}
._30{margin-left:-104.692017px;}
._1e{margin-left:-87.209895px;}
._3{margin-left:-9.015155px;}
._34{margin-left:-7.604642px;}
._6{margin-left:-5.705021px;}
._10{margin-left:-3.877074px;}
._8{margin-left:-2.685975px;}
._2{margin-left:-1.070545px;}
._0{width:1.670884px;}
._13{width:2.980127px;}
._d{width:4.417597px;}
._c{width:5.727866px;}
._11{width:6.804320px;}
._18{width:7.821813px;}
._b{width:8.828848px;}
._a{width:10.323679px;}
._1a{width:11.982447px;}
._f{width:13.483455px;}
._1c{width:14.631333px;}
._5{width:15.858418px;}
._14{width:17.109389px;}
._17{width:18.113034px;}
._4{width:19.251837px;}
._9{width:20.863744px;}
._7{width:22.234894px;}
._2a{width:23.287624px;}
._19{width:24.333674px;}
._e{width:26.276710px;}
._12{width:27.416195px;}
._27{width:29.099822px;}
._22{width:30.373591px;}
._16{width:32.047410px;}
._15{width:33.179205px;}
._1b{width:34.433365px;}
._26{width:36.395043px;}
._28{width:37.923917px;}
._39{width:42.156146px;}
._3b{width:43.860718px;}
._38{width:45.233230px;}
._36{width:46.731194px;}
._3a{width:59.134165px;}
._37{width:66.356859px;}
._29{width:76.319584px;}
._35{width:310.913308px;}
._1{width:1809.072938px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.700216px;}
.fsa{font-size:41.890530px;}
.fs9{font-size:41.939868px;}
.fs3{font-size:48.170940px;}
.fs0{font-size:59.674446px;}
.fsd{font-size:64.582380px;}
.fs6{font-size:66.145200px;}
.fse{font-size:70.323060px;}
.fsc{font-size:71.758200px;}
.fsb{font-size:71.812320px;}
.fs4{font-size:71.896920px;}
.fs2{font-size:77.648700px;}
.fs5{font-size:84.119400px;}
.fs8{font-size:107.845380px;}
.fs1{font-size:120.067860px;}
.y0{bottom:0.000000px;}
.y124{bottom:2.678550px;}
.yf2{bottom:3.774450px;}
.y108{bottom:3.774600px;}
.y39{bottom:3.779700px;}
.ye4{bottom:3.954300px;}
.y110{bottom:3.954450px;}
.y2c{bottom:4.111650px;}
.ye6{bottom:4.134000px;}
.ye2{bottom:4.134150px;}
.y131{bottom:4.313700px;}
.y138{bottom:4.313850px;}
.y133{bottom:4.493550px;}
.y83{bottom:4.673400px;}
.y101{bottom:5.032800px;}
.y13a{bottom:5.392200px;}
.y13f{bottom:5.392350px;}
.y144{bottom:5.571900px;}
.y135{bottom:5.572050px;}
.y14f{bottom:6.291000px;}
.y125{bottom:6.445950px;}
.y154{bottom:7.369500px;}
.ye1{bottom:8.088450px;}
.y127{bottom:8.247300px;}
.y30{bottom:8.324250px;}
.y82{bottom:9.166800px;}
.y151{bottom:9.885750px;}
.y122{bottom:11.047650px;}
.y2b{bottom:11.694450px;}
.y11a{bottom:12.314700px;}
.y38{bottom:16.309500px;}
.y36{bottom:16.536150px;}
.y2d{bottom:18.153900px;}
.y3b{bottom:22.621050px;}
.y107{bottom:22.647600px;}
.y116{bottom:23.007000px;}
.y130{bottom:24.624750px;}
.y31{bottom:25.596450px;}
.y149{bottom:27.320850px;}
.y32{bottom:30.090000px;}
.y2f{bottom:31.681350px;}
.y3a{bottom:33.935250px;}
.y2e{bottom:38.140950px;}
.y118{bottom:41.880000px;}
.y12e{bottom:44.576100px;}
.y148{bottom:46.373550px;}
.y14a{bottom:46.732950px;}
.y120{bottom:89.541750px;}
.y11c{bottom:113.401200px;}
.y2{bottom:131.571390px;}
.y11d{bottom:144.257250px;}
.y72{bottom:149.545605px;}
.y147{bottom:151.522800px;}
.yab{bottom:151.882200px;}
.y15c{bottom:153.499950px;}
.y189{bottom:154.398600px;}
.y80{bottom:156.016350px;}
.y53{bottom:159.790950px;}
.yc2{bottom:165.003450px;}
.y71{bottom:168.418500px;}
.y21{bottom:170.575500px;}
.yaa{bottom:170.755200px;}
.y188{bottom:171.653850px;}
.y117{bottom:172.013400px;}
.y15b{bottom:172.372950px;}
.y7f{bottom:174.889350px;}
.y11e{bottom:175.113300px;}
.yc1{bottom:184.056150px;}
.y70{bottom:187.471200px;}
.yc6{bottom:188.370000px;}
.y187{bottom:188.909250px;}
.y20{bottom:189.448350px;}
.ya9{bottom:189.807900px;}
.y15a{bottom:191.425500px;}
.y7e{bottom:193.762200px;}
.yb4{bottom:194.301450px;}
.y52{bottom:197.716500px;}
.yc0{bottom:202.929150px;}
.yca{bottom:205.265700px;}
.yc5{bottom:205.445400px;}
.y11f{bottom:205.969350px;}
.y186{bottom:206.164500px;}
.y6f{bottom:206.344200px;}
.y1f{bottom:208.501050px;}
.yb3{bottom:213.354150px;}
.y146{bottom:213.893400px;}
.y51{bottom:216.589500px;}
.ybf{bottom:221.802000px;}
.yc9{bottom:222.520950px;}
.y185{bottom:223.239900px;}
.y159{bottom:224.138700px;}
.y6e{bottom:225.396900px;}
.y1e{bottom:227.374050px;}
.ya8{bottom:227.733450px;}
.yd6{bottom:229.530900px;}
.y7d{bottom:231.687900px;}
.yb2{bottom:232.227000px;}
.y50{bottom:235.462500px;}
.y184{bottom:240.495150px;}
.yc4{bottom:241.933200px;}
.y158{bottom:243.011550px;}
.y6d{bottom:244.269750px;}
.y1d{bottom:246.246900px;}
.ya7{bottom:246.606450px;}
.yd5{bottom:248.403900px;}
.y7c{bottom:250.740600px;}
.yb1{bottom:251.279700px;}
.y145{bottom:252.537900px;}
.y183{bottom:257.750400px;}
.yc8{bottom:258.828900px;}
.ybe{bottom:259.727700px;}
.y157{bottom:261.884550px;}
.y6c{bottom:263.142750px;}
.ya6{bottom:265.479450px;}
.y1c{bottom:265.659150px;}
.yd4{bottom:267.276750px;}
.yef{bottom:267.636300px;}
.y115{bottom:268.175550px;}
.y7b{bottom:269.613450px;}
.y143{bottom:272.489400px;}
.y4f{bottom:273.388050px;}
.y182{bottom:275.005800px;}
.ybd{bottom:278.780250px;}
.y156{bottom:280.937250px;}
.y6b{bottom:282.195450px;}
.ya5{bottom:284.532000px;}
.yd3{bottom:286.329450px;}
.yee{bottom:286.509300px;}
.y114{bottom:287.947200px;}
.y7a{bottom:288.666150px;}
.yb0{bottom:289.025700px;}
.y181{bottom:292.261050px;}
.y4e{bottom:292.440750px;}
.y142{bottom:293.698950px;}
.ybc{bottom:297.653250px;}
.y155{bottom:299.810100px;}
.y6a{bottom:301.068450px;}
.ya4{bottom:303.405000px;}
.yd2{bottom:305.202450px;}
.yed{bottom:305.382150px;}
.y1b{bottom:307.179600px;}
.y79{bottom:307.539150px;}
.yaf{bottom:308.078250px;}
.y180{bottom:309.516300px;}
.y4d{bottom:311.313750px;}
.y141{bottom:313.830000px;}
.ybb{bottom:316.705950px;}
.y69{bottom:320.121000px;}
.yec{bottom:324.434850px;}
.y17f{bottom:326.591850px;}
.yae{bottom:326.951250px;}
.y113{bottom:327.310800px;}
.y153{bottom:334.500450px;}
.y140{bottom:335.039700px;}
.yba{bottom:335.578950px;}
.y68{bottom:338.994000px;}
.ya3{bottom:342.049650px;}
.yd1{bottom:343.128000px;}
.yeb{bottom:343.307850px;}
.y17e{bottom:343.847100px;}
.y78{bottom:346.003950px;}
.y112{bottom:346.902600px;}
.y1a{bottom:347.621700px;}
.y4c{bottom:349.239300px;}
.y13e{bottom:355.170750px;}
.y152{bottom:357.687150px;}
.y17d{bottom:361.102350px;}
.yd0{bottom:362.001000px;}
.yea{bottom:362.360550px;}
.yad{bottom:364.697100px;}
.y19{bottom:364.876950px;}
.y111{bottom:366.674250px;}
.y4b{bottom:368.112300px;}
.y67{bottom:373.504500px;}
.y13d{bottom:376.200600px;}
.y17c{bottom:378.357600px;}
.y150{bottom:379.615800px;}
.ycf{bottom:381.053700px;}
.ya2{bottom:384.468750px;}
.y10f{bottom:386.445900px;}
.y4a{bottom:387.165000px;}
.y77{bottom:390.220500px;}
.y66{bottom:392.377500px;}
.y17b{bottom:395.612850px;}
.y13c{bottom:396.331800px;}
.ye9{bottom:400.106400px;}
.ya1{bottom:403.341750px;}
.y14e{bottom:405.318900px;}
.y18{bottom:405.498600px;}
.y49{bottom:406.037850px;}
.y76{bottom:409.093500px;}
.yb9{bottom:411.430200px;}
.y17a{bottom:412.868100px;}
.y13b{bottom:417.541350px;}
.ye8{bottom:419.159100px;}
.yce{bottom:420.597000px;}
.ya0{bottom:422.214750px;}
.y48{bottom:425.090550px;}
.y10e{bottom:425.809500px;}
.y14d{bottom:427.247400px;}
.y75{bottom:428.146200px;}
.y179{bottom:429.943650px;}
.y65{bottom:430.303050px;}
.y139{bottom:437.672550px;}
.ye7{bottom:438.031950px;}
.ycd{bottom:439.649700px;}
.y9f{bottom:441.267450px;}
.y47{bottom:443.963550px;}
.y10d{bottom:445.401450px;}
.y178{bottom:447.198900px;}
.y17{bottom:447.558300px;}
.y64{bottom:449.176050px;}
.y137{bottom:458.882100px;}
.y9e{bottom:460.140300px;}
.y177{bottom:464.454150px;}
.y16{bottom:464.813550px;}
.y10c{bottom:465.173100px;}
.y74{bottom:467.509800px;}
.yb8{bottom:468.228750px;}
.ye5{bottom:477.036150px;}
.y136{bottom:478.833450px;}
.y9d{bottom:479.193000px;}
.y176{bottom:481.709400px;}
.y46{bottom:481.889100px;}
.y15{bottom:482.068800px;}
.y10b{bottom:484.944750px;}
.y63{bottom:487.101600px;}
.y14c{bottom:488.539650px;}
.ye3{bottom:496.807800px;}
.y9c{bottom:498.065850px;}
.y175{bottom:498.964650px;}
.y14{bottom:499.144350px;}
.y134{bottom:500.043150px;}
.y45{bottom:500.762100px;}
.y10a{bottom:504.536700px;}
.y62{bottom:506.154300px;}
.y174{bottom:516.040200px;}
.y13{bottom:516.399600px;}
.y9b{bottom:516.938850px;}
.ycc{bottom:517.118700px;}
.y44{bottom:519.814800px;}
.y132{bottom:521.252700px;}
.y1a1{bottom:521.612250px;}
.y109{bottom:524.308350px;}
.y61{bottom:525.027300px;}
.y173{bottom:533.295450px;}
.y12{bottom:533.654850px;}
.y9a{bottom:535.991550px;}
.ye0{bottom:536.171250px;}
.y1a0{bottom:538.867500px;}
.y12d{bottom:541.383900px;}
.y106{bottom:543.900150px;}
.y14b{bottom:544.080000px;}
.y172{bottom:550.550700px;}
.y11{bottom:550.910100px;}
.ycb{bottom:554.684700px;}
.y99{bottom:554.864550px;}
.y19f{bottom:556.122750px;}
.y43{bottom:557.560650px;}
.y12f{bottom:561.335250px;}
.y60{bottom:562.952850px;}
.y171{bottom:567.805950px;}
.y10{bottom:568.165350px;}
.y19e{bottom:573.378000px;}
.y98{bottom:573.917100px;}
.y42{bottom:576.613350px;}
.y5f{bottom:581.825850px;}
.y170{bottom:585.061200px;}
.ydf{bottom:585.240900px;}
.yf{bottom:585.420750px;}
.y19d{bottom:590.633250px;}
.y97{bottom:592.790100px;}
.y41{bottom:595.486200px;}
.y5e{bottom:600.878550px;}
.y16f{bottom:602.316450px;}
.ye{bottom:602.496300px;}
.y105{bottom:605.192400px;}
.yc3{bottom:607.888500px;}
.y96{bottom:611.663100px;}
.y40{bottom:614.538900px;}
.y16e{bottom:619.392000px;}
.yd{bottom:619.751550px;}
.yde{bottom:621.728550px;}
.y12c{bottom:622.986900px;}
.yc7{bottom:624.784200px;}
.y19c{bottom:624.964050px;}
.y95{bottom:630.715800px;}
.y3f{bottom:633.411900px;}
.y16d{bottom:636.647250px;}
.y5d{bottom:638.624400px;}
.ydd{bottom:640.781400px;}
.y104{bottom:641.680050px;}
.y19b{bottom:642.219300px;}
.y94{bottom:649.588650px;}
.y3e{bottom:652.284900px;}
.y16c{bottom:653.902500px;}
.y5c{bottom:657.677100px;}
.y19a{bottom:659.115000px;}
.y12b{bottom:659.474550px;}
.ydc{bottom:659.654250px;}
.yc{bottom:660.373200px;}
.y103{bottom:660.732750px;}
.y93{bottom:668.641350px;}
.y16b{bottom:671.157750px;}
.y3d{bottom:671.337600px;}
.y5b{bottom:676.550100px;}
.y12a{bottom:678.347400px;}
.ydb{bottom:678.527250px;}
.y92{bottom:687.514350px;}
.y73{bottom:688.413000px;}
.y3c{bottom:690.210450px;}
.yb7{bottom:695.602650px;}
.y129{bottom:697.400100px;}
.yda{bottom:697.579950px;}
.y102{bottom:699.736800px;}
.y199{bottom:705.129150px;}
.y16a{bottom:705.668250px;}
.y91{bottom:706.387200px;}
.y5a{bottom:714.475650px;}
.yd9{bottom:716.452800px;}
.y100{bottom:719.508450px;}
.y37{bottom:722.204550px;}
.y198{bottom:722.384250px;}
.y35{bottom:722.384400px;}
.yb{bottom:725.260200px;}
.y59{bottom:733.348650px;}
.y128{bottom:734.966250px;}
.y197{bottom:739.639500px;}
.yff{bottom:740.178750px;}
.y169{bottom:742.695150px;}
.y90{bottom:744.312900px;}
.ya{bottom:750.783600px;}
.y58{bottom:752.401350px;}
.yd8{bottom:755.097450px;}
.y196{bottom:756.715050px;}
.yfe{bottom:759.950400px;}
.y8f{bottom:763.365600px;}
.y11b{bottom:767.140200px;}
.yb6{bottom:771.274200px;}
.y195{bottom:773.970300px;}
.y126{bottom:775.048800px;}
.yfd{bottom:779.722050px;}
.y8e{bottom:782.238600px;}
.y9{bottom:783.676500px;}
.y168{bottom:785.114400px;}
.y57{bottom:790.326900px;}
.yd7{bottom:795.359700px;}
.y34{bottom:796.258350px;}
.yfc{bottom:799.493850px;}
.y8d{bottom:801.291300px;}
.y167{bottom:803.987400px;}
.y194{bottom:808.121400px;}
.y8{bottom:809.199900px;}
.y121{bottom:818.007300px;}
.yfb{bottom:819.265500px;}
.y8c{bottom:820.164150px;}
.y166{bottom:823.040100px;}
.y56{bottom:828.252450px;}
.y2a{bottom:831.667650px;}
.y8b{bottom:839.037000px;}
.yfa{bottom:839.037150px;}
.y7{bottom:841.912950px;}
.y193{bottom:845.507850px;}
.yac{bottom:847.125450px;}
.y33{bottom:849.821550px;}
.y8a{bottom:858.089850px;}
.yf9{bottom:858.808800px;}
.y165{bottom:860.965650px;}
.y55{bottom:865.998450px;}
.y6{bottom:867.436350px;}
.y123{bottom:871.929900px;}
.y89{bottom:876.962700px;}
.yf8{bottom:878.580450px;}
.y164{bottom:879.838650px;}
.y192{bottom:883.073850px;}
.y54{bottom:885.051150px;}
.yf7{bottom:898.352100px;}
.y163{bottom:898.711500px;}
.y5{bottom:899.071050px;}
.y191{bottom:900.149550px;}
.y29{bottom:903.924000px;}
.y88{bottom:914.888250px;}
.y190{bottom:917.404650px;}
.y162{bottom:917.764200px;}
.yf6{bottom:918.123750px;}
.y28{bottom:922.976700px;}
.y87{bottom:933.761250px;}
.y18f{bottom:934.660050px;}
.y161{bottom:936.637050px;}
.yf5{bottom:937.895400px;}
.y27{bottom:941.849700px;}
.y18e{bottom:951.915300px;}
.y160{bottom:955.689900px;}
.yf4{bottom:957.667050px;}
.y4{bottom:958.386000px;}
.y26{bottom:960.722700px;}
.y18d{bottom:969.170400px;}
.y86{bottom:971.686950px;}
.y15f{bottom:974.562750px;}
.yf3{bottom:977.438700px;}
.y25{bottom:979.775250px;}
.y18c{bottom:986.425800px;}
.y85{bottom:990.739500px;}
.y3{bottom:991.997700px;}
.y15e{bottom:993.435750px;}
.yf1{bottom:997.210350px;}
.y24{bottom:998.648250px;}
.y18b{bottom:1003.501350px;}
.y119{bottom:1009.253100px;}
.y23{bottom:1017.700950px;}
.y18a{bottom:1020.756600px;}
.y81{bottom:1024.351350px;}
.y84{bottom:1029.024750px;}
.y15d{bottom:1032.080250px;}
.yb5{bottom:1036.214400px;}
.y22{bottom:1036.573950px;}
.yf0{bottom:1038.011850px;}
.y1{bottom:1071.623700px;}
.h21{height:18.872835px;}
.h25{height:18.872985px;}
.h22{height:19.052550px;}
.h23{height:19.052580px;}
.h20{height:19.052700px;}
.h31{height:19.232325px;}
.h35{height:19.232400px;}
.h39{height:19.232475px;}
.h32{height:19.412100px;}
.h38{height:19.412205px;}
.h24{height:19.951350px;}
.h36{height:20.310900px;}
.h33{height:20.490510px;}
.h37{height:20.490600px;}
.h34{height:20.490660px;}
.h3c{height:21.209550px;}
.h3e{height:21.209640px;}
.h3f{height:22.288050px;}
.h1f{height:23.366535px;}
.h3d{height:24.804330px;}
.h1a{height:27.141090px;}
.h2c{height:28.039800px;}
.h28{height:31.095420px;}
.h3a{height:37.925520px;}
.h26{height:37.925670px;}
.h16{height:38.801922px;}
.he{height:38.847622px;}
.h30{height:39.902700px;}
.h14{height:41.113264px;}
.h10{height:41.141208px;}
.hf{height:41.161687px;}
.h5{height:47.277143px;}
.hb{height:49.608870px;}
.h12{height:50.866950px;}
.h13{height:51.046815px;}
.h27{height:56.798550px;}
.h6{height:58.538067px;}
.h2{height:58.567205px;}
.h2f{height:59.854050px;}
.h40{height:60.140653px;}
.h3b{height:61.651650px;}
.h1c{height:64.885599px;}
.h9{height:64.917896px;}
.h17{height:66.517564px;}
.hd{height:66.595926px;}
.h19{height:66.661959px;}
.h2b{height:67.357404px;}
.h18{height:70.444800px;}
.h15{height:70.479865px;}
.h11{height:70.527789px;}
.h8{height:70.562895px;}
.h1d{height:71.122682px;}
.ha{height:71.123282px;}
.h1e{height:72.458615px;}
.h2e{height:73.344754px;}
.h29{height:74.841560px;}
.h3{height:80.025698px;}
.h4{height:80.349743px;}
.h7{height:84.776583px;}
.h1b{height:88.501389px;}
.hc{height:99.893890px;}
.h2d{height:115.574295px;}
.h2a{height:284.352300px;}
.h1{height:1186.299150px;}
.h0{height:1188.000000px;}
.w11{width:48.802590px;}
.w17{width:101.927250px;}
.w15{width:107.329800px;}
.w16{width:111.291450px;}
.w3{width:115.793610px;}
.w18{width:119.755500px;}
.we{width:125.157945px;}
.wb{width:132.361200px;}
.wa{width:132.361290px;}
.wc{width:132.541350px;}
.wd{width:133.801800px;}
.w7{width:164.596200px;}
.w19{width:177.922350px;}
.w1a{width:185.485800px;}
.w4{width:190.708350px;}
.w1{width:193.769700px;}
.w6{width:206.915850px;}
.w13{width:218.981400px;}
.w5{width:221.142300px;}
.w14{width:222.042900px;}
.w10{width:235.549050px;}
.w8{width:284.351700px;}
.w9{width:286.332600px;}
.w12{width:350.082000px;}
.wf{width:556.457550px;}
.w2{width:623.628750px;}
.w0{width:918.000000px;}
.x1f{left:-56.366100px;}
.x0{left:0.000000px;}
.xd{left:3.001395px;}
.x18{left:8.957265px;}
.x17{left:11.630385px;}
.x12{left:14.444190px;}
.x11{left:16.132470px;}
.x28{left:19.894500px;}
.x2d{left:23.816085px;}
.x47{left:29.173500px;}
.x5d{left:32.414940px;}
.x62{left:33.675600px;}
.x37{left:35.656500px;}
.x5a{left:37.049850px;}
.x61{left:38.357700px;}
.x39{left:41.059050px;}
.x64{left:42.859800px;}
.x24{left:44.387250px;}
.x66{left:47.001750px;}
.x50{left:48.982650px;}
.x16{left:50.132505px;}
.x53{left:51.323850px;}
.x4e{left:52.944450px;}
.x54{left:54.024900px;}
.x45{left:56.185950px;}
.x23{left:57.900600px;}
.x3e{left:61.408350px;}
.x48{left:63.569400px;}
.x4a{left:65.910450px;}
.x3a{left:68.071500px;}
.x27{left:70.006200px;}
.x6d{left:71.673150px;}
.x6c{left:74.194200px;}
.x49{left:76.535400px;}
.xf{left:78.551955px;}
.x46{left:80.497200px;}
.x25{left:81.830250px;}
.x43{left:86.079900px;}
.x3d{left:89.321400px;}
.x22{left:91.167600px;}
.x1d{left:92.574105px;}
.x26{left:98.299650px;}
.x3c{left:99.406050px;}
.x67{left:100.846740px;}
.x21{left:103.695600px;}
.x65{left:104.988540px;}
.x3b{left:106.249200px;}
.x4b{left:110.571150px;}
.x1c{left:115.459755px;}
.x2c{left:119.595885px;}
.x1b{left:120.665205px;}
.x1a{left:125.167305px;}
.x2{left:128.399445px;}
.x41{left:129.840150px;}
.x10{left:131.076255px;}
.xe{left:133.327305px;}
.x14{left:136.469355px;}
.x44{left:137.943900px;}
.x57{left:139.253250px;}
.x15{left:143.503905px;}
.x4{left:145.687440px;}
.x19{left:150.585405px;}
.x13{left:155.087355px;}
.x4c{left:161.354700px;}
.x40{left:166.937250px;}
.x30{left:169.818600px;}
.x69{left:172.519800px;}
.x56{left:174.320700px;}
.x1{left:175.941450px;}
.x2b{left:181.151835px;}
.x8{left:183.685050px;}
.x5c{left:185.485800px;}
.x20{left:189.807900px;}
.x59{left:191.428650px;}
.x5b{left:204.034500px;}
.x3{left:209.617050px;}
.x6{left:225.284250px;}
.xa{left:227.265150px;}
.x34{left:238.070250px;}
.x4d{left:261.661200px;}
.x33{left:263.101800px;}
.x6a{left:270.485250px;}
.x2a{left:289.934250px;}
.x35{left:302.179950px;}
.x36{left:320.728500px;}
.x5{left:325.590750px;}
.x68{left:327.211500px;}
.x9{left:330.993300px;}
.x2f{left:332.974200px;}
.x5e{left:348.101100px;}
.x7{left:358.005750px;}
.xb{left:371.512050px;}
.x58{left:375.113700px;}
.x3f{left:385.198350px;}
.x55{left:389.880450px;}
.x4f{left:394.382550px;}
.x32{left:399.244800px;}
.x31{left:413.471400px;}
.x6b{left:448.947900px;}
.x42{left:451.649100px;}
.x60{left:455.791050px;}
.x29{left:519.180255px;}
.x51{left:527.284050px;}
.x38{left:542.230950px;}
.x5f{left:567.442650px;}
.x1e{left:637.315050px;}
.x2e{left:652.081950px;}
.x52{left:660.185700px;}
.x63{left:669.730050px;}
.xc{left:761.752650px;}
@media print{
.v6{vertical-align:-71.065067pt;}
.v2{vertical-align:-29.397867pt;}
.va{vertical-align:-26.841600pt;}
.v7{vertical-align:-22.441067pt;}
.v9{vertical-align:-15.976533pt;}
.v4{vertical-align:-8.307733pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:8.307733pt;}
.v8{vertical-align:15.976533pt;}
.v5{vertical-align:22.966933pt;}
.v3{vertical-align:26.841600pt;}
.v1{vertical-align:29.397867pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.003263pt;}
.ls1d{letter-spacing:0.058796pt;}
.ls1c{letter-spacing:0.068552pt;}
.ls9{letter-spacing:0.105642pt;}
.ls17{letter-spacing:0.106177pt;}
.ls1e{letter-spacing:0.114813pt;}
.ls19{letter-spacing:0.176387pt;}
.ls1{letter-spacing:0.212176pt;}
.ls5{letter-spacing:0.315092pt;}
.lse{letter-spacing:0.365493pt;}
.ls6{letter-spacing:0.459743pt;}
.ls16{letter-spacing:9.103427pt;}
.ls12{letter-spacing:9.103962pt;}
.ls15{letter-spacing:9.746393pt;}
.ls0{letter-spacing:12.655609pt;}
.ls10{letter-spacing:14.245553pt;}
.ls14{letter-spacing:14.887984pt;}
.lsf{letter-spacing:14.888520pt;}
.ls8{letter-spacing:16.173918pt;}
.ls2{letter-spacing:16.511802pt;}
.ls1b{letter-spacing:16.816349pt;}
.ls3{letter-spacing:17.154769pt;}
.ls11{letter-spacing:20.030111pt;}
.ls1a{letter-spacing:21.316044pt;}
.lsd{letter-spacing:25.150005pt;}
.ls13{letter-spacing:28.386000pt;}
.ls18{letter-spacing:31.599227pt;}
.lsb{letter-spacing:145.724984pt;}
.lsc{letter-spacing:224.567199pt;}
.lsa{letter-spacing:569.429177pt;}
.ws0{word-spacing:-32.038547pt;}
.ws5{word-spacing:-15.977093pt;}
.ws8{word-spacing:-15.958293pt;}
.ws19{word-spacing:-15.901617pt;}
.ws12{word-spacing:-14.875321pt;}
.ws18{word-spacing:-14.757729pt;}
.ws1{word-spacing:-14.698933pt;}
.ws4{word-spacing:-13.260988pt;}
.wsf{word-spacing:-9.266715pt;}
.ws2{word-spacing:-0.022185pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:0.251298pt;}
.ws11{word-spacing:0.515090pt;}
.ws9{word-spacing:1.823765pt;}
.wse{word-spacing:5.572171pt;}
.ws10{word-spacing:5.644387pt;}
.ws17{word-spacing:6.315846pt;}
.ws16{word-spacing:6.484094pt;}
.ws15{word-spacing:6.994992pt;}
.wsa{word-spacing:8.261176pt;}
.ws13{word-spacing:10.172039pt;}
.ws6{word-spacing:26.875673pt;}
.ws1b{word-spacing:45.086359pt;}
.ws7{word-spacing:101.290843pt;}
.wsc{word-spacing:232.926424pt;}
.ws1a{word-spacing:243.875065pt;}
.wsd{word-spacing:251.463423pt;}
.wsb{word-spacing:346.443762pt;}
._32{margin-left:-257.428880pt;}
._2e{margin-left:-243.881763pt;}
._33{margin-left:-233.073313pt;}
._31{margin-left:-223.825347pt;}
._2c{margin-left:-217.798185pt;}
._2b{margin-left:-212.914646pt;}
._25{margin-left:-192.342667pt;}
._23{margin-left:-184.443317pt;}
._24{margin-left:-182.618752pt;}
._2f{margin-left:-180.014043pt;}
._1f{margin-left:-171.005497pt;}
._1d{margin-left:-147.483865pt;}
._2d{margin-left:-141.880685pt;}
._20{margin-left:-113.555456pt;}
._21{margin-left:-95.660874pt;}
._30{margin-left:-93.059571pt;}
._1e{margin-left:-77.519906pt;}
._3{margin-left:-8.013471pt;}
._34{margin-left:-6.759682pt;}
._6{margin-left:-5.071129pt;}
._10{margin-left:-3.446288pt;}
._8{margin-left:-2.387533pt;}
._2{margin-left:-0.951596pt;}
._0{width:1.485231pt;}
._13{width:2.649002pt;}
._d{width:3.926753pt;}
._c{width:5.091437pt;}
._11{width:6.048284pt;}
._18{width:6.952722pt;}
._b{width:7.847865pt;}
._a{width:9.176604pt;}
._1a{width:10.651064pt;}
._f{width:11.985293pt;}
._1c{width:13.005629pt;}
._5{width:14.096372pt;}
._14{width:15.208345pt;}
._17{width:16.100475pt;}
._4{width:17.112744pt;}
._9{width:18.545550pt;}
._7{width:19.764350pt;}
._2a{width:20.700110pt;}
._19{width:21.629933pt;}
._e{width:23.357076pt;}
._12{width:24.369951pt;}
._27{width:25.866508pt;}
._22{width:26.998748pt;}
._16{width:28.486587pt;}
._15{width:29.492626pt;}
._1b{width:30.607436pt;}
._26{width:32.351150pt;}
._28{width:33.710148pt;}
._39{width:37.472130pt;}
._3b{width:38.987305pt;}
._38{width:40.207316pt;}
._36{width:41.538840pt;}
._3a{width:52.563702pt;}
._37{width:58.983874pt;}
._29{width:67.839630pt;}
._35{width:276.367385pt;}
._1{width:1608.064833pt;}
.fs7{font-size:37.066859pt;}
.fsa{font-size:37.236027pt;}
.fs9{font-size:37.279883pt;}
.fs3{font-size:42.818613pt;}
.fs0{font-size:53.043952pt;}
.fsd{font-size:57.406560pt;}
.fs6{font-size:58.795733pt;}
.fse{font-size:62.509387pt;}
.fsc{font-size:63.785067pt;}
.fsb{font-size:63.833173pt;}
.fs4{font-size:63.908373pt;}
.fs2{font-size:69.021067pt;}
.fs5{font-size:74.772800pt;}
.fs8{font-size:95.862560pt;}
.fs1{font-size:106.726987pt;}
.y0{bottom:0.000000pt;}
.y124{bottom:2.380933pt;}
.yf2{bottom:3.355067pt;}
.y108{bottom:3.355200pt;}
.y39{bottom:3.359733pt;}
.ye4{bottom:3.514933pt;}
.y110{bottom:3.515067pt;}
.y2c{bottom:3.654800pt;}
.ye6{bottom:3.674667pt;}
.ye2{bottom:3.674800pt;}
.y131{bottom:3.834400pt;}
.y138{bottom:3.834533pt;}
.y133{bottom:3.994267pt;}
.y83{bottom:4.154133pt;}
.y101{bottom:4.473600pt;}
.y13a{bottom:4.793067pt;}
.y13f{bottom:4.793200pt;}
.y144{bottom:4.952800pt;}
.y135{bottom:4.952933pt;}
.y14f{bottom:5.592000pt;}
.y125{bottom:5.729733pt;}
.y154{bottom:6.550667pt;}
.ye1{bottom:7.189733pt;}
.y127{bottom:7.330933pt;}
.y30{bottom:7.399333pt;}
.y82{bottom:8.148267pt;}
.y151{bottom:8.787333pt;}
.y122{bottom:9.820133pt;}
.y2b{bottom:10.395067pt;}
.y11a{bottom:10.946400pt;}
.y38{bottom:14.497333pt;}
.y36{bottom:14.698800pt;}
.y2d{bottom:16.136800pt;}
.y3b{bottom:20.107600pt;}
.y107{bottom:20.131200pt;}
.y116{bottom:20.450667pt;}
.y130{bottom:21.888667pt;}
.y31{bottom:22.752400pt;}
.y149{bottom:24.285200pt;}
.y32{bottom:26.746667pt;}
.y2f{bottom:28.161200pt;}
.y3a{bottom:30.164667pt;}
.y2e{bottom:33.903067pt;}
.y118{bottom:37.226667pt;}
.y12e{bottom:39.623200pt;}
.y148{bottom:41.220933pt;}
.y14a{bottom:41.540400pt;}
.y120{bottom:79.592667pt;}
.y11c{bottom:100.801067pt;}
.y2{bottom:116.952347pt;}
.y11d{bottom:128.228667pt;}
.y72{bottom:132.929427pt;}
.y147{bottom:134.686933pt;}
.yab{bottom:135.006400pt;}
.y15c{bottom:136.444400pt;}
.y189{bottom:137.243200pt;}
.y80{bottom:138.681200pt;}
.y53{bottom:142.036400pt;}
.yc2{bottom:146.669733pt;}
.y71{bottom:149.705333pt;}
.y21{bottom:151.622667pt;}
.yaa{bottom:151.782400pt;}
.y188{bottom:152.581200pt;}
.y117{bottom:152.900800pt;}
.y15b{bottom:153.220400pt;}
.y7f{bottom:155.457200pt;}
.y11e{bottom:155.656267pt;}
.yc1{bottom:163.605467pt;}
.y70{bottom:166.641067pt;}
.yc6{bottom:167.440000pt;}
.y187{bottom:167.919333pt;}
.y20{bottom:168.398533pt;}
.ya9{bottom:168.718133pt;}
.y15a{bottom:170.156000pt;}
.y7e{bottom:172.233067pt;}
.yb4{bottom:172.712400pt;}
.y52{bottom:175.748000pt;}
.yc0{bottom:180.381467pt;}
.yca{bottom:182.458400pt;}
.yc5{bottom:182.618133pt;}
.y11f{bottom:183.083867pt;}
.y186{bottom:183.257333pt;}
.y6f{bottom:183.417067pt;}
.y1f{bottom:185.334267pt;}
.yb3{bottom:189.648133pt;}
.y146{bottom:190.127467pt;}
.y51{bottom:192.524000pt;}
.ybf{bottom:197.157333pt;}
.yc9{bottom:197.796400pt;}
.y185{bottom:198.435467pt;}
.y159{bottom:199.234400pt;}
.y6e{bottom:200.352800pt;}
.y1e{bottom:202.110267pt;}
.ya8{bottom:202.429733pt;}
.yd6{bottom:204.027467pt;}
.y7d{bottom:205.944800pt;}
.yb2{bottom:206.424000pt;}
.y50{bottom:209.300000pt;}
.y184{bottom:213.773467pt;}
.yc4{bottom:215.051733pt;}
.y158{bottom:216.010267pt;}
.y6d{bottom:217.128667pt;}
.y1d{bottom:218.886133pt;}
.ya7{bottom:219.205733pt;}
.yd5{bottom:220.803467pt;}
.y7c{bottom:222.880533pt;}
.yb1{bottom:223.359733pt;}
.y145{bottom:224.478133pt;}
.y183{bottom:229.111467pt;}
.yc8{bottom:230.070133pt;}
.ybe{bottom:230.869067pt;}
.y157{bottom:232.786267pt;}
.y6c{bottom:233.904667pt;}
.ya6{bottom:235.981733pt;}
.y1c{bottom:236.141467pt;}
.yd4{bottom:237.579333pt;}
.yef{bottom:237.898933pt;}
.y115{bottom:238.378267pt;}
.y7b{bottom:239.656400pt;}
.y143{bottom:242.212800pt;}
.y4f{bottom:243.011600pt;}
.y182{bottom:244.449600pt;}
.ybd{bottom:247.804667pt;}
.y156{bottom:249.722000pt;}
.y6b{bottom:250.840400pt;}
.ya5{bottom:252.917333pt;}
.yd3{bottom:254.515067pt;}
.yee{bottom:254.674933pt;}
.y114{bottom:255.953067pt;}
.y7a{bottom:256.592133pt;}
.yb0{bottom:256.911733pt;}
.y181{bottom:259.787600pt;}
.y4e{bottom:259.947333pt;}
.y142{bottom:261.065733pt;}
.ybc{bottom:264.580667pt;}
.y155{bottom:266.497867pt;}
.y6a{bottom:267.616400pt;}
.ya4{bottom:269.693333pt;}
.yd2{bottom:271.291067pt;}
.yed{bottom:271.450800pt;}
.y1b{bottom:273.048533pt;}
.y79{bottom:273.368133pt;}
.yaf{bottom:273.847333pt;}
.y180{bottom:275.125600pt;}
.y4d{bottom:276.723333pt;}
.y141{bottom:278.960000pt;}
.ybb{bottom:281.516400pt;}
.y69{bottom:284.552000pt;}
.yec{bottom:288.386533pt;}
.y17f{bottom:290.303867pt;}
.yae{bottom:290.623333pt;}
.y113{bottom:290.942933pt;}
.y153{bottom:297.333733pt;}
.y140{bottom:297.813067pt;}
.yba{bottom:298.292400pt;}
.y68{bottom:301.328000pt;}
.ya3{bottom:304.044133pt;}
.yd1{bottom:305.002667pt;}
.yeb{bottom:305.162533pt;}
.y17e{bottom:305.641867pt;}
.y78{bottom:307.559067pt;}
.y112{bottom:308.357867pt;}
.y1a{bottom:308.997067pt;}
.y4c{bottom:310.434933pt;}
.y13e{bottom:315.707333pt;}
.y152{bottom:317.944133pt;}
.y17d{bottom:320.979867pt;}
.yd0{bottom:321.778667pt;}
.yea{bottom:322.098267pt;}
.yad{bottom:324.175200pt;}
.y19{bottom:324.335067pt;}
.y111{bottom:325.932667pt;}
.y4b{bottom:327.210933pt;}
.y67{bottom:332.004000pt;}
.y13d{bottom:334.400533pt;}
.y17c{bottom:336.317867pt;}
.y150{bottom:337.436267pt;}
.ycf{bottom:338.714400pt;}
.ya2{bottom:341.750000pt;}
.y10f{bottom:343.507467pt;}
.y4a{bottom:344.146667pt;}
.y77{bottom:346.862667pt;}
.y66{bottom:348.780000pt;}
.y17b{bottom:351.655867pt;}
.y13c{bottom:352.294933pt;}
.ye9{bottom:355.650133pt;}
.ya1{bottom:358.526000pt;}
.y14e{bottom:360.283467pt;}
.y18{bottom:360.443200pt;}
.y49{bottom:360.922533pt;}
.y76{bottom:363.638667pt;}
.yb9{bottom:365.715733pt;}
.y17a{bottom:366.993867pt;}
.y13b{bottom:371.147867pt;}
.ye8{bottom:372.585867pt;}
.yce{bottom:373.864000pt;}
.ya0{bottom:375.302000pt;}
.y48{bottom:377.858267pt;}
.y10e{bottom:378.497333pt;}
.y14d{bottom:379.775467pt;}
.y75{bottom:380.574400pt;}
.y179{bottom:382.172133pt;}
.y65{bottom:382.491600pt;}
.y139{bottom:389.042267pt;}
.ye7{bottom:389.361733pt;}
.ycd{bottom:390.799733pt;}
.y9f{bottom:392.237733pt;}
.y47{bottom:394.634267pt;}
.y10d{bottom:395.912400pt;}
.y178{bottom:397.510133pt;}
.y17{bottom:397.829600pt;}
.y64{bottom:399.267600pt;}
.y137{bottom:407.895200pt;}
.y9e{bottom:409.013600pt;}
.y177{bottom:412.848133pt;}
.y16{bottom:413.167600pt;}
.y10c{bottom:413.487200pt;}
.y74{bottom:415.564267pt;}
.yb8{bottom:416.203333pt;}
.ye5{bottom:424.032133pt;}
.y136{bottom:425.629733pt;}
.y9d{bottom:425.949333pt;}
.y176{bottom:428.186133pt;}
.y46{bottom:428.345867pt;}
.y15{bottom:428.505600pt;}
.y10b{bottom:431.062000pt;}
.y63{bottom:432.979200pt;}
.y14c{bottom:434.257467pt;}
.ye3{bottom:441.606933pt;}
.y9c{bottom:442.725200pt;}
.y175{bottom:443.524133pt;}
.y14{bottom:443.683867pt;}
.y134{bottom:444.482800pt;}
.y45{bottom:445.121867pt;}
.y10a{bottom:448.477067pt;}
.y62{bottom:449.914933pt;}
.y174{bottom:458.702400pt;}
.y13{bottom:459.021867pt;}
.y9b{bottom:459.501200pt;}
.ycc{bottom:459.661067pt;}
.y44{bottom:462.057600pt;}
.y132{bottom:463.335733pt;}
.y1a1{bottom:463.655333pt;}
.y109{bottom:466.051867pt;}
.y61{bottom:466.690933pt;}
.y173{bottom:474.040400pt;}
.y12{bottom:474.359867pt;}
.y9a{bottom:476.436933pt;}
.ye0{bottom:476.596667pt;}
.y1a0{bottom:478.993333pt;}
.y12d{bottom:481.230133pt;}
.y106{bottom:483.466800pt;}
.y14b{bottom:483.626667pt;}
.y172{bottom:489.378400pt;}
.y11{bottom:489.697867pt;}
.ycb{bottom:493.053067pt;}
.y99{bottom:493.212933pt;}
.y19f{bottom:494.331333pt;}
.y43{bottom:495.609467pt;}
.y12f{bottom:498.964667pt;}
.y60{bottom:500.402533pt;}
.y171{bottom:504.716400pt;}
.y10{bottom:505.035867pt;}
.y19e{bottom:509.669333pt;}
.y98{bottom:510.148533pt;}
.y42{bottom:512.545200pt;}
.y5f{bottom:517.178533pt;}
.y170{bottom:520.054400pt;}
.ydf{bottom:520.214133pt;}
.yf{bottom:520.374000pt;}
.y19d{bottom:525.007333pt;}
.y97{bottom:526.924533pt;}
.y41{bottom:529.321067pt;}
.y5e{bottom:534.114267pt;}
.y16f{bottom:535.392400pt;}
.ye{bottom:535.552267pt;}
.y105{bottom:537.948800pt;}
.yc3{bottom:540.345333pt;}
.y96{bottom:543.700533pt;}
.y40{bottom:546.256800pt;}
.y16e{bottom:550.570667pt;}
.yd{bottom:550.890267pt;}
.yde{bottom:552.647600pt;}
.y12c{bottom:553.766133pt;}
.yc7{bottom:555.363733pt;}
.y19c{bottom:555.523600pt;}
.y95{bottom:560.636267pt;}
.y3f{bottom:563.032800pt;}
.y16d{bottom:565.908667pt;}
.y5d{bottom:567.666133pt;}
.ydd{bottom:569.583467pt;}
.y104{bottom:570.382267pt;}
.y19b{bottom:570.861600pt;}
.y94{bottom:577.412133pt;}
.y3e{bottom:579.808800pt;}
.y16c{bottom:581.246667pt;}
.y5c{bottom:584.601867pt;}
.y19a{bottom:585.880000pt;}
.y12b{bottom:586.199600pt;}
.ydc{bottom:586.359333pt;}
.yc{bottom:586.998400pt;}
.y103{bottom:587.318000pt;}
.y93{bottom:594.347867pt;}
.y16b{bottom:596.584667pt;}
.y3d{bottom:596.744533pt;}
.y5b{bottom:601.377867pt;}
.y12a{bottom:602.975467pt;}
.ydb{bottom:603.135333pt;}
.y92{bottom:611.123867pt;}
.y73{bottom:611.922667pt;}
.y3c{bottom:613.520400pt;}
.yb7{bottom:618.313467pt;}
.y129{bottom:619.911200pt;}
.yda{bottom:620.071067pt;}
.y102{bottom:621.988267pt;}
.y199{bottom:626.781467pt;}
.y16a{bottom:627.260667pt;}
.y91{bottom:627.899733pt;}
.y5a{bottom:635.089467pt;}
.yd9{bottom:636.846933pt;}
.y100{bottom:639.563067pt;}
.y37{bottom:641.959600pt;}
.y198{bottom:642.119333pt;}
.y35{bottom:642.119467pt;}
.yb{bottom:644.675733pt;}
.y59{bottom:651.865467pt;}
.y128{bottom:653.303333pt;}
.y197{bottom:657.457333pt;}
.yff{bottom:657.936667pt;}
.y169{bottom:660.173467pt;}
.y90{bottom:661.611467pt;}
.ya{bottom:667.363200pt;}
.y58{bottom:668.801200pt;}
.yd8{bottom:671.197733pt;}
.y196{bottom:672.635600pt;}
.yfe{bottom:675.511467pt;}
.y8f{bottom:678.547200pt;}
.y11b{bottom:681.902400pt;}
.yb6{bottom:685.577067pt;}
.y195{bottom:687.973600pt;}
.y126{bottom:688.932267pt;}
.yfd{bottom:693.086267pt;}
.y8e{bottom:695.323200pt;}
.y9{bottom:696.601333pt;}
.y168{bottom:697.879467pt;}
.y57{bottom:702.512800pt;}
.yd7{bottom:706.986400pt;}
.y34{bottom:707.785200pt;}
.yfc{bottom:710.661200pt;}
.y8d{bottom:712.258933pt;}
.y167{bottom:714.655467pt;}
.y194{bottom:718.330133pt;}
.y8{bottom:719.288800pt;}
.y121{bottom:727.117600pt;}
.yfb{bottom:728.236000pt;}
.y8c{bottom:729.034800pt;}
.y166{bottom:731.591200pt;}
.y56{bottom:736.224400pt;}
.y2a{bottom:739.260133pt;}
.y8b{bottom:745.810667pt;}
.yfa{bottom:745.810800pt;}
.y7{bottom:748.367067pt;}
.y193{bottom:751.562533pt;}
.yac{bottom:753.000400pt;}
.y33{bottom:755.396933pt;}
.y8a{bottom:762.746533pt;}
.yf9{bottom:763.385600pt;}
.y165{bottom:765.302800pt;}
.y55{bottom:769.776400pt;}
.y6{bottom:771.054533pt;}
.y123{bottom:775.048800pt;}
.y89{bottom:779.522400pt;}
.yf8{bottom:780.960400pt;}
.y164{bottom:782.078800pt;}
.y192{bottom:784.954533pt;}
.y54{bottom:786.712133pt;}
.yf7{bottom:798.535200pt;}
.y163{bottom:798.854667pt;}
.y5{bottom:799.174267pt;}
.y191{bottom:800.132933pt;}
.y29{bottom:803.488000pt;}
.y88{bottom:813.234000pt;}
.y190{bottom:815.470800pt;}
.y162{bottom:815.790400pt;}
.yf6{bottom:816.110000pt;}
.y28{bottom:820.423733pt;}
.y87{bottom:830.010000pt;}
.y18f{bottom:830.808933pt;}
.y161{bottom:832.566267pt;}
.yf5{bottom:833.684800pt;}
.y27{bottom:837.199733pt;}
.y18e{bottom:846.146933pt;}
.y160{bottom:849.502133pt;}
.yf4{bottom:851.259600pt;}
.y4{bottom:851.898667pt;}
.y26{bottom:853.975733pt;}
.y18d{bottom:861.484800pt;}
.y86{bottom:863.721733pt;}
.y15f{bottom:866.278000pt;}
.yf3{bottom:868.834400pt;}
.y25{bottom:870.911333pt;}
.y18c{bottom:876.822933pt;}
.y85{bottom:880.657333pt;}
.y3{bottom:881.775733pt;}
.y15e{bottom:883.054000pt;}
.yf1{bottom:886.409200pt;}
.y24{bottom:887.687333pt;}
.y18b{bottom:892.001200pt;}
.y119{bottom:897.113867pt;}
.y23{bottom:904.623067pt;}
.y18a{bottom:907.339200pt;}
.y81{bottom:910.534533pt;}
.y84{bottom:914.688667pt;}
.y15d{bottom:917.404667pt;}
.yb5{bottom:921.079467pt;}
.y22{bottom:921.399067pt;}
.yf0{bottom:922.677200pt;}
.y1{bottom:952.554400pt;}
.h21{height:16.775853pt;}
.h25{height:16.775987pt;}
.h22{height:16.935600pt;}
.h23{height:16.935627pt;}
.h20{height:16.935733pt;}
.h31{height:17.095400pt;}
.h35{height:17.095467pt;}
.h39{height:17.095533pt;}
.h32{height:17.255200pt;}
.h38{height:17.255293pt;}
.h24{height:17.734533pt;}
.h36{height:18.054133pt;}
.h33{height:18.213787pt;}
.h37{height:18.213867pt;}
.h34{height:18.213920pt;}
.h3c{height:18.852933pt;}
.h3e{height:18.853013pt;}
.h3f{height:19.811600pt;}
.h1f{height:20.770253pt;}
.h3d{height:22.048293pt;}
.h1a{height:24.125413pt;}
.h2c{height:24.924267pt;}
.h28{height:27.640373pt;}
.h3a{height:33.711573pt;}
.h26{height:33.711707pt;}
.h16{height:34.490597pt;}
.he{height:34.531219pt;}
.h30{height:35.469067pt;}
.h14{height:36.545124pt;}
.h10{height:36.569963pt;}
.hf{height:36.588166pt;}
.h5{height:42.024127pt;}
.hb{height:44.096773pt;}
.h12{height:45.215067pt;}
.h13{height:45.374947pt;}
.h27{height:50.487600pt;}
.h6{height:52.033838pt;}
.h2{height:52.059738pt;}
.h2f{height:53.203600pt;}
.h40{height:53.458358pt;}
.h3b{height:54.801467pt;}
.h1c{height:57.676088pt;}
.h9{height:57.704797pt;}
.h17{height:59.126724pt;}
.hd{height:59.196379pt;}
.h19{height:59.255075pt;}
.h2b{height:59.873248pt;}
.h18{height:62.617600pt;}
.h15{height:62.648769pt;}
.h11{height:62.691368pt;}
.h8{height:62.722573pt;}
.h1d{height:63.220161pt;}
.ha{height:63.220695pt;}
.h1e{height:64.407657pt;}
.h2e{height:65.195337pt;}
.h29{height:66.525831pt;}
.h3{height:71.133954pt;}
.h4{height:71.421994pt;}
.h7{height:75.356962pt;}
.h1b{height:78.667902pt;}
.hc{height:88.794569pt;}
.h2d{height:102.732707pt;}
.h2a{height:252.757600pt;}
.h1{height:1054.488133pt;}
.h0{height:1056.000000pt;}
.w11{width:43.380080pt;}
.w17{width:90.602000pt;}
.w15{width:95.404267pt;}
.w16{width:98.925733pt;}
.w3{width:102.927653pt;}
.w18{width:106.449333pt;}
.we{width:111.251507pt;}
.wb{width:117.654400pt;}
.wa{width:117.654480pt;}
.wc{width:117.814533pt;}
.wd{width:118.934933pt;}
.w7{width:146.307733pt;}
.w19{width:158.153200pt;}
.w1a{width:164.876267pt;}
.w4{width:169.518533pt;}
.w1{width:172.239733pt;}
.w6{width:183.925200pt;}
.w13{width:194.650133pt;}
.w5{width:196.570933pt;}
.w14{width:197.371467pt;}
.w10{width:209.376933pt;}
.w8{width:252.757067pt;}
.w9{width:254.517867pt;}
.w12{width:311.184000pt;}
.wf{width:494.628933pt;}
.w2{width:554.336667pt;}
.w0{width:816.000000pt;}
.x1f{left:-50.103200pt;}
.x0{left:0.000000pt;}
.xd{left:2.667907pt;}
.x18{left:7.962013pt;}
.x17{left:10.338120pt;}
.x12{left:12.839280pt;}
.x11{left:14.339973pt;}
.x28{left:17.684000pt;}
.x2d{left:21.169853pt;}
.x47{left:25.932000pt;}
.x5d{left:28.813280pt;}
.x62{left:29.933867pt;}
.x37{left:31.694667pt;}
.x5a{left:32.933200pt;}
.x61{left:34.095733pt;}
.x39{left:36.496933pt;}
.x64{left:38.097600pt;}
.x24{left:39.455333pt;}
.x66{left:41.779333pt;}
.x50{left:43.540133pt;}
.x16{left:44.562227pt;}
.x53{left:45.621200pt;}
.x4e{left:47.061733pt;}
.x54{left:48.022133pt;}
.x45{left:49.943067pt;}
.x23{left:51.467200pt;}
.x3e{left:54.585200pt;}
.x48{left:56.506133pt;}
.x4a{left:58.587067pt;}
.x3a{left:60.508000pt;}
.x27{left:62.227733pt;}
.x6d{left:63.709467pt;}
.x6c{left:65.950400pt;}
.x49{left:68.031467pt;}
.xf{left:69.823960pt;}
.x46{left:71.553067pt;}
.x25{left:72.738000pt;}
.x43{left:76.515467pt;}
.x3d{left:79.396800pt;}
.x22{left:81.037867pt;}
.x1d{left:82.288093pt;}
.x26{left:87.377467pt;}
.x3c{left:88.360933pt;}
.x67{left:89.641547pt;}
.x21{left:92.173867pt;}
.x65{left:93.323147pt;}
.x3b{left:94.443733pt;}
.x4b{left:98.285467pt;}
.x1c{left:102.630893pt;}
.x2c{left:106.307453pt;}
.x1b{left:107.257960pt;}
.x1a{left:111.259827pt;}
.x2{left:114.132840pt;}
.x41{left:115.413467pt;}
.x10{left:116.512227pt;}
.xe{left:118.513160pt;}
.x14{left:121.306093pt;}
.x44{left:122.616800pt;}
.x57{left:123.780667pt;}
.x15{left:127.559027pt;}
.x4{left:129.499947pt;}
.x19{left:133.853693pt;}
.x13{left:137.855427pt;}
.x4c{left:143.426400pt;}
.x40{left:148.388667pt;}
.x30{left:150.949867pt;}
.x69{left:153.350933pt;}
.x56{left:154.951733pt;}
.x1{left:156.392400pt;}
.x2b{left:161.023853pt;}
.x8{left:163.275600pt;}
.x5c{left:164.876267pt;}
.x20{left:168.718133pt;}
.x59{left:170.158800pt;}
.x5b{left:181.364000pt;}
.x3{left:186.326267pt;}
.x6{left:200.252667pt;}
.xa{left:202.013467pt;}
.x34{left:211.618000pt;}
.x4d{left:232.587733pt;}
.x33{left:233.868267pt;}
.x6a{left:240.431333pt;}
.x2a{left:257.719333pt;}
.x35{left:268.604400pt;}
.x36{left:285.092000pt;}
.x5{left:289.414000pt;}
.x68{left:290.854667pt;}
.x9{left:294.216267pt;}
.x2f{left:295.977067pt;}
.x5e{left:309.423200pt;}
.x7{left:318.227333pt;}
.xb{left:330.232933pt;}
.x58{left:333.434400pt;}
.x3f{left:342.398533pt;}
.x55{left:346.560400pt;}
.x4f{left:350.562267pt;}
.x32{left:354.884267pt;}
.x31{left:367.530133pt;}
.x6b{left:399.064800pt;}
.x42{left:401.465867pt;}
.x60{left:405.147600pt;}
.x29{left:461.493560pt;}
.x51{left:468.696933pt;}
.x38{left:481.983067pt;}
.x5f{left:504.393467pt;}
.x1e{left:566.502267pt;}
.x2e{left:579.628400pt;}
.x52{left:586.831733pt;}
.x63{left:595.315600pt;}
.xc{left:677.113467pt;}
}




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