
    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_a4f586f91c68b97a0f2a3ccc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_bacd8f61d271f6b9be6324e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961426;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_75899c5966fb42f82d886d73.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_a13291ca129d101cb6998f2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_83268b32dcdf2faba47f9b5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_a851c6f13bcb0b7c152126c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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_a4b277b72f7dcc0435211a09.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0ad5e9a4de71a9b2e4cf1e20.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.476539px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.476539px;}
.v3{vertical-align:40.499998px;}
.v4{vertical-align:80.999997px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000012px;}
.ls2{letter-spacing:0.037617px;}
.ls0{letter-spacing:0.037640px;}
.ls1{letter-spacing:0.037662px;}
.ls6{letter-spacing:1033.207010px;}
.ls4{letter-spacing:1064.285134px;}
.ls5{letter-spacing:1068.222634px;}
.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;}
}
.ws4a{word-spacing:-53.999998px;}
.ws0{word-spacing:-20.003905px;}
.ws1{word-spacing:-13.752685px;}
.ws4b{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:6.996072px;}
.wsc{word-spacing:47.917944px;}
.ws10{word-spacing:58.992163px;}
.ws6{word-spacing:68.941403px;}
.ws19{word-spacing:72.984372px;}
.ws42{word-spacing:98.191402px;}
.ws1e{word-spacing:108.457027px;}
.ws2e{word-spacing:109.230442px;}
.ws2d{word-spacing:109.265620px;}
.ws21{word-spacing:119.214816px;}
.ws3f{word-spacing:274.605458px;}
.ws14{word-spacing:857.074207px;}
.ws41{word-spacing:867.128871px;}
.ws18{word-spacing:868.113246px;}
.ws3c{word-spacing:881.050768px;}
.wse{word-spacing:888.152331px;}
.ws5{word-spacing:892.089830px;}
.wsa{word-spacing:897.433577px;}
.ws1c{word-spacing:912.128892px;}
.ws44{word-spacing:916.066392px;}
.ws29{word-spacing:1481.238222px;}
.ws3{word-spacing:1501.558531px;}
.ws22{word-spacing:1504.019471px;}
.ws46{word-spacing:1509.433533px;}
.ws33{word-spacing:1517.308533px;}
.ws3d{word-spacing:1533.304626px;}
.ws38{word-spacing:1537.417906px;}
.ws35{word-spacing:1537.453062px;}
.ws12{word-spacing:1545.257750px;}
.ws31{word-spacing:1545.398374px;}
.ws27{word-spacing:1553.238219px;}
.ws39{word-spacing:1553.343687px;}
.ws28{word-spacing:1553.413999px;}
.ws24{word-spacing:1557.351499px;}
.wsb{word-spacing:1561.324156px;}
.ws2f{word-spacing:1561.429624px;}
.ws20{word-spacing:1581.328061px;}
.ws49{word-spacing:1589.413998px;}
.wsf{word-spacing:1601.367122px;}
.ws3e{word-spacing:1605.480403px;}
.ws48{word-spacing:1609.417903px;}
.ws36{word-spacing:1613.320247px;}
.ws1f{word-spacing:1617.363215px;}
.ws40{word-spacing:1617.468684px;}
.ws17{word-spacing:1620.035091px;}
.ws1b{word-spacing:1625.343684px;}
.ws11{word-spacing:1625.413996px;}
.ws2b{word-spacing:1633.359309px;}
.ws16{word-spacing:1633.429621px;}
.ws34{word-spacing:1637.472589px;}
.ws2c{word-spacing:1641.445245px;}
.ws8{word-spacing:1654.734307px;}
.wsd{word-spacing:1657.406182px;}
.ws2a{word-spacing:1662.714776px;}
.ws15{word-spacing:1678.746025px;}
.ws9{word-spacing:1681.453056px;}
.ws47{word-spacing:1685.390556px;}
.ws30{word-spacing:1689.398368px;}
.ws1d{word-spacing:1697.413993px;}
.ws45{word-spacing:1700.156174px;}
.ws26{word-spacing:1701.492118px;}
.ws3b{word-spacing:1705.429618px;}
.ws37{word-spacing:1705.499930px;}
.ws3a{word-spacing:1710.773367px;}
.ws1a{word-spacing:1713.445242px;}
.ws43{word-spacing:1713.480398px;}
.ws23{word-spacing:1721.425711px;}
.ws4{word-spacing:1721.496023px;}
.ws32{word-spacing:1733.519460px;}
.ws13{word-spacing:1737.421804px;}
.ws25{word-spacing:1785.445239px;}
._16{margin-left:-9.281247px;}
._5{margin-left:-7.577014px;}
._6{margin-left:-6.574218px;}
._3{margin-left:-5.343748px;}
._1{margin-left:-3.616697px;}
._0{margin-left:-1.704237px;}
._2{width:1.039323px;}
._9{width:35.507834px;}
._1f{width:52.804711px;}
._d{width:57.972653px;}
._31{width:66.902365px;}
._26{width:67.921849px;}
._39{width:70.136739px;}
._65{width:75.656247px;}
._25{width:77.238278px;}
._40{width:78.890622px;}
._57{width:83.193735px;}
._1d{width:86.414059px;}
._29{width:87.679711px;}
._1a{width:88.945309px;}
._4{width:89.999999px;}
._15{width:92.988278px;}
._3c{width:95.304220px;}
._13{width:98.226558px;}
._19{width:99.843772px;}
._14{width:101.355442px;}
._a{width:102.374999px;}
._51{width:103.746117px;}
._12{width:105.117208px;}
._c{width:107.332027px;}
._22{width:108.386737px;}
._69{width:111.832053px;}
._1c{width:113.238299px;}
._28{width:115.875022px;}
._45{width:116.948129px;}
._2d{width:118.195307px;}
._b{width:119.214839px;}
._21{width:123.292941px;}
._4c{width:125.238924px;}
._8{width:128.460932px;}
._30{width:129.585937px;}
._24{width:131.444843px;}
._7{width:133.277316px;}
._72{width:135.738303px;}
._37{width:137.003925px;}
._f{width:138.410151px;}
._64{width:139.746115px;}
._e{width:143.261691px;}
._5f{width:151.910176px;}
._2f{width:153.258454px;}
._50{width:155.386249px;}
._2a{width:159.464372px;}
._4b{width:160.467167px;}
._43{width:162.492207px;}
._1e{width:163.687520px;}
._46{width:164.808120px;}
._52{width:166.442045px;}
._61{width:167.835958px;}
._73{width:171.703145px;}
._38{width:172.792988px;}
._62{width:176.655778px;}
._4f{width:179.929707px;}
._48{width:182.864411px;}
._32{width:184.200345px;}
._6e{width:186.445950px;}
._34{width:191.421403px;}
._2c{width:193.499991px;}
._17{width:197.156266px;}
._58{width:199.722674px;}
._35{width:203.871112px;}
._11{width:205.277360px;}
._3a{width:207.808612px;}
._44{width:211.957049px;}
._27{width:215.789080px;}
._75{width:219.440933px;}
._53{width:220.776868px;}
._56{width:221.871087px;}
._68{width:226.828119px;}
._77{width:227.847673px;}
._60{width:233.332020px;}
._2e{width:236.003922px;}
._49{width:241.136733px;}
._70{width:247.816422px;}
._4a{width:248.866711px;}
._5e{width:255.687025px;}
._41{width:257.536284px;}
._63{width:258.644546px;}
._66{width:263.597180px;}
._18{width:265.289051px;}
._3d{width:267.644565px;}
._4e{width:269.512195px;}
._76{width:272.039076px;}
._5b{width:279.558117px;}
._5d{width:281.214857px;}
._36{width:285.292981px;}
._71{width:287.894545px;}
._47{width:300.471687px;}
._3f{width:335.847668px;}
._55{width:371.917979px;}
._6a{width:379.863289px;}
._67{width:394.804673px;}
._33{width:435.651860px;}
._3e{width:481.727680px;}
._79{width:499.921879px;}
._74{width:524.601472px;}
._20{width:527.871098px;}
._54{width:539.894534px;}
._59{width:547.980471px;}
._4d{width:573.855447px;}
._3b{width:589.957032px;}
._42{width:612.000000px;}
._5c{width:619.980467px;}
._78{width:636.082029px;}
._5a{width:687.937496px;}
._6b{width:731.953119px;}
._6d{width:829.054677px;}
._6f{width:839.109341px;}
._2b{width:860.132800px;}
._10{width:863.085902px;}
._6c{width:884.109362px;}
._23{width:888.046861px;}
._1b{width:1177.171830px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs2{font-size:49.499998px;}
.fs3{font-size:59.984997px;}
.fs1{font-size:71.999997px;}
.fs0{font-size:93.599992px;}
.y0{bottom:0.000000px;}
.yb9{bottom:5.695308px;}
.y185{bottom:7.945308px;}
.ydd{bottom:9.070308px;}
.y52{bottom:11.320308px;}
.yfa{bottom:13.570307px;}
.y258{bottom:14.695307px;}
.y174{bottom:18.070307px;}
.y98{bottom:19.195307px;}
.y20c{bottom:21.445307px;}
.yb8{bottom:25.945307px;}
.y184{bottom:28.195307px;}
.ydc{bottom:29.320307px;}
.y51{bottom:31.570307px;}
.y1b4{bottom:33.820307px;}
.y24f{bottom:34.945307px;}
.y28{bottom:36.070306px;}
.y71{bottom:38.320306px;}
.y229{bottom:39.445306px;}
.y20b{bottom:41.695306px;}
.y1{bottom:42.184713px;}
.y116{bottom:42.820306px;}
.yf9{bottom:43.945306px;}
.y159{bottom:46.195306px;}
.y19e{bottom:49.570306px;}
.y173{bottom:50.695306px;}
.y97{bottom:51.820306px;}
.y132{bottom:52.945306px;}
.yb7{bottom:55.195306px;}
.y27{bottom:56.320306px;}
.ydb{bottom:57.445306px;}
.y70{bottom:58.570306px;}
.y50{bottom:59.695306px;}
.y96{bottom:61.945305px;}
.y1e4{bottom:64.195305px;}
.y1b3{bottom:66.445305px;}
.y148{bottom:67.570305px;}
.y1f8{bottom:69.820305px;}
.y172{bottom:70.945305px;}
.y115{bottom:73.195305px;}
.y24e{bottom:75.445305px;}
.y26{bottom:76.570305px;}
.y228{bottom:77.695305px;}
.y183{bottom:78.820305px;}
.y1d7{bottom:79.945305px;}
.y19d{bottom:81.070305px;}
.yb6{bottom:85.570304px;}
.y1b2{bottom:86.695304px;}
.y1c9{bottom:87.820304px;}
.yda{bottom:88.945304px;}
.y4f{bottom:90.070304px;}
.y6f{bottom:91.195304px;}
.y257{bottom:93.445304px;}
.y1e3{bottom:95.695304px;}
.y25{bottom:96.820304px;}
.yd9{bottom:99.070304px;}
.y20a{bottom:100.195304px;}
.y19c{bottom:101.320304px;}
.y171{bottom:102.445304px;}
.y95{bottom:104.695304px;}
.y131{bottom:106.945304px;}
.y1c8{bottom:108.070303px;}
.y158{bottom:109.195303px;}
.y147{bottom:110.320303px;}
.y1d6{bottom:111.445303px;}
.y182{bottom:112.570303px;}
.y24d{bottom:113.695303px;}
.y1e2{bottom:115.945303px;}
.y24{bottom:117.070303px;}
.y1cd{bottom:118.195303px;}
.y1b1{bottom:119.320303px;}
.y209{bottom:120.445303px;}
.y4e{bottom:122.695303px;}
.y94{bottom:124.945303px;}
.yf8{bottom:128.320303px;}
.y181{bottom:132.820302px;}
.y24c{bottom:133.945302px;}
.y170{bottom:135.070302px;}
.y227{bottom:136.195302px;}
.y23{bottom:137.320302px;}
.y1b0{bottom:139.570302px;}
.y1c7{bottom:140.695302px;}
.yd8{bottom:141.820302px;}
.y4d{bottom:142.945302px;}
.y21c{bottom:145.195302px;}
.y1f7{bottom:146.320302px;}
.y1e1{bottom:149.695302px;}
.y130{bottom:150.820302px;}
.y146{bottom:151.945302px;}
.y24b{bottom:154.195302px;}
.y16f{bottom:155.320302px;}
.y22{bottom:157.570301px;}
.y93{bottom:158.695301px;}
.y180{bottom:164.320301px;}
.y21b{bottom:165.445301px;}
.yb5{bottom:169.945301px;}
.y12f{bottom:171.070301px;}
.yd7{bottom:172.195301px;}
.y1d5{bottom:173.320301px;}
.y4c{bottom:174.445301px;}
.y25e{bottom:175.570301px;}
.y21{bottom:177.820301px;}
.y92{bottom:178.945301px;}
.y1f6{bottom:184.570300px;}
.y21a{bottom:185.695300px;}
.y16e{bottom:186.820300px;}
.y114{bottom:187.945300px;}
.yf7{bottom:189.070300px;}
.y1c6{bottom:192.445300px;}
.y145{bottom:193.570300px;}
.y17f{bottom:194.695300px;}
.y23b{bottom:195.820300px;}
.y20{bottom:198.070300px;}
.y208{bottom:199.195300px;}
.yb4{bottom:201.445300px;}
.yd6{bottom:202.570300px;}
.y12e{bottom:203.695300px;}
.y4b{bottom:204.820299px;}
.y219{bottom:205.945299px;}
.y91{bottom:210.445299px;}
.yb3{bottom:211.570299px;}
.y226{bottom:212.695299px;}
.y23a{bottom:216.070299px;}
.y19b{bottom:217.195299px;}
.y1f{bottom:218.320299px;}
.yf6{bottom:219.445299px;}
.y1e0{bottom:222.820299px;}
.y12d{bottom:223.945299px;}
.y17e{bottom:225.070299px;}
.y144{bottom:226.195299px;}
.y1d4{bottom:227.320299px;}
.y16d{bottom:228.445298px;}
.yd5{bottom:232.945298px;}
.y25d{bottom:234.070298px;}
.y143{bottom:236.320298px;}
.y4a{bottom:237.445298px;}
.y113{bottom:239.695298px;}
.y90{bottom:243.070298px;}
.y1d3{bottom:247.570298px;}
.y19a{bottom:249.820298px;}
.y225{bottom:250.945298px;}
.yf5{bottom:252.070297px;}
.y25c{bottom:254.320297px;}
.yb2{bottom:255.445297px;}
.y1af{bottom:256.570297px;}
.y49{bottom:257.695297px;}
.y1e{bottom:258.820297px;}
.yf4{bottom:262.195297px;}
.y8f{bottom:263.320297px;}
.y218{bottom:264.445297px;}
.yb1{bottom:265.570297px;}
.y1df{bottom:266.695297px;}
.y12c{bottom:267.820297px;}
.y199{bottom:270.070297px;}
.y16c{bottom:271.195297px;}
.y112{bottom:272.320297px;}
.y239{bottom:274.570297px;}
.y1c5{bottom:276.820296px;}
.y142{bottom:277.945296px;}
.y1d{bottom:279.070296px;}
.y1f5{bottom:281.320296px;}
.y217{bottom:284.695296px;}
.y1ae{bottom:286.945296px;}
.y1cc{bottom:288.070296px;}
.y48{bottom:289.195296px;}
.y6e{bottom:291.445296px;}
.y8e{bottom:294.820296px;}
.yd4{bottom:295.945296px;}
.y1cb{bottom:298.195296px;}
.y1c{bottom:299.320296px;}
.y111{bottom:302.695295px;}
.yf3{bottom:303.820295px;}
.yd3{bottom:306.070295px;}
.yb0{bottom:308.320295px;}
.y157{bottom:309.445295px;}
.y12b{bottom:310.570295px;}
.y6d{bottom:311.695295px;}
.y25b{bottom:313.945295px;}
.y238{bottom:315.070295px;}
.y1ad{bottom:318.445295px;}
.y1b{bottom:319.570295px;}
.y141{bottom:320.695295px;}
.y16b{bottom:322.945295px;}
.y8d{bottom:326.320294px;}
.y224{bottom:327.445294px;}
.yaf{bottom:328.570294px;}
.y12a{bottom:330.820294px;}
.y256{bottom:331.945294px;}
.y110{bottom:333.070294px;}
.yf2{bottom:334.195294px;}
.y237{bottom:335.320294px;}
.y8c{bottom:336.445294px;}
.y1ac{bottom:338.695294px;}
.y1a{bottom:339.820294px;}
.y1c4{bottom:340.945294px;}
.y156{bottom:342.070294px;}
.y6c{bottom:343.195294px;}
.yd2{bottom:348.820293px;}
.y24a{bottom:349.945293px;}
.y47{bottom:351.070293px;}
.y255{bottom:352.195293px;}
.y25a{bottom:354.445293px;}
.y16a{bottom:356.695293px;}
.y19{bottom:360.070293px;}
.y46{bottom:361.195293px;}
.yae{bottom:362.320293px;}
.y10f{bottom:363.445293px;}
.y223{bottom:365.695293px;}
.yf1{bottom:366.820293px;}
.yd1{bottom:369.070293px;}
.y1ab{bottom:370.195293px;}
.yad{bottom:372.445292px;}
.y236{bottom:373.570292px;}
.y6b{bottom:374.695292px;}
.y169{bottom:376.945292px;}
.y1f4{bottom:378.070292px;}
.y8b{bottom:379.195292px;}
.y18{bottom:380.320292px;}
.y1d2{bottom:382.570292px;}
.yf0{bottom:387.070292px;}
.y249{bottom:390.445292px;}
.y1c3{bottom:392.695292px;}
.y140{bottom:393.820292px;}
.y6a{bottom:394.945292px;}
.y1f3{bottom:398.320291px;}
.yd0{bottom:401.695291px;}
.y1de{bottom:403.945291px;}
.y45{bottom:405.070291px;}
.y198{bottom:408.445291px;}
.y8a{bottom:409.570291px;}
.y248{bottom:410.695291px;}
.y254{bottom:412.945291px;}
.y13f{bottom:414.070291px;}
.y44{bottom:415.195291px;}
.y1f2{bottom:418.570291px;}
.yef{bottom:419.695291px;}
.y216{bottom:421.945290px;}
.y155{bottom:424.195290px;}
.y1c2{bottom:425.320290px;}
.y69{bottom:427.570290px;}
.yee{bottom:429.820290px;}
.y247{bottom:430.945290px;}
.ycf{bottom:432.070290px;}
.y1aa{bottom:433.195290px;}
.y235{bottom:434.320290px;}
.y1d1{bottom:435.445290px;}
.y17{bottom:438.820290px;}
.y89{bottom:439.945290px;}
.y197{bottom:441.070290px;}
.y215{bottom:442.195290px;}
.y1c1{bottom:445.570289px;}
.yac{bottom:446.695289px;}
.y129{bottom:447.820289px;}
.y10e{bottom:448.945289px;}
.y1a9{bottom:453.445289px;}
.y234{bottom:454.570289px;}
.y154{bottom:455.695289px;}
.yab{bottom:456.820289px;}
.y13e{bottom:457.945289px;}
.y43{bottom:459.070289px;}
.y16{bottom:460.195289px;}
.y196{bottom:461.320289px;}
.yce{bottom:462.445289px;}
.y168{bottom:463.570289px;}
.y153{bottom:465.820289px;}
.y1dd{bottom:468.070288px;}
.y10d{bottom:469.195288px;}
.y88{bottom:471.445288px;}
.yed{bottom:472.570288px;}
.y207{bottom:473.695288px;}
.y17d{bottom:475.945288px;}
.y1f1{bottom:477.070288px;}
.y128{bottom:478.195288px;}
.y42{bottom:479.320288px;}
.y15{bottom:480.445288px;}
.y167{bottom:483.820288px;}
.y1a8{bottom:484.945288px;}
.y246{bottom:489.445288px;}
.y87{bottom:491.695288px;}
.ycd{bottom:492.820287px;}
.y1c0{bottom:498.445287px;}
.y14{bottom:500.695287px;}
.y13d{bottom:501.820287px;}
.yec{bottom:502.945287px;}
.y127{bottom:508.570287px;}
.y152{bottom:509.695287px;}
.y41{bottom:510.820287px;}
.y13c{bottom:511.945287px;}
.y233{bottom:513.070287px;}
.y1a7{bottom:515.320287px;}
.y166{bottom:517.570286px;}
.y214{bottom:518.695286px;}
.y13{bottom:520.945286px;}
.y1dc{bottom:522.070286px;}
.y10c{bottom:523.195286px;}
.y86{bottom:524.320286px;}
.y165{bottom:527.695286px;}
.y151{bottom:529.945286px;}
.y1bf{bottom:532.195286px;}
.y232{bottom:533.320286px;}
.ycc{bottom:534.445286px;}
.y1d0{bottom:538.945286px;}
.y126{bottom:540.070285px;}
.y40{bottom:541.195285px;}
.y68{bottom:542.320285px;}
.y195{bottom:544.570285px;}
.y1a6{bottom:547.945285px;}
.y253{bottom:550.195285px;}
.yaa{bottom:552.445285px;}
.y1f0{bottom:553.570285px;}
.yeb{bottom:554.695285px;}
.y85{bottom:555.820285px;}
.y125{bottom:560.320285px;}
.y150{bottom:562.570285px;}
.y17c{bottom:563.695285px;}
.y13b{bottom:564.820284px;}
.y12{bottom:566.314419px;}
.y1a5{bottom:568.195284px;}
.y1cf{bottom:569.320284px;}
.y164{bottom:570.445284px;}
.y3f{bottom:571.570284px;}
.y67{bottom:573.820284px;}
.y84{bottom:576.070284px;}
.ycb{bottom:577.195284px;}
.y194{bottom:578.320284px;}
.ya9{bottom:582.820284px;}
.y17b{bottom:583.945284px;}
.y10b{bottom:585.070284px;}
.yea{bottom:588.445283px;}
.y163{bottom:590.695283px;}
.y231{bottom:591.820283px;}
.y14f{bottom:592.945283px;}
.y11{bottom:593.314418px;}
.y66{bottom:594.070283px;}
.y222{bottom:597.445283px;}
.y1a4{bottom:600.820283px;}
.y3e{bottom:601.945283px;}
.y83{bottom:608.695283px;}
.y259{bottom:610.945283px;}
.y230{bottom:612.070282px;}
.ya8{bottom:613.195282px;}
.y124{bottom:614.320282px;}
.y17a{bottom:615.445282px;}
.y10a{bottom:616.570282px;}
.yca{bottom:618.820282px;}
.y10{bottom:620.314417px;}
.y1a3{bottom:621.070282px;}
.y14e{bottom:624.445282px;}
.y245{bottom:626.695282px;}
.y65{bottom:627.820282px;}
.y206{bottom:628.945282px;}
.y193{bottom:630.070282px;}
.y22f{bottom:632.320282px;}
.y3d{bottom:634.570282px;}
.y213{bottom:635.695282px;}
.y109{bottom:636.820281px;}
.y82{bottom:639.070281px;}
.ye9{bottom:640.195281px;}
.ya7{bottom:643.570281px;}
.y14d{bottom:644.695281px;}
.y123{bottom:645.820281px;}
.y1be{bottom:646.945281px;}
.yf{bottom:647.314416px;}
.y64{bottom:648.070281px;}
.y205{bottom:649.195281px;}
.y1a2{bottom:653.695281px;}
.y3c{bottom:654.820281px;}
.y13a{bottom:660.445280px;}
.yc9{bottom:661.570280px;}
.y1bd{bottom:667.195280px;}
.y81{bottom:669.445280px;}
.ye8{bottom:670.570280px;}
.y212{bottom:673.945280px;}
.ye{bottom:674.314415px;}
.y1ce{bottom:675.070280px;}
.ya6{bottom:676.195280px;}
.y25f{bottom:679.570280px;}
.y63{bottom:680.695280px;}
.y1a1{bottom:685.195279px;}
.y3b{bottom:686.320279px;}
.y244{bottom:687.445279px;}
.y204{bottom:689.695279px;}
.y22e{bottom:690.820279px;}
.yc8{bottom:691.945279px;}
.y139{bottom:693.070279px;}
.yd{bottom:694.195279px;}
.y1ef{bottom:695.320279px;}
.y1bc{bottom:698.695279px;}
.y80{bottom:699.820279px;}
.y62{bottom:700.945279px;}
.y1a0{bottom:705.445279px;}
.ya5{bottom:707.695279px;}
.y122{bottom:708.820278px;}
.y203{bottom:709.945278px;}
.y22d{bottom:712.195278px;}
.y138{bottom:713.320278px;}
.y211{bottom:714.445278px;}
.y1ee{bottom:715.570278px;}
.y3a{bottom:718.945278px;}
.yc{bottom:721.564413px;}
.yc7{bottom:722.320278px;}
.y243{bottom:725.695278px;}
.y252{bottom:727.945278px;}
.y121{bottom:729.070278px;}
.y7f{bottom:730.195278px;}
.y108{bottom:731.320278px;}
.y221{bottom:732.445277px;}
.y61{bottom:733.570277px;}
.y210{bottom:734.695277px;}
.y1ed{bottom:735.820277px;}
.ya4{bottom:738.070277px;}
.y39{bottom:739.195277px;}
.y107{bottom:741.445277px;}
.ye7{bottom:743.695277px;}
.y1db{bottom:744.820277px;}
.y137{bottom:745.945277px;}
.y251{bottom:748.195277px;}
.yb{bottom:748.564412px;}
.y14c{bottom:749.320277px;}
.y1bb{bottom:750.445277px;}
.yc6{bottom:752.695277px;}
.y192{bottom:753.820277px;}
.y1ec{bottom:756.070276px;}
.y19f{bottom:759.445276px;}
.y7e{bottom:760.570276px;}
.y191{bottom:763.945276px;}
.y60{bottom:765.070276px;}
.y136{bottom:766.195276px;}
.y162{bottom:768.445276px;}
.ya3{bottom:769.570276px;}
.y38{bottom:770.695276px;}
.y20f{bottom:772.945276px;}
.y5f{bottom:775.195276px;}
.ya{bottom:775.564411px;}
.y1eb{bottom:776.320276px;}
.y1da{bottom:777.445276px;}
.yc5{bottom:783.070275px;}
.y106{bottom:784.195275px;}
.ye6{bottom:786.445275px;}
.y1d9{bottom:787.570275px;}
.y202{bottom:788.695275px;}
.ya2{bottom:789.820275px;}
.y7d{bottom:790.945275px;}
.y14b{bottom:793.195275px;}
.y1ba{bottom:794.320275px;}
.y1ea{bottom:796.570275px;}
.y161{bottom:798.820275px;}
.y135{bottom:799.945275px;}
.y37{bottom:801.070275px;}
.y9{bottom:802.564410px;}
.y14a{bottom:803.320275px;}
.ye5{bottom:806.695274px;}
.y201{bottom:808.945274px;}
.yc4{bottom:813.445274px;}
.y105{bottom:815.695274px;}
.y1e9{bottom:816.820274px;}
.y5e{bottom:819.070274px;}
.y134{bottom:820.195274px;}
.y7c{bottom:821.320274px;}
.y120{bottom:823.570274px;}
.y242{bottom:824.695274px;}
.y250{bottom:826.945274px;}
.y179{bottom:829.195273px;}
.y160{bottom:830.320273px;}
.y36{bottom:831.445273px;}
.y104{bottom:835.945273px;}
.y1e8{bottom:837.070273px;}
.y190{bottom:838.195273px;}
.y5d{bottom:839.320273px;}
.y8{bottom:840.445273px;}
.yc3{bottom:843.820273px;}
.y149{bottom:844.945273px;}
.y200{bottom:847.195273px;}
.y220{bottom:849.445273px;}
.y15f{bottom:850.570273px;}
.ya1{bottom:851.695273px;}
.y7b{bottom:853.945272px;}
.y1e7{bottom:857.320272px;}
.y18f{bottom:858.445272px;}
.ye4{bottom:860.695272px;}
.y35{bottom:861.820272px;}
.y133{bottom:864.070272px;}
.y241{bottom:865.195272px;}
.y7{bottom:866.320272px;}
.y103{bottom:867.445272px;}
.y20e{bottom:869.695272px;}
.y1d8{bottom:870.820272px;}
.y5c{bottom:871.945272px;}
.y7a{bottom:874.195272px;}
.y11f{bottom:875.320272px;}
.yc2{bottom:876.445271px;}
.y178{bottom:880.945271px;}
.y5b{bottom:882.070271px;}
.ya0{bottom:884.320271px;}
.y1ff{bottom:885.445271px;}
.y21f{bottom:887.695271px;}
.y18e{bottom:889.945271px;}
.y1b9{bottom:891.070271px;}
.y34{bottom:892.195271px;}
.y9f{bottom:894.445271px;}
.y1e6{bottom:895.570271px;}
.yc1{bottom:896.695271px;}
.y102{bottom:898.945271px;}
.y1b8{bottom:901.195270px;}
.y15e{bottom:904.570270px;}
.y11e{bottom:905.695270px;}
.y79{bottom:906.820270px;}
.y20d{bottom:907.945270px;}
.y22c{bottom:910.195270px;}
.y6{bottom:911.320270px;}
.y177{bottom:914.695270px;}
.y78{bottom:916.945270px;}
.y18d{bottom:922.570270px;}
.y240{bottom:923.695270px;}
.y5a{bottom:924.820269px;}
.y1fe{bottom:925.945269px;}
.yc0{bottom:928.195269px;}
.y101{bottom:929.320269px;}
.y176{bottom:934.945269px;}
.y9e{bottom:936.070269px;}
.y5{bottom:938.320269px;}
.y33{bottom:939.445269px;}
.y23f{bottom:943.945269px;}
.ye3{bottom:945.070269px;}
.y1fd{bottom:946.195269px;}
.y15d{bottom:948.445268px;}
.y18c{bottom:954.070268px;}
.y59{bottom:955.195268px;}
.y32{bottom:959.695268px;}
.y23e{bottom:964.195268px;}
.y1e5{bottom:965.320268px;}
.y11d{bottom:966.445268px;}
.y9d{bottom:968.695268px;}
.ye2{bottom:976.570267px;}
.y175{bottom:978.820267px;}
.y31{bottom:979.945267px;}
.y18b{bottom:984.445267px;}
.y58{bottom:985.570267px;}
.y1fc{bottom:986.695267px;}
.y9c{bottom:988.945267px;}
.y77{bottom:990.070267px;}
.y100{bottom:991.195267px;}
.y1b7{bottom:996.820266px;}
.y11c{bottom:999.070266px;}
.y21e{bottom:1004.695266px;}
.ye1{bottom:1006.945266px;}
.yff{bottom:1011.445266px;}
.ybf{bottom:1013.695266px;}
.y18a{bottom:1014.820266px;}
.y57{bottom:1017.070266px;}
.y11b{bottom:1019.320266px;}
.y30{bottom:1020.445265px;}
.y9b{bottom:1021.570265px;}
.y23d{bottom:1022.695265px;}
.y1fb{bottom:1024.945265px;}
.y22b{bottom:1027.195265px;}
.y1b6{bottom:1029.445265px;}
.y9a{bottom:1031.695265px;}
.ybe{bottom:1033.945265px;}
.y56{bottom:1037.320265px;}
.y2f{bottom:1040.695265px;}
.y15c{bottom:1041.820265px;}
.y23c{bottom:1042.945265px;}
.y4{bottom:1044.070264px;}
.y1fa{bottom:1045.195264px;}
.y189{bottom:1046.320264px;}
.y1b5{bottom:1049.695264px;}
.y11a{bottom:1050.820264px;}
.y76{bottom:1051.945264px;}
.y2e{bottom:1060.945264px;}
.y1ca{bottom:1062.070264px;}
.y21d{bottom:1063.195264px;}
.ybd{bottom:1065.445264px;}
.y188{bottom:1066.570264px;}
.ye0{bottom:1068.820263px;}
.y55{bottom:1069.945263px;}
.y3{bottom:1071.070263px;}
.y75{bottom:1072.195263px;}
.y99{bottom:1074.445263px;}
.yfe{bottom:1075.570263px;}
.y2d{bottom:1081.195263px;}
.y119{bottom:1083.445263px;}
.y22a{bottom:1085.695263px;}
.yfd{bottom:1095.820262px;}
.ybc{bottom:1098.070262px;}
.y54{bottom:1100.320262px;}
.y2c{bottom:1101.445262px;}
.y118{bottom:1103.695262px;}
.y74{bottom:1104.820262px;}
.y15b{bottom:1105.945262px;}
.ybb{bottom:1108.195262px;}
.ydf{bottom:1120.570261px;}
.y2b{bottom:1121.695261px;}
.y1f9{bottom:1123.945261px;}
.y15a{bottom:1126.195261px;}
.yfc{bottom:1127.320261px;}
.y187{bottom:1130.695261px;}
.y53{bottom:1131.820261px;}
.y73{bottom:1136.320261px;}
.y2{bottom:1137.445261px;}
.y186{bottom:1140.820260px;}
.y2a{bottom:1141.945260px;}
.y117{bottom:1146.445260px;}
.yba{bottom:1149.820260px;}
.yde{bottom:1152.070260px;}
.y72{bottom:1156.570260px;}
.yfb{bottom:1157.695260px;}
.y29{bottom:1162.195260px;}
.hb{height:52.417967px;}
.h6{height:53.775613px;}
.h8{height:54.070310px;}
.h7{height:64.546872px;}
.h3{height:68.143353px;}
.h4{height:70.291400px;}
.h5{height:82.252151px;}
.ha{height:105.046871px;}
.h9{height:145.546869px;}
.h2{height:1177.945259px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:807.855446px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:26.999999px;}
.xa{left:31.499999px;}
.x5{left:37.195311px;}
.x1{left:42.749998px;}
.x7{left:64.318357px;}
.x8{left:146.935541px;}
.x3{left:150.451166px;}
.x4{left:166.429681px;}
.xe{left:185.695305px;}
.xf{left:283.482416px;}
.xd{left:294.310540px;}
.xc{left:305.560540px;}
.x6{left:307.564446px;}
.x2{left:367.365225px;}
.xb{left:538.910134px;}
@media print{
.v2{vertical-align:-25.312479pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.312479pt;}
.v3{vertical-align:35.999998pt;}
.v4{vertical-align:71.999997pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000010pt;}
.ls2{letter-spacing:0.033437pt;}
.ls0{letter-spacing:0.033457pt;}
.ls1{letter-spacing:0.033477pt;}
.ls6{letter-spacing:918.406231pt;}
.ls4{letter-spacing:946.031230pt;}
.ls5{letter-spacing:949.531230pt;}
.ws4a{word-spacing:-47.999998pt;}
.ws0{word-spacing:-17.781249pt;}
.ws1{word-spacing:-12.224609pt;}
.ws4b{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:6.218731pt;}
.wsc{word-spacing:42.593728pt;}
.ws10{word-spacing:52.437478pt;}
.ws6{word-spacing:61.281247pt;}
.ws19{word-spacing:64.874998pt;}
.ws42{word-spacing:87.281246pt;}
.ws1e{word-spacing:96.406246pt;}
.ws2e{word-spacing:97.093726pt;}
.ws2d{word-spacing:97.124996pt;}
.ws21{word-spacing:105.968726pt;}
.ws3f{word-spacing:244.093741pt;}
.ws14{word-spacing:761.843739pt;}
.ws41{word-spacing:770.781219pt;}
.ws18{word-spacing:771.656219pt;}
.ws3c{word-spacing:783.156238pt;}
.wse{word-spacing:789.468738pt;}
.ws5{word-spacing:792.968738pt;}
.wsa{word-spacing:797.718735pt;}
.ws1c{word-spacing:810.781237pt;}
.ws44{word-spacing:814.281237pt;}
.ws29{word-spacing:1316.656197pt;}
.ws3{word-spacing:1334.718694pt;}
.ws22{word-spacing:1336.906196pt;}
.ws46{word-spacing:1341.718696pt;}
.ws33{word-spacing:1348.718696pt;}
.ws3d{word-spacing:1362.937445pt;}
.ws38{word-spacing:1366.593694pt;}
.ws35{word-spacing:1366.624944pt;}
.ws12{word-spacing:1373.562445pt;}
.ws31{word-spacing:1373.687444pt;}
.ws27{word-spacing:1380.656194pt;}
.ws39{word-spacing:1380.749944pt;}
.ws28{word-spacing:1380.812444pt;}
.ws24{word-spacing:1384.312444pt;}
.wsb{word-spacing:1387.843694pt;}
.ws2f{word-spacing:1387.937444pt;}
.ws20{word-spacing:1405.624943pt;}
.ws49{word-spacing:1412.812443pt;}
.wsf{word-spacing:1423.437442pt;}
.ws3e{word-spacing:1427.093692pt;}
.ws48{word-spacing:1430.593692pt;}
.ws36{word-spacing:1434.062442pt;}
.ws1f{word-spacing:1437.656191pt;}
.ws40{word-spacing:1437.749942pt;}
.ws17{word-spacing:1440.031192pt;}
.ws1b{word-spacing:1444.749941pt;}
.ws11{word-spacing:1444.812441pt;}
.ws2b{word-spacing:1451.874941pt;}
.ws16{word-spacing:1451.937441pt;}
.ws34{word-spacing:1455.531190pt;}
.ws2c{word-spacing:1459.062440pt;}
.ws8{word-spacing:1470.874940pt;}
.wsd{word-spacing:1473.249940pt;}
.ws2a{word-spacing:1477.968690pt;}
.ws15{word-spacing:1492.218689pt;}
.ws9{word-spacing:1494.624938pt;}
.ws47{word-spacing:1498.124939pt;}
.ws30{word-spacing:1501.687439pt;}
.ws1d{word-spacing:1508.812438pt;}
.ws45{word-spacing:1511.249933pt;}
.ws26{word-spacing:1512.437438pt;}
.ws3b{word-spacing:1515.937438pt;}
.ws37{word-spacing:1515.999938pt;}
.ws3a{word-spacing:1520.687438pt;}
.ws1a{word-spacing:1523.062437pt;}
.ws43{word-spacing:1523.093687pt;}
.ws23{word-spacing:1530.156187pt;}
.ws4{word-spacing:1530.218687pt;}
.ws32{word-spacing:1540.906186pt;}
.ws13{word-spacing:1544.374937pt;}
.ws25{word-spacing:1587.062435pt;}
._16{margin-left:-8.249998pt;}
._5{margin-left:-6.735124pt;}
._6{margin-left:-5.843749pt;}
._3{margin-left:-4.749998pt;}
._1{margin-left:-3.214842pt;}
._0{margin-left:-1.514877pt;}
._2{width:0.923843pt;}
._9{width:31.562519pt;}
._1f{width:46.937521pt;}
._d{width:51.531247pt;}
._31{width:59.468769pt;}
._26{width:60.374977pt;}
._39{width:62.343768pt;}
._65{width:67.249997pt;}
._25{width:68.656247pt;}
._40{width:70.124997pt;}
._57{width:73.949986pt;}
._1d{width:76.812497pt;}
._29{width:77.937521pt;}
._1a{width:79.062497pt;}
._4{width:79.999999pt;}
._15{width:82.656247pt;}
._3c{width:84.714863pt;}
._13{width:87.312496pt;}
._19{width:88.750020pt;}
._14{width:90.093726pt;}
._a{width:90.999999pt;}
._51{width:92.218771pt;}
._12{width:93.437519pt;}
._c{width:95.406246pt;}
._22{width:96.343766pt;}
._69{width:99.406269pt;}
._1c{width:100.656266pt;}
._28{width:103.000019pt;}
._45{width:103.953893pt;}
._2d{width:105.062495pt;}
._b{width:105.968746pt;}
._21{width:109.593726pt;}
._4c{width:111.323488pt;}
._8{width:114.187495pt;}
._30{width:115.187499pt;}
._24{width:116.839860pt;}
._7{width:118.468725pt;}
._72{width:120.656269pt;}
._37{width:121.781267pt;}
._f{width:123.031245pt;}
._64{width:124.218769pt;}
._e{width:127.343725pt;}
._5f{width:135.031268pt;}
._2f{width:136.229737pt;}
._50{width:138.121110pt;}
._2a{width:141.746109pt;}
._4b{width:142.637482pt;}
._43{width:144.437517pt;}
._1e{width:145.500018pt;}
._46{width:146.496107pt;}
._52{width:147.948484pt;}
._61{width:149.187518pt;}
._73{width:152.625018pt;}
._38{width:153.593767pt;}
._62{width:157.027358pt;}
._4f{width:159.937517pt;}
._48{width:162.546143pt;}
._32{width:163.733640pt;}
._6e{width:165.729733pt;}
._34{width:170.152359pt;}
._2c{width:171.999992pt;}
._17{width:175.250014pt;}
._58{width:177.531266pt;}
._35{width:181.218766pt;}
._11{width:182.468764pt;}
._3a{width:184.718766pt;}
._44{width:188.406265pt;}
._27{width:191.812516pt;}
._75{width:195.058607pt;}
._53{width:196.246105pt;}
._56{width:197.218744pt;}
._68{width:201.624994pt;}
._77{width:202.531265pt;}
._60{width:207.406240pt;}
._2e{width:209.781264pt;}
._49{width:214.343763pt;}
._70{width:220.281264pt;}
._4a{width:221.214854pt;}
._5e{width:227.277355pt;}
._41{width:228.921141pt;}
._63{width:229.906263pt;}
._66{width:234.308605pt;}
._18{width:235.812490pt;}
._3d{width:237.906280pt;}
._4e{width:239.566395pt;}
._76{width:241.812512pt;}
._5b{width:248.496104pt;}
._5d{width:249.968762pt;}
._36{width:253.593761pt;}
._71{width:255.906263pt;}
._47{width:267.085944pt;}
._3f{width:298.531261pt;}
._55{width:330.593759pt;}
._6a{width:337.656257pt;}
._67{width:350.937487pt;}
._33{width:387.246098pt;}
._3e{width:428.202382pt;}
._79{width:444.375004pt;}
._74{width:466.312420pt;}
._20{width:469.218754pt;}
._54{width:479.906253pt;}
._59{width:487.093752pt;}
._4d{width:510.093731pt;}
._3b{width:524.406250pt;}
._42{width:544.000000pt;}
._5c{width:551.093749pt;}
._78{width:565.406248pt;}
._5a{width:611.499996pt;}
._6b{width:650.624995pt;}
._6d{width:736.937490pt;}
._6f{width:745.874970pt;}
._2b{width:764.562489pt;}
._10{width:767.187469pt;}
._6c{width:785.874988pt;}
._23{width:789.374988pt;}
._1b{width:1046.374960pt;}
.fs2{font-size:43.999998pt;}
.fs3{font-size:53.319997pt;}
.fs1{font-size:63.999997pt;}
.fs0{font-size:83.199993pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:5.062496pt;}
.y185{bottom:7.062496pt;}
.ydd{bottom:8.062496pt;}
.y52{bottom:10.062496pt;}
.yfa{bottom:12.062495pt;}
.y258{bottom:13.062495pt;}
.y174{bottom:16.062495pt;}
.y98{bottom:17.062495pt;}
.y20c{bottom:19.062495pt;}
.yb8{bottom:23.062495pt;}
.y184{bottom:25.062495pt;}
.ydc{bottom:26.062495pt;}
.y51{bottom:28.062495pt;}
.y1b4{bottom:30.062495pt;}
.y24f{bottom:31.062495pt;}
.y28{bottom:32.062495pt;}
.y71{bottom:34.062495pt;}
.y229{bottom:35.062495pt;}
.y20b{bottom:37.062494pt;}
.y1{bottom:37.497523pt;}
.y116{bottom:38.062494pt;}
.yf9{bottom:39.062494pt;}
.y159{bottom:41.062494pt;}
.y19e{bottom:44.062494pt;}
.y173{bottom:45.062494pt;}
.y97{bottom:46.062494pt;}
.y132{bottom:47.062494pt;}
.yb7{bottom:49.062494pt;}
.y27{bottom:50.062494pt;}
.ydb{bottom:51.062494pt;}
.y70{bottom:52.062494pt;}
.y50{bottom:53.062494pt;}
.y96{bottom:55.062494pt;}
.y1e4{bottom:57.062494pt;}
.y1b3{bottom:59.062494pt;}
.y148{bottom:60.062493pt;}
.y1f8{bottom:62.062493pt;}
.y172{bottom:63.062493pt;}
.y115{bottom:65.062493pt;}
.y24e{bottom:67.062493pt;}
.y26{bottom:68.062493pt;}
.y228{bottom:69.062493pt;}
.y183{bottom:70.062493pt;}
.y1d7{bottom:71.062493pt;}
.y19d{bottom:72.062493pt;}
.yb6{bottom:76.062493pt;}
.y1b2{bottom:77.062493pt;}
.y1c9{bottom:78.062493pt;}
.yda{bottom:79.062493pt;}
.y4f{bottom:80.062493pt;}
.y6f{bottom:81.062493pt;}
.y257{bottom:83.062493pt;}
.y1e3{bottom:85.062492pt;}
.y25{bottom:86.062492pt;}
.yd9{bottom:88.062492pt;}
.y20a{bottom:89.062492pt;}
.y19c{bottom:90.062492pt;}
.y171{bottom:91.062492pt;}
.y95{bottom:93.062492pt;}
.y131{bottom:95.062492pt;}
.y1c8{bottom:96.062492pt;}
.y158{bottom:97.062492pt;}
.y147{bottom:98.062492pt;}
.y1d6{bottom:99.062492pt;}
.y182{bottom:100.062492pt;}
.y24d{bottom:101.062492pt;}
.y1e2{bottom:103.062492pt;}
.y24{bottom:104.062492pt;}
.y1cd{bottom:105.062492pt;}
.y1b1{bottom:106.062492pt;}
.y209{bottom:107.062492pt;}
.y4e{bottom:109.062491pt;}
.y94{bottom:111.062491pt;}
.yf8{bottom:114.062491pt;}
.y181{bottom:118.062491pt;}
.y24c{bottom:119.062491pt;}
.y170{bottom:120.062491pt;}
.y227{bottom:121.062491pt;}
.y23{bottom:122.062491pt;}
.y1b0{bottom:124.062491pt;}
.y1c7{bottom:125.062491pt;}
.yd8{bottom:126.062491pt;}
.y4d{bottom:127.062491pt;}
.y21c{bottom:129.062491pt;}
.y1f7{bottom:130.062491pt;}
.y1e1{bottom:133.062490pt;}
.y130{bottom:134.062490pt;}
.y146{bottom:135.062490pt;}
.y24b{bottom:137.062490pt;}
.y16f{bottom:138.062490pt;}
.y22{bottom:140.062490pt;}
.y93{bottom:141.062490pt;}
.y180{bottom:146.062490pt;}
.y21b{bottom:147.062490pt;}
.yb5{bottom:151.062490pt;}
.y12f{bottom:152.062490pt;}
.yd7{bottom:153.062490pt;}
.y1d5{bottom:154.062490pt;}
.y4c{bottom:155.062490pt;}
.y25e{bottom:156.062489pt;}
.y21{bottom:158.062489pt;}
.y92{bottom:159.062489pt;}
.y1f6{bottom:164.062489pt;}
.y21a{bottom:165.062489pt;}
.y16e{bottom:166.062489pt;}
.y114{bottom:167.062489pt;}
.yf7{bottom:168.062489pt;}
.y1c6{bottom:171.062489pt;}
.y145{bottom:172.062489pt;}
.y17f{bottom:173.062489pt;}
.y23b{bottom:174.062489pt;}
.y20{bottom:176.062489pt;}
.y208{bottom:177.062489pt;}
.yb4{bottom:179.062489pt;}
.yd6{bottom:180.062488pt;}
.y12e{bottom:181.062488pt;}
.y4b{bottom:182.062488pt;}
.y219{bottom:183.062488pt;}
.y91{bottom:187.062488pt;}
.yb3{bottom:188.062488pt;}
.y226{bottom:189.062488pt;}
.y23a{bottom:192.062488pt;}
.y19b{bottom:193.062488pt;}
.y1f{bottom:194.062488pt;}
.yf6{bottom:195.062488pt;}
.y1e0{bottom:198.062488pt;}
.y12d{bottom:199.062488pt;}
.y17e{bottom:200.062488pt;}
.y144{bottom:201.062488pt;}
.y1d4{bottom:202.062488pt;}
.y16d{bottom:203.062488pt;}
.yd5{bottom:207.062487pt;}
.y25d{bottom:208.062487pt;}
.y143{bottom:210.062487pt;}
.y4a{bottom:211.062487pt;}
.y113{bottom:213.062487pt;}
.y90{bottom:216.062487pt;}
.y1d3{bottom:220.062487pt;}
.y19a{bottom:222.062487pt;}
.y225{bottom:223.062487pt;}
.yf5{bottom:224.062487pt;}
.y25c{bottom:226.062487pt;}
.yb2{bottom:227.062487pt;}
.y1af{bottom:228.062486pt;}
.y49{bottom:229.062486pt;}
.y1e{bottom:230.062486pt;}
.yf4{bottom:233.062486pt;}
.y8f{bottom:234.062486pt;}
.y218{bottom:235.062486pt;}
.yb1{bottom:236.062486pt;}
.y1df{bottom:237.062486pt;}
.y12c{bottom:238.062486pt;}
.y199{bottom:240.062486pt;}
.y16c{bottom:241.062486pt;}
.y112{bottom:242.062486pt;}
.y239{bottom:244.062486pt;}
.y1c5{bottom:246.062486pt;}
.y142{bottom:247.062486pt;}
.y1d{bottom:248.062486pt;}
.y1f5{bottom:250.062486pt;}
.y217{bottom:253.062485pt;}
.y1ae{bottom:255.062485pt;}
.y1cc{bottom:256.062485pt;}
.y48{bottom:257.062485pt;}
.y6e{bottom:259.062485pt;}
.y8e{bottom:262.062485pt;}
.yd4{bottom:263.062485pt;}
.y1cb{bottom:265.062485pt;}
.y1c{bottom:266.062485pt;}
.y111{bottom:269.062485pt;}
.yf3{bottom:270.062485pt;}
.yd3{bottom:272.062485pt;}
.yb0{bottom:274.062485pt;}
.y157{bottom:275.062485pt;}
.y12b{bottom:276.062484pt;}
.y6d{bottom:277.062484pt;}
.y25b{bottom:279.062484pt;}
.y238{bottom:280.062484pt;}
.y1ad{bottom:283.062484pt;}
.y1b{bottom:284.062484pt;}
.y141{bottom:285.062484pt;}
.y16b{bottom:287.062484pt;}
.y8d{bottom:290.062484pt;}
.y224{bottom:291.062484pt;}
.yaf{bottom:292.062484pt;}
.y12a{bottom:294.062484pt;}
.y256{bottom:295.062484pt;}
.y110{bottom:296.062484pt;}
.yf2{bottom:297.062484pt;}
.y237{bottom:298.062484pt;}
.y8c{bottom:299.062484pt;}
.y1ac{bottom:301.062483pt;}
.y1a{bottom:302.062483pt;}
.y1c4{bottom:303.062483pt;}
.y156{bottom:304.062483pt;}
.y6c{bottom:305.062483pt;}
.yd2{bottom:310.062483pt;}
.y24a{bottom:311.062483pt;}
.y47{bottom:312.062483pt;}
.y255{bottom:313.062483pt;}
.y25a{bottom:315.062483pt;}
.y16a{bottom:317.062483pt;}
.y19{bottom:320.062483pt;}
.y46{bottom:321.062483pt;}
.yae{bottom:322.062483pt;}
.y10f{bottom:323.062483pt;}
.y223{bottom:325.062482pt;}
.yf1{bottom:326.062482pt;}
.yd1{bottom:328.062482pt;}
.y1ab{bottom:329.062482pt;}
.yad{bottom:331.062482pt;}
.y236{bottom:332.062482pt;}
.y6b{bottom:333.062482pt;}
.y169{bottom:335.062482pt;}
.y1f4{bottom:336.062482pt;}
.y8b{bottom:337.062482pt;}
.y18{bottom:338.062482pt;}
.y1d2{bottom:340.062482pt;}
.yf0{bottom:344.062482pt;}
.y249{bottom:347.062482pt;}
.y1c3{bottom:349.062481pt;}
.y140{bottom:350.062481pt;}
.y6a{bottom:351.062481pt;}
.y1f3{bottom:354.062481pt;}
.yd0{bottom:357.062481pt;}
.y1de{bottom:359.062481pt;}
.y45{bottom:360.062481pt;}
.y198{bottom:363.062481pt;}
.y8a{bottom:364.062481pt;}
.y248{bottom:365.062481pt;}
.y254{bottom:367.062481pt;}
.y13f{bottom:368.062481pt;}
.y44{bottom:369.062481pt;}
.y1f2{bottom:372.062480pt;}
.yef{bottom:373.062480pt;}
.y216{bottom:375.062480pt;}
.y155{bottom:377.062480pt;}
.y1c2{bottom:378.062480pt;}
.y69{bottom:380.062480pt;}
.yee{bottom:382.062480pt;}
.y247{bottom:383.062480pt;}
.ycf{bottom:384.062480pt;}
.y1aa{bottom:385.062480pt;}
.y235{bottom:386.062480pt;}
.y1d1{bottom:387.062480pt;}
.y17{bottom:390.062480pt;}
.y89{bottom:391.062480pt;}
.y197{bottom:392.062480pt;}
.y215{bottom:393.062480pt;}
.y1c1{bottom:396.062479pt;}
.yac{bottom:397.062479pt;}
.y129{bottom:398.062479pt;}
.y10e{bottom:399.062479pt;}
.y1a9{bottom:403.062479pt;}
.y234{bottom:404.062479pt;}
.y154{bottom:405.062479pt;}
.yab{bottom:406.062479pt;}
.y13e{bottom:407.062479pt;}
.y43{bottom:408.062479pt;}
.y16{bottom:409.062479pt;}
.y196{bottom:410.062479pt;}
.yce{bottom:411.062479pt;}
.y168{bottom:412.062479pt;}
.y153{bottom:414.062479pt;}
.y1dd{bottom:416.062479pt;}
.y10d{bottom:417.062479pt;}
.y88{bottom:419.062479pt;}
.yed{bottom:420.062478pt;}
.y207{bottom:421.062478pt;}
.y17d{bottom:423.062478pt;}
.y1f1{bottom:424.062478pt;}
.y128{bottom:425.062478pt;}
.y42{bottom:426.062478pt;}
.y15{bottom:427.062478pt;}
.y167{bottom:430.062478pt;}
.y1a8{bottom:431.062478pt;}
.y246{bottom:435.062478pt;}
.y87{bottom:437.062478pt;}
.ycd{bottom:438.062478pt;}
.y1c0{bottom:443.062478pt;}
.y14{bottom:445.062477pt;}
.y13d{bottom:446.062477pt;}
.yec{bottom:447.062477pt;}
.y127{bottom:452.062477pt;}
.y152{bottom:453.062477pt;}
.y41{bottom:454.062477pt;}
.y13c{bottom:455.062477pt;}
.y233{bottom:456.062477pt;}
.y1a7{bottom:458.062477pt;}
.y166{bottom:460.062477pt;}
.y214{bottom:461.062477pt;}
.y13{bottom:463.062477pt;}
.y1dc{bottom:464.062477pt;}
.y10c{bottom:465.062477pt;}
.y86{bottom:466.062477pt;}
.y165{bottom:469.062476pt;}
.y151{bottom:471.062476pt;}
.y1bf{bottom:473.062476pt;}
.y232{bottom:474.062476pt;}
.ycc{bottom:475.062476pt;}
.y1d0{bottom:479.062476pt;}
.y126{bottom:480.062476pt;}
.y40{bottom:481.062476pt;}
.y68{bottom:482.062476pt;}
.y195{bottom:484.062476pt;}
.y1a6{bottom:487.062476pt;}
.y253{bottom:489.062476pt;}
.yaa{bottom:491.062476pt;}
.y1f0{bottom:492.062475pt;}
.yeb{bottom:493.062475pt;}
.y85{bottom:494.062475pt;}
.y125{bottom:498.062475pt;}
.y150{bottom:500.062475pt;}
.y17c{bottom:501.062475pt;}
.y13b{bottom:502.062475pt;}
.y12{bottom:503.390595pt;}
.y1a5{bottom:505.062475pt;}
.y1cf{bottom:506.062475pt;}
.y164{bottom:507.062475pt;}
.y3f{bottom:508.062475pt;}
.y67{bottom:510.062475pt;}
.y84{bottom:512.062475pt;}
.ycb{bottom:513.062475pt;}
.y194{bottom:514.062475pt;}
.ya9{bottom:518.062474pt;}
.y17b{bottom:519.062474pt;}
.y10b{bottom:520.062474pt;}
.yea{bottom:523.062474pt;}
.y163{bottom:525.062474pt;}
.y231{bottom:526.062474pt;}
.y14f{bottom:527.062474pt;}
.y11{bottom:527.390594pt;}
.y66{bottom:528.062474pt;}
.y222{bottom:531.062474pt;}
.y1a4{bottom:534.062474pt;}
.y3e{bottom:535.062474pt;}
.y83{bottom:541.062473pt;}
.y259{bottom:543.062473pt;}
.y230{bottom:544.062473pt;}
.ya8{bottom:545.062473pt;}
.y124{bottom:546.062473pt;}
.y17a{bottom:547.062473pt;}
.y10a{bottom:548.062473pt;}
.yca{bottom:550.062473pt;}
.y10{bottom:551.390593pt;}
.y1a3{bottom:552.062473pt;}
.y14e{bottom:555.062473pt;}
.y245{bottom:557.062473pt;}
.y65{bottom:558.062473pt;}
.y206{bottom:559.062473pt;}
.y193{bottom:560.062473pt;}
.y22f{bottom:562.062473pt;}
.y3d{bottom:564.062472pt;}
.y213{bottom:565.062472pt;}
.y109{bottom:566.062472pt;}
.y82{bottom:568.062472pt;}
.ye9{bottom:569.062472pt;}
.ya7{bottom:572.062472pt;}
.y14d{bottom:573.062472pt;}
.y123{bottom:574.062472pt;}
.y1be{bottom:575.062472pt;}
.yf{bottom:575.390592pt;}
.y64{bottom:576.062472pt;}
.y205{bottom:577.062472pt;}
.y1a2{bottom:581.062472pt;}
.y3c{bottom:582.062472pt;}
.y13a{bottom:587.062472pt;}
.yc9{bottom:588.062471pt;}
.y1bd{bottom:593.062471pt;}
.y81{bottom:595.062471pt;}
.ye8{bottom:596.062471pt;}
.y212{bottom:599.062471pt;}
.ye{bottom:599.390591pt;}
.y1ce{bottom:600.062471pt;}
.ya6{bottom:601.062471pt;}
.y25f{bottom:604.062471pt;}
.y63{bottom:605.062471pt;}
.y1a1{bottom:609.062471pt;}
.y3b{bottom:610.062471pt;}
.y244{bottom:611.062471pt;}
.y204{bottom:613.062470pt;}
.y22e{bottom:614.062470pt;}
.yc8{bottom:615.062470pt;}
.y139{bottom:616.062470pt;}
.yd{bottom:617.062470pt;}
.y1ef{bottom:618.062470pt;}
.y1bc{bottom:621.062470pt;}
.y80{bottom:622.062470pt;}
.y62{bottom:623.062470pt;}
.y1a0{bottom:627.062470pt;}
.ya5{bottom:629.062470pt;}
.y122{bottom:630.062470pt;}
.y203{bottom:631.062470pt;}
.y22d{bottom:633.062470pt;}
.y138{bottom:634.062470pt;}
.y211{bottom:635.062470pt;}
.y1ee{bottom:636.062469pt;}
.y3a{bottom:639.062469pt;}
.yc{bottom:641.390589pt;}
.yc7{bottom:642.062469pt;}
.y243{bottom:645.062469pt;}
.y252{bottom:647.062469pt;}
.y121{bottom:648.062469pt;}
.y7f{bottom:649.062469pt;}
.y108{bottom:650.062469pt;}
.y221{bottom:651.062469pt;}
.y61{bottom:652.062469pt;}
.y210{bottom:653.062469pt;}
.y1ed{bottom:654.062469pt;}
.ya4{bottom:656.062469pt;}
.y39{bottom:657.062469pt;}
.y107{bottom:659.062469pt;}
.ye7{bottom:661.062468pt;}
.y1db{bottom:662.062468pt;}
.y137{bottom:663.062468pt;}
.y251{bottom:665.062468pt;}
.yb{bottom:665.390588pt;}
.y14c{bottom:666.062468pt;}
.y1bb{bottom:667.062468pt;}
.yc6{bottom:669.062468pt;}
.y192{bottom:670.062468pt;}
.y1ec{bottom:672.062468pt;}
.y19f{bottom:675.062468pt;}
.y7e{bottom:676.062468pt;}
.y191{bottom:679.062468pt;}
.y60{bottom:680.062468pt;}
.y136{bottom:681.062468pt;}
.y162{bottom:683.062468pt;}
.ya3{bottom:684.062467pt;}
.y38{bottom:685.062467pt;}
.y20f{bottom:687.062467pt;}
.y5f{bottom:689.062467pt;}
.ya{bottom:689.390587pt;}
.y1eb{bottom:690.062467pt;}
.y1da{bottom:691.062467pt;}
.yc5{bottom:696.062467pt;}
.y106{bottom:697.062467pt;}
.ye6{bottom:699.062467pt;}
.y1d9{bottom:700.062467pt;}
.y202{bottom:701.062467pt;}
.ya2{bottom:702.062467pt;}
.y7d{bottom:703.062467pt;}
.y14b{bottom:705.062467pt;}
.y1ba{bottom:706.062467pt;}
.y1ea{bottom:708.062466pt;}
.y161{bottom:710.062466pt;}
.y135{bottom:711.062466pt;}
.y37{bottom:712.062466pt;}
.y9{bottom:713.390586pt;}
.y14a{bottom:714.062466pt;}
.ye5{bottom:717.062466pt;}
.y201{bottom:719.062466pt;}
.yc4{bottom:723.062466pt;}
.y105{bottom:725.062466pt;}
.y1e9{bottom:726.062466pt;}
.y5e{bottom:728.062466pt;}
.y134{bottom:729.062466pt;}
.y7c{bottom:730.062466pt;}
.y120{bottom:732.062465pt;}
.y242{bottom:733.062465pt;}
.y250{bottom:735.062465pt;}
.y179{bottom:737.062465pt;}
.y160{bottom:738.062465pt;}
.y36{bottom:739.062465pt;}
.y104{bottom:743.062465pt;}
.y1e8{bottom:744.062465pt;}
.y190{bottom:745.062465pt;}
.y5d{bottom:746.062465pt;}
.y8{bottom:747.062465pt;}
.yc3{bottom:750.062465pt;}
.y149{bottom:751.062465pt;}
.y200{bottom:753.062465pt;}
.y220{bottom:755.062465pt;}
.y15f{bottom:756.062464pt;}
.ya1{bottom:757.062464pt;}
.y7b{bottom:759.062464pt;}
.y1e7{bottom:762.062464pt;}
.y18f{bottom:763.062464pt;}
.ye4{bottom:765.062464pt;}
.y35{bottom:766.062464pt;}
.y133{bottom:768.062464pt;}
.y241{bottom:769.062464pt;}
.y7{bottom:770.062464pt;}
.y103{bottom:771.062464pt;}
.y20e{bottom:773.062464pt;}
.y1d8{bottom:774.062464pt;}
.y5c{bottom:775.062464pt;}
.y7a{bottom:777.062464pt;}
.y11f{bottom:778.062464pt;}
.yc2{bottom:779.062464pt;}
.y178{bottom:783.062463pt;}
.y5b{bottom:784.062463pt;}
.ya0{bottom:786.062463pt;}
.y1ff{bottom:787.062463pt;}
.y21f{bottom:789.062463pt;}
.y18e{bottom:791.062463pt;}
.y1b9{bottom:792.062463pt;}
.y34{bottom:793.062463pt;}
.y9f{bottom:795.062463pt;}
.y1e6{bottom:796.062463pt;}
.yc1{bottom:797.062463pt;}
.y102{bottom:799.062463pt;}
.y1b8{bottom:801.062463pt;}
.y15e{bottom:804.062462pt;}
.y11e{bottom:805.062462pt;}
.y79{bottom:806.062462pt;}
.y20d{bottom:807.062462pt;}
.y22c{bottom:809.062462pt;}
.y6{bottom:810.062462pt;}
.y177{bottom:813.062462pt;}
.y78{bottom:815.062462pt;}
.y18d{bottom:820.062462pt;}
.y240{bottom:821.062462pt;}
.y5a{bottom:822.062462pt;}
.y1fe{bottom:823.062462pt;}
.yc0{bottom:825.062462pt;}
.y101{bottom:826.062462pt;}
.y176{bottom:831.062461pt;}
.y9e{bottom:832.062461pt;}
.y5{bottom:834.062461pt;}
.y33{bottom:835.062461pt;}
.y23f{bottom:839.062461pt;}
.ye3{bottom:840.062461pt;}
.y1fd{bottom:841.062461pt;}
.y15d{bottom:843.062461pt;}
.y18c{bottom:848.062461pt;}
.y59{bottom:849.062461pt;}
.y32{bottom:853.062460pt;}
.y23e{bottom:857.062460pt;}
.y1e5{bottom:858.062460pt;}
.y11d{bottom:859.062460pt;}
.y9d{bottom:861.062460pt;}
.ye2{bottom:868.062460pt;}
.y175{bottom:870.062460pt;}
.y31{bottom:871.062460pt;}
.y18b{bottom:875.062460pt;}
.y58{bottom:876.062459pt;}
.y1fc{bottom:877.062459pt;}
.y9c{bottom:879.062459pt;}
.y77{bottom:880.062459pt;}
.y100{bottom:881.062459pt;}
.y1b7{bottom:886.062459pt;}
.y11c{bottom:888.062459pt;}
.y21e{bottom:893.062459pt;}
.ye1{bottom:895.062459pt;}
.yff{bottom:899.062459pt;}
.ybf{bottom:901.062458pt;}
.y18a{bottom:902.062458pt;}
.y57{bottom:904.062458pt;}
.y11b{bottom:906.062458pt;}
.y30{bottom:907.062458pt;}
.y9b{bottom:908.062458pt;}
.y23d{bottom:909.062458pt;}
.y1fb{bottom:911.062458pt;}
.y22b{bottom:913.062458pt;}
.y1b6{bottom:915.062458pt;}
.y9a{bottom:917.062458pt;}
.ybe{bottom:919.062458pt;}
.y56{bottom:922.062458pt;}
.y2f{bottom:925.062457pt;}
.y15c{bottom:926.062457pt;}
.y23c{bottom:927.062457pt;}
.y4{bottom:928.062457pt;}
.y1fa{bottom:929.062457pt;}
.y189{bottom:930.062457pt;}
.y1b5{bottom:933.062457pt;}
.y11a{bottom:934.062457pt;}
.y76{bottom:935.062457pt;}
.y2e{bottom:943.062457pt;}
.y1ca{bottom:944.062457pt;}
.y21d{bottom:945.062457pt;}
.ybd{bottom:947.062457pt;}
.y188{bottom:948.062456pt;}
.ye0{bottom:950.062456pt;}
.y55{bottom:951.062456pt;}
.y3{bottom:952.062456pt;}
.y75{bottom:953.062456pt;}
.y99{bottom:955.062456pt;}
.yfe{bottom:956.062456pt;}
.y2d{bottom:961.062456pt;}
.y119{bottom:963.062456pt;}
.y22a{bottom:965.062456pt;}
.yfd{bottom:974.062455pt;}
.ybc{bottom:976.062455pt;}
.y54{bottom:978.062455pt;}
.y2c{bottom:979.062455pt;}
.y118{bottom:981.062455pt;}
.y74{bottom:982.062455pt;}
.y15b{bottom:983.062455pt;}
.ybb{bottom:985.062455pt;}
.ydf{bottom:996.062454pt;}
.y2b{bottom:997.062454pt;}
.y1f9{bottom:999.062454pt;}
.y15a{bottom:1001.062454pt;}
.yfc{bottom:1002.062454pt;}
.y187{bottom:1005.062454pt;}
.y53{bottom:1006.062454pt;}
.y73{bottom:1010.062454pt;}
.y2{bottom:1011.062454pt;}
.y186{bottom:1014.062454pt;}
.y2a{bottom:1015.062454pt;}
.y117{bottom:1019.062454pt;}
.yba{bottom:1022.062453pt;}
.yde{bottom:1024.062453pt;}
.y72{bottom:1028.062453pt;}
.yfb{bottom:1029.062453pt;}
.y29{bottom:1033.062453pt;}
.hb{height:46.593748pt;}
.h6{height:47.800545pt;}
.h8{height:48.062498pt;}
.h7{height:57.374998pt;}
.h3{height:60.571870pt;}
.h4{height:62.481244pt;}
.h5{height:73.113023pt;}
.ha{height:93.374996pt;}
.h9{height:129.374995pt;}
.h2{height:1047.062452pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:718.093730pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:23.999999pt;}
.xa{left:27.999999pt;}
.x5{left:33.062499pt;}
.x1{left:37.999998pt;}
.x7{left:57.171873pt;}
.x8{left:130.609370pt;}
.x3{left:133.734369pt;}
.x4{left:147.937494pt;}
.xe{left:165.062493pt;}
.xf{left:251.984370pt;}
.xd{left:261.609369pt;}
.xc{left:271.609369pt;}
.x6{left:273.390619pt;}
.x2{left:326.546866pt;}
.xb{left:479.031230pt;}
}




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