
    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_2dfbaeef4ac8633c7e48ba1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_b16fad3df779be890b73b599.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_5b52fb533c7757a0e568ba49.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_14657dae3560f4b7abd527f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.049000;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_83a017ba85b2498f8c8def1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.308000;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_f0ab61b7eda936feab3c8a7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;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_9162a9ed4d89bdf0d4f14148.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_0f9594a2da31be7ea8700446.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.838000;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_3e124f734d74182fe2651008.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_89b80bc72cc7833c8f35d008.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.044000;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_d22dd2b64e519a2334d714a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_fae0bda014ce6a7c1a4c7c67.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000564px;}
.ls9{letter-spacing:14.280557px;}
.ls3{letter-spacing:18.431937px;}
.ls6{letter-spacing:21.420532px;}
.ls8{letter-spacing:26.736367px;}
.ls5{letter-spacing:26.984525px;}
.ls7{letter-spacing:29.004557px;}
.ls2{letter-spacing:30.630532px;}
.ls1{letter-spacing:30.636532px;}
.lsa{letter-spacing:35.550557px;}
.lsb{letter-spacing:57.618557px;}
.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;}
}
.ws27{word-spacing:-15.359443px;}
.ws1c{word-spacing:-3.335478px;}
.ws42{word-spacing:-3.215927px;}
.ws5c{word-spacing:-2.976825px;}
.ws46{word-spacing:-2.857274px;}
.ws57{word-spacing:-2.737722px;}
.wsc7{word-spacing:-2.555424px;}
.ws2b{word-spacing:-2.199742px;}
.wsd5{word-spacing:-2.178835px;}
.ws45{word-spacing:-2.139966px;}
.ws15{word-spacing:-2.080191px;}
.ws7f{word-spacing:-1.781313px;}
.ws6a{word-spacing:-1.721537px;}
.ws1b{word-spacing:-1.601986px;}
.ws3c{word-spacing:-1.422659px;}
.ws5a{word-spacing:-1.362884px;}
.wsd6{word-spacing:-1.210464px;}
.wsb5{word-spacing:-1.102867px;}
.wsb4{word-spacing:-1.092100px;}
.wsb6{word-spacing:-1.049069px;}
.wsad{word-spacing:-0.995270px;}
.ws11{word-spacing:-0.941472px;}
.ws1f{word-spacing:-0.227147px;}
.ws3f{word-spacing:-0.107596px;}
.ws94{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws24{word-spacing:0.000000px;}
.ws1a{word-spacing:0.131506px;}
.wsa0{word-spacing:0.188294px;}
.ws2a{word-spacing:0.191282px;}
.ws52{word-spacing:0.251058px;}
.ws6d{word-spacing:0.310833px;}
.ws2c{word-spacing:0.370609px;}
.wsa1{word-spacing:0.403488px;}
.ws3b{word-spacing:0.490160px;}
.wsc9{word-spacing:0.511085px;}
.ws96{word-spacing:0.618682px;}
.wsc2{word-spacing:0.672480px;}
.ws7d{word-spacing:0.729262px;}
.ws32{word-spacing:0.789038px;}
.wsd{word-spacing:0.833875px;}
.ws81{word-spacing:0.848814px;}
.ws5e{word-spacing:0.908589px;}
.ws44{word-spacing:1.028140px;}
.wsf{word-spacing:1.049069px;}
.ws86{word-spacing:1.087916px;}
.ws1e{word-spacing:1.147692px;}
.ws64{word-spacing:1.207467px;}
.ws9{word-spacing:1.318061px;}
.ws43{word-spacing:1.506345px;}
.ws69{word-spacing:1.566121px;}
.ws61{word-spacing:1.864999px;}
.wse{word-spacing:2.017440px;}
.wsc4{word-spacing:2.125037px;}
.wsb8{word-spacing:2.178835px;}
.ws48{word-spacing:2.223652px;}
.ws82{word-spacing:2.283428px;}
.ws79{word-spacing:2.343204px;}
.wsb{word-spacing:2.394029px;}
.ws99{word-spacing:2.447827px;}
.ws18{word-spacing:2.462755px;}
.ws8a{word-spacing:2.522530px;}
.ws25{word-spacing:2.642082px;}
.ws6{word-spacing:2.663021px;}
.ws35{word-spacing:2.701857px;}
.wsb1{word-spacing:2.716819px;}
.wsa3{word-spacing:2.824416px;}
.ws60{word-spacing:2.881184px;}
.ws4{word-spacing:3.039610px;}
.ws13{word-spacing:3.058616px;}
.ws55{word-spacing:3.060511px;}
.wsc8{word-spacing:3.068133px;}
.ws93{word-spacing:3.068669px;}
.wsb3{word-spacing:3.071176px;}
.wsd0{word-spacing:3.091645px;}
.ws3{word-spacing:3.093408px;}
.ws19{word-spacing:3.239838px;}
.wsc1{word-spacing:3.254803px;}
.ws1{word-spacing:3.299613px;}
.ws73{word-spacing:3.359389px;}
.ws58{word-spacing:3.419164px;}
.ws10{word-spacing:3.469997px;}
.ws49{word-spacing:3.538716px;}
.wsb2{word-spacing:3.631392px;}
.ws59{word-spacing:3.658267px;}
.ws7{word-spacing:3.685190px;}
.ws68{word-spacing:3.718042px;}
.ws5f{word-spacing:3.777818px;}
.wscf{word-spacing:3.792787px;}
.ws80{word-spacing:3.957145px;}
.ws6c{word-spacing:4.016920px;}
.wsce{word-spacing:4.061779px;}
.ws3d{word-spacing:4.076696px;}
.wsa{word-spacing:4.115578px;}
.ws22{word-spacing:4.315798px;}
.ws8f{word-spacing:4.384570px;}
.ws9a{word-spacing:4.438368px;}
.ws8e{word-spacing:4.492166px;}
.wsa4{word-spacing:4.534913px;}
.ws87{word-spacing:4.554901px;}
.ws90{word-spacing:4.599763px;}
.ws37{word-spacing:4.614676px;}
.wsd1{word-spacing:4.653562px;}
.ws1d{word-spacing:4.853779px;}
.ws39{word-spacing:4.913554px;}
.wsc{word-spacing:4.976352px;}
.ws4f{word-spacing:5.092881px;}
.wsa9{word-spacing:5.137747px;}
.ws8b{word-spacing:5.152657px;}
.ws53{word-spacing:5.212432px;}
.ws62{word-spacing:5.511310px;}
.ws17{word-spacing:5.571086px;}
.ws6e{word-spacing:5.690637px;}
.wsd4{word-spacing:5.729530px;}
.wsc3{word-spacing:5.837126px;}
.ws3a{word-spacing:5.929740px;}
.ws88{word-spacing:5.989515px;}
.wsd8{word-spacing:5.998522px;}
.ws63{word-spacing:6.049291px;}
.ws76{word-spacing:6.168842px;}
.ws2f{word-spacing:6.288393px;}
.wsb7{word-spacing:6.375110px;}
.ws3e{word-spacing:6.407944px;}
.ws9f{word-spacing:6.428909px;}
.ws54{word-spacing:6.467720px;}
.ws4b{word-spacing:6.527496px;}
.ws2d{word-spacing:6.647047px;}
.ws5b{word-spacing:6.766598px;}
.ws38{word-spacing:6.886149px;}
.ws7e{word-spacing:6.945925px;}
.ws40{word-spacing:7.065476px;}
.ws28{word-spacing:7.125252px;}
.ws56{word-spacing:7.185027px;}
.ws6f{word-spacing:7.364354px;}
.wsab{word-spacing:7.397280px;}
.ws30{word-spacing:7.424130px;}
.ws5d{word-spacing:7.663232px;}
.ws8{word-spacing:7.666272px;}
.ws34{word-spacing:7.782783px;}
.ws41{word-spacing:7.902334px;}
.ws92{word-spacing:7.989062px;}
.ws83{word-spacing:8.081661px;}
.ws2e{word-spacing:8.260988px;}
.ws7a{word-spacing:8.380539px;}
.ws67{word-spacing:8.619642px;}
.ws95{word-spacing:8.849837px;}
.ws51{word-spacing:8.918520px;}
.ws4d{word-spacing:8.978295px;}
.ws21{word-spacing:9.277173px;}
.wsaa{word-spacing:9.387821px;}
.ws50{word-spacing:9.516276px;}
.ws8d{word-spacing:9.710611px;}
.ws20{word-spacing:9.874929px;}
.wsa2{word-spacing:9.979603px;}
.ws4a{word-spacing:10.233583px;}
.wscd{word-spacing:10.356192px;}
.ws29{word-spacing:10.532461px;}
.ws89{word-spacing:10.831339px;}
.wsa8{word-spacing:10.894176px;}
.wsbf{word-spacing:10.947974px;}
.ws91{word-spacing:11.055571px;}
.ws4e{word-spacing:11.070441px;}
.ws33{word-spacing:11.130217px;}
.ws77{word-spacing:11.249768px;}
.ws23{word-spacing:11.369319px;}
.ws9e{word-spacing:11.378362px;}
.wsae{word-spacing:11.485958px;}
.ws47{word-spacing:11.608422px;}
.ws16{word-spacing:11.907300px;}
.wsca{word-spacing:12.131539px;}
.ws4c{word-spacing:12.983260px;}
.ws78{word-spacing:13.043036px;}
.ws74{word-spacing:13.162587px;}
.ws84{word-spacing:13.282138px;}
.ws98{word-spacing:13.633062px;}
.ws97{word-spacing:13.637894px;}
.wsd2{word-spacing:13.853088px;}
.ws7b{word-spacing:13.879894px;}
.ws8c{word-spacing:13.960685px;}
.wsbc{word-spacing:14.498669px;}
.ws85{word-spacing:16.450245px;}
.ws71{word-spacing:16.677392px;}
.wscb{word-spacing:16.758202px;}
.wsac{word-spacing:16.919597px;}
.wsaf{word-spacing:17.618976px;}
.ws7c{word-spacing:17.884860px;}
.wsd7{word-spacing:18.156960px;}
.wsb0{word-spacing:18.425952px;}
.wsc0{word-spacing:18.641146px;}
.ws9b{word-spacing:18.963936px;}
.wscc{word-spacing:19.824710px;}
.wsbd{word-spacing:20.201299px;}
.ws75{word-spacing:20.634537px;}
.ws26{word-spacing:21.142771px;}
.wsbe{word-spacing:21.277267px;}
.wsd3{word-spacing:22.783622px;}
.ws36{word-spacing:22.834279px;}
.ws70{word-spacing:23.802644px;}
.wsc6{word-spacing:25.204550px;}
.wsc5{word-spacing:25.258349px;}
.ws31{word-spacing:26.827469px;}
.ws12{word-spacing:27.592038px;}
.wsbb{word-spacing:28.755245px;}
.ws65{word-spacing:29.019118px;}
.ws66{word-spacing:29.025118px;}
.ws5{word-spacing:29.829450px;}
.ws9d{word-spacing:30.046406px;}
.ws0{word-spacing:32.192873px;}
.wsba{word-spacing:33.973690px;}
.ws9c{word-spacing:36.609811px;}
.wsb9{word-spacing:42.258643px;}
.ws6b{word-spacing:68.682164px;}
.wsa6{word-spacing:78.841555px;}
.ws14{word-spacing:80.625869px;}
.wsa5{word-spacing:89.278445px;}
.wsa7{word-spacing:96.272237px;}
.ws72{word-spacing:111.971654px;}
._5c{margin-left:-29.326094px;}
._5a{margin-left:-28.268026px;}
._36{margin-left:-5.738458px;}
._3{margin-left:-4.674494px;}
._4{margin-left:-2.725819px;}
._0{margin-left:-1.673717px;}
._2{width:1.673717px;}
._1{width:2.995311px;}
._3a{width:16.736561px;}
._3f{width:18.399053px;}
._37{width:19.486846px;}
._3c{width:21.344561px;}
._35{width:23.539726px;}
._22{width:27.011650px;}
._59{width:29.911910px;}
._39{width:35.163564px;}
._3b{width:39.770561px;}
._3d{width:41.232706px;}
._2b{width:53.218131px;}
._1b{width:63.790690px;}
._5d{width:67.634635px;}
._34{width:68.741940px;}
._c{width:72.274850px;}
._25{width:76.282092px;}
._21{width:79.155513px;}
._33{width:80.697600px;}
._a{width:90.388032px;}
._b{width:91.547891px;}
._23{width:93.745639px;}
._26{width:94.796141px;}
._27{width:103.170098px;}
._18{width:110.277300px;}
._7{width:112.235128px;}
._46{width:114.593269px;}
._1f{width:126.091257px;}
._50{width:127.740457px;}
._4c{width:128.806294px;}
._3e{width:130.092110px;}
._5b{width:131.620404px;}
._1a{width:132.979791px;}
._20{width:134.572811px;}
._d{width:138.156804px;}
._47{width:143.676098px;}
._4d{width:160.019281px;}
._28{width:169.052052px;}
._5{width:170.648525px;}
._44{width:173.539590px;}
._45{width:175.132609px;}
._13{width:183.426398px;}
._10{width:196.754868px;}
._29{width:197.868495px;}
._48{width:202.104194px;}
._e{width:204.270505px;}
._53{width:206.106269px;}
._54{width:207.660434px;}
._8{width:220.373966px;}
._2e{width:224.386740px;}
._2c{width:229.843918px;}
._1c{width:236.415049px;}
._2d{width:238.325472px;}
._32{width:241.199327px;}
._1d{width:244.896603px;}
._31{width:248.021703px;}
._f{width:249.528645px;}
._12{width:251.862909px;}
._2f{width:254.771063px;}
._11{width:272.138093px;}
._56{width:276.103496px;}
._24{width:280.119849px;}
._2a{width:281.732367px;}
._40{width:284.665565px;}
._6{width:286.824150px;}
._49{width:288.581502px;}
._41{width:292.422708px;}
._9{width:308.636947px;}
._1e{width:310.832356px;}
._30{width:320.010363px;}
._38{width:326.108947px;}
._14{width:327.687395px;}
._15{width:329.381610px;}
._4e{width:332.053458px;}
._4f{width:335.341116px;}
._58{width:337.074608px;}
._4a{width:356.143025px;}
._55{width:365.288692px;}
._57{width:366.962408px;}
._42{width:369.887610px;}
._4b{width:395.953574px;}
._17{width:400.782847px;}
._51{width:418.369424px;}
._19{width:419.690058px;}
._43{width:441.288847px;}
._52{width:495.599500px;}
._16{width:687.546912px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ye2{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.yad{bottom:199.330500px;}
.y111{bottom:210.055500px;}
.y25{bottom:211.549500px;}
.yac{bottom:220.302000px;}
.y110{bottom:226.492500px;}
.y140{bottom:226.494000px;}
.ye1{bottom:227.665500px;}
.y24{bottom:229.482000px;}
.yab{bottom:238.234500px;}
.y10f{bottom:242.931000px;}
.y13f{bottom:242.944500px;}
.y23{bottom:247.414500px;}
.yaa{bottom:256.167000px;}
.y10e{bottom:259.369500px;}
.y13e{bottom:259.383000px;}
.y22{bottom:265.347000px;}
.ye0{bottom:273.669000px;}
.ya9{bottom:274.099500px;}
.y10d{bottom:275.743500px;}
.y13d{bottom:275.821500px;}
.y6a{bottom:275.838000px;}
.y8b{bottom:279.903000px;}
.y21{bottom:283.281000px;}
.ydf{bottom:291.603000px;}
.ya8{bottom:292.032000px;}
.y10c{bottom:292.182000px;}
.y13c{bottom:292.260000px;}
.y20{bottom:301.213500px;}
.y10b{bottom:308.620500px;}
.y13b{bottom:308.710500px;}
.yde{bottom:309.535500px;}
.ya7{bottom:309.964500px;}
.y1f{bottom:319.146000px;}
.y69{bottom:319.204500px;}
.y10a{bottom:324.994500px;}
.y13a{bottom:325.149000px;}
.y8a{bottom:327.336000px;}
.ydd{bottom:327.468000px;}
.ya6{bottom:327.898500px;}
.y1e{bottom:337.078500px;}
.y68{bottom:337.137000px;}
.y109{bottom:341.433000px;}
.y139{bottom:341.587500px;}
.y89{bottom:345.268500px;}
.ydc{bottom:345.400500px;}
.ya5{bottom:345.831000px;}
.y1d{bottom:355.011000px;}
.y67{bottom:355.069500px;}
.y108{bottom:357.807000px;}
.y138{bottom:358.039500px;}
.ydb{bottom:363.333000px;}
.ya4{bottom:363.763500px;}
.y1c{bottom:372.943500px;}
.y66{bottom:373.003500px;}
.y107{bottom:374.245500px;}
.y137{bottom:374.478000px;}
.yda{bottom:381.267000px;}
.y48{bottom:381.799500px;}
.y88{bottom:383.734500px;}
.y106{bottom:390.684000px;}
.y1b{bottom:390.877500px;}
.y136{bottom:390.928500px;}
.y65{bottom:390.936000px;}
.ya3{bottom:391.297500px;}
.yd9{bottom:399.199500px;}
.y47{bottom:399.732000px;}
.y105{bottom:407.122500px;}
.y135{bottom:407.367000px;}
.y1a{bottom:408.810000px;}
.y64{bottom:408.868500px;}
.yd8{bottom:417.132000px;}
.y104{bottom:423.496500px;}
.y134{bottom:423.817500px;}
.y19{bottom:426.742500px;}
.y63{bottom:426.801000px;}
.ya2{bottom:433.774500px;}
.y87{bottom:434.157000px;}
.yd7{bottom:435.064500px;}
.y103{bottom:439.935000px;}
.y133{bottom:440.256000px;}
.y18{bottom:444.675000px;}
.y62{bottom:444.733500px;}
.ya1{bottom:451.707000px;}
.y86{bottom:452.089500px;}
.yd6{bottom:452.997000px;}
.y102{bottom:456.372000px;}
.y132{bottom:456.708000px;}
.y17{bottom:462.607500px;}
.ya0{bottom:469.639500px;}
.y85{bottom:470.022000px;}
.yd5{bottom:470.929500px;}
.y101{bottom:472.810500px;}
.y131{bottom:473.146500px;}
.y61{bottom:473.157000px;}
.y46{bottom:475.516500px;}
.y9f{bottom:487.572000px;}
.y84{bottom:487.954500px;}
.yd4{bottom:488.863500px;}
.y100{bottom:489.249000px;}
.y130{bottom:489.585000px;}
.y45{bottom:491.955000px;}
.y16{bottom:498.046500px;}
.y9e{bottom:505.506000px;}
.yff{bottom:505.687500px;}
.y83{bottom:505.887000px;}
.y12f{bottom:506.023500px;}
.yd3{bottom:506.796000px;}
.y44{bottom:508.992000px;}
.y60{bottom:516.523500px;}
.yfe{bottom:522.126000px;}
.y12e{bottom:522.460500px;}
.y9d{bottom:523.438500px;}
.y82{bottom:523.819500px;}
.yd2{bottom:524.728500px;}
.y43{bottom:526.027500px;}
.y5f{bottom:534.456000px;}
.yfd{bottom:538.500000px;}
.y12d{bottom:538.899000px;}
.y9c{bottom:541.371000px;}
.y81{bottom:541.753500px;}
.yd1{bottom:542.661000px;}
.y42{bottom:543.063000px;}
.y15{bottom:548.260500px;}
.y5e{bottom:552.390000px;}
.yfc{bottom:554.938500px;}
.y12c{bottom:555.351000px;}
.y9b{bottom:559.303500px;}
.y41{bottom:559.501500px;}
.y80{bottom:559.686000px;}
.yd0{bottom:560.593500px;}
.yc5{bottom:567.165000px;}
.y5d{bottom:570.322500px;}
.yfb{bottom:571.312500px;}
.y12b{bottom:571.789500px;}
.y40{bottom:576.538500px;}
.y9a{bottom:577.236000px;}
.y7f{bottom:577.618500px;}
.ycf{bottom:578.526000px;}
.y14{bottom:581.031000px;}
.yc4{bottom:585.097500px;}
.yfa{bottom:587.751000px;}
.y12a{bottom:588.228000px;}
.y5c{bottom:588.255000px;}
.y3f{bottom:593.574000px;}
.y7e{bottom:596.071500px;}
.yce{bottom:596.460000px;}
.y13{bottom:597.468000px;}
.yc3{bottom:603.030000px;}
.yf9{bottom:604.125000px;}
.y129{bottom:604.678500px;}
.y5b{bottom:606.187500px;}
.y3e{bottom:610.611000px;}
.y12{bottom:613.906500px;}
.y7d{bottom:614.004000px;}
.ycd{bottom:614.392500px;}
.yf8{bottom:620.563500px;}
.yc2{bottom:620.962500px;}
.y128{bottom:621.117000px;}
.y5a{bottom:624.120000px;}
.y3d{bottom:627.646500px;}
.y99{bottom:629.371500px;}
.y11{bottom:630.345000px;}
.y7c{bottom:631.936500px;}
.ycc{bottom:632.325000px;}
.yf7{bottom:636.937500px;}
.y127{bottom:637.569000px;}
.yc1{bottom:638.895000px;}
.y59{bottom:642.054000px;}
.y3c{bottom:644.682000px;}
.y98{bottom:645.810000px;}
.y10{bottom:646.783500px;}
.y7b{bottom:650.389500px;}
.yf6{bottom:653.376000px;}
.y126{bottom:654.007500px;}
.yc0{bottom:656.829000px;}
.y58{bottom:659.986500px;}
.y3b{bottom:661.719000px;}
.y97{bottom:662.247000px;}
.yf{bottom:663.222000px;}
.ycb{bottom:666.373500px;}
.y7a{bottom:668.322000px;}
.yf5{bottom:669.750000px;}
.y125{bottom:670.458000px;}
.ybf{bottom:674.761500px;}
.y57{bottom:677.919000px;}
.y96{bottom:678.685500px;}
.y3a{bottom:678.754500px;}
.ye{bottom:679.660500px;}
.yf4{bottom:686.187000px;}
.y79{bottom:686.256000px;}
.y124{bottom:686.896500px;}
.y151{bottom:686.974500px;}
.ybe{bottom:692.694000px;}
.y95{bottom:695.124000px;}
.y39{bottom:695.791500px;}
.y56{bottom:695.851500px;}
.yd{bottom:696.099000px;}
.yf3{bottom:702.561000px;}
.y123{bottom:703.335000px;}
.y150{bottom:703.411500px;}
.y78{bottom:704.188500px;}
.ybd{bottom:710.626500px;}
.y94{bottom:711.562500px;}
.yca{bottom:712.378500px;}
.yc{bottom:712.537500px;}
.y38{bottom:712.827000px;}
.y55{bottom:713.784000px;}
.yf2{bottom:718.999500px;}
.y122{bottom:719.773500px;}
.y14f{bottom:719.850000px;}
.y77{bottom:722.121000px;}
.y93{bottom:728.001000px;}
.ybc{bottom:728.559000px;}
.yb{bottom:728.976000px;}
.y37{bottom:729.265500px;}
.yc9{bottom:730.311000px;}
.y54{bottom:731.716500px;}
.yf1{bottom:735.438000px;}
.y121{bottom:736.224000px;}
.y14e{bottom:736.288500px;}
.y92{bottom:744.439500px;}
.ya{bottom:745.414500px;}
.y36{bottom:746.301000px;}
.ybb{bottom:746.491500px;}
.yc8{bottom:748.243500px;}
.y53{bottom:749.650500px;}
.yf0{bottom:751.812000px;}
.y120{bottom:752.662500px;}
.y14d{bottom:752.727000px;}
.y76{bottom:754.609500px;}
.y91{bottom:760.878000px;}
.y9{bottom:761.851500px;}
.y35{bottom:762.739500px;}
.yba{bottom:764.425500px;}
.yc7{bottom:766.176000px;}
.y52{bottom:767.583000px;}
.yef{bottom:768.250500px;}
.y11f{bottom:769.101000px;}
.y14c{bottom:769.165500px;}
.y90{bottom:777.316500px;}
.y8{bottom:778.290000px;}
.y34{bottom:779.178000px;}
.yb9{bottom:782.358000px;}
.yc6{bottom:784.110000px;}
.yee{bottom:784.624500px;}
.y11e{bottom:785.539500px;}
.y14b{bottom:785.604000px;}
.y8f{bottom:793.755000px;}
.y51{bottom:796.005000px;}
.y33{bottom:796.215000px;}
.yb8{bottom:800.290500px;}
.yed{bottom:801.063000px;}
.y11d{bottom:801.990000px;}
.y75{bottom:802.042500px;}
.y8e{bottom:810.193500px;}
.y32{bottom:812.652000px;}
.yec{bottom:817.437000px;}
.yb7{bottom:818.223000px;}
.y11c{bottom:818.428500px;}
.y14a{bottom:818.481000px;}
.y74{bottom:819.975000px;}
.y8d{bottom:826.630500px;}
.y31{bottom:829.689000px;}
.yeb{bottom:833.875500px;}
.y11b{bottom:834.880500px;}
.y149{bottom:834.919500px;}
.yb6{bottom:836.155500px;}
.y73{bottom:837.907500px;}
.y7{bottom:838.324500px;}
.y50{bottom:839.373000px;}
.y8c{bottom:843.667500px;}
.y30{bottom:846.724500px;}
.yea{bottom:850.314000px;}
.y11a{bottom:851.319000px;}
.y148{bottom:851.358000px;}
.yb5{bottom:854.089500px;}
.y72{bottom:855.840000px;}
.y4f{bottom:857.305500px;}
.y6{bottom:860.476500px;}
.y2f{bottom:863.761500px;}
.ye9{bottom:866.688000px;}
.y119{bottom:867.757500px;}
.y147{bottom:867.796500px;}
.yb4{bottom:872.022000px;}
.y71{bottom:873.774000px;}
.y4e{bottom:875.238000px;}
.y5{bottom:876.915000px;}
.y2e{bottom:880.797000px;}
.ye8{bottom:883.126500px;}
.y118{bottom:884.208000px;}
.y146{bottom:884.233500px;}
.yb3{bottom:889.954500px;}
.y70{bottom:891.706500px;}
.y4d{bottom:893.170500px;}
.y2d{bottom:897.235500px;}
.ye7{bottom:899.565000px;}
.y117{bottom:900.646500px;}
.y145{bottom:900.672000px;}
.y4{bottom:902.521500px;}
.yb2{bottom:907.887000px;}
.y6f{bottom:909.639000px;}
.y4c{bottom:911.103000px;}
.y2c{bottom:914.271000px;}
.ye6{bottom:915.939000px;}
.y116{bottom:917.085000px;}
.y144{bottom:917.110500px;}
.y3{bottom:920.455500px;}
.yb1{bottom:926.418000px;}
.y6e{bottom:927.571500px;}
.y4b{bottom:929.037000px;}
.y2b{bottom:930.709500px;}
.ye5{bottom:932.376000px;}
.y115{bottom:933.523500px;}
.y143{bottom:933.549000px;}
.y6d{bottom:945.504000px;}
.y4a{bottom:946.969500px;}
.ye4{bottom:948.814500px;}
.y114{bottom:949.974000px;}
.y142{bottom:949.987500px;}
.y2a{bottom:951.333000px;}
.yb0{bottom:959.892000px;}
.y6c{bottom:963.436500px;}
.y49{bottom:964.902000px;}
.ye3{bottom:965.253000px;}
.y113{bottom:966.412500px;}
.y141{bottom:966.426000px;}
.y29{bottom:968.817000px;}
.y2{bottom:972.403500px;}
.yaf{bottom:977.824500px;}
.y6b{bottom:981.370500px;}
.y112{bottom:982.864500px;}
.y28{bottom:986.749500px;}
.yae{bottom:995.757000px;}
.y1{bottom:999.303000px;}
.y27{bottom:1038.157500px;}
.h4{height:23.850624px;}
.h5{height:33.139814px;}
.ha{height:37.658880px;}
.h6{height:40.348800px;}
.h7{height:41.586163px;}
.hb{height:41.842920px;}
.h9{height:44.831700px;}
.h8{height:50.211840px;}
.h2{height:53.072100px;}
.h3{height:53.078100px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:203.110500px;}
.xa{left:204.558000px;}
.x1d{left:206.256000px;}
.x1f{left:209.058000px;}
.x3{left:210.789000px;}
.x1c{left:222.765000px;}
.x9{left:224.562000px;}
.x20{left:227.281500px;}
.x8{left:244.666500px;}
.x1{left:263.641500px;}
.x6{left:269.173500px;}
.xe{left:301.966500px;}
.x2{left:338.904000px;}
.x4{left:345.441000px;}
.xf{left:363.675000px;}
.x10{left:391.282500px;}
.x7{left:394.438500px;}
.x11{left:415.359000px;}
.xb{left:421.938000px;}
.x12{left:440.736000px;}
.x13{left:465.964500px;}
.x1e{left:470.194500px;}
.x14{left:491.266500px;}
.x15{left:520.026000px;}
.xd{left:541.524000px;}
.x16{left:548.859000px;}
.x17{left:577.618500px;}
.x18{left:606.376500px;}
.x19{left:635.061000px;}
.xc{left:656.856000px;}
.x1a{left:663.894000px;}
.x1b{left:692.577000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000501pt;}
.ls9{letter-spacing:12.693828pt;}
.ls3{letter-spacing:16.383944pt;}
.ls6{letter-spacing:19.040473pt;}
.ls8{letter-spacing:23.765659pt;}
.ls5{letter-spacing:23.986245pt;}
.ls7{letter-spacing:25.781828pt;}
.ls2{letter-spacing:27.227139pt;}
.ls1{letter-spacing:27.232473pt;}
.lsa{letter-spacing:31.600495pt;}
.lsb{letter-spacing:51.216495pt;}
.ws27{word-spacing:-13.652838pt;}
.ws1c{word-spacing:-2.964870pt;}
.ws42{word-spacing:-2.858602pt;}
.ws5c{word-spacing:-2.646067pt;}
.ws46{word-spacing:-2.539799pt;}
.ws57{word-spacing:-2.433531pt;}
.wsc7{word-spacing:-2.271488pt;}
.ws2b{word-spacing:-1.955326pt;}
.wsd5{word-spacing:-1.936742pt;}
.ws45{word-spacing:-1.902192pt;}
.ws15{word-spacing:-1.849059pt;}
.ws7f{word-spacing:-1.583389pt;}
.ws6a{word-spacing:-1.530255pt;}
.ws1b{word-spacing:-1.423988pt;}
.ws3c{word-spacing:-1.264586pt;}
.ws5a{word-spacing:-1.211452pt;}
.wsd6{word-spacing:-1.075968pt;}
.wsb5{word-spacing:-0.980326pt;}
.wsb4{word-spacing:-0.970755pt;}
.wsb6{word-spacing:-0.932506pt;}
.wsad{word-spacing:-0.884685pt;}
.ws11{word-spacing:-0.836864pt;}
.ws1f{word-spacing:-0.201909pt;}
.ws3f{word-spacing:-0.095641pt;}
.ws94{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws24{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.116895pt;}
.wsa0{word-spacing:0.167373pt;}
.ws2a{word-spacing:0.170028pt;}
.ws52{word-spacing:0.223162pt;}
.ws6d{word-spacing:0.276296pt;}
.ws2c{word-spacing:0.329430pt;}
.wsa1{word-spacing:0.358656pt;}
.ws3b{word-spacing:0.435698pt;}
.wsc9{word-spacing:0.454298pt;}
.ws96{word-spacing:0.549939pt;}
.wsc2{word-spacing:0.597760pt;}
.ws7d{word-spacing:0.648233pt;}
.ws32{word-spacing:0.701367pt;}
.wsd{word-spacing:0.741222pt;}
.ws81{word-spacing:0.754501pt;}
.ws5e{word-spacing:0.807635pt;}
.ws44{word-spacing:0.913903pt;}
.wsf{word-spacing:0.932506pt;}
.ws86{word-spacing:0.967036pt;}
.ws1e{word-spacing:1.020170pt;}
.ws64{word-spacing:1.073304pt;}
.ws9{word-spacing:1.171610pt;}
.ws43{word-spacing:1.338973pt;}
.ws69{word-spacing:1.392107pt;}
.ws61{word-spacing:1.657777pt;}
.wse{word-spacing:1.793280pt;}
.wsc4{word-spacing:1.888922pt;}
.wsb8{word-spacing:1.936742pt;}
.ws48{word-spacing:1.976580pt;}
.ws82{word-spacing:2.029714pt;}
.ws79{word-spacing:2.082848pt;}
.wsb{word-spacing:2.128026pt;}
.ws99{word-spacing:2.175846pt;}
.ws18{word-spacing:2.189115pt;}
.ws8a{word-spacing:2.242249pt;}
.ws25{word-spacing:2.348517pt;}
.ws6{word-spacing:2.367130pt;}
.ws35{word-spacing:2.401651pt;}
.wsb1{word-spacing:2.414950pt;}
.wsa3{word-spacing:2.510592pt;}
.ws60{word-spacing:2.561052pt;}
.ws4{word-spacing:2.701875pt;}
.ws13{word-spacing:2.718769pt;}
.ws55{word-spacing:2.720454pt;}
.wsc8{word-spacing:2.727229pt;}
.ws93{word-spacing:2.727706pt;}
.wsb3{word-spacing:2.729935pt;}
.wsd0{word-spacing:2.748129pt;}
.ws3{word-spacing:2.749696pt;}
.ws19{word-spacing:2.879856pt;}
.wsc1{word-spacing:2.893158pt;}
.ws1{word-spacing:2.932989pt;}
.ws73{word-spacing:2.986123pt;}
.ws58{word-spacing:3.039257pt;}
.ws10{word-spacing:3.084442pt;}
.ws49{word-spacing:3.145525pt;}
.wsb2{word-spacing:3.227904pt;}
.ws59{word-spacing:3.251793pt;}
.ws7{word-spacing:3.275725pt;}
.ws68{word-spacing:3.304927pt;}
.ws5f{word-spacing:3.358060pt;}
.wscf{word-spacing:3.371366pt;}
.ws80{word-spacing:3.517462pt;}
.ws6c{word-spacing:3.570596pt;}
.wsce{word-spacing:3.610470pt;}
.ws3d{word-spacing:3.623730pt;}
.wsa{word-spacing:3.658291pt;}
.ws22{word-spacing:3.836265pt;}
.ws8f{word-spacing:3.897395pt;}
.ws9a{word-spacing:3.945216pt;}
.ws8e{word-spacing:3.993037pt;}
.wsa4{word-spacing:4.031034pt;}
.ws87{word-spacing:4.048801pt;}
.ws90{word-spacing:4.088678pt;}
.ws37{word-spacing:4.101935pt;}
.wsd1{word-spacing:4.136499pt;}
.ws1d{word-spacing:4.314470pt;}
.ws39{word-spacing:4.367604pt;}
.wsc{word-spacing:4.423424pt;}
.ws4f{word-spacing:4.527005pt;}
.wsa9{word-spacing:4.566886pt;}
.ws8b{word-spacing:4.580139pt;}
.ws53{word-spacing:4.633273pt;}
.ws62{word-spacing:4.898943pt;}
.ws17{word-spacing:4.952076pt;}
.ws6e{word-spacing:5.058344pt;}
.wsd4{word-spacing:5.092915pt;}
.wsc3{word-spacing:5.188557pt;}
.ws3a{word-spacing:5.270880pt;}
.ws88{word-spacing:5.324013pt;}
.wsd8{word-spacing:5.332019pt;}
.ws63{word-spacing:5.377147pt;}
.ws76{word-spacing:5.483415pt;}
.ws2f{word-spacing:5.589683pt;}
.wsb7{word-spacing:5.666765pt;}
.ws3e{word-spacing:5.695951pt;}
.ws9f{word-spacing:5.714586pt;}
.ws54{word-spacing:5.749084pt;}
.ws4b{word-spacing:5.802218pt;}
.ws2d{word-spacing:5.908486pt;}
.ws5b{word-spacing:6.014754pt;}
.ws38{word-spacing:6.121021pt;}
.ws7e{word-spacing:6.174155pt;}
.ws40{word-spacing:6.280423pt;}
.ws28{word-spacing:6.333557pt;}
.ws56{word-spacing:6.386691pt;}
.ws6f{word-spacing:6.546092pt;}
.wsab{word-spacing:6.575360pt;}
.ws30{word-spacing:6.599226pt;}
.ws5d{word-spacing:6.811762pt;}
.ws8{word-spacing:6.814464pt;}
.ws34{word-spacing:6.918029pt;}
.ws41{word-spacing:7.024297pt;}
.ws92{word-spacing:7.101389pt;}
.ws83{word-spacing:7.183699pt;}
.ws2e{word-spacing:7.343100pt;}
.ws7a{word-spacing:7.449368pt;}
.ws67{word-spacing:7.661904pt;}
.ws95{word-spacing:7.866522pt;}
.ws51{word-spacing:7.927573pt;}
.ws4d{word-spacing:7.980707pt;}
.ws21{word-spacing:8.246376pt;}
.wsaa{word-spacing:8.344730pt;}
.ws50{word-spacing:8.458912pt;}
.ws8d{word-spacing:8.631654pt;}
.ws20{word-spacing:8.777715pt;}
.wsa2{word-spacing:8.870758pt;}
.ws4a{word-spacing:9.096518pt;}
.wscd{word-spacing:9.205504pt;}
.ws29{word-spacing:9.362187pt;}
.ws89{word-spacing:9.627857pt;}
.wsa8{word-spacing:9.683712pt;}
.wsbf{word-spacing:9.731533pt;}
.ws91{word-spacing:9.827174pt;}
.ws4e{word-spacing:9.840392pt;}
.ws33{word-spacing:9.893526pt;}
.ws77{word-spacing:9.999794pt;}
.ws23{word-spacing:10.106061pt;}
.ws9e{word-spacing:10.114099pt;}
.wsae{word-spacing:10.209741pt;}
.ws47{word-spacing:10.318597pt;}
.ws16{word-spacing:10.584266pt;}
.wsca{word-spacing:10.783590pt;}
.ws4c{word-spacing:11.540676pt;}
.ws78{word-spacing:11.593810pt;}
.ws74{word-spacing:11.700077pt;}
.ws84{word-spacing:11.806345pt;}
.ws98{word-spacing:12.118277pt;}
.ws97{word-spacing:12.122573pt;}
.wsd2{word-spacing:12.313856pt;}
.ws7b{word-spacing:12.337684pt;}
.ws8c{word-spacing:12.409498pt;}
.wsbc{word-spacing:12.887706pt;}
.ws85{word-spacing:14.622440pt;}
.ws71{word-spacing:14.824349pt;}
.wscb{word-spacing:14.896179pt;}
.wsac{word-spacing:15.039642pt;}
.wsaf{word-spacing:15.661312pt;}
.ws7c{word-spacing:15.897653pt;}
.wsd7{word-spacing:16.139520pt;}
.wsb0{word-spacing:16.378624pt;}
.wsc0{word-spacing:16.569907pt;}
.ws9b{word-spacing:16.856832pt;}
.wscc{word-spacing:17.621965pt;}
.wsbd{word-spacing:17.956710pt;}
.ws75{word-spacing:18.341811pt;}
.ws26{word-spacing:18.793574pt;}
.wsbe{word-spacing:18.913126pt;}
.wsd3{word-spacing:20.252109pt;}
.ws36{word-spacing:20.297137pt;}
.ws70{word-spacing:21.157906pt;}
.wsc6{word-spacing:22.404045pt;}
.wsc5{word-spacing:22.451866pt;}
.ws31{word-spacing:23.846639pt;}
.ws12{word-spacing:24.526256pt;}
.wsbb{word-spacing:25.560218pt;}
.ws65{word-spacing:25.794772pt;}
.ws66{word-spacing:25.800105pt;}
.ws5{word-spacing:26.515067pt;}
.ws9d{word-spacing:26.707917pt;}
.ws0{word-spacing:28.615887pt;}
.wsba{word-spacing:30.198835pt;}
.ws9c{word-spacing:32.542054pt;}
.wsb9{word-spacing:37.563238pt;}
.ws6b{word-spacing:61.050813pt;}
.wsa6{word-spacing:70.081382pt;}
.ws14{word-spacing:71.667439pt;}
.wsa5{word-spacing:79.358618pt;}
.wsa7{word-spacing:85.575322pt;}
.ws72{word-spacing:99.530359pt;}
._5c{margin-left:-26.067639pt;}
._5a{margin-left:-25.127134pt;}
._36{margin-left:-5.100851pt;}
._3{margin-left:-4.155106pt;}
._4{margin-left:-2.422950pt;}
._0{margin-left:-1.487748pt;}
._2{width:1.487748pt;}
._1{width:2.662498pt;}
._3a{width:14.876943pt;}
._3f{width:16.354714pt;}
._37{width:17.321641pt;}
._3c{width:18.972943pt;}
._35{width:20.924201pt;}
._22{width:24.010355pt;}
._59{width:26.588365pt;}
._39{width:31.256501pt;}
._3b{width:35.351610pt;}
._3d{width:36.651294pt;}
._2b{width:47.305005pt;}
._1b{width:56.702835pt;}
._5d{width:60.119676pt;}
._34{width:61.103947pt;}
._c{width:64.244311pt;}
._25{width:67.806304pt;}
._21{width:70.360456pt;}
._33{width:71.731200pt;}
._a{width:80.344917pt;}
._b{width:81.375903pt;}
._23{width:83.329457pt;}
._26{width:84.263236pt;}
._27{width:91.706754pt;}
._18{width:98.024267pt;}
._7{width:99.764559pt;}
._46{width:101.860684pt;}
._1f{width:112.081117pt;}
._50{width:113.547073pt;}
._4c{width:114.494483pt;}
._3e{width:115.637431pt;}
._5b{width:116.995914pt;}
._1a{width:118.204259pt;}
._20{width:119.620276pt;}
._d{width:122.806048pt;}
._47{width:127.712087pt;}
._4d{width:142.239361pt;}
._28{width:150.268491pt;}
._5{width:151.687578pt;}
._44{width:154.257413pt;}
._45{width:155.673430pt;}
._13{width:163.045687pt;}
._10{width:174.893216pt;}
._29{width:175.883107pt;}
._48{width:179.648172pt;}
._e{width:181.573782pt;}
._53{width:183.205572pt;}
._54{width:184.587053pt;}
._8{width:195.887970pt;}
._2e{width:199.454880pt;}
._2c{width:204.305705pt;}
._1c{width:210.146710pt;}
._2d{width:211.844864pt;}
._32{width:214.399402pt;}
._1d{width:217.685869pt;}
._31{width:220.463736pt;}
._f{width:221.803240pt;}
._12{width:223.878141pt;}
._2f{width:226.463167pt;}
._11{width:241.900527pt;}
._56{width:245.425330pt;}
._24{width:248.995421pt;}
._2a{width:250.428771pt;}
._40{width:253.036058pt;}
._6{width:254.954800pt;}
._49{width:256.516890pt;}
._41{width:259.931296pt;}
._9{width:274.343953pt;}
._1e{width:276.295427pt;}
._30{width:284.453656pt;}
._38{width:289.874620pt;}
._14{width:291.277684pt;}
._15{width:292.783654pt;}
._4e{width:295.158629pt;}
._4f{width:298.080992pt;}
._58{width:299.621874pt;}
._4a{width:316.571578pt;}
._55{width:324.701059pt;}
._57{width:326.188807pt;}
._42{width:328.788987pt;}
._4b{width:351.958733pt;}
._17{width:356.251419pt;}
._51{width:371.883933pt;}
._19{width:373.057830pt;}
._43{width:392.256753pt;}
._52{width:440.532889pt;}
._16{width:611.152811pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.yad{bottom:177.182667pt;}
.y111{bottom:186.716000pt;}
.y25{bottom:188.044000pt;}
.yac{bottom:195.824000pt;}
.y110{bottom:201.326667pt;}
.y140{bottom:201.328000pt;}
.ye1{bottom:202.369333pt;}
.y24{bottom:203.984000pt;}
.yab{bottom:211.764000pt;}
.y10f{bottom:215.938667pt;}
.y13f{bottom:215.950667pt;}
.y23{bottom:219.924000pt;}
.yaa{bottom:227.704000pt;}
.y10e{bottom:230.550667pt;}
.y13e{bottom:230.562667pt;}
.y22{bottom:235.864000pt;}
.ye0{bottom:243.261333pt;}
.ya9{bottom:243.644000pt;}
.y10d{bottom:245.105333pt;}
.y13d{bottom:245.174667pt;}
.y6a{bottom:245.189333pt;}
.y8b{bottom:248.802667pt;}
.y21{bottom:251.805333pt;}
.ydf{bottom:259.202667pt;}
.ya8{bottom:259.584000pt;}
.y10c{bottom:259.717333pt;}
.y13c{bottom:259.786667pt;}
.y20{bottom:267.745333pt;}
.y10b{bottom:274.329333pt;}
.y13b{bottom:274.409333pt;}
.yde{bottom:275.142667pt;}
.ya7{bottom:275.524000pt;}
.y1f{bottom:283.685333pt;}
.y69{bottom:283.737333pt;}
.y10a{bottom:288.884000pt;}
.y13a{bottom:289.021333pt;}
.y8a{bottom:290.965333pt;}
.ydd{bottom:291.082667pt;}
.ya6{bottom:291.465333pt;}
.y1e{bottom:299.625333pt;}
.y68{bottom:299.677333pt;}
.y109{bottom:303.496000pt;}
.y139{bottom:303.633333pt;}
.y89{bottom:306.905333pt;}
.ydc{bottom:307.022667pt;}
.ya5{bottom:307.405333pt;}
.y1d{bottom:315.565333pt;}
.y67{bottom:315.617333pt;}
.y108{bottom:318.050667pt;}
.y138{bottom:318.257333pt;}
.ydb{bottom:322.962667pt;}
.ya4{bottom:323.345333pt;}
.y1c{bottom:331.505333pt;}
.y66{bottom:331.558667pt;}
.y107{bottom:332.662667pt;}
.y137{bottom:332.869333pt;}
.yda{bottom:338.904000pt;}
.y48{bottom:339.377333pt;}
.y88{bottom:341.097333pt;}
.y106{bottom:347.274667pt;}
.y1b{bottom:347.446667pt;}
.y136{bottom:347.492000pt;}
.y65{bottom:347.498667pt;}
.ya3{bottom:347.820000pt;}
.yd9{bottom:354.844000pt;}
.y47{bottom:355.317333pt;}
.y105{bottom:361.886667pt;}
.y135{bottom:362.104000pt;}
.y1a{bottom:363.386667pt;}
.y64{bottom:363.438667pt;}
.yd8{bottom:370.784000pt;}
.y104{bottom:376.441333pt;}
.y134{bottom:376.726667pt;}
.y19{bottom:379.326667pt;}
.y63{bottom:379.378667pt;}
.ya2{bottom:385.577333pt;}
.y87{bottom:385.917333pt;}
.yd7{bottom:386.724000pt;}
.y103{bottom:391.053333pt;}
.y133{bottom:391.338667pt;}
.y18{bottom:395.266667pt;}
.y62{bottom:395.318667pt;}
.ya1{bottom:401.517333pt;}
.y86{bottom:401.857333pt;}
.yd6{bottom:402.664000pt;}
.y102{bottom:405.664000pt;}
.y132{bottom:405.962667pt;}
.y17{bottom:411.206667pt;}
.ya0{bottom:417.457333pt;}
.y85{bottom:417.797333pt;}
.yd5{bottom:418.604000pt;}
.y101{bottom:420.276000pt;}
.y131{bottom:420.574667pt;}
.y61{bottom:420.584000pt;}
.y46{bottom:422.681333pt;}
.y9f{bottom:433.397333pt;}
.y84{bottom:433.737333pt;}
.yd4{bottom:434.545333pt;}
.y100{bottom:434.888000pt;}
.y130{bottom:435.186667pt;}
.y45{bottom:437.293333pt;}
.y16{bottom:442.708000pt;}
.y9e{bottom:449.338667pt;}
.yff{bottom:449.500000pt;}
.y83{bottom:449.677333pt;}
.y12f{bottom:449.798667pt;}
.yd3{bottom:450.485333pt;}
.y44{bottom:452.437333pt;}
.y60{bottom:459.132000pt;}
.yfe{bottom:464.112000pt;}
.y12e{bottom:464.409333pt;}
.y9d{bottom:465.278667pt;}
.y82{bottom:465.617333pt;}
.yd2{bottom:466.425333pt;}
.y43{bottom:467.580000pt;}
.y5f{bottom:475.072000pt;}
.yfd{bottom:478.666667pt;}
.y12d{bottom:479.021333pt;}
.y9c{bottom:481.218667pt;}
.y81{bottom:481.558667pt;}
.yd1{bottom:482.365333pt;}
.y42{bottom:482.722667pt;}
.y15{bottom:487.342667pt;}
.y5e{bottom:491.013333pt;}
.yfc{bottom:493.278667pt;}
.y12c{bottom:493.645333pt;}
.y9b{bottom:497.158667pt;}
.y41{bottom:497.334667pt;}
.y80{bottom:497.498667pt;}
.yd0{bottom:498.305333pt;}
.yc5{bottom:504.146667pt;}
.y5d{bottom:506.953333pt;}
.yfb{bottom:507.833333pt;}
.y12b{bottom:508.257333pt;}
.y40{bottom:512.478667pt;}
.y9a{bottom:513.098667pt;}
.y7f{bottom:513.438667pt;}
.ycf{bottom:514.245333pt;}
.y14{bottom:516.472000pt;}
.yc4{bottom:520.086667pt;}
.yfa{bottom:522.445333pt;}
.y12a{bottom:522.869333pt;}
.y5c{bottom:522.893333pt;}
.y3f{bottom:527.621333pt;}
.y7e{bottom:529.841333pt;}
.yce{bottom:530.186667pt;}
.y13{bottom:531.082667pt;}
.yc3{bottom:536.026667pt;}
.yf9{bottom:537.000000pt;}
.y129{bottom:537.492000pt;}
.y5b{bottom:538.833333pt;}
.y3e{bottom:542.765333pt;}
.y12{bottom:545.694667pt;}
.y7d{bottom:545.781333pt;}
.ycd{bottom:546.126667pt;}
.yf8{bottom:551.612000pt;}
.yc2{bottom:551.966667pt;}
.y128{bottom:552.104000pt;}
.y5a{bottom:554.773333pt;}
.y3d{bottom:557.908000pt;}
.y99{bottom:559.441333pt;}
.y11{bottom:560.306667pt;}
.y7c{bottom:561.721333pt;}
.ycc{bottom:562.066667pt;}
.yf7{bottom:566.166667pt;}
.y127{bottom:566.728000pt;}
.yc1{bottom:567.906667pt;}
.y59{bottom:570.714667pt;}
.y3c{bottom:573.050667pt;}
.y98{bottom:574.053333pt;}
.y10{bottom:574.918667pt;}
.y7b{bottom:578.124000pt;}
.yf6{bottom:580.778667pt;}
.y126{bottom:581.340000pt;}
.yc0{bottom:583.848000pt;}
.y58{bottom:586.654667pt;}
.y3b{bottom:588.194667pt;}
.y97{bottom:588.664000pt;}
.yf{bottom:589.530667pt;}
.ycb{bottom:592.332000pt;}
.y7a{bottom:594.064000pt;}
.yf5{bottom:595.333333pt;}
.y125{bottom:595.962667pt;}
.ybf{bottom:599.788000pt;}
.y57{bottom:602.594667pt;}
.y96{bottom:603.276000pt;}
.y3a{bottom:603.337333pt;}
.ye{bottom:604.142667pt;}
.yf4{bottom:609.944000pt;}
.y79{bottom:610.005333pt;}
.y124{bottom:610.574667pt;}
.y151{bottom:610.644000pt;}
.ybe{bottom:615.728000pt;}
.y95{bottom:617.888000pt;}
.y39{bottom:618.481333pt;}
.y56{bottom:618.534667pt;}
.yd{bottom:618.754667pt;}
.yf3{bottom:624.498667pt;}
.y123{bottom:625.186667pt;}
.y150{bottom:625.254667pt;}
.y78{bottom:625.945333pt;}
.ybd{bottom:631.668000pt;}
.y94{bottom:632.500000pt;}
.yca{bottom:633.225333pt;}
.yc{bottom:633.366667pt;}
.y38{bottom:633.624000pt;}
.y55{bottom:634.474667pt;}
.yf2{bottom:639.110667pt;}
.y122{bottom:639.798667pt;}
.y14f{bottom:639.866667pt;}
.y77{bottom:641.885333pt;}
.y93{bottom:647.112000pt;}
.ybc{bottom:647.608000pt;}
.yb{bottom:647.978667pt;}
.y37{bottom:648.236000pt;}
.yc9{bottom:649.165333pt;}
.y54{bottom:650.414667pt;}
.yf1{bottom:653.722667pt;}
.y121{bottom:654.421333pt;}
.y14e{bottom:654.478667pt;}
.y92{bottom:661.724000pt;}
.ya{bottom:662.590667pt;}
.y36{bottom:663.378667pt;}
.ybb{bottom:663.548000pt;}
.yc8{bottom:665.105333pt;}
.y53{bottom:666.356000pt;}
.yf0{bottom:668.277333pt;}
.y120{bottom:669.033333pt;}
.y14d{bottom:669.090667pt;}
.y76{bottom:670.764000pt;}
.y91{bottom:676.336000pt;}
.y9{bottom:677.201333pt;}
.y35{bottom:677.990667pt;}
.yba{bottom:679.489333pt;}
.yc7{bottom:681.045333pt;}
.y52{bottom:682.296000pt;}
.yef{bottom:682.889333pt;}
.y11f{bottom:683.645333pt;}
.y14c{bottom:683.702667pt;}
.y90{bottom:690.948000pt;}
.y8{bottom:691.813333pt;}
.y34{bottom:692.602667pt;}
.yb9{bottom:695.429333pt;}
.yc6{bottom:696.986667pt;}
.yee{bottom:697.444000pt;}
.y11e{bottom:698.257333pt;}
.y14b{bottom:698.314667pt;}
.y8f{bottom:705.560000pt;}
.y51{bottom:707.560000pt;}
.y33{bottom:707.746667pt;}
.yb8{bottom:711.369333pt;}
.yed{bottom:712.056000pt;}
.y11d{bottom:712.880000pt;}
.y75{bottom:712.926667pt;}
.y8e{bottom:720.172000pt;}
.y32{bottom:722.357333pt;}
.yec{bottom:726.610667pt;}
.yb7{bottom:727.309333pt;}
.y11c{bottom:727.492000pt;}
.y14a{bottom:727.538667pt;}
.y74{bottom:728.866667pt;}
.y8d{bottom:734.782667pt;}
.y31{bottom:737.501333pt;}
.yeb{bottom:741.222667pt;}
.y11b{bottom:742.116000pt;}
.y149{bottom:742.150667pt;}
.yb6{bottom:743.249333pt;}
.y73{bottom:744.806667pt;}
.y7{bottom:745.177333pt;}
.y50{bottom:746.109333pt;}
.y8c{bottom:749.926667pt;}
.y30{bottom:752.644000pt;}
.yea{bottom:755.834667pt;}
.y11a{bottom:756.728000pt;}
.y148{bottom:756.762667pt;}
.yb5{bottom:759.190667pt;}
.y72{bottom:760.746667pt;}
.y4f{bottom:762.049333pt;}
.y6{bottom:764.868000pt;}
.y2f{bottom:767.788000pt;}
.ye9{bottom:770.389333pt;}
.y119{bottom:771.340000pt;}
.y147{bottom:771.374667pt;}
.yb4{bottom:775.130667pt;}
.y71{bottom:776.688000pt;}
.y4e{bottom:777.989333pt;}
.y5{bottom:779.480000pt;}
.y2e{bottom:782.930667pt;}
.ye8{bottom:785.001333pt;}
.y118{bottom:785.962667pt;}
.y146{bottom:785.985333pt;}
.yb3{bottom:791.070667pt;}
.y70{bottom:792.628000pt;}
.y4d{bottom:793.929333pt;}
.y2d{bottom:797.542667pt;}
.ye7{bottom:799.613333pt;}
.y117{bottom:800.574667pt;}
.y145{bottom:800.597333pt;}
.y4{bottom:802.241333pt;}
.yb2{bottom:807.010667pt;}
.y6f{bottom:808.568000pt;}
.y4c{bottom:809.869333pt;}
.y2c{bottom:812.685333pt;}
.ye6{bottom:814.168000pt;}
.y116{bottom:815.186667pt;}
.y144{bottom:815.209333pt;}
.y3{bottom:818.182667pt;}
.yb1{bottom:823.482667pt;}
.y6e{bottom:824.508000pt;}
.y4b{bottom:825.810667pt;}
.y2b{bottom:827.297333pt;}
.ye5{bottom:828.778667pt;}
.y115{bottom:829.798667pt;}
.y143{bottom:829.821333pt;}
.y6d{bottom:840.448000pt;}
.y4a{bottom:841.750667pt;}
.ye4{bottom:843.390667pt;}
.y114{bottom:844.421333pt;}
.y142{bottom:844.433333pt;}
.y2a{bottom:845.629333pt;}
.yb0{bottom:853.237333pt;}
.y6c{bottom:856.388000pt;}
.y49{bottom:857.690667pt;}
.ye3{bottom:858.002667pt;}
.y113{bottom:859.033333pt;}
.y141{bottom:859.045333pt;}
.y29{bottom:861.170667pt;}
.y2{bottom:864.358667pt;}
.yaf{bottom:869.177333pt;}
.y6b{bottom:872.329333pt;}
.y112{bottom:873.657333pt;}
.y28{bottom:877.110667pt;}
.yae{bottom:885.117333pt;}
.y1{bottom:888.269333pt;}
.y27{bottom:922.806667pt;}
.h4{height:21.200555pt;}
.h5{height:29.457613pt;}
.ha{height:33.474560pt;}
.h6{height:35.865600pt;}
.h7{height:36.965478pt;}
.hb{height:37.193707pt;}
.h9{height:39.850400pt;}
.h8{height:44.632747pt;}
.h2{height:47.175200pt;}
.h3{height:47.180533pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:180.542667pt;}
.xa{left:181.829333pt;}
.x1d{left:183.338667pt;}
.x1f{left:185.829333pt;}
.x3{left:187.368000pt;}
.x1c{left:198.013333pt;}
.x9{left:199.610667pt;}
.x20{left:202.028000pt;}
.x8{left:217.481333pt;}
.x1{left:234.348000pt;}
.x6{left:239.265333pt;}
.xe{left:268.414667pt;}
.x2{left:301.248000pt;}
.x4{left:307.058667pt;}
.xf{left:323.266667pt;}
.x10{left:347.806667pt;}
.x7{left:350.612000pt;}
.x11{left:369.208000pt;}
.xb{left:375.056000pt;}
.x12{left:391.765333pt;}
.x13{left:414.190667pt;}
.x1e{left:417.950667pt;}
.x14{left:436.681333pt;}
.x15{left:462.245333pt;}
.xd{left:481.354667pt;}
.x16{left:487.874667pt;}
.x17{left:513.438667pt;}
.x18{left:539.001333pt;}
.x19{left:564.498667pt;}
.xc{left:583.872000pt;}
.x1a{left:590.128000pt;}
.x1b{left:615.624000pt;}
}




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