
    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_ae4ac52006dbc5ebdc0d8c73.woff')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_fa6e0386e1105789c2cdb411.woff')format("woff");}.ff2{font-family:ff2;line-height:1.166992;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_1ca300c12c3ba20d748e6b0e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.164062;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_7affff3822655740dfcd4924.woff')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_356fe1b79cd9ea185a4529e1.woff')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_c1c17551ffef9c2d54acbd87.woff')format("woff");}.ff6{font-family:ff6;line-height:0.924805;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_c8d76379d6db72f3a1cc529c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919922;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_deb9d930a3e5ad0716db75c8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_9691fe054f1421735a0af863.woff')format("woff");}.ff9{font-family:ff9;line-height:1.072000;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_920f3160e9333da58de7a264.woff')format("woff");}.ffa{font-family:ffa;line-height:0.688000;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_f16cc23e89b839dcf1b68115.woff')format("woff");}.ffb{font-family:ffb;line-height:0.929000;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_7ce696df2a7260ee95ae5797.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688000;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_a20bd34a681eb2c5c115327f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.881836;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_ff07b7b9edcdc03954fc3f01.woff')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v6{vertical-align:-43.444800px;}
.v5{vertical-align:-29.170080px;}
.v2{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.110000px;}
.v4{vertical-align:29.170080px;}
.v1{vertical-align:30.799998px;}
.v7{vertical-align:44.065440px;}
.v8{vertical-align:45.306720px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000003px;}
.ls2{letter-spacing:0.310320px;}
.ls3{letter-spacing:0.397210px;}
.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;}
}
.ws21{word-spacing:-19.115712px;}
.ws1f{word-spacing:-18.619200px;}
.ws5{word-spacing:-16.500000px;}
.ws20{word-spacing:-16.384896px;}
.ws4{word-spacing:-11.000000px;}
.ws1e{word-spacing:-10.861200px;}
.ws6{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
.ws17{word-spacing:0.066270px;}
.ws7{word-spacing:0.153288px;}
.ws3{word-spacing:0.574230px;}
.ws1{word-spacing:1.259316px;}
.wse{word-spacing:1.362300px;}
.ws18{word-spacing:1.831716px;}
.ws1c{word-spacing:2.113284px;}
.ws1d{word-spacing:2.523114px;}
.wsa{word-spacing:2.598696px;}
.ws13{word-spacing:2.971536px;}
.ws11{word-spacing:4.504224px;}
.wsb{word-spacing:5.323944px;}
.ws12{word-spacing:5.392446px;}
.ws1a{word-spacing:5.415942px;}
.ws2{word-spacing:5.967672px;}
.ws19{word-spacing:7.130706px;}
.wsd{word-spacing:8.519946px;}
.ws15{word-spacing:8.597598px;}
.wsf{word-spacing:8.609946px;}
.ws10{word-spacing:8.722446px;}
.ws9{word-spacing:9.134946px;}
.ws1b{word-spacing:10.079946px;}
.ws8{word-spacing:10.692798px;}
.wsc{word-spacing:13.592652px;}
.ws16{word-spacing:19.836858px;}
.ws14{word-spacing:22.825656px;}
.ws31{word-spacing:141.555571px;}
.ws22{word-spacing:149.003251px;}
.ws26{word-spacing:173.506118px;}
.ws33{word-spacing:180.879322px;}
.ws28{word-spacing:191.827411px;}
.ws24{word-spacing:338.943917px;}
.ws2e{word-spacing:426.230726px;}
.ws25{word-spacing:443.186611px;}
.ws23{word-spacing:505.399565px;}
.ws35{word-spacing:615.327322px;}
.ws2f{word-spacing:678.905683px;}
.ws30{word-spacing:744.594221px;}
.ws27{word-spacing:747.126432px;}
.ws29{word-spacing:755.542310px;}
.ws2b{word-spacing:820.337126px;}
.ws2d{word-spacing:957.970253px;}
.ws38{word-spacing:1059.705562px;}
.ws37{word-spacing:1130.657126px;}
.ws36{word-spacing:1142.672717px;}
.ws32{word-spacing:1199.126131px;}
.ws34{word-spacing:1210.893466px;}
.ws2a{word-spacing:1361.733811px;}
.ws2c{word-spacing:1704.947731px;}
._52{margin-left:-1170.675994px;}
._2{margin-left:-16.560852px;}
._53{margin-left:-10.861200px;}
._17{margin-left:-9.309600px;}
._8{margin-left:-8.142797px;}
._7{margin-left:-6.702912px;}
._a{margin-left:-4.840992px;}
._5{margin-left:-3.699014px;}
._4{margin-left:-2.159827px;}
._3{margin-left:-1.117152px;}
._6{width:1.141978px;}
._e{width:2.283955px;}
._10{width:3.649363px;}
._f{width:4.989946px;}
._19{width:6.032621px;}
._9{width:7.075296px;}
._12{width:8.788262px;}
._13{width:9.905414px;}
._18{width:11.543904px;}
._1f{width:12.810010px;}
._21{width:14.225069px;}
._1b{width:15.267744px;}
._11{width:17.775130px;}
._1a{width:18.792979px;}
._15{width:19.885306px;}
._14{width:20.927981px;}
._16{width:22.194086px;}
._d{width:23.981530px;}
._b{width:25.024205px;}
._c{width:26.339962px;}
._24{width:28.077754px;}
._1d{width:29.269382px;}
._1c{width:30.907872px;}
._20{width:32.397408px;}
._55{width:36.866016px;}
._3f{width:37.983168px;}
._54{width:39.696134px;}
._5b{width:41.632531px;}
._5a{width:42.749683px;}
._66{width:44.983987px;}
._47{width:47.863757px;}
._27{width:49.378118px;}
._49{width:54.814925px;}
._39{width:56.229984px;}
._4b{width:60.102778px;}
._63{width:63.603187px;}
._62{width:64.621037px;}
._4d{width:67.475981px;}
._2f{width:69.710285px;}
._34{width:70.976390px;}
._2a{width:72.639706px;}
._44{width:80.211514px;}
._1e{width:86.988902px;}
._36{width:88.255008px;}
._64{width:93.542861px;}
._43{width:103.746182px;}
._29{width:104.937811px;}
._37{width:109.480896px;}
._40{width:118.641542px;}
._23{width:125.642362px;}
._56{width:141.580397px;}
._4e{width:146.049005px;}
._41{width:161.167795px;}
._57{width:165.313670px;}
._22{width:166.902509px;}
._26{width:188.128397px;}
._3b{width:189.891014px;}
._35{width:191.032992px;}
._5e{width:200.044685px;}
._4a{width:203.321664px;}
._31{width:208.212307px;}
._4c{width:209.577715px;}
._61{width:251.756410px;}
._45{width:266.552467px;}
._3c{width:274.322880px;}
._3d{width:278.071546px;}
._46{width:301.308307px;}
._48{width:315.458899px;}
._33{width:329.237107px;}
._25{width:361.932422px;}
._5d{width:407.884608px;}
._28{width:409.324493px;}
._42{width:430.326950px;}
._50{width:459.571507px;}
._32{width:480.598790px;}
._68{width:493.954963px;}
._69{width:542.737267px;}
._38{width:580.968691px;}
._3e{width:599.563066px;}
._6b{width:608.897491px;}
._58{width:615.327322px;}
._30{width:625.282387px;}
._2d{width:680.469696px;}
._5c{width:681.586848px;}
._3a{width:691.939123px;}
._2b{width:713.165011px;}
._59{width:718.651469px;}
._4f{width:729.549907px;}
._51{width:730.741536px;}
._5f{width:735.334272px;}
._60{width:737.792006px;}
._65{width:754.052774px;}
._6a{width:819.741312px;}
._67{width:825.302246px;}
._2e{width:876.020947px;}
._1{width:1360.193148px;}
._2c{width:1721.332627px;}
._0{width:2518.199148px;}
.fc4{color:rgb(28,29,30);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,64,128);}
.fc1{color:transparent;}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:6.000000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:43.444800px;}
.fs6{font-size:43.999998px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:74.476800px;}
.fsb{font-size:86.889600px;}
.fs1{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.fsc{font-size:111.715200px;}
.fs8{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1df{bottom:1.837500px;}
.y12{bottom:45.462685px;}
.y13d{bottom:84.282030px;}
.y18c{bottom:88.316190px;}
.y1ab{bottom:89.091990px;}
.yc7{bottom:92.660670px;}
.y15b{bottom:95.608710px;}
.ya2{bottom:96.849990px;}
.y1c1{bottom:99.487710px;}
.y1b3{bottom:99.642870px;}
.y11c{bottom:101.194470px;}
.y41{bottom:104.359039px;}
.y1c9{bottom:109.107630px;}
.y13c{bottom:109.262790px;}
.y18b{bottom:110.969550px;}
.y1aa{bottom:114.227910px;}
.y15a{bottom:117.486270px;}
.yc6{bottom:117.796590px;}
.ya1{bottom:121.985910px;}
.y40{bottom:123.109038px;}
.y113{bottom:124.623630px;}
.y11b{bottom:126.175230px;}
.y1c8{bottom:130.985190px;}
.y1b1{bottom:131.140350px;}
.y18a{bottom:132.691950px;}
.yeb{bottom:134.398710px;}
.y1a9{bottom:139.208670px;}
.y159{bottom:139.984470px;}
.y3f{bottom:141.859037px;}
.yc5{bottom:142.777350px;}
.ya0{bottom:146.966670px;}
.y1c0{bottom:149.604390px;}
.y112{bottom:149.759550px;}
.y11a{bottom:151.311150px;}
.y1c7{bottom:152.707590px;}
.y188{bottom:155.345310px;}
.y1b0{bottom:156.121110px;}
.yea{bottom:159.379470px;}
.y3e{bottom:160.609037px;}
.y158{bottom:161.862030px;}
.y1a8{bottom:164.344590px;}
.yc4{bottom:167.913270px;}
.y9f{bottom:172.102590px;}
.y111{bottom:174.740310px;}
.y119{bottom:176.291910px;}
.y187{bottom:177.067710px;}
.y3d{bottom:179.359035px;}
.y1af{bottom:181.257030px;}
.y157{bottom:184.360230px;}
.ye9{bottom:184.515390px;}
.y189{bottom:188.084070px;}
.y1c6{bottom:188.549550px;}
.y1a7{bottom:189.325350px;}
.yc3{bottom:192.894030px;}
.y9e{bottom:197.083350px;}
.y3c{bottom:198.109034px;}
.y186{bottom:198.945270px;}
.y1bf{bottom:199.721070px;}
.y110{bottom:199.876230px;}
.y13a{bottom:201.427830px;}
.y156{bottom:206.237790px;}
.ye8{bottom:209.496150px;}
.y1c5{bottom:210.271950px;}
.y1a6{bottom:214.461270px;}
.y3b{bottom:216.581534px;}
.y79{bottom:217.564470px;}
.yc2{bottom:218.029950px;}
.y185{bottom:220.667670px;}
.y9d{bottom:222.219270px;}
.y10f{bottom:224.856990px;}
.y118{bottom:226.408590px;}
.y154{bottom:228.735990px;}
.y1c4{bottom:232.149510px;}
.ye7{bottom:234.632070px;}
.y1ae{bottom:238.045590px;}
.y78{bottom:238.976550px;}
.y1a5{bottom:239.442030px;}
.yc1{bottom:243.010710px;}
.y183{bottom:243.321030px;}
.y3a{bottom:244.112970px;}
.y9c{bottom:247.200030px;}
.y1be{bottom:249.837750px;}
.y10e{bottom:249.992910px;}
.y153{bottom:250.613550px;}
.y117{bottom:251.544510px;}
.ye6{bottom:259.612830px;}
.y77{bottom:260.388630px;}
.y155{bottom:261.474750px;}
.y39{bottom:262.862968px;}
.y1a4{bottom:264.577950px;}
.y182{bottom:265.043430px;}
.yc0{bottom:268.146630px;}
.y11{bottom:269.154984px;}
.y1c3{bottom:271.715310px;}
.y9b{bottom:272.335950px;}
.y10d{bottom:274.973670px;}
.y184{bottom:276.059790px;}
.y116{bottom:276.525270px;}
.y38{bottom:281.612967px;}
.y76{bottom:281.800710px;}
.ye5{bottom:284.748750px;}
.y181{bottom:286.920990px;}
.y10{bottom:287.904982px;}
.y1a3{bottom:289.558710px;}
.ybf{bottom:293.127390px;}
.y152{bottom:294.213510px;}
.y9a{bottom:297.316710px;}
.y1bd{bottom:299.954430px;}
.y10c{bottom:300.109590px;}
.y37{bottom:300.362967px;}
.y139{bottom:301.661190px;}
.y75{bottom:303.212790px;}
.y1c2{bottom:303.523110px;}
.yf{bottom:306.654981px;}
.y180{bottom:308.643390px;}
.ye4{bottom:309.729510px;}
.y1a2{bottom:314.694630px;}
.y115{bottom:315.315270px;}
.ybe{bottom:318.263310px;}
.y36{bottom:319.112965px;}
.y99{bottom:322.452630px;}
.y10b{bottom:325.090350px;}
.ye{bottom:325.404981px;}
.y138{bottom:326.641950px;}
.y17f{bottom:331.296750px;}
.ye3{bottom:334.865430px;}
.y35{bottom:337.862964px;}
.y151{bottom:338.589270px;}
.y1a1{bottom:339.675390px;}
.ybd{bottom:343.244070px;}
.y98{bottom:347.433390px;}
.y1bc{bottom:350.071110px;}
.y10a{bottom:350.226270px;}
.y137{bottom:351.777870px;}
.y17e{bottom:353.019150px;}
.y34{bottom:356.335464px;}
.ye2{bottom:359.846190px;}
.y1a0{bottom:364.811310px;}
.y150{bottom:365.276790px;}
.ybc{bottom:368.379990px;}
.y97{bottom:372.569310px;}
.y109{bottom:375.207030px;}
.y17d{bottom:375.672510px;}
.y136{bottom:376.758630px;}
.y33{bottom:383.866899px;}
.ye1{bottom:384.982110px;}
.y14f{bottom:392.119470px;}
.y74{bottom:393.205590px;}
.ybb{bottom:393.360750px;}
.y17c{bottom:397.394910px;}
.y96{bottom:397.550070px;}
.y1bb{bottom:400.187790px;}
.y108{bottom:400.342950px;}
.y135{bottom:401.894550px;}
.y32{bottom:402.616899px;}
.y1de{bottom:406.394190px;}
.ye0{bottom:409.962870px;}
.y73{bottom:414.617670px;}
.yba{bottom:418.496670px;}
.y17b{bottom:419.272470px;}
.y31{bottom:421.366897px;}
.y19f{bottom:421.910190px;}
.y95{bottom:422.685990px;}
.y107{bottom:425.323710px;}
.y134{bottom:426.875310px;}
.y1dd{bottom:428.271750px;}
.y72{bottom:428.737230px;}
.y1ba{bottom:431.995590px;}
.ydf{bottom:435.098790px;}
.y14e{bottom:436.495230px;}
.y30{bottom:440.116897px;}
.y17a{bottom:441.770670px;}
.yb9{bottom:443.477430px;}
.y94{bottom:447.666750px;}
.y106{bottom:450.459630px;}
.y133{bottom:452.011230px;}
.y19e{bottom:453.873150px;}
.y1ac{bottom:457.131510px;}
.y71{bottom:457.441830px;}
.y14d{bottom:458.217630px;}
.y2f{bottom:458.866896px;}
.yde{bottom:460.079550px;}
.y1dc{bottom:463.182750px;}
.y179{bottom:463.648230px;}
.yb8{bottom:468.613350px;}
.y93{bottom:472.802670px;}
.y105{bottom:475.440390px;}
.y19d{bottom:476.526510px;}
.y132{bottom:476.991990px;}
.y2e{bottom:477.339394px;}
.y70{bottom:478.853910px;}
.y14c{bottom:480.095190px;}
.y1db{bottom:485.060310px;}
.y13b{bottom:485.215470px;}
.y178{bottom:485.370630px;}
.yb7{bottom:493.594110px;}
.y92{bottom:497.783430px;}
.y19c{bottom:498.248910px;}
.y6f{bottom:500.265990px;}
.y104{bottom:500.576310px;}
.y14b{bottom:501.817590px;}
.y131{bottom:502.127910px;}
.y1b9{bottom:503.679510px;}
.y177{bottom:508.023990px;}
.ydd{bottom:510.196230px;}
.y6e{bottom:514.385550px;}
.yb6{bottom:518.730030px;}
.yd{bottom:519.699498px;}
.y19b{bottom:520.126470px;}
.y91{bottom:522.919350px;}
.y14a{bottom:523.695150px;}
.y103{bottom:525.557070px;}
.y1da{bottom:526.177710px;}
.y130{bottom:527.108670px;}
.y1b8{bottom:528.815430px;}
.y176{bottom:530.522190px;}
.y2d{bottom:532.671644px;}
.ydc{bottom:535.332150px;}
.yc{bottom:542.199498px;}
.y19a{bottom:542.624670px;}
.y6d{bottom:543.090150px;}
.yb5{bottom:543.710790px;}
.y149{bottom:545.417550px;}
.y90{bottom:547.900110px;}
.y102{bottom:550.692990px;}
.y175{bottom:552.399750px;}
.y6c{bottom:557.209710px;}
.ydb{bottom:560.312910px;}
.y1b7{bottom:560.623230px;}
.y199{bottom:564.502230px;}
.y148{bottom:568.070910px;}
.yb4{bottom:568.846710px;}
.y8f{bottom:573.036030px;}
.y1d9{bottom:573.656670px;}
.y174{bottom:574.122150px;}
.y101{bottom:575.673750px;}
.y12f{bottom:577.225350px;}
.yda{bottom:585.448830px;}
.y6b{bottom:585.914310px;}
.y198{bottom:586.224630px;}
.yb{bottom:587.199501px;}
.y147{bottom:590.569110px;}
.yb3{bottom:593.827470px;}
.y173{bottom:595.999710px;}
.y8e{bottom:598.016790px;}
.y100{bottom:600.809670px;}
.y12e{bottom:602.361270px;}
.y6a{bottom:607.326390px;}
.y2c{bottom:608.641956px;}
.y197{bottom:608.877990px;}
.ya{bottom:609.699502px;}
.yd9{bottom:610.429590px;}
.y1d8{bottom:614.774070px;}
.y172{bottom:617.722110px;}
.yb2{bottom:618.963390px;}
.y69{bottom:621.445950px;}
.y8d{bottom:623.152710px;}
.y2b{bottom:625.516956px;}
.yff{bottom:625.790430px;}
.y12d{bottom:627.342030px;}
.y196{bottom:630.600390px;}
.y9{bottom:632.199502px;}
.y1b6{bottom:632.307150px;}
.y146{bottom:634.944870px;}
.yd8{bottom:635.565510px;}
.y1d7{bottom:636.651630px;}
.y171{bottom:640.375470px;}
.y2a{bottom:642.391956px;}
.yb1{bottom:643.944150px;}
.y8c{bottom:648.133470px;}
.y68{bottom:650.150550px;}
.yfe{bottom:650.926350px;}
.y12c{bottom:652.477950px;}
.y8{bottom:654.699504px;}
.y145{bottom:656.822430px;}
.y1b5{bottom:657.287910px;}
.y29{bottom:659.266956px;}
.yd7{bottom:660.546270px;}
.y170{bottom:662.097870px;}
.y67{bottom:664.270110px;}
.yb0{bottom:669.080070px;}
.y1d6{bottom:671.562630px;}
.y8b{bottom:673.269390px;}
.y195{bottom:674.200350px;}
.yfd{bottom:675.907110px;}
.y28{bottom:676.141956px;}
.y7{bottom:677.199505px;}
.y12b{bottom:677.458710px;}
.y144{bottom:678.544830px;}
.y16e{bottom:684.751230px;}
.yd6{bottom:685.682190px;}
.y1b4{bottom:689.095710px;}
.y66{bottom:692.974710px;}
.y27{bottom:693.016956px;}
.y1d5{bottom:693.440190px;}
.yaf{bottom:694.060830px;}
.y194{bottom:696.077910px;}
.y8a{bottom:698.250150px;}
.y6{bottom:699.699507px;}
.y143{bottom:700.422390px;}
.yfc{bottom:701.043030px;}
.y12a{bottom:702.594630px;}
.y16d{bottom:706.473630px;}
.y26{bottom:709.891956px;}
.yd5{bottom:710.662950px;}
.y65{bottom:714.386790px;}
.y16f{bottom:717.489990px;}
.y192{bottom:718.576110px;}
.y55{bottom:718.753716px;}
.yae{bottom:719.196750px;}
.y142{bottom:722.920590px;}
.y89{bottom:723.386070px;}
.yfb{bottom:726.023790px;}
.y25{bottom:726.766956px;}
.y129{bottom:727.575390px;}
.y16c{bottom:728.351190px;}
.y64{bottom:728.506350px;}
.yd4{bottom:735.798870px;}
.y54{bottom:737.503716px;}
.y191{bottom:740.453670px;}
.y24{bottom:743.641956px;}
.yad{bottom:744.177510px;}
.y141{bottom:744.798150px;}
.y88{bottom:748.366830px;}
.y16b{bottom:750.073590px;}
.y1d4{bottom:750.228750px;}
.yfa{bottom:751.159710px;}
.y128{bottom:752.711310px;}
.y53{bottom:755.976214px;}
.y63{bottom:757.210950px;}
.y23{bottom:760.516956px;}
.yd3{bottom:760.779630px;}
.y190{bottom:762.176070px;}
.y140{bottom:766.520550px;}
.y5{bottom:768.873512px;}
.yac{bottom:769.313430px;}
.y16a{bottom:772.726950px;}
.y193{bottom:773.192430px;}
.y87{bottom:773.502750px;}
.yf9{bottom:776.140470px;}
.y52{bottom:776.258636px;}
.y22{bottom:777.391956px;}
.y127{bottom:777.692070px;}
.y62{bottom:778.623030px;}
.y1ad{bottom:782.967510px;}
.y18f{bottom:784.053630px;}
.y1d3{bottom:785.139750px;}
.yd2{bottom:785.915550px;}
.y13f{bottom:788.398110px;}
.y21{bottom:794.266956px;}
.yab{bottom:794.294190px;}
.y169{bottom:794.449350px;}
.y51{bottom:796.263556px;}
.y86{bottom:798.483510px;}
.y4{bottom:798.873515px;}
.y61{bottom:800.035110px;}
.yf8{bottom:801.276390px;}
.y126{bottom:802.827990px;}
.y18e{bottom:805.776030px;}
.y1d2{bottom:807.017310px;}
.y56{bottom:808.133151px;}
.y13e{bottom:810.120510px;}
.yd1{bottom:810.896310px;}
.y20{bottom:811.141956px;}
.y50{bottom:815.013555px;}
.yaa{bottom:819.430110px;}
.y168{bottom:822.378150px;}
.y85{bottom:823.619430px;}
.y60{bottom:824.550390px;}
.yf7{bottom:826.257150px;}
.y18d{bottom:827.653590px;}
.y125{bottom:827.808750px;}
.y1f{bottom:828.016956px;}
.y3{bottom:828.873516px;}
.y4f{bottom:833.763553px;}
.yd0{bottom:836.032230px;}
.y5f{bottom:841.928310px;}
.ya9{bottom:844.410870px;}
.y1e{bottom:844.891956px;}
.y84{bottom:848.600190px;}
.y167{bottom:850.151790px;}
.yf6{bottom:851.393070px;}
.y4e{bottom:852.236053px;}
.y124{bottom:852.944670px;}
.y2{bottom:858.873518px;}
.ycf{bottom:861.012990px;}
.y1d{bottom:861.766956px;}
.y1d1{bottom:863.805870px;}
.ya8{bottom:869.546790px;}
.y166{bottom:872.029350px;}
.y4d{bottom:872.518475px;}
.y83{bottom:873.736110px;}
.yf5{bottom:876.373830px;}
.y123{bottom:877.925430px;}
.yce{bottom:886.148910px;}
.y1c{bottom:894.456796px;}
.ya7{bottom:894.527550px;}
.y82{bottom:898.716870px;}
.yf4{bottom:901.509750px;}
.y4c{bottom:903.055237px;}
.ycd{bottom:911.129670px;}
.y1b{bottom:915.081795px;}
.y5e{bottom:915.629310px;}
.y165{bottom:916.405110px;}
.y122{bottom:916.715430px;}
.ya6{bottom:919.663470px;}
.y1d0{bottom:920.594430px;}
.y81{bottom:923.852790px;}
.yf3{bottom:926.490510px;}
.y114{bottom:933.317550px;}
.y4b{bottom:935.043079px;}
.y1a{bottom:935.706793px;}
.ycc{bottom:936.265590px;}
.y5d{bottom:940.299750px;}
.ya5{bottom:944.644230px;}
.y80{bottom:948.833550px;}
.yf2{bottom:951.626430px;}
.y4a{bottom:953.793079px;}
.y19{bottom:956.331792px;}
.y164{bottom:960.780870px;}
.ycb{bottom:961.246350px;}
.y1cf{bottom:961.711830px;}
.y5c{bottom:964.815030px;}
.ya4{bottom:969.780150px;}
.y7f{bottom:973.969470px;}
.yf1{bottom:976.607190px;}
.y18{bottom:976.956789px;}
.y49{bottom:981.047014px;}
.y163{bottom:982.503270px;}
.yca{bottom:986.382270px;}
.y5b{bottom:989.485470px;}
.y121{bottom:994.760910px;}
.y7e{bottom:998.950230px;}
.y48{bottom:999.797014px;}
.yf0{bottom:1001.743110px;}
.y1ce{bottom:1002.984390px;}
.y162{bottom:1004.380830px;}
.ya3{bottom:1008.414990px;}
.yc9{bottom:1011.363030px;}
.y5a{bottom:1014.000750px;}
.y47{bottom:1018.547013px;}
.y120{bottom:1019.896830px;}
.y1cd{bottom:1024.706790px;}
.y161{bottom:1026.103230px;}
.yef{bottom:1026.723870px;}
.y14{bottom:1035.247852px;}
.y7d{bottom:1036.498950px;}
.y46{bottom:1037.297012px;}
.y59{bottom:1038.671190px;}
.y11f{bottom:1044.877590px;}
.y17{bottom:1046.918442px;}
.y160{bottom:1048.756590px;}
.yee{bottom:1051.859790px;}
.y45{bottom:1056.047012px;}
.yc8{bottom:1061.479710px;}
.y1cc{bottom:1065.979350px;}
.y11e{bottom:1070.013510px;}
.y15f{bottom:1070.478990px;}
.y44{bottom:1074.519510px;}
.yed{bottom:1076.840550px;}
.y16{bottom:1078.793443px;}
.y13{bottom:1086.328133px;}
.y7c{bottom:1086.615630px;}
.y15e{bottom:1092.356550px;}
.y1b2{bottom:1101.976470px;}
.y43{bottom:1102.050947px;}
.y1cb{bottom:1107.096750px;}
.y11d{bottom:1108.648350px;}
.y15{bottom:1110.668445px;}
.y7b{bottom:1111.596390px;}
.y58{bottom:1112.372190px;}
.y15d{bottom:1114.078950px;}
.y42{bottom:1120.523445px;}
.y1ca{bottom:1128.974310px;}
.yec{bottom:1133.784270px;}
.y15c{bottom:1135.956510px;}
.y7a{bottom:1136.732310px;}
.y57{bottom:1137.042630px;}
.y1{bottom:1181.065630px;}
.h1a{height:6.257812px;}
.h10{height:30.589552px;}
.ha{height:35.332031px;}
.h12{height:50.495270px;}
.he{height:52.439231px;}
.h14{height:52.878528px;}
.h6{height:52.998047px;}
.h2{height:58.886719px;}
.h13{height:58.911149px;}
.hf{height:59.759632px;}
.h5{height:60.468750px;}
.h11{height:63.528710px;}
.h4{height:66.832031px;}
.hb{height:72.562500px;}
.h9{height:73.983590px;}
.h15{height:75.742906px;}
.h3{height:89.390625px;}
.h7{height:94.171875px;}
.h19{height:97.198042px;}
.h18{height:97.818682px;}
.h8{height:100.107422px;}
.h17{height:106.973510px;}
.h16{height:107.594150px;}
.hc{height:120.937500px;}
.hd{height:1220.361998px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:4.252500px;}
.x1{left:42.519686px;}
.xd{left:46.772186px;}
.x2b{left:48.099600px;}
.x28{left:66.098160px;}
.xe{left:68.032027px;}
.x3a{left:72.304560px;}
.x14{left:76.338720px;}
.x39{left:78.355800px;}
.x20{left:81.148680px;}
.x13{left:82.700280px;}
.x1e{left:86.889600px;}
.x9{left:89.776671px;}
.x6{left:90.919671px;}
.x25{left:94.802760px;}
.x1b{left:96.354360px;}
.x15{left:102.405600px;}
.x2{left:105.448671px;}
.x12{left:108.301680px;}
.x10{left:110.008440px;}
.x5{left:116.281671px;}
.x3{left:119.188671px;}
.x29{left:121.955760px;}
.x21{left:124.128000px;}
.x1a{left:130.489560px;}
.x8{left:136.891671px;}
.xa{left:143.542671px;}
.x11{left:148.643280px;}
.x2a{left:149.884560px;}
.x7{left:155.026671px;}
.x19{left:161.676720px;}
.x1d{left:162.762840px;}
.x27{left:199.846080px;}
.x2c{left:220.637520px;}
.x24{left:228.550680px;}
.x26{left:231.343560px;}
.x18{left:238.636080px;}
.x34{left:255.703680px;}
.x1f{left:261.134280px;}
.xb{left:282.196671px;}
.xf{left:290.140601px;}
.x33{left:318.543480px;}
.x23{left:347.558400px;}
.x35{left:348.644520px;}
.x44{left:351.747720px;}
.x22{left:357.023160px;}
.x16{left:362.298600px;}
.xc{left:375.319671px;}
.x3b{left:387.124200px;}
.x17{left:396.588960px;}
.x46{left:398.140560px;}
.x2d{left:406.364040px;}
.x1c{left:414.897840px;}
.x4{left:417.124671px;}
.x45{left:424.052280px;}
.x47{left:431.034480px;}
.x36{left:438.327000px;}
.x48{left:486.892080px;}
.x2e{left:498.063600px;}
.x49{left:501.632280px;}
.x3c{left:503.183880px;}
.x37{left:515.596680px;}
.x2f{left:560.748240px;}
.x38{left:578.281320px;}
.x3d{left:591.780240px;}
.x4a{left:593.487000px;}
.x30{left:623.588040px;}
.x3e{left:645.931080px;}
.x3f{left:654.464880px;}
.x31{left:686.272680px;}
.x40{left:706.753800px;}
.x41{left:715.287600px;}
.x32{left:749.112480px;}
.x42{left:769.283280px;}
.x43{left:772.696800px;}
@media print{
.v6{vertical-align:-38.617600pt;}
.v5{vertical-align:-25.928960pt;}
.v2{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.986667pt;}
.v4{vertical-align:25.928960pt;}
.v1{vertical-align:27.377776pt;}
.v7{vertical-align:39.169280pt;}
.v8{vertical-align:40.272640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000003pt;}
.ls2{letter-spacing:0.275840pt;}
.ls3{letter-spacing:0.353075pt;}
.ws21{word-spacing:-16.991744pt;}
.ws1f{word-spacing:-16.550400pt;}
.ws5{word-spacing:-14.666667pt;}
.ws20{word-spacing:-14.564352pt;}
.ws4{word-spacing:-9.777777pt;}
.ws1e{word-spacing:-9.654400pt;}
.ws6{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws17{word-spacing:0.058907pt;}
.ws7{word-spacing:0.136256pt;}
.ws3{word-spacing:0.510427pt;}
.ws1{word-spacing:1.119392pt;}
.wse{word-spacing:1.210933pt;}
.ws18{word-spacing:1.628192pt;}
.ws1c{word-spacing:1.878475pt;}
.ws1d{word-spacing:2.242768pt;}
.wsa{word-spacing:2.309952pt;}
.ws13{word-spacing:2.641365pt;}
.ws11{word-spacing:4.003755pt;}
.wsb{word-spacing:4.732395pt;}
.ws12{word-spacing:4.793285pt;}
.ws1a{word-spacing:4.814171pt;}
.ws2{word-spacing:5.304597pt;}
.ws19{word-spacing:6.338405pt;}
.wsd{word-spacing:7.573285pt;}
.ws15{word-spacing:7.642309pt;}
.wsf{word-spacing:7.653285pt;}
.ws10{word-spacing:7.753285pt;}
.ws9{word-spacing:8.119952pt;}
.ws1b{word-spacing:8.959952pt;}
.ws8{word-spacing:9.504709pt;}
.wsc{word-spacing:12.082357pt;}
.ws16{word-spacing:17.632763pt;}
.ws14{word-spacing:20.289472pt;}
.ws31{word-spacing:125.827174pt;}
.ws22{word-spacing:132.447334pt;}
.ws26{word-spacing:154.227661pt;}
.ws33{word-spacing:160.781619pt;}
.ws28{word-spacing:170.513254pt;}
.ws24{word-spacing:301.283482pt;}
.ws2e{word-spacing:378.871757pt;}
.ws25{word-spacing:393.943654pt;}
.ws23{word-spacing:449.244058pt;}
.ws35{word-spacing:546.957619pt;}
.ws2f{word-spacing:603.471718pt;}
.ws30{word-spacing:661.861530pt;}
.ws27{word-spacing:664.112384pt;}
.ws29{word-spacing:671.593165pt;}
.ws2b{word-spacing:729.188557pt;}
.ws2d{word-spacing:851.529114pt;}
.ws38{word-spacing:941.960499pt;}
.ws37{word-spacing:1005.028557pt;}
.ws36{word-spacing:1015.709082pt;}
.ws32{word-spacing:1065.889894pt;}
.ws34{word-spacing:1076.349747pt;}
.ws2a{word-spacing:1210.430054pt;}
.ws2c{word-spacing:1515.509094pt;}
._52{margin-left:-1040.600883pt;}
._2{margin-left:-14.720757pt;}
._53{margin-left:-9.654400pt;}
._17{margin-left:-8.275200pt;}
._8{margin-left:-7.238042pt;}
._7{margin-left:-5.958144pt;}
._a{margin-left:-4.303104pt;}
._5{margin-left:-3.288013pt;}
._4{margin-left:-1.919846pt;}
._3{margin-left:-0.993024pt;}
._6{width:1.015091pt;}
._e{width:2.030182pt;}
._10{width:3.243878pt;}
._f{width:4.435507pt;}
._19{width:5.362330pt;}
._9{width:6.289152pt;}
._12{width:7.811789pt;}
._13{width:8.804813pt;}
._18{width:10.261248pt;}
._1f{width:11.386675pt;}
._21{width:12.644506pt;}
._1b{width:13.571328pt;}
._11{width:15.800115pt;}
._1a{width:16.704870pt;}
._15{width:17.675827pt;}
._14{width:18.602650pt;}
._16{width:19.728077pt;}
._d{width:21.316915pt;}
._b{width:22.243738pt;}
._c{width:23.413299pt;}
._24{width:24.958003pt;}
._1d{width:26.017229pt;}
._1c{width:27.473664pt;}
._20{width:28.797696pt;}
._55{width:32.769792pt;}
._3f{width:33.762816pt;}
._54{width:35.285453pt;}
._5b{width:37.006694pt;}
._5a{width:37.999718pt;}
._66{width:39.985766pt;}
._47{width:42.545562pt;}
._27{width:43.891661pt;}
._49{width:48.724378pt;}
._39{width:49.982208pt;}
._4b{width:53.424691pt;}
._63{width:56.536166pt;}
._62{width:57.440922pt;}
._4d{width:59.978650pt;}
._2f{width:61.964698pt;}
._34{width:63.090125pt;}
._2a{width:64.568627pt;}
._44{width:71.299123pt;}
._1e{width:77.323469pt;}
._36{width:78.448896pt;}
._64{width:83.149210pt;}
._43{width:92.218829pt;}
._29{width:93.278054pt;}
._37{width:97.316352pt;}
._40{width:105.459149pt;}
._23{width:111.682099pt;}
._56{width:125.849242pt;}
._4e{width:129.821338pt;}
._41{width:143.260262pt;}
._57{width:146.945485pt;}
._22{width:148.357786pt;}
._26{width:167.225242pt;}
._3b{width:168.792013pt;}
._35{width:169.807104pt;}
._5e{width:177.817498pt;}
._4a{width:180.730368pt;}
._31{width:185.077606pt;}
._4c{width:186.291302pt;}
._61{width:223.783475pt;}
._45{width:236.935526pt;}
._3c{width:243.842560pt;}
._3d{width:247.174707pt;}
._46{width:267.829606pt;}
._48{width:280.407910pt;}
._33{width:292.655206pt;}
._25{width:321.717709pt;}
._5d{width:362.564096pt;}
._28{width:363.843994pt;}
._42{width:382.512845pt;}
._50{width:408.508006pt;}
._32{width:427.198925pt;}
._68{width:439.071078pt;}
._69{width:482.433126pt;}
._38{width:516.416614pt;}
._3e{width:532.944947pt;}
._6b{width:541.242214pt;}
._58{width:546.957619pt;}
._30{width:555.806566pt;}
._2d{width:604.861952pt;}
._5c{width:605.854976pt;}
._3a{width:615.056998pt;}
._2b{width:633.924454pt;}
._59{width:638.801306pt;}
._4f{width:648.488806pt;}
._51{width:649.548032pt;}
._5f{width:653.630464pt;}
._60{width:655.815117pt;}
._65{width:670.269133pt;}
._6a{width:728.658944pt;}
._67{width:733.601997pt;}
._2e{width:778.685286pt;}
._1{width:1209.060576pt;}
._2c{width:1530.073446pt;}
._0{width:2238.399243pt;}
.fsd{font-size:5.333333pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:38.617600pt;}
.fs6{font-size:39.111109pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:66.201600pt;}
.fsb{font-size:77.235200pt;}
.fs1{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.fsc{font-size:99.302400pt;}
.fs8{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1df{bottom:1.633333pt;}
.y12{bottom:40.411276pt;}
.y13d{bottom:74.917360pt;}
.y18c{bottom:78.503280pt;}
.y1ab{bottom:79.192880pt;}
.yc7{bottom:82.365040pt;}
.y15b{bottom:84.985520pt;}
.ya2{bottom:86.088880pt;}
.y1c1{bottom:88.433520pt;}
.y1b3{bottom:88.571440pt;}
.y11c{bottom:89.950640pt;}
.y41{bottom:92.763591pt;}
.y1c9{bottom:96.984560pt;}
.y13c{bottom:97.122480pt;}
.y18b{bottom:98.639600pt;}
.y1aa{bottom:101.535920pt;}
.y15a{bottom:104.432240pt;}
.yc6{bottom:104.708080pt;}
.ya1{bottom:108.431920pt;}
.y40{bottom:109.430256pt;}
.y113{bottom:110.776560pt;}
.y11b{bottom:112.155760pt;}
.y1c8{bottom:116.431280pt;}
.y1b1{bottom:116.569200pt;}
.y18a{bottom:117.948400pt;}
.yeb{bottom:119.465520pt;}
.y1a9{bottom:123.741040pt;}
.y159{bottom:124.430640pt;}
.y3f{bottom:126.096921pt;}
.yc5{bottom:126.913200pt;}
.ya0{bottom:130.637040pt;}
.y1c0{bottom:132.981680pt;}
.y112{bottom:133.119600pt;}
.y11a{bottom:134.498800pt;}
.y1c7{bottom:135.740080pt;}
.y188{bottom:138.084720pt;}
.y1b0{bottom:138.774320pt;}
.yea{bottom:141.670640pt;}
.y3e{bottom:142.763588pt;}
.y158{bottom:143.877360pt;}
.y1a8{bottom:146.084080pt;}
.yc4{bottom:149.256240pt;}
.y9f{bottom:152.980080pt;}
.y111{bottom:155.324720pt;}
.y119{bottom:156.703920pt;}
.y187{bottom:157.393520pt;}
.y3d{bottom:159.430253pt;}
.y1af{bottom:161.117360pt;}
.y157{bottom:163.875760pt;}
.ye9{bottom:164.013680pt;}
.y189{bottom:167.185840pt;}
.y1c6{bottom:167.599600pt;}
.y1a7{bottom:168.289200pt;}
.yc3{bottom:171.461360pt;}
.y9e{bottom:175.185200pt;}
.y3c{bottom:176.096919pt;}
.y186{bottom:176.840240pt;}
.y1bf{bottom:177.529840pt;}
.y110{bottom:177.667760pt;}
.y13a{bottom:179.046960pt;}
.y156{bottom:183.322480pt;}
.ye8{bottom:186.218800pt;}
.y1c5{bottom:186.908400pt;}
.y1a6{bottom:190.632240pt;}
.y3b{bottom:192.516919pt;}
.y79{bottom:193.390640pt;}
.yc2{bottom:193.804400pt;}
.y185{bottom:196.149040pt;}
.y9d{bottom:197.528240pt;}
.y10f{bottom:199.872880pt;}
.y118{bottom:201.252080pt;}
.y154{bottom:203.320880pt;}
.y1c4{bottom:206.355120pt;}
.ye7{bottom:208.561840pt;}
.y1ae{bottom:211.596080pt;}
.y78{bottom:212.423600pt;}
.y1a5{bottom:212.837360pt;}
.yc1{bottom:216.009520pt;}
.y183{bottom:216.285360pt;}
.y3a{bottom:216.989307pt;}
.y9c{bottom:219.733360pt;}
.y1be{bottom:222.078000pt;}
.y10e{bottom:222.215920pt;}
.y153{bottom:222.767600pt;}
.y117{bottom:223.595120pt;}
.ye6{bottom:230.766960pt;}
.y77{bottom:231.456560pt;}
.y155{bottom:232.422000pt;}
.y39{bottom:233.655972pt;}
.y1a4{bottom:235.180400pt;}
.y182{bottom:235.594160pt;}
.yc0{bottom:238.352560pt;}
.y11{bottom:239.248875pt;}
.y1c3{bottom:241.524720pt;}
.y9b{bottom:242.076400pt;}
.y10d{bottom:244.421040pt;}
.y184{bottom:245.386480pt;}
.y116{bottom:245.800240pt;}
.y38{bottom:250.322637pt;}
.y76{bottom:250.489520pt;}
.ye5{bottom:253.110000pt;}
.y181{bottom:255.040880pt;}
.y10{bottom:255.915540pt;}
.y1a3{bottom:257.385520pt;}
.ybf{bottom:260.557680pt;}
.y152{bottom:261.523120pt;}
.y9a{bottom:264.281520pt;}
.y1bd{bottom:266.626160pt;}
.y10c{bottom:266.764080pt;}
.y37{bottom:266.989304pt;}
.y139{bottom:268.143280pt;}
.y75{bottom:269.522480pt;}
.y1c2{bottom:269.798320pt;}
.yf{bottom:272.582205pt;}
.y180{bottom:274.349680pt;}
.ye4{bottom:275.315120pt;}
.y1a2{bottom:279.728560pt;}
.y115{bottom:280.280240pt;}
.ybe{bottom:282.900720pt;}
.y36{bottom:283.655969pt;}
.y99{bottom:286.624560pt;}
.y10b{bottom:288.969200pt;}
.ye{bottom:289.248872pt;}
.y138{bottom:290.348400pt;}
.y17f{bottom:294.486000pt;}
.ye3{bottom:297.658160pt;}
.y35{bottom:300.322635pt;}
.y151{bottom:300.968240pt;}
.y1a1{bottom:301.933680pt;}
.ybd{bottom:305.105840pt;}
.y98{bottom:308.829680pt;}
.y1bc{bottom:311.174320pt;}
.y10a{bottom:311.312240pt;}
.y137{bottom:312.691440pt;}
.y17e{bottom:313.794800pt;}
.y34{bottom:316.742635pt;}
.ye2{bottom:319.863280pt;}
.y1a0{bottom:324.276720pt;}
.y150{bottom:324.690480pt;}
.ybc{bottom:327.448880pt;}
.y97{bottom:331.172720pt;}
.y109{bottom:333.517360pt;}
.y17d{bottom:333.931120pt;}
.y136{bottom:334.896560pt;}
.y33{bottom:341.215021pt;}
.ye1{bottom:342.206320pt;}
.y14f{bottom:348.550640pt;}
.y74{bottom:349.516080pt;}
.ybb{bottom:349.654000pt;}
.y17c{bottom:353.239920pt;}
.y96{bottom:353.377840pt;}
.y1bb{bottom:355.722480pt;}
.y108{bottom:355.860400pt;}
.y135{bottom:357.239600pt;}
.y32{bottom:357.881688pt;}
.y1de{bottom:361.239280pt;}
.ye0{bottom:364.411440pt;}
.y73{bottom:368.549040pt;}
.yba{bottom:371.997040pt;}
.y17b{bottom:372.686640pt;}
.y31{bottom:374.548353pt;}
.y19f{bottom:375.031280pt;}
.y95{bottom:375.720880pt;}
.y107{bottom:378.065520pt;}
.y134{bottom:379.444720pt;}
.y1dd{bottom:380.686000pt;}
.y72{bottom:381.099760pt;}
.y1ba{bottom:383.996080pt;}
.ydf{bottom:386.754480pt;}
.y14e{bottom:387.995760pt;}
.y30{bottom:391.215020pt;}
.y17a{bottom:392.685040pt;}
.yb9{bottom:394.202160pt;}
.y94{bottom:397.926000pt;}
.y106{bottom:400.408560pt;}
.y133{bottom:401.787760pt;}
.y19e{bottom:403.442800pt;}
.y1ac{bottom:406.339120pt;}
.y71{bottom:406.614960pt;}
.y14d{bottom:407.304560pt;}
.y2f{bottom:407.881685pt;}
.yde{bottom:408.959600pt;}
.y1dc{bottom:411.718000pt;}
.y179{bottom:412.131760pt;}
.yb8{bottom:416.545200pt;}
.y93{bottom:420.269040pt;}
.y105{bottom:422.613680pt;}
.y19d{bottom:423.579120pt;}
.y132{bottom:423.992880pt;}
.y2e{bottom:424.301684pt;}
.y70{bottom:425.647920pt;}
.y14c{bottom:426.751280pt;}
.y1db{bottom:431.164720pt;}
.y13b{bottom:431.302640pt;}
.y178{bottom:431.440560pt;}
.yb7{bottom:438.750320pt;}
.y92{bottom:442.474160pt;}
.y19c{bottom:442.887920pt;}
.y6f{bottom:444.680880pt;}
.y104{bottom:444.956720pt;}
.y14b{bottom:446.060080pt;}
.y131{bottom:446.335920pt;}
.y1b9{bottom:447.715120pt;}
.y177{bottom:451.576880pt;}
.ydd{bottom:453.507760pt;}
.y6e{bottom:457.231600pt;}
.yb6{bottom:461.093360pt;}
.yd{bottom:461.955109pt;}
.y19b{bottom:462.334640pt;}
.y91{bottom:464.817200pt;}
.y14a{bottom:465.506800pt;}
.y103{bottom:467.161840pt;}
.y1da{bottom:467.713520pt;}
.y130{bottom:468.541040pt;}
.y1b8{bottom:470.058160pt;}
.y176{bottom:471.575280pt;}
.y2d{bottom:473.485905pt;}
.ydc{bottom:475.850800pt;}
.yc{bottom:481.955109pt;}
.y19a{bottom:482.333040pt;}
.y6d{bottom:482.746800pt;}
.yb5{bottom:483.298480pt;}
.y149{bottom:484.815600pt;}
.y90{bottom:487.022320pt;}
.y102{bottom:489.504880pt;}
.y175{bottom:491.022000pt;}
.y6c{bottom:495.297520pt;}
.ydb{bottom:498.055920pt;}
.y1b7{bottom:498.331760pt;}
.y199{bottom:501.779760pt;}
.y148{bottom:504.951920pt;}
.yb4{bottom:505.641520pt;}
.y8f{bottom:509.365360pt;}
.y1d9{bottom:509.917040pt;}
.y174{bottom:510.330800pt;}
.y101{bottom:511.710000pt;}
.y12f{bottom:513.089200pt;}
.yda{bottom:520.398960pt;}
.y6b{bottom:520.812720pt;}
.y198{bottom:521.088560pt;}
.yb{bottom:521.955112pt;}
.y147{bottom:524.950320pt;}
.yb3{bottom:527.846640pt;}
.y173{bottom:529.777520pt;}
.y8e{bottom:531.570480pt;}
.y100{bottom:534.053040pt;}
.y12e{bottom:535.432240pt;}
.y6a{bottom:539.845680pt;}
.y2c{bottom:541.015072pt;}
.y197{bottom:541.224880pt;}
.ya{bottom:541.955113pt;}
.yd9{bottom:542.604080pt;}
.y1d8{bottom:546.465840pt;}
.y172{bottom:549.086320pt;}
.yb2{bottom:550.189680pt;}
.y69{bottom:552.396400pt;}
.y8d{bottom:553.913520pt;}
.y2b{bottom:556.015072pt;}
.yff{bottom:556.258160pt;}
.y12d{bottom:557.637360pt;}
.y196{bottom:560.533680pt;}
.y9{bottom:561.955113pt;}
.y1b6{bottom:562.050800pt;}
.y146{bottom:564.395440pt;}
.yd8{bottom:564.947120pt;}
.y1d7{bottom:565.912560pt;}
.y171{bottom:569.222640pt;}
.y2a{bottom:571.015072pt;}
.yb1{bottom:572.394800pt;}
.y8c{bottom:576.118640pt;}
.y68{bottom:577.911600pt;}
.yfe{bottom:578.601200pt;}
.y12c{bottom:579.980400pt;}
.y8{bottom:581.955115pt;}
.y145{bottom:583.842160pt;}
.y1b5{bottom:584.255920pt;}
.y29{bottom:586.015072pt;}
.yd7{bottom:587.152240pt;}
.y170{bottom:588.531440pt;}
.y67{bottom:590.462320pt;}
.yb0{bottom:594.737840pt;}
.y1d6{bottom:596.944560pt;}
.y8b{bottom:598.461680pt;}
.y195{bottom:599.289200pt;}
.yfd{bottom:600.806320pt;}
.y28{bottom:601.015072pt;}
.y7{bottom:601.955116pt;}
.y12b{bottom:602.185520pt;}
.y144{bottom:603.150960pt;}
.y16e{bottom:608.667760pt;}
.yd6{bottom:609.495280pt;}
.y1b4{bottom:612.529520pt;}
.y66{bottom:615.977520pt;}
.y27{bottom:616.015072pt;}
.y1d5{bottom:616.391280pt;}
.yaf{bottom:616.942960pt;}
.y194{bottom:618.735920pt;}
.y8a{bottom:620.666800pt;}
.y6{bottom:621.955117pt;}
.y143{bottom:622.597680pt;}
.yfc{bottom:623.149360pt;}
.y12a{bottom:624.528560pt;}
.y16d{bottom:627.976560pt;}
.y26{bottom:631.015072pt;}
.yd5{bottom:631.700400pt;}
.y65{bottom:635.010480pt;}
.y16f{bottom:637.768880pt;}
.y192{bottom:638.734320pt;}
.y55{bottom:638.892192pt;}
.yae{bottom:639.286000pt;}
.y142{bottom:642.596080pt;}
.y89{bottom:643.009840pt;}
.yfb{bottom:645.354480pt;}
.y25{bottom:646.015072pt;}
.y129{bottom:646.733680pt;}
.y16c{bottom:647.423280pt;}
.y64{bottom:647.561200pt;}
.yd4{bottom:654.043440pt;}
.y54{bottom:655.558859pt;}
.y191{bottom:658.181040pt;}
.y24{bottom:661.015072pt;}
.yad{bottom:661.491120pt;}
.y141{bottom:662.042800pt;}
.y88{bottom:665.214960pt;}
.y16b{bottom:666.732080pt;}
.y1d4{bottom:666.870000pt;}
.yfa{bottom:667.697520pt;}
.y128{bottom:669.076720pt;}
.y53{bottom:671.978857pt;}
.y63{bottom:673.076400pt;}
.y23{bottom:676.015072pt;}
.yd3{bottom:676.248560pt;}
.y190{bottom:677.489840pt;}
.y140{bottom:681.351600pt;}
.y5{bottom:683.443121pt;}
.yac{bottom:683.834160pt;}
.y16a{bottom:686.868400pt;}
.y193{bottom:687.282160pt;}
.y87{bottom:687.558000pt;}
.yf9{bottom:689.902640pt;}
.y52{bottom:690.007676pt;}
.y22{bottom:691.015072pt;}
.y127{bottom:691.281840pt;}
.y62{bottom:692.109360pt;}
.y1ad{bottom:695.971120pt;}
.y18f{bottom:696.936560pt;}
.y1d3{bottom:697.902000pt;}
.yd2{bottom:698.591600pt;}
.y13f{bottom:700.798320pt;}
.y21{bottom:706.015072pt;}
.yab{bottom:706.039280pt;}
.y169{bottom:706.177200pt;}
.y51{bottom:707.789828pt;}
.y86{bottom:709.763120pt;}
.y4{bottom:710.109791pt;}
.y61{bottom:711.142320pt;}
.yf8{bottom:712.245680pt;}
.y126{bottom:713.624880pt;}
.y18e{bottom:716.245360pt;}
.y1d2{bottom:717.348720pt;}
.y56{bottom:718.340579pt;}
.y13e{bottom:720.107120pt;}
.yd1{bottom:720.796720pt;}
.y20{bottom:721.015072pt;}
.y50{bottom:724.456493pt;}
.yaa{bottom:728.382320pt;}
.y168{bottom:731.002800pt;}
.y85{bottom:732.106160pt;}
.y60{bottom:732.933680pt;}
.yf7{bottom:734.450800pt;}
.y18d{bottom:735.692080pt;}
.y125{bottom:735.830000pt;}
.y1f{bottom:736.015072pt;}
.y3{bottom:736.776459pt;}
.y4f{bottom:741.123159pt;}
.yd0{bottom:743.139760pt;}
.y5f{bottom:748.380720pt;}
.ya9{bottom:750.587440pt;}
.y1e{bottom:751.015072pt;}
.y84{bottom:754.311280pt;}
.y167{bottom:755.690480pt;}
.yf6{bottom:756.793840pt;}
.y4e{bottom:757.543159pt;}
.y124{bottom:758.173040pt;}
.y2{bottom:763.443127pt;}
.ycf{bottom:765.344880pt;}
.y1d{bottom:766.015072pt;}
.y1d1{bottom:767.827440pt;}
.ya8{bottom:772.930480pt;}
.y166{bottom:775.137200pt;}
.y4d{bottom:775.571977pt;}
.y83{bottom:776.654320pt;}
.yf5{bottom:778.998960pt;}
.y123{bottom:780.378160pt;}
.yce{bottom:787.687920pt;}
.y1c{bottom:795.072708pt;}
.ya7{bottom:795.135600pt;}
.y82{bottom:798.859440pt;}
.yf4{bottom:801.342000pt;}
.y4c{bottom:802.715767pt;}
.ycd{bottom:809.893040pt;}
.y1b{bottom:813.406040pt;}
.y5e{bottom:813.892720pt;}
.y165{bottom:814.582320pt;}
.y122{bottom:814.858160pt;}
.ya6{bottom:817.478640pt;}
.y1d0{bottom:818.306160pt;}
.y81{bottom:821.202480pt;}
.yf3{bottom:823.547120pt;}
.y114{bottom:829.615600pt;}
.y4b{bottom:831.149404pt;}
.y1a{bottom:831.739372pt;}
.ycc{bottom:832.236080pt;}
.y5d{bottom:835.822000pt;}
.ya5{bottom:839.683760pt;}
.y80{bottom:843.407600pt;}
.yf2{bottom:845.890160pt;}
.y4a{bottom:847.816071pt;}
.y19{bottom:850.072704pt;}
.y164{bottom:854.027440pt;}
.ycb{bottom:854.441200pt;}
.y1cf{bottom:854.854960pt;}
.y5c{bottom:857.613360pt;}
.ya4{bottom:862.026800pt;}
.y7f{bottom:865.750640pt;}
.yf1{bottom:868.095280pt;}
.y18{bottom:868.406035pt;}
.y49{bottom:872.041791pt;}
.y163{bottom:873.336240pt;}
.yca{bottom:876.784240pt;}
.y5b{bottom:879.542640pt;}
.y121{bottom:884.231920pt;}
.y7e{bottom:887.955760pt;}
.y48{bottom:888.708457pt;}
.yf0{bottom:890.438320pt;}
.y1ce{bottom:891.541680pt;}
.y162{bottom:892.782960pt;}
.ya3{bottom:896.368880pt;}
.yc9{bottom:898.989360pt;}
.y5a{bottom:901.334000pt;}
.y47{bottom:905.375123pt;}
.y120{bottom:906.574960pt;}
.y1cd{bottom:910.850480pt;}
.y161{bottom:912.091760pt;}
.yef{bottom:912.643440pt;}
.y14{bottom:920.220313pt;}
.y7d{bottom:921.332400pt;}
.y46{bottom:922.041788pt;}
.y59{bottom:923.263280pt;}
.y11f{bottom:928.780080pt;}
.y17{bottom:930.594171pt;}
.y160{bottom:932.228080pt;}
.yee{bottom:934.986480pt;}
.y45{bottom:938.708455pt;}
.yc8{bottom:943.537520pt;}
.y1cc{bottom:947.537200pt;}
.y11e{bottom:951.123120pt;}
.y15f{bottom:951.536880pt;}
.y44{bottom:955.128453pt;}
.yed{bottom:957.191600pt;}
.y16{bottom:958.927505pt;}
.y13{bottom:965.625007pt;}
.y7c{bottom:965.880560pt;}
.y15e{bottom:970.983600pt;}
.y1b2{bottom:979.534640pt;}
.y43{bottom:979.600841pt;}
.y1cb{bottom:984.086000pt;}
.y11d{bottom:985.465200pt;}
.y15{bottom:987.260840pt;}
.y7b{bottom:988.085680pt;}
.y58{bottom:988.775280pt;}
.y15d{bottom:990.292400pt;}
.y42{bottom:996.020840pt;}
.y1ca{bottom:1003.532720pt;}
.yec{bottom:1007.808240pt;}
.y15c{bottom:1009.739120pt;}
.y7a{bottom:1010.428720pt;}
.y57{bottom:1010.704560pt;}
.y1{bottom:1049.836116pt;}
.h1a{height:5.562500pt;}
.h10{height:27.190713pt;}
.ha{height:31.406250pt;}
.h12{height:44.884685pt;}
.he{height:46.612650pt;}
.h14{height:47.003136pt;}
.h6{height:47.109375pt;}
.h2{height:52.343750pt;}
.h13{height:52.365466pt;}
.hf{height:53.119672pt;}
.h5{height:53.750000pt;}
.h11{height:56.469965pt;}
.h4{height:59.406250pt;}
.hb{height:64.500000pt;}
.h9{height:65.763191pt;}
.h15{height:67.327027pt;}
.h3{height:79.458333pt;}
.h7{height:83.708333pt;}
.h19{height:86.398260pt;}
.h18{height:86.949940pt;}
.h8{height:88.984375pt;}
.h17{height:95.087565pt;}
.h16{height:95.639245pt;}
.hc{height:107.500000pt;}
.hd{height:1084.766221pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:3.780000pt;}
.x1{left:37.795276pt;}
.xd{left:41.575276pt;}
.x2b{left:42.755200pt;}
.x28{left:58.753920pt;}
.xe{left:60.472913pt;}
.x3a{left:64.270720pt;}
.x14{left:67.856640pt;}
.x39{left:69.649600pt;}
.x20{left:72.132160pt;}
.x13{left:73.511360pt;}
.x1e{left:77.235200pt;}
.x9{left:79.801485pt;}
.x6{left:80.817485pt;}
.x25{left:84.269120pt;}
.x1b{left:85.648320pt;}
.x15{left:91.027200pt;}
.x2{left:93.732152pt;}
.x12{left:96.268160pt;}
.x10{left:97.785280pt;}
.x5{left:103.361485pt;}
.x3{left:105.945485pt;}
.x29{left:108.405120pt;}
.x21{left:110.336000pt;}
.x1a{left:115.990720pt;}
.x8{left:121.681485pt;}
.xa{left:127.593485pt;}
.x11{left:132.127360pt;}
.x2a{left:133.230720pt;}
.x7{left:137.801485pt;}
.x19{left:143.712640pt;}
.x1d{left:144.678080pt;}
.x27{left:177.640960pt;}
.x2c{left:196.122240pt;}
.x24{left:203.156160pt;}
.x26{left:205.638720pt;}
.x18{left:212.120960pt;}
.x34{left:227.292160pt;}
.x1f{left:232.119360pt;}
.xb{left:250.841485pt;}
.xf{left:257.902756pt;}
.x33{left:283.149760pt;}
.x23{left:308.940800pt;}
.x35{left:309.906240pt;}
.x44{left:312.664640pt;}
.x22{left:317.353920pt;}
.x16{left:322.043200pt;}
.xc{left:333.617485pt;}
.x3b{left:344.110400pt;}
.x17{left:352.523520pt;}
.x46{left:353.902720pt;}
.x2d{left:361.212480pt;}
.x1c{left:368.798080pt;}
.x4{left:370.777485pt;}
.x45{left:376.935360pt;}
.x47{left:383.141760pt;}
.x36{left:389.624000pt;}
.x48{left:432.792960pt;}
.x2e{left:442.723200pt;}
.x49{left:445.895360pt;}
.x3c{left:447.274560pt;}
.x37{left:458.308160pt;}
.x2f{left:498.442880pt;}
.x38{left:514.027840pt;}
.x3d{left:526.026880pt;}
.x4a{left:527.544000pt;}
.x30{left:554.300480pt;}
.x3e{left:574.160960pt;}
.x3f{left:581.746560pt;}
.x31{left:610.020160pt;}
.x40{left:628.225600pt;}
.x41{left:635.811200pt;}
.x32{left:665.877760pt;}
.x42{left:683.807360pt;}
.x43{left:686.841600pt;}
}




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