
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.m1{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);}
.v1{vertical-align:-7.875000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1{word-spacing:0.000000px;}
.ws9e{word-spacing:54.716498px;}
.ws8c{word-spacing:55.498881px;}
.ws91{word-spacing:57.159479px;}
.ws62{word-spacing:57.304383px;}
.ws2{word-spacing:58.925812px;}
.ws7e{word-spacing:59.384778px;}
.ws5a{word-spacing:60.336823px;}
.ws7c{word-spacing:60.510519px;}
.wsce{word-spacing:61.613606px;}
.wsc7{word-spacing:62.790688px;}
.ws88{word-spacing:64.133812px;}
.ws17{word-spacing:64.159841px;}
.ws18{word-spacing:64.999850px;}
.ws43{word-spacing:65.980265px;}
.ws6d{word-spacing:66.969833px;}
.ws46{word-spacing:67.961624px;}
.ws37{word-spacing:68.230672px;}
.ws95{word-spacing:69.045398px;}
.ws24{word-spacing:69.953694px;}
.ws49{word-spacing:72.253494px;}
.wsc1{word-spacing:72.323263px;}
.wsc{word-spacing:74.476403px;}
.ws13{word-spacing:76.100494px;}
.ws3b{word-spacing:76.420501px;}
.wsbb{word-spacing:76.458632px;}
.ws5e{word-spacing:76.933380px;}
.ws92{word-spacing:79.364485px;}
.ws3e{word-spacing:80.056715px;}
.ws19{word-spacing:81.018777px;}
.wsb2{word-spacing:83.238727px;}
.wsac{word-spacing:86.216179px;}
.ws78{word-spacing:86.827437px;}
.ws63{word-spacing:89.593749px;}
.wsa{word-spacing:92.355809px;}
.ws93{word-spacing:93.166075px;}
.wsab{word-spacing:93.491593px;}
.ws4a{word-spacing:103.171347px;}
.ws70{word-spacing:104.379394px;}
.wsa4{word-spacing:109.074598px;}
.wsbc{word-spacing:110.441057px;}
.ws36{word-spacing:119.116478px;}
.ws8b{word-spacing:119.695399px;}
.wsbf{word-spacing:123.400131px;}
.ws27{word-spacing:124.213647px;}
.ws5d{word-spacing:128.226448px;}
.ws12{word-spacing:130.463908px;}
.wsa2{word-spacing:130.531760px;}
.ws68{word-spacing:131.225077px;}
.wsb6{word-spacing:133.651108px;}
.ws6{word-spacing:136.451387px;}
.ws29{word-spacing:137.502083px;}
.wsb3{word-spacing:138.893751px;}
.ws6e{word-spacing:140.710259px;}
.ws8d{word-spacing:140.835008px;}
.ws15{word-spacing:140.941504px;}
.ws72{word-spacing:141.433850px;}
.ws1f{word-spacing:141.796440px;}
.wsc2{word-spacing:145.418566px;}
.ws5{word-spacing:146.191961px;}
.ws2a{word-spacing:147.258101px;}
.wsaa{word-spacing:147.426850px;}
.ws9c{word-spacing:148.000341px;}
.ws3c{word-spacing:149.193892px;}
.ws71{word-spacing:149.289207px;}
.ws5c{word-spacing:152.334586px;}
.ws2e{word-spacing:152.963893px;}
.ws75{word-spacing:153.099899px;}
.wsa0{word-spacing:153.667141px;}
.ws85{word-spacing:153.799772px;}
.ws5b{word-spacing:155.006321px;}
.ws86{word-spacing:156.028338px;}
.ws33{word-spacing:158.390480px;}
.wsb{word-spacing:158.448034px;}
.wsa8{word-spacing:159.544161px;}
.ws6c{word-spacing:159.981050px;}
.ws23{word-spacing:160.563586px;}
.ws54{word-spacing:161.224347px;}
.ws11{word-spacing:163.344161px;}
.ws59{word-spacing:163.581785px;}
.ws60{word-spacing:163.742823px;}
.ws39{word-spacing:165.234368px;}
.ws9d{word-spacing:165.346162px;}
.ws38{word-spacing:167.854918px;}
.ws7{word-spacing:168.340176px;}
.ws8{word-spacing:168.884409px;}
.wscb{word-spacing:169.373557px;}
.ws50{word-spacing:169.806425px;}
.ws3{word-spacing:170.592750px;}
.wsc3{word-spacing:172.659289px;}
.wsa6{word-spacing:174.908705px;}
.ws48{word-spacing:175.140347px;}
.ws0{word-spacing:175.770942px;}
.ws47{word-spacing:177.564659px;}
.ws98{word-spacing:177.771003px;}
.ws3a{word-spacing:181.784988px;}
.ws2c{word-spacing:182.130879px;}
.wsb5{word-spacing:182.192227px;}
.wsa7{word-spacing:182.316426px;}
.ws84{word-spacing:183.024723px;}
.ws14{word-spacing:183.146351px;}
.ws35{word-spacing:183.318176px;}
.ws2f{word-spacing:184.260909px;}
.ws21{word-spacing:184.673522px;}
.ws22{word-spacing:185.312762px;}
.ws6b{word-spacing:186.094730px;}
.ws83{word-spacing:186.557082px;}
.wsb4{word-spacing:188.027702px;}
.ws90{word-spacing:188.449757px;}
.ws41{word-spacing:189.705355px;}
.ws3f{word-spacing:190.781316px;}
.ws40{word-spacing:191.760132px;}
.wsc0{word-spacing:192.378371px;}
.ws2b{word-spacing:193.315723px;}
.ws34{word-spacing:194.451402px;}
.ws7a{word-spacing:195.441825px;}
.ws3d{word-spacing:195.594642px;}
.wsba{word-spacing:195.793312px;}
.wsca{word-spacing:197.271611px;}
.ws87{word-spacing:197.320811px;}
.ws8e{word-spacing:197.457324px;}
.wscc{word-spacing:198.743927px;}
.wsc4{word-spacing:198.984492px;}
.ws51{word-spacing:199.590521px;}
.wsad{word-spacing:200.341788px;}
.wsb0{word-spacing:201.720714px;}
.ws30{word-spacing:203.086883px;}
.wsa5{word-spacing:203.211788px;}
.ws10{word-spacing:203.345034px;}
.ws97{word-spacing:203.516418px;}
.ws9f{word-spacing:203.572634px;}
.ws77{word-spacing:203.821733px;}
.ws20{word-spacing:204.859602px;}
.ws8a{word-spacing:205.637049px;}
.ws4{word-spacing:205.980165px;}
.ws25{word-spacing:206.521183px;}
.ws4f{word-spacing:208.331940px;}
.ws81{word-spacing:209.356596px;}
.ws94{word-spacing:210.234102px;}
.ws53{word-spacing:210.547904px;}
.ws99{word-spacing:210.818206px;}
.ws80{word-spacing:212.387495px;}
.ws5f{word-spacing:212.488994px;}
.wsc6{word-spacing:212.495191px;}
.wsbd{word-spacing:213.203124px;}
.wsc8{word-spacing:213.564258px;}
.wsa1{word-spacing:214.155533px;}
.wsd{word-spacing:214.328409px;}
.ws6a{word-spacing:214.334405px;}
.ws9a{word-spacing:214.451255px;}
.ws7d{word-spacing:214.809306px;}
.ws1b{word-spacing:215.018615px;}
.ws96{word-spacing:215.411835px;}
.ws52{word-spacing:215.969204px;}
.ws6f{word-spacing:216.550026px;}
.ws66{word-spacing:216.570613px;}
.ws26{word-spacing:216.680785px;}
.ws7f{word-spacing:216.709320px;}
.ws65{word-spacing:218.081673px;}
.wsc5{word-spacing:219.630515px;}
.ws89{word-spacing:220.920941px;}
.ws2d{word-spacing:221.442889px;}
.ws61{word-spacing:222.502287px;}
.ws1d{word-spacing:222.958219px;}
.ws9b{word-spacing:223.397323px;}
.ws1e{word-spacing:223.972241px;}
.ws55{word-spacing:225.264840px;}
.ws73{word-spacing:226.942414px;}
.ws44{word-spacing:228.012413px;}
.wse{word-spacing:228.950100px;}
.ws1c{word-spacing:229.303243px;}
.wsb7{word-spacing:229.474521px;}
.ws57{word-spacing:230.964472px;}
.wsbe{word-spacing:231.200281px;}
.ws4e{word-spacing:231.378764px;}
.ws74{word-spacing:232.244600px;}
.ws4c{word-spacing:232.519182px;}
.wsb1{word-spacing:232.776339px;}
.ws9{word-spacing:235.410914px;}
.wscd{word-spacing:235.429673px;}
.ws16{word-spacing:235.467531px;}
.ws76{word-spacing:237.797469px;}
.ws28{word-spacing:239.348237px;}
.ws69{word-spacing:240.023291px;}
.wsb9{word-spacing:242.414973px;}
.ws4d{word-spacing:242.776787px;}
.ws82{word-spacing:245.127086px;}
.ws45{word-spacing:245.127458px;}
.wsa3{word-spacing:246.496688px;}
.wsc9{word-spacing:246.757862px;}
.ws32{word-spacing:246.788401px;}
.ws1a{word-spacing:247.788630px;}
.ws67{word-spacing:248.108794px;}
.ws58{word-spacing:248.404629px;}
.ws7b{word-spacing:248.566577px;}
.wsaf{word-spacing:249.218895px;}
.ws31{word-spacing:252.777009px;}
.wsf{word-spacing:253.948735px;}
.ws64{word-spacing:254.752260px;}
.ws79{word-spacing:255.221929px;}
.ws42{word-spacing:255.450534px;}
.ws8f{word-spacing:257.638206px;}
.ws4b{word-spacing:257.962339px;}
.ws56{word-spacing:258.960093px;}
.wsb8{word-spacing:259.224628px;}
.wsae{word-spacing:261.384778px;}
.wsa9{word-spacing:263.943053px;}
._3{margin-left:-6.093750px;}
._2{margin-left:-4.875000px;}
._4{margin-left:-3.750000px;}
._1{margin-left:-1.496367px;}
._0{width:19.783711px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.000000px;}
.fs1{font-size:33.600000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:8.957812px;}
.y89{bottom:26.582813px;}
.y2dd{bottom:49.604395px;}
.y2e6{bottom:49.711497px;}
.y120{bottom:50.261576px;}
.y127{bottom:50.464703px;}
.y1bf{bottom:50.658918px;}
.y1bb{bottom:51.309742px;}
.y2e4{bottom:51.363795px;}
.y1b4{bottom:51.421539px;}
.y8b{bottom:51.525041px;}
.y1bd{bottom:51.849724px;}
.y94{bottom:51.875494px;}
.y92{bottom:52.127357px;}
.y253{bottom:52.479330px;}
.y129{bottom:53.181170px;}
.y2e8{bottom:53.681928px;}
.y96{bottom:53.861683px;}
.y251{bottom:54.750545px;}
.y12b{bottom:54.954696px;}
.y248{bottom:55.158642px;}
.y122{bottom:56.847233px;}
.y24f{bottom:56.957898px;}
.y8d{bottom:57.147604px;}
.y24a{bottom:57.314082px;}
.y2df{bottom:57.574426px;}
.y1b6{bottom:57.605000px;}
.y123{bottom:64.429265px;}
.y8e{bottom:64.729635px;}
.y24b{bottom:64.896113px;}
.y2e0{bottom:65.156457px;}
.y1b7{bottom:65.187031px;}
.y124{bottom:69.110905px;}
.y8f{bottom:69.411276px;}
.y24c{bottom:69.577754px;}
.y2e1{bottom:69.838098px;}
.y1b8{bottom:69.868671px;}
.y2e9{bottom:82.021990px;}
.y252{bottom:84.406677px;}
.y2de{bottom:86.329179px;}
.y249{bottom:86.642741px;}
.y121{bottom:86.674080px;}
.y12c{bottom:86.717536px;}
.y2e7{bottom:89.440754px;}
.y95{bottom:90.580451px;}
.y1be{bottom:91.004165px;}
.y1c0{bottom:91.913641px;}
.y1bc{bottom:92.700397px;}
.y2e5{bottom:92.723211px;}
.y1b5{bottom:92.898137px;}
.y250{bottom:93.094542px;}
.y125{bottom:95.589421px;}
.y93{bottom:95.762810px;}
.y90{bottom:95.889792px;}
.y24d{bottom:96.056269px;}
.y2e2{bottom:96.316613px;}
.y1b9{bottom:96.347187px;}
.y8c{bottom:98.259934px;}
.y128{bottom:100.353317px;}
.y254{bottom:100.723027px;}
.y126{bottom:102.246931px;}
.y91{bottom:102.817635px;}
.y24e{bottom:103.133943px;}
.y2e3{bottom:103.628597px;}
.y1ba{bottom:103.686687px;}
.y12a{bottom:106.365198px;}
.y97{bottom:106.809693px;}
.y112{bottom:127.542418px;}
.y1a6{bottom:127.758942px;}
.y2cf{bottom:127.852296px;}
.y23a{bottom:127.910150px;}
.y7b{bottom:127.947145px;}
.y111{bottom:145.167418px;}
.y1a5{bottom:145.383942px;}
.y2ce{bottom:145.477296px;}
.y239{bottom:145.535150px;}
.y7a{bottom:145.572145px;}
.y1a7{bottom:162.803896px;}
.y11a{bottom:166.931945px;}
.y113{bottom:167.006917px;}
.y7c{bottom:168.313916px;}
.y11c{bottom:168.676931px;}
.y11e{bottom:169.336514px;}
.y1b2{bottom:169.587480px;}
.y2d0{bottom:169.946115px;}
.y1b0{bottom:169.988772px;}
.y1ae{bottom:170.482778px;}
.y85{bottom:170.559760px;}
.y23b{bottom:171.275760px;}
.y83{bottom:171.305493px;}
.y87{bottom:171.317347px;}
.y244{bottom:171.897589px;}
.y242{bottom:172.199998px;}
.y2d7{bottom:173.200860px;}
.y2d9{bottom:173.483805px;}
.y2db{bottom:175.024584px;}
.y115{bottom:175.431839px;}
.y246{bottom:176.044751px;}
.y7e{bottom:176.136937px;}
.y23d{bottom:176.266419px;}
.y1a9{bottom:176.406129px;}
.y2d2{bottom:176.468909px;}
.y116{bottom:183.013870px;}
.y7f{bottom:183.718968px;}
.y23e{bottom:183.848451px;}
.y1aa{bottom:183.988160px;}
.y2d3{bottom:184.050940px;}
.y117{bottom:187.695511px;}
.y80{bottom:188.400608px;}
.y23f{bottom:188.530091px;}
.y1ab{bottom:188.669801px;}
.y2d4{bottom:188.732581px;}
.y245{bottom:200.133070px;}
.y2d8{bottom:201.401708px;}
.y11b{bottom:203.885833px;}
.y2da{bottom:204.946456px;}
.y1a8{bottom:206.169271px;}
.y114{bottom:206.376369px;}
.y11f{bottom:207.774703px;}
.y11d{bottom:207.780730px;}
.y2d1{bottom:207.852019px;}
.y2dc{bottom:208.288548px;}
.y1b1{bottom:208.451913px;}
.y86{bottom:209.806445px;}
.y247{bottom:211.871279px;}
.y7d{bottom:212.407871px;}
.y1af{bottom:213.547568px;}
.y118{bottom:214.174026px;}
.y81{bottom:214.879124px;}
.y1b3{bottom:214.921925px;}
.y240{bottom:215.008607px;}
.y1ac{bottom:215.148317px;}
.y2d5{bottom:215.211096px;}
.y88{bottom:217.115724px;}
.y119{bottom:220.831536px;}
.y82{bottom:221.806968px;}
.y241{bottom:222.086281px;}
.y1ad{bottom:222.487816px;}
.y2d6{bottom:222.523080px;}
.y84{bottom:222.751260px;}
.y23c{bottom:222.769581px;}
.y243{bottom:225.798676px;}
.y103{bottom:246.127024px;}
.y197{bottom:246.560072px;}
.y2c0{bottom:246.746779px;}
.y22b{bottom:246.862487px;}
.y6c{bottom:246.936477px;}
.y102{bottom:263.752024px;}
.y196{bottom:264.185072px;}
.y2bf{bottom:264.371779px;}
.y22a{bottom:264.487487px;}
.y6b{bottom:264.561477px;}
.y10d{bottom:286.777007px;}
.y19f{bottom:286.805565px;}
.y1a1{bottom:287.697251px;}
.y237{bottom:287.788963px;}
.y78{bottom:288.191312px;}
.y10b{bottom:288.215394px;}
.y104{bottom:288.527388px;}
.y2c8{bottom:289.055746px;}
.y235{bottom:289.316952px;}
.y10f{bottom:289.507459px;}
.y22c{bottom:289.764402px;}
.y6d{bottom:289.858779px;}
.y2cc{bottom:289.928303px;}
.y1a3{bottom:290.224005px;}
.y233{bottom:290.235771px;}
.y2c1{bottom:290.375131px;}
.y74{bottom:290.822797px;}
.y2ca{bottom:291.591033px;}
.y76{bottom:291.995196px;}
.y106{bottom:294.016444px;}
.y198{bottom:294.712342px;}
.y6f{bottom:295.126269px;}
.y19a{bottom:295.207259px;}
.y22e{bottom:295.218757px;}
.y2c3{bottom:295.363392px;}
.y107{bottom:301.598476px;}
.y70{bottom:302.708300px;}
.y19b{bottom:302.789290px;}
.y22f{bottom:302.800788px;}
.y2c4{bottom:302.945423px;}
.y108{bottom:306.280116px;}
.y71{bottom:307.389941px;}
.y19c{bottom:307.470931px;}
.y230{bottom:307.482429px;}
.y2c5{bottom:307.627064px;}
.y77{bottom:320.382801px;}
.y238{bottom:321.805777px;}
.y2cb{bottom:322.354233px;}
.y10e{bottom:324.591453px;}
.y1a0{bottom:325.313789px;}
.y10c{bottom:325.831696px;}
.y79{bottom:327.838103px;}
.y1a2{bottom:327.924301px;}
.y110{bottom:329.063016px;}
.y105{bottom:329.947493px;}
.y199{bottom:332.525856px;}
.y109{bottom:332.758632px;}
.y2c9{bottom:332.932126px;}
.y72{bottom:333.868457px;}
.y19d{bottom:333.949446px;}
.y231{bottom:333.960944px;}
.y2cd{bottom:334.084208px;}
.y2c6{bottom:334.105580px;}
.y236{bottom:334.468919px;}
.y234{bottom:335.925314px;}
.y1a4{bottom:337.056989px;}
.y2c2{bottom:337.498360px;}
.y22d{bottom:338.164274px;}
.y10a{bottom:339.416142px;}
.y6e{bottom:339.546679px;}
.y75{bottom:340.652161px;}
.y73{bottom:340.796300px;}
.y232{bottom:341.038618px;}
.y19e{bottom:341.288946px;}
.y2c7{bottom:341.417563px;}
.yf4{bottom:364.711629px;}
.y188{bottom:365.361202px;}
.y2b1{bottom:365.641262px;}
.y21c{bottom:365.814825px;}
.y5d{bottom:365.925810px;}
.yf3{bottom:382.336629px;}
.y187{bottom:382.986202px;}
.y2b0{bottom:383.266262px;}
.y21b{bottom:383.439825px;}
.y5c{bottom:383.550810px;}
.y69{bottom:405.515589px;}
.y228{bottom:405.569846px;}
.yfc{bottom:406.227020px;}
.y21d{bottom:406.268450px;}
.yfe{bottom:406.780077px;}
.y226{bottom:407.001571px;}
.y2bb{bottom:407.098833px;}
.yf5{bottom:407.197523px;}
.y224{bottom:407.552385px;}
.y100{bottom:407.558081px;}
.y2b9{bottom:407.992961px;}
.y2b2{bottom:408.103954px;}
.y192{bottom:408.329570px;}
.y5e{bottom:408.486150px;}
.y67{bottom:408.776566px;}
.y190{bottom:409.397547px;}
.y194{bottom:409.970318px;}
.y2bd{bottom:410.406913px;}
.y65{bottom:410.835621px;}
.y189{bottom:411.487463px;}
.yf7{bottom:412.601050px;}
.y18b{bottom:414.008389px;}
.y60{bottom:414.115601px;}
.y21f{bottom:414.171094px;}
.y2b4{bottom:414.257875px;}
.yf8{bottom:420.183081px;}
.y18c{bottom:421.590420px;}
.y61{bottom:421.697633px;}
.y220{bottom:421.753125px;}
.y2b5{bottom:421.839907px;}
.yf9{bottom:424.864722px;}
.y18d{bottom:426.272060px;}
.y62{bottom:426.379273px;}
.y221{bottom:426.434766px;}
.y2b6{bottom:426.521547px;}
.y66{bottom:437.702050px;}
.y2be{bottom:438.486830px;}
.y227{bottom:440.406918px;}
.y195{bottom:440.629833px;}
.y18a{bottom:443.004957px;}
.y6a{bottom:445.064030px;}
.y229{bottom:445.507567px;}
.y21e{bottom:445.614628px;}
.yff{bottom:445.669556px;}
.yfd{bottom:445.976233px;}
.y225{bottom:446.525394px;}
.y2b3{bottom:449.524053px;}
.yfa{bottom:451.343237px;}
.y18e{bottom:452.750576px;}
.y63{bottom:452.857789px;}
.y222{bottom:452.913281px;}
.y2b7{bottom:453.000063px;}
.y2bc{bottom:453.256057px;}
.y2ba{bottom:453.421562px;}
.y68{bottom:455.208173px;}
.y193{bottom:455.245659px;}
.y5f{bottom:456.365960px;}
.yf6{bottom:456.422466px;}
.y101{bottom:457.614844px;}
.yfb{bottom:458.000747px;}
.y191{bottom:459.687723px;}
.y64{bottom:459.785633px;}
.y223{bottom:459.990955px;}
.y18f{bottom:460.090076px;}
.y2b8{bottom:460.312046px;}
.ye5{bottom:483.296235px;}
.y179{bottom:484.162331px;}
.y2a2{bottom:484.535745px;}
.y20d{bottom:484.767162px;}
.y4e{bottom:484.915142px;}
.ye4{bottom:500.921235px;}
.y178{bottom:501.787331px;}
.y2a1{bottom:502.160745px;}
.y20c{bottom:502.392162px;}
.y4d{bottom:502.540142px;}
.yf1{bottom:521.138730px;}
.y2aa{bottom:521.328173px;}
.ye6{bottom:521.395624px;}
.y219{bottom:523.479807px;}
.yed{bottom:523.733286px;}
.yef{bottom:524.015405px;}
.y215{bottom:524.331319px;}
.y2a3{bottom:524.835480px;}
.y217{bottom:524.874976px;}
.y20e{bottom:525.643999px;}
.y183{bottom:525.679829px;}
.y185{bottom:525.707819px;}
.y58{bottom:526.483502px;}
.y181{bottom:527.044841px;}
.y4f{bottom:527.918217px;}
.y56{bottom:527.987963px;}
.y2ae{bottom:528.202804px;}
.y17a{bottom:528.487494px;}
.y5a{bottom:529.704017px;}
.ye8{bottom:531.185655px;}
.y2ac{bottom:531.371883px;}
.y17c{bottom:532.809518px;}
.y51{bottom:533.104934px;}
.y210{bottom:533.123431px;}
.y2a5{bottom:533.152358px;}
.ye9{bottom:538.767687px;}
.y17d{bottom:540.391550px;}
.y52{bottom:540.686965px;}
.y211{bottom:540.705463px;}
.y2a6{bottom:540.734390px;}
.yea{bottom:543.449327px;}
.y17e{bottom:545.073190px;}
.y53{bottom:545.368606px;}
.y212{bottom:545.387103px;}
.y2a7{bottom:545.416030px;}
.yf2{bottom:558.244122px;}
.y2a4{bottom:558.274370px;}
.ye7{bottom:558.302861px;}
.y216{bottom:559.512025px;}
.y5b{bottom:560.255242px;}
.y2ab{bottom:560.904639px;}
.yee{bottom:561.560340px;}
.y20f{bottom:562.042809px;}
.y2ad{bottom:562.100043px;}
.y218{bottom:562.456993px;}
.y21a{bottom:563.233600px;}
.y184{bottom:564.073825px;}
.y59{bottom:567.685762px;}
.yf0{bottom:568.438931px;}
.yeb{bottom:569.927843px;}
.y17f{bottom:571.551706px;}
.y54{bottom:571.847121px;}
.y213{bottom:571.865619px;}
.y2a8{bottom:571.894546px;}
.y57{bottom:574.339536px;}
.yec{bottom:576.585353px;}
.y182{bottom:578.129224px;}
.y186{bottom:578.771984px;}
.y55{bottom:578.774965px;}
.y180{bottom:578.891205px;}
.y214{bottom:578.943293px;}
.y2a9{bottom:579.206529px;}
.y50{bottom:580.277415px;}
.y17b{bottom:582.038049px;}
.y2af{bottom:582.475586px;}
.yd6{bottom:601.880840px;}
.y16a{bottom:602.963461px;}
.y293{bottom:603.430228px;}
.y1fe{bottom:603.719499px;}
.y3f{bottom:603.904474px;}
.yd5{bottom:619.505840px;}
.y169{bottom:620.588461px;}
.y292{bottom:621.055228px;}
.y1fd{bottom:621.344499px;}
.y3e{bottom:621.529474px;}
.y40{bottom:638.950138px;}
.y29f{bottom:640.339969px;}
.y176{bottom:640.404999px;}
.y16b{bottom:641.599978px;}
.ye0{bottom:641.840071px;}
.y172{bottom:642.416441px;}
.yd7{bottom:643.416899px;}
.ye2{bottom:643.623117px;}
.y174{bottom:644.125784px;}
.yde{bottom:644.622736px;}
.y29d{bottom:645.665409px;}
.y49{bottom:646.300526px;}
.y47{bottom:646.450624px;}
.y1ff{bottom:646.965859px;}
.y4b{bottom:647.087609px;}
.y208{bottom:647.158241px;}
.y29b{bottom:647.943978px;}
.y294{bottom:647.999262px;}
.y206{bottom:648.649397px;}
.yd9{bottom:649.770261px;}
.y20a{bottom:649.777282px;}
.y16d{bottom:651.610648px;}
.y296{bottom:652.046842px;}
.y201{bottom:652.075769px;}
.y42{bottom:652.094266px;}
.yda{bottom:657.352292px;}
.y16e{bottom:659.192679px;}
.y297{bottom:659.628873px;}
.y202{bottom:659.657800px;}
.y43{bottom:659.676297px;}
.ydb{bottom:662.033933px;}
.y16f{bottom:663.874320px;}
.y298{bottom:664.310513px;}
.y203{bottom:664.339441px;}
.y44{bottom:664.357938px;}
.y48{bottom:674.841996px;}
.y173{bottom:676.010081px;}
.ye1{bottom:676.191469px;}
.y177{bottom:677.051031px;}
.y207{bottom:677.598096px;}
.y2a0{bottom:678.910159px;}
.y20b{bottom:679.079577px;}
.y41{bottom:679.376438px;}
.yd8{bottom:679.881940px;}
.y16c{bottom:679.939060px;}
.ye3{bottom:684.556458px;}
.ydf{bottom:684.573741px;}
.y29e{bottom:685.659141px;}
.ydc{bottom:688.512448px;}
.y170{bottom:690.352835px;}
.y200{bottom:690.546662px;}
.y299{bottom:690.789029px;}
.y204{bottom:690.817956px;}
.y45{bottom:690.836454px;}
.y209{bottom:693.803364px;}
.y175{bottom:695.120428px;}
.ydd{bottom:695.169958px;}
.y171{bottom:697.692335px;}
.y46{bottom:697.764297px;}
.y205{bottom:697.895630px;}
.y29a{bottom:698.101012px;}
.y4a{bottom:698.124340px;}
.y4c{bottom:698.329749px;}
.y295{bottom:699.923484px;}
.y29c{bottom:701.121034px;}
.yc7{bottom:720.465446px;}
.y15b{bottom:721.764591px;}
.y284{bottom:722.324711px;}
.y1ef{bottom:722.671837px;}
.y30{bottom:722.893807px;}
.yc6{bottom:738.090446px;}
.y15a{bottom:739.389591px;}
.y283{bottom:739.949711px;}
.y1ee{bottom:740.296837px;}
.y2f{bottom:740.518807px;}
.y3a{bottom:756.003041px;}
.y163{bottom:757.667104px;}
.y285{bottom:758.413059px;}
.y167{bottom:760.114736px;}
.y38{bottom:760.384830px;}
.y165{bottom:761.060391px;}
.y15c{bottom:761.673555px;}
.yd1{bottom:762.288359px;}
.ycf{bottom:762.313090px;}
.y1f9{bottom:763.636189px;}
.yd3{bottom:763.711068px;}
.yc8{bottom:764.939409px;}
.y31{bottom:765.265961px;}
.y3c{bottom:765.277816px;}
.y290{bottom:765.591307px;}
.y28c{bottom:765.697788px;}
.y1f7{bottom:766.285619px;}
.y28e{bottom:766.501715px;}
.y1f0{bottom:767.039358px;}
.y1fb{bottom:767.664423px;}
.yca{bottom:768.354866px;}
.y15e{bottom:770.411778px;}
.y287{bottom:770.941325px;}
.y1f2{bottom:771.028106px;}
.y33{bottom:771.083599px;}
.ycb{bottom:775.936898px;}
.y15f{bottom:777.993809px;}
.y288{bottom:778.523356px;}
.y1f3{bottom:778.610137px;}
.y34{bottom:778.665630px;}
.ycc{bottom:780.618538px;}
.y160{bottom:782.675449px;}
.y289{bottom:783.204997px;}
.y1f4{bottom:783.291778px;}
.y35{bottom:783.347270px;}
.y166{bottom:793.164608px;}
.y168{bottom:794.037106px;}
.y164{bottom:794.385988px;}
.y1fc{bottom:796.020823px;}
.y28f{bottom:796.669903px;}
.y1fa{bottom:796.867903px;}
.y15d{bottom:797.150662px;}
.yd0{bottom:797.404306px;}
.yd2{bottom:799.256905px;}
.y3b{bottom:803.437753px;}
.y39{bottom:804.271995px;}
.y286{bottom:805.501759px;}
.ycd{bottom:807.097054px;}
.y291{bottom:808.557518px;}
.y161{bottom:809.153965px;}
.y28a{bottom:809.683512px;}
.y1f5{bottom:809.770294px;}
.y36{bottom:809.825786px;}
.y1f8{bottom:810.502111px;}
.y32{bottom:812.177798px;}
.yd4{bottom:813.208175px;}
.yce{bottom:813.754564px;}
.y1f1{bottom:814.812915px;}
.y3d{bottom:816.315474px;}
.yc9{bottom:816.458480px;}
.y162{bottom:816.493465px;}
.y28d{bottom:816.663916px;}
.y37{bottom:816.753630px;}
.y1f6{bottom:816.847967px;}
.y28b{bottom:816.995495px;}
.yb8{bottom:839.050051px;}
.y14c{bottom:840.565720px;}
.y275{bottom:841.219195px;}
.y1e0{bottom:841.624174px;}
.y20{bottom:841.883139px;}
.yb7{bottom:856.675051px;}
.y14b{bottom:858.190720px;}
.y274{bottom:858.844195px;}
.y1df{bottom:859.249174px;}
.y1f{bottom:859.508139px;}
.y2d{bottom:877.789619px;}
.y281{bottom:878.201284px;}
.yc2{bottom:880.577328px;}
.yc0{bottom:881.090077px;}
.yc4{bottom:881.359557px;}
.y14d{bottom:881.486423px;}
.y2b{bottom:881.535304px;}
.y158{bottom:882.035019px;}
.y276{bottom:882.189467px;}
.yb9{bottom:882.859475px;}
.y154{bottom:883.251406px;}
.y27f{bottom:883.283140px;}
.y29{bottom:883.689458px;}
.y1ea{bottom:883.717491px;}
.y1e8{bottom:884.050354px;}
.y1e1{bottom:884.212803px;}
.y27d{bottom:885.071840px;}
.y156{bottom:885.923231px;}
.y1ec{bottom:886.665899px;}
.ybb{bottom:886.939472px;}
.y14f{bottom:889.212907px;}
.y278{bottom:889.835808px;}
.y1e3{bottom:889.980443px;}
.y24{bottom:890.072931px;}
.y21{bottom:893.767784px;}
.ybc{bottom:894.521503px;}
.y150{bottom:896.794939px;}
.y279{bottom:897.417839px;}
.y1e4{bottom:897.562475px;}
.y25{bottom:897.654962px;}
.ybd{bottom:899.203144px;}
.y151{bottom:901.476579px;}
.y27a{bottom:902.099480px;}
.y1e5{bottom:902.244115px;}
.y26{bottom:902.336603px;}
.y277{bottom:913.627864px;}
.y2e{bottom:914.007933px;}
.y1ed{bottom:914.305802px;}
.y22{bottom:914.586014px;}
.y282{bottom:914.944797px;}
.y14e{bottom:916.596239px;}
.yc3{bottom:916.621781px;}
.y159{bottom:916.961574px;}
.yc1{bottom:920.556430px;}
.yc5{bottom:922.914821px;}
.ybe{bottom:925.681660px;}
.y155{bottom:926.201921px;}
.y280{bottom:926.793517px;}
.y1eb{bottom:927.353282px;}
.y152{bottom:927.955095px;}
.y27b{bottom:928.577995px;}
.y1e9{bottom:928.672320px;}
.y1e6{bottom:928.722631px;}
.y27{bottom:928.815118px;}
.ybf{bottom:932.339170px;}
.y2c{bottom:933.089495px;}
.y2a{bottom:933.388999px;}
.yba{bottom:933.832107px;}
.y153{bottom:935.294594px;}
.y23{bottom:935.404244px;}
.y157{bottom:935.570527px;}
.y28{bottom:935.742962px;}
.y1e7{bottom:935.800305px;}
.y27c{bottom:935.889979px;}
.y1e2{bottom:935.927590px;}
.y27e{bottom:936.336549px;}
.y2fa{bottom:949.017172px;}
.ya9{bottom:957.634657px;}
.y13d{bottom:959.366850px;}
.y265{bottom:960.113678px;}
.y1d1{bottom:960.576511px;}
.y11{bottom:960.872472px;}
.y2f9{bottom:966.642172px;}
.ya8{bottom:975.259657px;}
.y13c{bottom:976.991850px;}
.y264{bottom:977.738678px;}
.y1d0{bottom:978.201511px;}
.y10{bottom:978.497472px;}
.y2fb{bottom:992.634942px;}
.y13e{bottom:995.029025px;}
.y1b{bottom:996.531951px;}
.yb1{bottom:998.047189px;}
.y272{bottom:998.200556px;}
.y12{bottom:998.536027px;}
.yaa{bottom:999.305864px;}
.y147{bottom:999.338690px;}
.y145{bottom:999.393078px;}
.y1db{bottom:999.710860px;}
.y270{bottom:999.896381px;}
.yb3{bottom:1000.121679px;}
.y19{bottom:1000.225335px;}
.y2fd{bottom:1001.269320px;}
.yb5{bottom:1001.404128px;}
.y1d{bottom:1002.499691px;}
.y1d9{bottom:1002.718017px;}
.y1dd{bottom:1002.777338px;}
.y266{bottom:1003.352239px;}
.y149{bottom:1003.649798px;}
.yac{bottom:1005.524078px;}
.y1d2{bottom:1005.984630px;}
.y140{bottom:1008.014037px;}
.y268{bottom:1008.730291px;}
.y2fe{bottom:1008.851351px;}
.y1d4{bottom:1008.932781px;}
.y14{bottom:1009.062263px;}
.y26d{bottom:1010.790703px;}
.yad{bottom:1013.106109px;}
.y2ff{bottom:1013.532992px;}
.y141{bottom:1015.596068px;}
.y269{bottom:1016.312322px;}
.y1d5{bottom:1016.514812px;}
.y15{bottom:1016.644295px;}
.yae{bottom:1017.787749px;}
.y142{bottom:1020.277709px;}
.y26a{bottom:1020.993963px;}
.y1d6{bottom:1021.196453px;}
.y16{bottom:1021.325935px;}
.y26e{bottom:1028.943937px;}
.y13f{bottom:1029.184443px;}
.y146{bottom:1032.343288px;}
.y148{bottom:1033.594938px;}
.yb2{bottom:1034.473930px;}
.y13{bottom:1035.892625px;}
.y2fc{bottom:1037.635920px;}
.y1d3{bottom:1038.700710px;}
.y1dc{bottom:1039.199198px;}
.y300{bottom:1040.011507px;}
.y1c{bottom:1041.524310px;}
.y273{bottom:1041.832629px;}
.y1da{bottom:1041.942240px;}
.y1de{bottom:1042.634477px;}
.yab{bottom:1042.964820px;}
.yaf{bottom:1044.266265px;}
.y271{bottom:1044.394239px;}
.yb4{bottom:1044.920627px;}
.y1e{bottom:1046.194354px;}
.y143{bottom:1046.756224px;}
.y26f{bottom:1047.097171px;}
.y26b{bottom:1047.472479px;}
.y1d7{bottom:1047.674968px;}
.y17{bottom:1047.804451px;}
.y1a{bottom:1050.369641px;}
.y267{bottom:1050.477196px;}
.y301{bottom:1050.595472px;}
.yb0{bottom:1050.923775px;}
.yb6{bottom:1050.928215px;}
.y144{bottom:1054.095724px;}
.y14a{bottom:1054.620507px;}
.y18{bottom:1054.732295px;}
.y1d8{bottom:1054.752642px;}
.y26c{bottom:1054.784462px;}
.y2eb{bottom:1071.737092px;}
.y9a{bottom:1076.219262px;}
.y12e{bottom:1078.167980px;}
.y256{bottom:1079.008161px;}
.y1c2{bottom:1079.528849px;}
.y2{bottom:1079.861804px;}
.y2ea{bottom:1089.362093px;}
.y99{bottom:1093.844262px;}
.y12d{bottom:1095.792980px;}
.y255{bottom:1096.633161px;}
.y1c1{bottom:1097.153849px;}
.y1{bottom:1097.486804px;}
.y2f7{bottom:1116.052045px;}
.ye{bottom:1116.392223px;}
.y2f3{bottom:1116.819614px;}
.y1ce{bottom:1117.165294px;}
.ya6{bottom:1117.290343px;}
.y2f5{bottom:1118.257885px;}
.ya4{bottom:1118.258767px;}
.y2ec{bottom:1118.376350px;}
.y1cc{bottom:1118.652583px;}
.y13a{bottom:1119.341989px;}
.ya2{bottom:1119.369133px;}
.ya{bottom:1119.729660px;}
.y1ca{bottom:1120.360947px;}
.y3{bottom:1120.871898px;}
.y136{bottom:1121.584753px;}
.y12f{bottom:1121.678653px;}
.y9b{bottom:1121.856518px;}
.y260{bottom:1122.167544px;}
.yc{bottom:1122.257652px;}
.y1c3{bottom:1122.279106px;}
.y138{bottom:1122.517080px;}
.y257{bottom:1123.060869px;}
.y262{bottom:1123.696906px;}
.y25e{bottom:1123.966928px;}
.y2ee{bottom:1123.989240px;}
.y9d{bottom:1124.108683px;}
.y131{bottom:1126.815167px;}
.y259{bottom:1127.624774px;}
.y1c5{bottom:1127.885118px;}
.y5{bottom:1128.051596px;}
.y2ef{bottom:1131.571271px;}
.y9e{bottom:1131.690714px;}
.y132{bottom:1134.397198px;}
.y25a{bottom:1135.206805px;}
.y1c6{bottom:1135.467149px;}
.y6{bottom:1135.633627px;}
.y2f0{bottom:1136.252912px;}
.y9f{bottom:1136.372355px;}
.y133{bottom:1139.078839px;}
.y25b{bottom:1139.888446px;}
.y1c7{bottom:1140.148790px;}
.y7{bottom:1140.315268px;}
.y9c{bottom:1149.791260px;}
.y2f6{bottom:1150.993358px;}
.y2ed{bottom:1151.401603px;}
.y263{bottom:1151.762651px;}
.yf{bottom:1152.263412px;}
.y2f8{bottom:1152.354828px;}
.y25f{bottom:1152.622608px;}
.y1cf{bottom:1154.483925px;}
.y4{bottom:1154.758540px;}
.ya7{bottom:1156.967463px;}
.y1cb{bottom:1157.892112px;}
.y1cd{bottom:1157.983368px;}
.y13b{bottom:1158.730615px;}
.yb{bottom:1160.017479px;}
.yd{bottom:1160.595246px;}
.y2f4{bottom:1160.953710px;}
.y1c4{bottom:1162.462061px;}
.y2f1{bottom:1162.731427px;}
.ya0{bottom:1162.850871px;}
.ya5{bottom:1165.010154px;}
.y134{bottom:1165.557354px;}
.y25c{bottom:1166.366962px;}
.y1c8{bottom:1166.627306px;}
.y8{bottom:1166.793783px;}
.y137{bottom:1168.321356px;}
.ya1{bottom:1169.508381px;}
.y130{bottom:1171.558614px;}
.y135{bottom:1172.896854px;}
.y261{bottom:1172.999744px;}
.y258{bottom:1173.242146px;}
.y2f2{bottom:1173.315391px;}
.ya3{bottom:1173.353851px;}
.y25d{bottom:1173.678945px;}
.y1c9{bottom:1173.704979px;}
.y9{bottom:1173.721627px;}
.y139{bottom:1174.021756px;}
.y98{bottom:1221.308663px;}
.h3{height:27.870000px;}
.h2{height:44.592000px;}
.h4{height:78.036000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:4.740000px;}
.x5{left:12.380625px;}
.x57{left:15.122812px;}
.x4{left:22.763438px;}
.x99{left:45.345342px;}
.x5b{left:46.783634px;}
.xa7{left:52.137189px;}
.x4b{left:53.876774px;}
.x9e{left:55.116624px;}
.x9b{left:56.292503px;}
.x70{left:57.725701px;}
.x6{left:60.602152px;}
.x54{left:64.414696px;}
.x19{left:65.899967px;}
.x74{left:67.928930px;}
.x76{left:70.103015px;}
.x1f{left:71.195510px;}
.x26{left:72.528217px;}
.x22{left:74.669661px;}
.x56{left:76.405650px;}
.xa3{left:79.064888px;}
.x46{left:80.911117px;}
.x32{left:82.895044px;}
.x67{left:84.959602px;}
.x2e{left:86.310060px;}
.x92{left:90.705793px;}
.x7a{left:92.026983px;}
.x49{left:93.339517px;}
.xad{left:95.088464px;}
.x36{left:96.116765px;}
.x2a{left:97.264842px;}
.x1{left:103.768661px;}
.xaa{left:105.445522px;}
.x7b{left:109.872396px;}
.x3b{left:111.176745px;}
.x2{left:112.236525px;}
.xae{left:113.352804px;}
.x8d{left:117.525485px;}
.x7c{left:120.295052px;}
.x3c{left:121.599402px;}
.x3{left:122.659181px;}
.xaf{left:123.775461px;}
.x7f{left:226.209888px;}
.xb{left:228.419681px;}
.x8b{left:233.850513px;}
.x1c{left:236.060306px;}
.x3a{left:237.763594px;}
.xa{left:238.802493px;}
.x8a{left:244.233325px;}
.x1b{left:246.443118px;}
.x2b{left:267.018579px;}
.x47{left:269.678202px;}
.xab{left:270.750821px;}
.x1a{left:273.455037px;}
.x6d{left:275.857532px;}
.x33{left:278.184982px;}
.x4f{left:281.006138px;}
.x3d{left:282.462692px;}
.xc{left:284.281833px;}
.x71{left:290.517925px;}
.x4c{left:292.111700px;}
.x7{left:294.012000px;}
.x51{left:298.443880px;}
.x97{left:299.755067px;}
.x37{left:300.799499px;}
.xa2{left:302.057677px;}
.x8f{left:303.633808px;}
.x27{left:306.465209px;}
.x7d{left:308.158778px;}
.x89{left:310.031141px;}
.x68{left:311.281814px;}
.x6e{left:312.866669px;}
.xa4{left:314.822064px;}
.xa0{left:317.073609px;}
.x23{left:319.439047px;}
.x5c{left:322.546818px;}
.x77{left:324.944993px;}
.x79{left:326.594298px;}
.x7e{left:331.342283px;}
.x2f{left:332.776450px;}
.x5f{left:334.221203px;}
.x8{left:335.916205px;}
.x59{left:341.415726px;}
.x60{left:344.643859px;}
.x9{left:346.338862px;}
.x94{left:447.679775px;}
.x6a{left:451.325095px;}
.x82{left:455.320400px;}
.x93{left:458.062588px;}
.x11{left:459.739986px;}
.x40{left:460.852116px;}
.xac{left:462.644270px;}
.x81{left:465.703213px;}
.xb0{left:468.976365px;}
.x10{left:470.122799px;}
.x3f{left:471.234929px;}
.x8e{left:487.860866px;}
.x61{left:493.112414px;}
.x2c{left:494.773280px;}
.x5d{left:498.501149px;}
.x3e{left:500.261911px;}
.x28{left:501.642464px;}
.x83{left:503.305515px;}
.x4d{left:505.340914px;}
.x75{left:506.764699px;}
.x12{left:507.961514px;}
.x41{left:508.967666px;}
.xa5{left:510.334386px;}
.x52{left:512.701731px;}
.x90{left:514.023490px;}
.x9c{left:516.709709px;}
.x35{left:519.907176px;}
.x9f{left:521.292143px;}
.x20{left:525.039223px;}
.x72{left:528.033474px;}
.xd{left:529.347699px;}
.x24{left:532.454306px;}
.x78{left:534.237372px;}
.x38{left:536.566939px;}
.x30{left:543.371295px;}
.x34{left:546.133233px;}
.x1d{left:548.452265px;}
.x50{left:550.673340px;}
.x98{left:552.038362px;}
.x69{left:553.192337px;}
.x62{left:557.513750px;}
.xe{left:559.595886px;}
.x80{left:563.234827px;}
.x63{left:567.936406px;}
.xf{left:570.018542px;}
.x96{left:669.149663px;}
.x66{left:674.617642px;}
.x87{left:676.790288px;}
.x95{left:679.532475px;}
.x6c{left:682.258267px;}
.x17{left:683.419667px;}
.x44{left:685.087862px;}
.x86{left:687.173100px;}
.x6b{left:692.641080px;}
.x16{left:693.802480px;}
.x43{left:695.470674px;}
.x9a{left:710.937424px;}
.x53{left:719.265163px;}
.x5a{left:720.913360px;}
.x39{left:723.774231px;}
.x88{left:724.775402px;}
.x4a{left:726.165761px;}
.xa8{left:727.563840px;}
.x29{left:729.873132px;}
.x18{left:731.641195px;}
.x45{left:733.203411px;}
.x4e{left:734.638908px;}
.xa1{left:736.099620px;}
.x2d{left:738.117255px;}
.x55{left:741.293410px;}
.x6f{left:743.168468px;}
.x9d{left:745.037232px;}
.xa9{left:747.363840px;}
.x91{left:748.810478px;}
.x8c{left:751.464826px;}
.x13{left:753.225543px;}
.x25{left:755.735173px;}
.xa6{left:758.533750px;}
.x21{left:760.558192px;}
.x48{left:761.958958px;}
.x31{left:765.693100px;}
.x5e{left:768.433052px;}
.x64{left:770.218041px;}
.x1e{left:772.210902px;}
.x84{left:774.282058px;}
.x73{left:779.185684px;}
.x42{left:780.956602px;}
.x14{left:783.275567px;}
.x85{left:784.704714px;}
.x65{left:791.228954px;}
.x15{left:793.698223px;}
@media print{
.v1{vertical-align:-7.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9e{word-spacing:48.636887pt;}
.ws8c{word-spacing:49.332339pt;}
.ws91{word-spacing:50.808426pt;}
.ws62{word-spacing:50.937230pt;}
.ws2{word-spacing:52.378500pt;}
.ws7e{word-spacing:52.786470pt;}
.ws5a{word-spacing:53.632732pt;}
.ws7c{word-spacing:53.787128pt;}
.wsce{word-spacing:54.767650pt;}
.wsc7{word-spacing:55.813945pt;}
.ws88{word-spacing:57.007833pt;}
.ws17{word-spacing:57.030970pt;}
.ws18{word-spacing:57.777644pt;}
.ws43{word-spacing:58.649124pt;}
.ws6d{word-spacing:59.528740pt;}
.ws46{word-spacing:60.410333pt;}
.ws37{word-spacing:60.649487pt;}
.ws95{word-spacing:61.373687pt;}
.ws24{word-spacing:62.181061pt;}
.ws49{word-spacing:64.225328pt;}
.wsc1{word-spacing:64.287345pt;}
.wsc{word-spacing:66.201247pt;}
.ws13{word-spacing:67.644884pt;}
.ws3b{word-spacing:67.929334pt;}
.wsbb{word-spacing:67.963229pt;}
.ws5e{word-spacing:68.385227pt;}
.ws92{word-spacing:70.546208pt;}
.ws3e{word-spacing:71.161524pt;}
.ws19{word-spacing:72.016691pt;}
.wsb2{word-spacing:73.989980pt;}
.wsac{word-spacing:76.636603pt;}
.ws78{word-spacing:77.179944pt;}
.ws63{word-spacing:79.638888pt;}
.wsa{word-spacing:82.094053pt;}
.ws93{word-spacing:82.814289pt;}
.wsab{word-spacing:83.103638pt;}
.ws4a{word-spacing:91.707864pt;}
.ws70{word-spacing:92.781683pt;}
.wsa4{word-spacing:96.955198pt;}
.wsbc{word-spacing:98.169829pt;}
.ws36{word-spacing:105.881314pt;}
.ws8b{word-spacing:106.395910pt;}
.wsbf{word-spacing:109.689005pt;}
.ws27{word-spacing:110.412130pt;}
.ws5d{word-spacing:113.979065pt;}
.ws12{word-spacing:115.967919pt;}
.wsa2{word-spacing:116.028232pt;}
.ws68{word-spacing:116.644513pt;}
.wsb6{word-spacing:118.800985pt;}
.ws6{word-spacing:121.290122pt;}
.ws29{word-spacing:122.224074pt;}
.wsb3{word-spacing:123.461112pt;}
.ws6e{word-spacing:125.075786pt;}
.ws8d{word-spacing:125.186674pt;}
.ws15{word-spacing:125.281337pt;}
.ws72{word-spacing:125.718978pt;}
.ws1f{word-spacing:126.041280pt;}
.wsc2{word-spacing:129.260947pt;}
.ws5{word-spacing:129.948410pt;}
.ws2a{word-spacing:130.896090pt;}
.wsaa{word-spacing:131.046089pt;}
.ws9c{word-spacing:131.555859pt;}
.ws3c{word-spacing:132.616793pt;}
.ws71{word-spacing:132.701517pt;}
.ws5c{word-spacing:135.408521pt;}
.ws2e{word-spacing:135.967905pt;}
.ws75{word-spacing:136.088799pt;}
.wsa0{word-spacing:136.593014pt;}
.ws85{word-spacing:136.710908pt;}
.ws5b{word-spacing:137.783396pt;}
.ws86{word-spacing:138.691856pt;}
.ws33{word-spacing:140.791538pt;}
.wsb{word-spacing:140.842697pt;}
.wsa8{word-spacing:141.817032pt;}
.ws6c{word-spacing:142.205378pt;}
.ws23{word-spacing:142.723188pt;}
.ws54{word-spacing:143.310531pt;}
.ws11{word-spacing:145.194810pt;}
.ws59{word-spacing:145.406031pt;}
.ws60{word-spacing:145.549176pt;}
.ws39{word-spacing:146.874994pt;}
.ws9d{word-spacing:146.974366pt;}
.ws38{word-spacing:149.204371pt;}
.ws7{word-spacing:149.635712pt;}
.ws8{word-spacing:150.119475pt;}
.wscb{word-spacing:150.554273pt;}
.ws50{word-spacing:150.939044pt;}
.ws3{word-spacing:151.638000pt;}
.wsc3{word-spacing:153.474923pt;}
.wsa6{word-spacing:155.474404pt;}
.ws48{word-spacing:155.680308pt;}
.ws0{word-spacing:156.240838pt;}
.ws47{word-spacing:157.835252pt;}
.ws98{word-spacing:158.018670pt;}
.ws3a{word-spacing:161.586656pt;}
.ws2c{word-spacing:161.894115pt;}
.wsb5{word-spacing:161.948646pt;}
.wsa7{word-spacing:162.059045pt;}
.ws84{word-spacing:162.688643pt;}
.ws14{word-spacing:162.796756pt;}
.ws35{word-spacing:162.949490pt;}
.ws2f{word-spacing:163.787475pt;}
.ws21{word-spacing:164.154241pt;}
.ws22{word-spacing:164.722455pt;}
.ws6b{word-spacing:165.417537pt;}
.ws83{word-spacing:165.828518pt;}
.wsb4{word-spacing:167.135735pt;}
.ws90{word-spacing:167.510895pt;}
.ws41{word-spacing:168.626982pt;}
.ws3f{word-spacing:169.583392pt;}
.ws40{word-spacing:170.453451pt;}
.wsc0{word-spacing:171.002996pt;}
.ws2b{word-spacing:171.836198pt;}
.ws34{word-spacing:172.845691pt;}
.ws7a{word-spacing:173.726066pt;}
.ws3d{word-spacing:173.861904pt;}
.wsba{word-spacing:174.038499pt;}
.wsca{word-spacing:175.352543pt;}
.ws87{word-spacing:175.396276pt;}
.ws8e{word-spacing:175.517621pt;}
.wscc{word-spacing:176.661268pt;}
.wsc4{word-spacing:176.875104pt;}
.ws51{word-spacing:177.413796pt;}
.wsad{word-spacing:178.081589pt;}
.wsb0{word-spacing:179.307301pt;}
.ws30{word-spacing:180.521674pt;}
.wsa5{word-spacing:180.632701pt;}
.ws10{word-spacing:180.751142pt;}
.ws97{word-spacing:180.903483pt;}
.ws9f{word-spacing:180.953452pt;}
.ws77{word-spacing:181.174874pt;}
.ws20{word-spacing:182.097424pt;}
.ws8a{word-spacing:182.788488pt;}
.ws4{word-spacing:183.093480pt;}
.ws25{word-spacing:183.574385pt;}
.ws4f{word-spacing:185.183946pt;}
.ws81{word-spacing:186.094752pt;}
.ws94{word-spacing:186.874758pt;}
.ws53{word-spacing:187.153693pt;}
.ws99{word-spacing:187.393961pt;}
.ws80{word-spacing:188.788885pt;}
.ws5f{word-spacing:188.879106pt;}
.wsc6{word-spacing:188.884614pt;}
.wsbd{word-spacing:189.513888pt;}
.wsc8{word-spacing:189.834896pt;}
.wsa1{word-spacing:190.360474pt;}
.wsd{word-spacing:190.514141pt;}
.ws6a{word-spacing:190.519471pt;}
.ws9a{word-spacing:190.623338pt;}
.ws7d{word-spacing:190.941606pt;}
.ws1b{word-spacing:191.127658pt;}
.ws96{word-spacing:191.477187pt;}
.ws52{word-spacing:191.972626pt;}
.ws6f{word-spacing:192.488912pt;}
.ws66{word-spacing:192.507212pt;}
.ws26{word-spacing:192.605142pt;}
.ws7f{word-spacing:192.630507pt;}
.ws65{word-spacing:193.850376pt;}
.wsc5{word-spacing:195.227125pt;}
.ws89{word-spacing:196.374170pt;}
.ws2d{word-spacing:196.838123pt;}
.ws61{word-spacing:197.779811pt;}
.ws1d{word-spacing:198.185083pt;}
.ws9b{word-spacing:198.575398pt;}
.ws1e{word-spacing:199.086436pt;}
.ws55{word-spacing:200.235414pt;}
.ws73{word-spacing:201.726590pt;}
.ws44{word-spacing:202.677701pt;}
.wse{word-spacing:203.511200pt;}
.ws1c{word-spacing:203.825105pt;}
.wsb7{word-spacing:203.977352pt;}
.ws57{word-spacing:205.301753pt;}
.wsbe{word-spacing:205.511361pt;}
.ws4e{word-spacing:205.670012pt;}
.ws74{word-spacing:206.439644pt;}
.ws4c{word-spacing:206.683717pt;}
.wsb1{word-spacing:206.912301pt;}
.ws9{word-spacing:209.254146pt;}
.wscd{word-spacing:209.270820pt;}
.ws16{word-spacing:209.304472pt;}
.ws76{word-spacing:211.375528pt;}
.ws28{word-spacing:212.753989pt;}
.ws69{word-spacing:213.354036pt;}
.wsb9{word-spacing:215.479976pt;}
.ws4d{word-spacing:215.801588pt;}
.ws82{word-spacing:217.890743pt;}
.ws45{word-spacing:217.891074pt;}
.wsa3{word-spacing:219.108167pt;}
.wsc9{word-spacing:219.340322pt;}
.ws32{word-spacing:219.367467pt;}
.ws1a{word-spacing:220.256560pt;}
.ws67{word-spacing:220.541150pt;}
.ws58{word-spacing:220.804115pt;}
.ws7b{word-spacing:220.948069pt;}
.wsaf{word-spacing:221.527907pt;}
.ws31{word-spacing:224.690675pt;}
.wsf{word-spacing:225.732209pt;}
.ws64{word-spacing:226.446453pt;}
.ws79{word-spacing:226.863937pt;}
.ws42{word-spacing:227.067141pt;}
.ws8f{word-spacing:229.011739pt;}
.ws4b{word-spacing:229.299857pt;}
.ws56{word-spacing:230.186750pt;}
.wsb8{word-spacing:230.421891pt;}
.wsae{word-spacing:232.342025pt;}
.wsa9{word-spacing:234.616047pt;}
._3{margin-left:-5.416667pt;}
._2{margin-left:-4.333333pt;}
._4{margin-left:-3.333333pt;}
._1{margin-left:-1.330104pt;}
._0{width:17.585521pt;}
.fs2{font-size:26.666667pt;}
.fs1{font-size:29.866667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:7.962500pt;}
.y89{bottom:23.629167pt;}
.y2dd{bottom:44.092796pt;}
.y2e6{bottom:44.187997pt;}
.y120{bottom:44.676957pt;}
.y127{bottom:44.857514pt;}
.y1bf{bottom:45.030149pt;}
.y1bb{bottom:45.608659pt;}
.y2e4{bottom:45.656707pt;}
.y1b4{bottom:45.708035pt;}
.y8b{bottom:45.800036pt;}
.y1bd{bottom:46.088644pt;}
.y94{bottom:46.111550pt;}
.y92{bottom:46.335428pt;}
.y253{bottom:46.648293pt;}
.y129{bottom:47.272151pt;}
.y2e8{bottom:47.717269pt;}
.y96{bottom:47.877052pt;}
.y251{bottom:48.667151pt;}
.y12b{bottom:48.848619pt;}
.y248{bottom:49.029904pt;}
.y122{bottom:50.530874pt;}
.y24f{bottom:50.629243pt;}
.y8d{bottom:50.797870pt;}
.y24a{bottom:50.945851pt;}
.y2df{bottom:51.177267pt;}
.y1b6{bottom:51.204444pt;}
.y123{bottom:57.270457pt;}
.y8e{bottom:57.537454pt;}
.y24b{bottom:57.685434pt;}
.y2e0{bottom:57.916851pt;}
.y1b7{bottom:57.944027pt;}
.y124{bottom:61.431916pt;}
.y8f{bottom:61.698912pt;}
.y24c{bottom:61.846892pt;}
.y2e1{bottom:62.078309pt;}
.y1b8{bottom:62.105486pt;}
.y2e9{bottom:72.908436pt;}
.y252{bottom:75.028157pt;}
.y2de{bottom:76.737048pt;}
.y249{bottom:77.015770pt;}
.y121{bottom:77.043627pt;}
.y12c{bottom:77.082254pt;}
.y2e7{bottom:79.502892pt;}
.y95{bottom:80.515956pt;}
.y1be{bottom:80.892591pt;}
.y1c0{bottom:81.701014pt;}
.y1bc{bottom:82.400353pt;}
.y2e5{bottom:82.420632pt;}
.y1b5{bottom:82.576122pt;}
.y250{bottom:82.750704pt;}
.y125{bottom:84.968374pt;}
.y93{bottom:85.122498pt;}
.y90{bottom:85.235370pt;}
.y24d{bottom:85.383351pt;}
.y2e2{bottom:85.614767pt;}
.y1b9{bottom:85.641944pt;}
.y8c{bottom:87.342164pt;}
.y128{bottom:89.202948pt;}
.y254{bottom:89.531580pt;}
.y126{bottom:90.886161pt;}
.y91{bottom:91.393454pt;}
.y24e{bottom:91.674616pt;}
.y2e3{bottom:92.114308pt;}
.y1ba{bottom:92.165944pt;}
.y12a{bottom:94.546843pt;}
.y97{bottom:94.941949pt;}
.y112{bottom:113.371038pt;}
.y1a6{bottom:113.563504pt;}
.y2cf{bottom:113.646485pt;}
.y23a{bottom:113.697911pt;}
.y7b{bottom:113.730795pt;}
.y111{bottom:129.037705pt;}
.y1a5{bottom:129.230171pt;}
.y2ce{bottom:129.313152pt;}
.y239{bottom:129.364578pt;}
.y7a{bottom:129.397462pt;}
.y1a7{bottom:144.714574pt;}
.y11a{bottom:148.383951pt;}
.y113{bottom:148.450593pt;}
.y7c{bottom:149.612370pt;}
.y11c{bottom:149.935050pt;}
.y11e{bottom:150.521346pt;}
.y1b2{bottom:150.744427pt;}
.y2d0{bottom:151.063213pt;}
.y1b0{bottom:151.101131pt;}
.y1ae{bottom:151.540247pt;}
.y85{bottom:151.608676pt;}
.y23b{bottom:152.245120pt;}
.y83{bottom:152.271550pt;}
.y87{bottom:152.282086pt;}
.y244{bottom:152.797857pt;}
.y242{bottom:153.066665pt;}
.y2d7{bottom:153.956320pt;}
.y2d9{bottom:154.207827pt;}
.y2db{bottom:155.577408pt;}
.y115{bottom:155.939412pt;}
.y246{bottom:156.484223pt;}
.y7e{bottom:156.566166pt;}
.y23d{bottom:156.681262pt;}
.y1a9{bottom:156.805448pt;}
.y2d2{bottom:156.861252pt;}
.y116{bottom:162.678996pt;}
.y7f{bottom:163.305749pt;}
.y23e{bottom:163.420845pt;}
.y1aa{bottom:163.545032pt;}
.y2d3{bottom:163.600836pt;}
.y117{bottom:166.840454pt;}
.y80{bottom:167.467208pt;}
.y23f{bottom:167.582303pt;}
.y1ab{bottom:167.706490pt;}
.y2d4{bottom:167.762294pt;}
.y245{bottom:177.896062pt;}
.y2d8{bottom:179.023741pt;}
.y11b{bottom:181.231851pt;}
.y2da{bottom:182.174628pt;}
.y1a8{bottom:183.261574pt;}
.y114{bottom:183.445661pt;}
.y11f{bottom:184.688625pt;}
.y11d{bottom:184.693983pt;}
.y2d1{bottom:184.757350pt;}
.y2dc{bottom:185.145376pt;}
.y1b1{bottom:185.290589pt;}
.y86{bottom:186.494618pt;}
.y247{bottom:188.330026pt;}
.y7d{bottom:188.806996pt;}
.y1af{bottom:189.820060pt;}
.y118{bottom:190.376912pt;}
.y81{bottom:191.003666pt;}
.y1b3{bottom:191.041711pt;}
.y240{bottom:191.118762pt;}
.y1ac{bottom:191.242948pt;}
.y2d5{bottom:191.298752pt;}
.y88{bottom:192.991755pt;}
.y119{bottom:196.294699pt;}
.y82{bottom:197.161749pt;}
.y241{bottom:197.410027pt;}
.y1ad{bottom:197.766948pt;}
.y2d6{bottom:197.798293pt;}
.y84{bottom:198.001120pt;}
.y23c{bottom:198.017405pt;}
.y243{bottom:200.709935pt;}
.y103{bottom:218.779576pt;}
.y197{bottom:219.164508pt;}
.y2c0{bottom:219.330470pt;}
.y22b{bottom:219.433322pt;}
.y6c{bottom:219.499091pt;}
.y102{bottom:234.446243pt;}
.y196{bottom:234.831175pt;}
.y2bf{bottom:234.997137pt;}
.y22a{bottom:235.099989pt;}
.y6b{bottom:235.165758pt;}
.y10d{bottom:254.912895pt;}
.y19f{bottom:254.938280pt;}
.y1a1{bottom:255.730890pt;}
.y237{bottom:255.812411pt;}
.y78{bottom:256.170056pt;}
.y10b{bottom:256.191461pt;}
.y104{bottom:256.468789pt;}
.y2c8{bottom:256.938441pt;}
.y235{bottom:257.170624pt;}
.y10f{bottom:257.339964pt;}
.y22c{bottom:257.568357pt;}
.y6d{bottom:257.652248pt;}
.y2cc{bottom:257.714047pt;}
.y1a3{bottom:257.976893pt;}
.y233{bottom:257.987352pt;}
.y2c1{bottom:258.111228pt;}
.y74{bottom:258.509153pt;}
.y2ca{bottom:259.192030pt;}
.y76{bottom:259.551285pt;}
.y106{bottom:261.347951pt;}
.y198{bottom:261.966526pt;}
.y6f{bottom:262.334461pt;}
.y19a{bottom:262.406452pt;}
.y22e{bottom:262.416673pt;}
.y2c3{bottom:262.545237pt;}
.y107{bottom:268.087534pt;}
.y70{bottom:269.074045pt;}
.y19b{bottom:269.146036pt;}
.y22f{bottom:269.156256pt;}
.y2c4{bottom:269.284821pt;}
.y108{bottom:272.248992pt;}
.y71{bottom:273.235503pt;}
.y19c{bottom:273.307494pt;}
.y230{bottom:273.317714pt;}
.y2c5{bottom:273.446279pt;}
.y77{bottom:284.784712pt;}
.y238{bottom:286.049580pt;}
.y2cb{bottom:286.537096pt;}
.y10e{bottom:288.525736pt;}
.y1a0{bottom:289.167813pt;}
.y10c{bottom:289.628174pt;}
.y79{bottom:291.411647pt;}
.y1a2{bottom:291.488268pt;}
.y110{bottom:292.500459pt;}
.y105{bottom:293.286660pt;}
.y199{bottom:295.578538pt;}
.y109{bottom:295.785451pt;}
.y2c9{bottom:295.939667pt;}
.y72{bottom:296.771961pt;}
.y19d{bottom:296.843952pt;}
.y231{bottom:296.854173pt;}
.y2cd{bottom:296.963741pt;}
.y2c6{bottom:296.982737pt;}
.y236{bottom:297.305706pt;}
.y234{bottom:298.600279pt;}
.y1a4{bottom:299.606213pt;}
.y2c2{bottom:299.998542pt;}
.y22d{bottom:300.590466pt;}
.y10a{bottom:301.703237pt;}
.y6e{bottom:301.819270pt;}
.y75{bottom:302.801921pt;}
.y73{bottom:302.930045pt;}
.y232{bottom:303.145438pt;}
.y19e{bottom:303.367952pt;}
.y2c7{bottom:303.482278pt;}
.yf4{bottom:324.188115pt;}
.y188{bottom:324.765512pt;}
.y2b1{bottom:325.014455pt;}
.y21c{bottom:325.168733pt;}
.y5d{bottom:325.267386pt;}
.yf3{bottom:339.854781pt;}
.y187{bottom:340.432179pt;}
.y2b0{bottom:340.681122pt;}
.y21b{bottom:340.835400pt;}
.y5c{bottom:340.934053pt;}
.y69{bottom:360.458302pt;}
.y228{bottom:360.506530pt;}
.yfc{bottom:361.090684pt;}
.y21d{bottom:361.127511pt;}
.yfe{bottom:361.582290pt;}
.y226{bottom:361.779175pt;}
.y2bb{bottom:361.865630pt;}
.yf5{bottom:361.953353pt;}
.y224{bottom:362.268787pt;}
.y100{bottom:362.273849pt;}
.y2b9{bottom:362.660410pt;}
.y2b2{bottom:362.759070pt;}
.y192{bottom:362.959618pt;}
.y5e{bottom:363.098800pt;}
.y67{bottom:363.356947pt;}
.y190{bottom:363.908931pt;}
.y194{bottom:364.418061pt;}
.y2bd{bottom:364.806145pt;}
.y65{bottom:365.187219pt;}
.y189{bottom:365.766634pt;}
.yf7{bottom:366.756489pt;}
.y18b{bottom:368.007457pt;}
.y60{bottom:368.102757pt;}
.y21f{bottom:368.152084pt;}
.y2b4{bottom:368.229222pt;}
.yf8{bottom:373.496072pt;}
.y18c{bottom:374.747040pt;}
.y61{bottom:374.842340pt;}
.y220{bottom:374.891667pt;}
.y2b5{bottom:374.968806pt;}
.yf9{bottom:377.657530pt;}
.y18d{bottom:378.908498pt;}
.y62{bottom:379.003798pt;}
.y221{bottom:379.053125pt;}
.y2b6{bottom:379.130264pt;}
.y66{bottom:389.068489pt;}
.y2be{bottom:389.766071pt;}
.y227{bottom:391.472816pt;}
.y195{bottom:391.670962pt;}
.y18a{bottom:393.782184pt;}
.y6a{bottom:395.612471pt;}
.y229{bottom:396.006726pt;}
.y21e{bottom:396.101892pt;}
.yff{bottom:396.150717pt;}
.yfd{bottom:396.423319pt;}
.y225{bottom:396.911462pt;}
.y2b3{bottom:399.576936pt;}
.yfa{bottom:401.193989pt;}
.y18e{bottom:402.444957pt;}
.y63{bottom:402.540257pt;}
.y222{bottom:402.589584pt;}
.y2b7{bottom:402.666722pt;}
.y2bc{bottom:402.894273pt;}
.y2ba{bottom:403.041388pt;}
.y68{bottom:404.629487pt;}
.y193{bottom:404.662808pt;}
.y5f{bottom:405.658631pt;}
.yf6{bottom:405.708859pt;}
.y101{bottom:406.768750pt;}
.yfb{bottom:407.111775pt;}
.y191{bottom:408.611309pt;}
.y64{bottom:408.698340pt;}
.y223{bottom:408.880849pt;}
.y18f{bottom:408.968956pt;}
.y2b8{bottom:409.166263pt;}
.ye5{bottom:429.596653pt;}
.y179{bottom:430.366517pt;}
.y2a2{bottom:430.698440pt;}
.y20d{bottom:430.904144pt;}
.y4e{bottom:431.035682pt;}
.ye4{bottom:445.263320pt;}
.y178{bottom:446.033183pt;}
.y2a1{bottom:446.365107pt;}
.y20c{bottom:446.570811pt;}
.y4d{bottom:446.702349pt;}
.yf1{bottom:463.234427pt;}
.y2aa{bottom:463.402820pt;}
.ye6{bottom:463.462777pt;}
.y219{bottom:465.315384pt;}
.yed{bottom:465.540699pt;}
.yef{bottom:465.791471pt;}
.y215{bottom:466.072284pt;}
.y2a3{bottom:466.520427pt;}
.y217{bottom:466.555534pt;}
.y20e{bottom:467.239110pt;}
.y183{bottom:467.270959pt;}
.y185{bottom:467.295839pt;}
.y58{bottom:467.985335pt;}
.y181{bottom:468.484304pt;}
.y4f{bottom:469.260637pt;}
.y56{bottom:469.322634pt;}
.y2ae{bottom:469.513604pt;}
.y17a{bottom:469.766661pt;}
.y5a{bottom:470.848015pt;}
.ye8{bottom:472.165027pt;}
.y2ac{bottom:472.330562pt;}
.y17c{bottom:473.608461pt;}
.y51{bottom:473.871052pt;}
.y210{bottom:473.887495pt;}
.y2a5{bottom:473.913207pt;}
.ye9{bottom:478.904610pt;}
.y17d{bottom:480.348044pt;}
.y52{bottom:480.610636pt;}
.y211{bottom:480.627078pt;}
.y2a6{bottom:480.652791pt;}
.yea{bottom:483.066069pt;}
.y17e{bottom:484.509502pt;}
.y53{bottom:484.772094pt;}
.y212{bottom:484.788536pt;}
.y2a7{bottom:484.814249pt;}
.yf2{bottom:496.216998pt;}
.y2a4{bottom:496.243885pt;}
.ye7{bottom:496.269210pt;}
.y216{bottom:497.344022pt;}
.y5b{bottom:498.004659pt;}
.y2ab{bottom:498.581901pt;}
.yee{bottom:499.164747pt;}
.y20f{bottom:499.593608pt;}
.y2ad{bottom:499.644483pt;}
.y218{bottom:499.961772pt;}
.y21a{bottom:500.652089pt;}
.y184{bottom:501.398955pt;}
.y59{bottom:504.609566pt;}
.yf0{bottom:505.279050pt;}
.yeb{bottom:506.602527pt;}
.y17f{bottom:508.045961pt;}
.y54{bottom:508.308552pt;}
.y213{bottom:508.324995pt;}
.y2a8{bottom:508.350707pt;}
.y57{bottom:510.524032pt;}
.yec{bottom:512.520314pt;}
.y182{bottom:513.892643pt;}
.y186{bottom:514.463986pt;}
.y55{bottom:514.466636pt;}
.y180{bottom:514.569960pt;}
.y214{bottom:514.616260pt;}
.y2a9{bottom:514.850248pt;}
.y50{bottom:515.802146pt;}
.y17b{bottom:517.367154pt;}
.y2af{bottom:517.756077pt;}
.yd6{bottom:535.005191pt;}
.y16a{bottom:535.967521pt;}
.y293{bottom:536.382425pt;}
.y1fe{bottom:536.639555pt;}
.y3f{bottom:536.803977pt;}
.yd5{bottom:550.671858pt;}
.y169{bottom:551.634187pt;}
.y292{bottom:552.049092pt;}
.y1fd{bottom:552.306222pt;}
.y3e{bottom:552.470644pt;}
.y40{bottom:567.955678pt;}
.y29f{bottom:569.191083pt;}
.y176{bottom:569.248888pt;}
.y16b{bottom:570.311091pt;}
.ye0{bottom:570.524507pt;}
.y172{bottom:571.036837pt;}
.yd7{bottom:571.926132pt;}
.ye2{bottom:572.109437pt;}
.y174{bottom:572.556252pt;}
.yde{bottom:572.997988pt;}
.y29d{bottom:573.924808pt;}
.y49{bottom:574.489357pt;}
.y47{bottom:574.622777pt;}
.y1ff{bottom:575.080764pt;}
.y4b{bottom:575.188986pt;}
.y208{bottom:575.251770pt;}
.y29b{bottom:575.950203pt;}
.y294{bottom:575.999344pt;}
.y206{bottom:576.577242pt;}
.yd9{bottom:577.573565pt;}
.y20a{bottom:577.579806pt;}
.y16d{bottom:579.209465pt;}
.y296{bottom:579.597193pt;}
.y201{bottom:579.622905pt;}
.y42{bottom:579.639348pt;}
.yda{bottom:584.313149pt;}
.y16e{bottom:585.949048pt;}
.y297{bottom:586.336776pt;}
.y202{bottom:586.362489pt;}
.y43{bottom:586.378931pt;}
.ydb{bottom:588.474607pt;}
.y16f{bottom:590.110507pt;}
.y298{bottom:590.498234pt;}
.y203{bottom:590.523947pt;}
.y44{bottom:590.540389pt;}
.y48{bottom:599.859552pt;}
.y173{bottom:600.897849pt;}
.ye1{bottom:601.059083pt;}
.y177{bottom:601.823139pt;}
.y207{bottom:602.309419pt;}
.y2a0{bottom:603.475697pt;}
.y20b{bottom:603.626290pt;}
.y41{bottom:603.890167pt;}
.yd8{bottom:604.339502pt;}
.y16c{bottom:604.390276pt;}
.ye3{bottom:608.494629pt;}
.ydf{bottom:608.509992pt;}
.y29e{bottom:609.474792pt;}
.ydc{bottom:612.011065pt;}
.y170{bottom:613.646965pt;}
.y200{bottom:613.819255pt;}
.y299{bottom:614.034693pt;}
.y204{bottom:614.060405pt;}
.y45{bottom:614.076848pt;}
.y209{bottom:616.714101pt;}
.y175{bottom:617.884825pt;}
.ydd{bottom:617.928852pt;}
.y171{bottom:620.170964pt;}
.y46{bottom:620.234931pt;}
.y205{bottom:620.351671pt;}
.y29a{bottom:620.534233pt;}
.y4a{bottom:620.554969pt;}
.y4c{bottom:620.737554pt;}
.y295{bottom:622.154208pt;}
.y29c{bottom:623.218697pt;}
.yc7{bottom:640.413729pt;}
.y15b{bottom:641.568525pt;}
.y284{bottom:642.066410pt;}
.y1ef{bottom:642.374966pt;}
.y30{bottom:642.572273pt;}
.yc6{bottom:656.080396pt;}
.y15a{bottom:657.235192pt;}
.y283{bottom:657.733077pt;}
.y1ee{bottom:658.041632pt;}
.y2f{bottom:658.238939pt;}
.y3a{bottom:672.002703pt;}
.y163{bottom:673.481871pt;}
.y285{bottom:674.144942pt;}
.y167{bottom:675.657543pt;}
.y38{bottom:675.897627pt;}
.y165{bottom:676.498125pt;}
.y15c{bottom:677.043160pt;}
.yd1{bottom:677.589652pt;}
.ycf{bottom:677.611635pt;}
.y1f9{bottom:678.787723pt;}
.yd3{bottom:678.854283pt;}
.yc8{bottom:679.946142pt;}
.y31{bottom:680.236410pt;}
.y3c{bottom:680.246947pt;}
.y290{bottom:680.525606pt;}
.y28c{bottom:680.620256pt;}
.y1f7{bottom:681.142772pt;}
.y28e{bottom:681.334858pt;}
.y1f0{bottom:681.812763pt;}
.y1fb{bottom:682.368376pt;}
.yca{bottom:682.982104pt;}
.y15e{bottom:684.810469pt;}
.y287{bottom:685.281178pt;}
.y1f2{bottom:685.358316pt;}
.y33{bottom:685.407643pt;}
.ycb{bottom:689.721687pt;}
.y15f{bottom:691.550052pt;}
.y288{bottom:692.020761pt;}
.y1f3{bottom:692.097900pt;}
.y34{bottom:692.147227pt;}
.ycc{bottom:693.883145pt;}
.y160{bottom:695.711511pt;}
.y289{bottom:696.182219pt;}
.y1f4{bottom:696.259358pt;}
.y35{bottom:696.308685pt;}
.y166{bottom:705.035207pt;}
.y168{bottom:705.810761pt;}
.y164{bottom:706.120878pt;}
.y1fc{bottom:707.574065pt;}
.y28f{bottom:708.151025pt;}
.y1fa{bottom:708.327025pt;}
.y15d{bottom:708.578366pt;}
.yd0{bottom:708.803828pt;}
.yd2{bottom:710.450582pt;}
.y3b{bottom:714.166891pt;}
.y39{bottom:714.908440pt;}
.y286{bottom:716.001564pt;}
.ycd{bottom:717.419604pt;}
.y291{bottom:718.717794pt;}
.y161{bottom:719.247969pt;}
.y28a{bottom:719.718678pt;}
.y1f5{bottom:719.795816pt;}
.y36{bottom:719.845143pt;}
.y1f8{bottom:720.446321pt;}
.y32{bottom:721.935820pt;}
.yd4{bottom:722.851712pt;}
.yce{bottom:723.337390pt;}
.y1f1{bottom:724.278147pt;}
.y3d{bottom:725.613755pt;}
.yc9{bottom:725.740871pt;}
.y162{bottom:725.771969pt;}
.y28d{bottom:725.923481pt;}
.y37{bottom:726.003227pt;}
.y1f6{bottom:726.087082pt;}
.y28b{bottom:726.218218pt;}
.yb8{bottom:745.822268pt;}
.y14c{bottom:747.169529pt;}
.y275{bottom:747.750395pt;}
.y1e0{bottom:748.110377pt;}
.y20{bottom:748.340568pt;}
.yb7{bottom:761.488934pt;}
.y14b{bottom:762.836196pt;}
.y274{bottom:763.417062pt;}
.y1df{bottom:763.777043pt;}
.y1f{bottom:764.007235pt;}
.y2d{bottom:780.257439pt;}
.y281{bottom:780.623364pt;}
.yc2{bottom:782.735403pt;}
.yc0{bottom:783.191179pt;}
.yc4{bottom:783.430718pt;}
.y14d{bottom:783.543487pt;}
.y2b{bottom:783.586937pt;}
.y158{bottom:784.031128pt;}
.y276{bottom:784.168415pt;}
.yb9{bottom:784.763978pt;}
.y154{bottom:785.112361pt;}
.y27f{bottom:785.140569pt;}
.y29{bottom:785.501741pt;}
.y1ea{bottom:785.526658pt;}
.y1e8{bottom:785.822537pt;}
.y1e1{bottom:785.966936pt;}
.y27d{bottom:786.730524pt;}
.y156{bottom:787.487317pt;}
.y1ec{bottom:788.147466pt;}
.ybb{bottom:788.390642pt;}
.y14f{bottom:790.411473pt;}
.y278{bottom:790.965163pt;}
.y1e3{bottom:791.093727pt;}
.y24{bottom:791.175939pt;}
.y21{bottom:794.460252pt;}
.ybc{bottom:795.130225pt;}
.y150{bottom:797.151056pt;}
.y279{bottom:797.704746pt;}
.y1e4{bottom:797.833311pt;}
.y25{bottom:797.915522pt;}
.ybd{bottom:799.291683pt;}
.y151{bottom:801.312515pt;}
.y27a{bottom:801.866204pt;}
.y1e5{bottom:801.994769pt;}
.y26{bottom:802.076980pt;}
.y277{bottom:812.113657pt;}
.y2e{bottom:812.451496pt;}
.y1ed{bottom:812.716268pt;}
.y22{bottom:812.965346pt;}
.y282{bottom:813.284264pt;}
.y14e{bottom:814.752212pt;}
.yc3{bottom:814.774916pt;}
.y159{bottom:815.076955pt;}
.yc1{bottom:818.272382pt;}
.yc5{bottom:820.368729pt;}
.ybe{bottom:822.828142pt;}
.y155{bottom:823.290596pt;}
.y280{bottom:823.816459pt;}
.y1eb{bottom:824.314029pt;}
.y152{bottom:824.848973pt;}
.y27b{bottom:825.402663pt;}
.y1e9{bottom:825.486507pt;}
.y1e6{bottom:825.531227pt;}
.y27{bottom:825.613439pt;}
.ybf{bottom:828.745928pt;}
.y2c{bottom:829.412885pt;}
.y2a{bottom:829.679110pt;}
.yba{bottom:830.072984pt;}
.y153{bottom:831.372973pt;}
.y23{bottom:831.470439pt;}
.y157{bottom:831.618246pt;}
.y28{bottom:831.771522pt;}
.y1e7{bottom:831.822493pt;}
.y27c{bottom:831.902203pt;}
.y1e2{bottom:831.935635pt;}
.y27e{bottom:832.299155pt;}
.y2fa{bottom:843.570820pt;}
.ya9{bottom:851.230806pt;}
.y13d{bottom:852.770533pt;}
.y265{bottom:853.434380pt;}
.y1d1{bottom:853.845788pt;}
.y11{bottom:854.108864pt;}
.y2f9{bottom:859.237487pt;}
.ya8{bottom:866.897473pt;}
.y13c{bottom:868.437200pt;}
.y264{bottom:869.101047pt;}
.y1d0{bottom:869.512454pt;}
.y10{bottom:869.775530pt;}
.y2fb{bottom:882.342171pt;}
.y13e{bottom:884.470244pt;}
.y1b{bottom:885.806178pt;}
.yb1{bottom:887.153057pt;}
.y272{bottom:887.289383pt;}
.y12{bottom:887.587580pt;}
.yaa{bottom:888.271879pt;}
.y147{bottom:888.301057pt;}
.y145{bottom:888.349403pt;}
.y1db{bottom:888.631875pt;}
.y270{bottom:888.796783pt;}
.yb3{bottom:888.997048pt;}
.y19{bottom:889.089186pt;}
.y2fd{bottom:890.017173pt;}
.yb5{bottom:890.137003pt;}
.y1d{bottom:891.110836pt;}
.y1d9{bottom:891.304904pt;}
.y1dd{bottom:891.357634pt;}
.y266{bottom:891.868657pt;}
.y149{bottom:892.133154pt;}
.yac{bottom:893.799180pt;}
.y1d2{bottom:894.208560pt;}
.y140{bottom:896.012477pt;}
.y268{bottom:896.649148pt;}
.y2fe{bottom:896.756757pt;}
.y1d4{bottom:896.829138pt;}
.y14{bottom:896.944234pt;}
.y26d{bottom:898.480625pt;}
.yad{bottom:900.538763pt;}
.y2ff{bottom:900.918215pt;}
.y141{bottom:902.752061pt;}
.y269{bottom:903.388731pt;}
.y1d5{bottom:903.568722pt;}
.y15{bottom:903.683817pt;}
.yae{bottom:904.700222pt;}
.y142{bottom:906.913519pt;}
.y26a{bottom:907.550189pt;}
.y1d6{bottom:907.730180pt;}
.y16{bottom:907.845276pt;}
.y26e{bottom:914.616833pt;}
.y13f{bottom:914.830616pt;}
.y146{bottom:917.638479pt;}
.y148{bottom:918.751056pt;}
.yb2{bottom:919.532383pt;}
.y13{bottom:920.793445pt;}
.y2fc{bottom:922.343040pt;}
.y1d3{bottom:923.289520pt;}
.y1dc{bottom:923.732620pt;}
.y300{bottom:924.454673pt;}
.y1c{bottom:925.799387pt;}
.y273{bottom:926.073448pt;}
.y1da{bottom:926.170880pt;}
.y1de{bottom:926.786202pt;}
.yab{bottom:927.079840pt;}
.yaf{bottom:928.236680pt;}
.y271{bottom:928.350434pt;}
.yb4{bottom:928.818335pt;}
.y1e{bottom:929.950537pt;}
.y143{bottom:930.449977pt;}
.y26f{bottom:930.753041pt;}
.y26b{bottom:931.086648pt;}
.y1d7{bottom:931.266638pt;}
.y17{bottom:931.381734pt;}
.y1a{bottom:933.661903pt;}
.y267{bottom:933.757507pt;}
.y301{bottom:933.862641pt;}
.yb0{bottom:934.154467pt;}
.yb6{bottom:934.158413pt;}
.y144{bottom:936.973977pt;}
.y14a{bottom:937.440451pt;}
.y18{bottom:937.539817pt;}
.y1d8{bottom:937.557904pt;}
.y26c{bottom:937.586188pt;}
.y2eb{bottom:952.655193pt;}
.y9a{bottom:956.639344pt;}
.y12e{bottom:958.371537pt;}
.y256{bottom:959.118365pt;}
.y1c2{bottom:959.581199pt;}
.y2{bottom:959.877159pt;}
.y2ea{bottom:968.321860pt;}
.y99{bottom:972.306011pt;}
.y12d{bottom:974.038204pt;}
.y255{bottom:974.785032pt;}
.y1c1{bottom:975.247865pt;}
.y1{bottom:975.543826pt;}
.y2f7{bottom:992.046262pt;}
.ye{bottom:992.348643pt;}
.y2f3{bottom:992.728546pt;}
.y1ce{bottom:993.035817pt;}
.ya6{bottom:993.146972pt;}
.y2f5{bottom:994.007009pt;}
.ya4{bottom:994.007793pt;}
.y2ec{bottom:994.112311pt;}
.y1cc{bottom:994.357852pt;}
.y13a{bottom:994.970657pt;}
.ya2{bottom:994.994785pt;}
.ya{bottom:995.315253pt;}
.y1ca{bottom:995.876397pt;}
.y3{bottom:996.330576pt;}
.y136{bottom:996.964225pt;}
.y12f{bottom:997.047691pt;}
.y9b{bottom:997.205794pt;}
.y260{bottom:997.482261pt;}
.yc{bottom:997.562357pt;}
.y1c3{bottom:997.581427pt;}
.y138{bottom:997.792960pt;}
.y257{bottom:998.276328pt;}
.y262{bottom:998.841694pt;}
.y25e{bottom:999.081714pt;}
.y2ee{bottom:999.101547pt;}
.y9d{bottom:999.207718pt;}
.y131{bottom:1001.613481pt;}
.y259{bottom:1002.333133pt;}
.y1c5{bottom:1002.564549pt;}
.y5{bottom:1002.712530pt;}
.y2ef{bottom:1005.841130pt;}
.y9e{bottom:1005.947302pt;}
.y132{bottom:1008.353065pt;}
.y25a{bottom:1009.072716pt;}
.y1c6{bottom:1009.304133pt;}
.y6{bottom:1009.452113pt;}
.y2f0{bottom:1010.002588pt;}
.y9f{bottom:1010.108760pt;}
.y133{bottom:1012.514523pt;}
.y25b{bottom:1013.234174pt;}
.y1c7{bottom:1013.465591pt;}
.y7{bottom:1013.613571pt;}
.y9c{bottom:1022.036676pt;}
.y2f6{bottom:1023.105207pt;}
.y2ed{bottom:1023.468091pt;}
.y263{bottom:1023.789023pt;}
.yf{bottom:1024.234144pt;}
.y2f8{bottom:1024.315403pt;}
.y25f{bottom:1024.553430pt;}
.y1cf{bottom:1026.207933pt;}
.y4{bottom:1026.452035pt;}
.ya7{bottom:1028.415523pt;}
.y1cb{bottom:1029.237433pt;}
.y1cd{bottom:1029.318549pt;}
.y13b{bottom:1029.982769pt;}
.yb{bottom:1031.126648pt;}
.yd{bottom:1031.640219pt;}
.y2f4{bottom:1031.958853pt;}
.y1c4{bottom:1033.299610pt;}
.y2f1{bottom:1033.539047pt;}
.ya0{bottom:1033.645218pt;}
.ya5{bottom:1035.564582pt;}
.y134{bottom:1036.050981pt;}
.y25c{bottom:1036.770633pt;}
.y1c8{bottom:1037.002049pt;}
.y8{bottom:1037.150030pt;}
.y137{bottom:1038.507872pt;}
.ya1{bottom:1039.563005pt;}
.y130{bottom:1041.385435pt;}
.y135{bottom:1042.574981pt;}
.y261{bottom:1042.666439pt;}
.y258{bottom:1042.881908pt;}
.y2f2{bottom:1042.947015pt;}
.ya3{bottom:1042.981201pt;}
.y25d{bottom:1043.270173pt;}
.y1c9{bottom:1043.293315pt;}
.y9{bottom:1043.308113pt;}
.y139{bottom:1043.574894pt;}
.y98{bottom:1085.607700pt;}
.h3{height:24.773333pt;}
.h2{height:39.637333pt;}
.h4{height:69.365333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:4.213333pt;}
.x5{left:11.005000pt;}
.x57{left:13.442500pt;}
.x4{left:20.234167pt;}
.x99{left:40.306970pt;}
.x5b{left:41.585453pt;}
.xa7{left:46.344168pt;}
.x4b{left:47.890466pt;}
.x9e{left:48.992555pt;}
.x9b{left:50.037780pt;}
.x70{left:51.311734pt;}
.x6{left:53.868580pt;}
.x54{left:57.257507pt;}
.x19{left:58.577748pt;}
.x74{left:60.381271pt;}
.x76{left:62.313791pt;}
.x1f{left:63.284897pt;}
.x26{left:64.469526pt;}
.x22{left:66.373032pt;}
.x56{left:67.916133pt;}
.xa3{left:70.279900pt;}
.x46{left:71.920993pt;}
.x32{left:73.684484pt;}
.x67{left:75.519646pt;}
.x2e{left:76.720053pt;}
.x92{left:80.627371pt;}
.x7a{left:81.801762pt;}
.x49{left:82.968460pt;}
.xad{left:84.523079pt;}
.x36{left:85.437124pt;}
.x2a{left:86.457638pt;}
.x1{left:92.238810pt;}
.xaa{left:93.729353pt;}
.x7b{left:97.664352pt;}
.x3b{left:98.823774pt;}
.x2{left:99.765800pt;}
.xae{left:100.758048pt;}
.x8d{left:104.467098pt;}
.x7c{left:106.928935pt;}
.x3c{left:108.088357pt;}
.x3{left:109.030383pt;}
.xaf{left:110.022632pt;}
.x7f{left:201.075456pt;}
.xb{left:203.039716pt;}
.x8b{left:207.867122pt;}
.x1c{left:209.831383pt;}
.x3a{left:211.345417pt;}
.xa{left:212.268883pt;}
.x8a{left:217.096289pt;}
.x1b{left:219.060550pt;}
.x2b{left:237.349848pt;}
.x47{left:239.713957pt;}
.xab{left:240.667396pt;}
.x1a{left:243.071144pt;}
.x6d{left:245.206695pt;}
.x33{left:247.275540pt;}
.x4f{left:249.783234pt;}
.x3d{left:251.077949pt;}
.xc{left:252.694963pt;}
.x71{left:258.238156pt;}
.x4c{left:259.654844pt;}
.x7{left:261.344000pt;}
.x51{left:265.283449pt;}
.x97{left:266.448949pt;}
.x37{left:267.377332pt;}
.xa2{left:268.495713pt;}
.x8f{left:269.896718pt;}
.x27{left:272.413519pt;}
.x7d{left:273.918913pt;}
.x89{left:275.583236pt;}
.x68{left:276.694945pt;}
.x6e{left:278.103706pt;}
.xa4{left:279.841835pt;}
.xa0{left:281.843208pt;}
.x23{left:283.945820pt;}
.x5c{left:286.708282pt;}
.x77{left:288.839994pt;}
.x79{left:290.306043pt;}
.x7e{left:294.526474pt;}
.x2f{left:295.801289pt;}
.x5f{left:297.085513pt;}
.x8{left:298.592183pt;}
.x59{left:303.480645pt;}
.x60{left:306.350097pt;}
.x9{left:307.856766pt;}
.x94{left:397.937578pt;}
.x6a{left:401.177862pt;}
.x82{left:404.729244pt;}
.x93{left:407.166744pt;}
.x11{left:408.657766pt;}
.x40{left:409.646326pt;}
.xac{left:411.239351pt;}
.x81{left:413.958411pt;}
.xb0{left:416.867880pt;}
.x10{left:417.886932pt;}
.x3f{left:418.875492pt;}
.x8e{left:433.654103pt;}
.x61{left:438.322146pt;}
.x2c{left:439.798471pt;}
.x5d{left:443.112133pt;}
.x3e{left:444.677254pt;}
.x28{left:445.904412pt;}
.x83{left:447.382680pt;}
.x4d{left:449.191923pt;}
.x75{left:450.457510pt;}
.x12{left:451.521346pt;}
.x41{left:452.415703pt;}
.xa5{left:453.630565pt;}
.x52{left:455.734872pt;}
.x90{left:456.909769pt;}
.x9c{left:459.297519pt;}
.x35{left:462.139712pt;}
.x9f{left:463.370793pt;}
.x20{left:466.701531pt;}
.x72{left:469.363088pt;}
.xd{left:470.531288pt;}
.x24{left:473.292716pt;}
.x78{left:474.877664pt;}
.x38{left:476.948390pt;}
.x30{left:482.996707pt;}
.x34{left:485.451763pt;}
.x1d{left:487.513125pt;}
.x50{left:489.487414pt;}
.x98{left:490.700766pt;}
.x69{left:491.726522pt;}
.x62{left:495.567778pt;}
.xe{left:497.418565pt;}
.x80{left:500.653179pt;}
.x63{left:504.832361pt;}
.xf{left:506.683149pt;}
.x96{left:594.799700pt;}
.x66{left:599.660127pt;}
.x87{left:601.591367pt;}
.x95{left:604.028867pt;}
.x6c{left:606.451793pt;}
.x17{left:607.484149pt;}
.x44{left:608.966988pt;}
.x86{left:610.820533pt;}
.x6b{left:615.680960pt;}
.x16{left:616.713315pt;}
.x43{left:618.196155pt;}
.x9a{left:631.944377pt;}
.x53{left:639.346811pt;}
.x5a{left:640.811876pt;}
.x39{left:643.354872pt;}
.x88{left:644.244802pt;}
.x4a{left:645.480677pt;}
.xa8{left:646.723413pt;}
.x29{left:648.776117pt;}
.x18{left:650.347729pt;}
.x45{left:651.736366pt;}
.x4e{left:653.012362pt;}
.xa1{left:654.310774pt;}
.x2d{left:656.104227pt;}
.x55{left:658.927476pt;}
.x6f{left:660.594193pt;}
.x9d{left:662.255317pt;}
.xa9{left:664.323414pt;}
.x91{left:665.609314pt;}
.x8c{left:667.968734pt;}
.x13{left:669.533816pt;}
.x25{left:671.764598pt;}
.xa6{left:674.252222pt;}
.x21{left:676.051726pt;}
.x48{left:677.296851pt;}
.x31{left:680.616089pt;}
.x5e{left:683.051602pt;}
.x64{left:684.638259pt;}
.x1e{left:686.409691pt;}
.x84{left:688.250718pt;}
.x73{left:692.609497pt;}
.x42{left:694.183646pt;}
.x14{left:696.244948pt;}
.x85{left:697.515302pt;}
.x65{left:703.314626pt;}
.x15{left:705.509532pt;}
}




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