chore: reorganize into polyglot monorepo (workshop)
- Move bigmind/ -> mcp/bigmind/ - Move webscraper/ -> mcp/webscraper/ - Move mss-failsafe/ -> java/mss-failsafe/ - Move Wellmann-Shop/ -> java/wellmann-shop/ (normalize to kebab-case) - Add .roo/ IDE config files to tracking - Add plans/REPO_STRATEGY.md (monorepo strategy document) - Expand .gitignore: Java/Maven, Node/TS, coverage, uv.lock - Rewrite README.md as navigation index - Update .roo/mcp.json webscraper path to mcp/webscraper/
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<faces-config
|
||||
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd"
|
||||
version="2.3">
|
||||
<managed-bean>
|
||||
<managed-bean-name>loginBean</managed-bean-name>
|
||||
<managed-bean-class>httpauthenticationmechanism.LoginBean</managed-bean-class>
|
||||
<managed-bean-scope>request</managed-bean-scope>
|
||||
</managed-bean>
|
||||
</faces-config>
|
||||
@@ -0,0 +1,6 @@
|
||||
<jboss-web xmlns="http://www.jboss.com/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/j2ee/schema/jboss-web_10_0.xsd"
|
||||
version="10.0">
|
||||
<security-domain>wellmannsec</security-domain>
|
||||
</jboss-web>
|
||||
@@ -0,0 +1,6 @@
|
||||
<jboss-web xmlns="http://www.jboss.com/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.jboss.com/xml/ns/javaee http://www.jboss.org/j2ee/schema/jboss-web_10_0.xsd"
|
||||
version="10.0">
|
||||
<security-domain>wellmannsec</security-domain>
|
||||
</jboss-web>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<web-app
|
||||
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
|
||||
version="4.0">
|
||||
|
||||
<security-constraint>
|
||||
<web-resource-collection>
|
||||
<web-resource-name>authorise</web-resource-name>
|
||||
<url-pattern>/ressources/users/*</url-pattern>
|
||||
<http-method>GET</http-method>
|
||||
<http-method>POST</http-method>
|
||||
<http-method>TRACE</http-method>
|
||||
<http-method>HEAD</http-method>
|
||||
<http-method>DELETE</http-method>
|
||||
<http-method>CONNECT</http-method>
|
||||
<http-method>OPTIONS</http-method>
|
||||
<http-method>PUT</http-method>
|
||||
</web-resource-collection>
|
||||
|
||||
<auth-constraint>
|
||||
<role-name>ADMIN</role-name>
|
||||
<role-name>MANAGER</role-name>
|
||||
<role-name>SUPER_USER</role-name>
|
||||
<role-name>USER</role-name>
|
||||
</auth-constraint>
|
||||
|
||||
<user-data-constraint>
|
||||
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
|
||||
</user-data-constraint>
|
||||
</security-constraint>
|
||||
|
||||
<security-role>
|
||||
<description>Normal User which got invited</description>
|
||||
<role-name>USER</role-name>
|
||||
</security-role>
|
||||
<security-role>
|
||||
<description>User that can invite other user from the same domain</description>
|
||||
<role-name>SUPER_USER</role-name>
|
||||
</security-role>
|
||||
<security-role>
|
||||
<description>User that controlls the process in the company</description>
|
||||
<role-name>MANAGER></role-name>
|
||||
</security-role>
|
||||
<security-role>
|
||||
<description>Admin user who can change entries, invite new domains and more..</description>
|
||||
<role-name>ADMIN</role-name>
|
||||
</security-role>
|
||||
|
||||
<login-config>
|
||||
<auth-method>FORM</auth-method>
|
||||
<realm-name>wellmannsec</realm-name>
|
||||
<form-login-config>
|
||||
<form-login-page>/login.xhtml</form-login-page>
|
||||
<form-error-page>/error.xhtml</form-error-page>
|
||||
</form-login-config>
|
||||
</login-config>
|
||||
|
||||
|
||||
<context-param>
|
||||
<param-name>javax.faces.PROJECT_STAGE</param-name>
|
||||
<param-value>Development</param-value>
|
||||
</context-param>
|
||||
<context-param>
|
||||
<param-name>primefaces.THEME</param-name>
|
||||
<param-value>#{themeController.theme}</param-value>
|
||||
</context-param>
|
||||
<servlet>
|
||||
<servlet-name>Faces Servlet</servlet-name>
|
||||
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
|
||||
<load-on-startup>1</load-on-startup>
|
||||
</servlet>
|
||||
<servlet-mapping>
|
||||
<servlet-name>Faces Servlet</servlet-name>
|
||||
<url-pattern>*.xhtml</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
<session-config>
|
||||
<session-timeout>
|
||||
30
|
||||
</session-timeout>
|
||||
<cookie-config>
|
||||
<http-only>true</http-only> <!-- Prevent client side scripting from accessing/manipulating session cookie. -->
|
||||
</cookie-config>
|
||||
<tracking-mode>COOKIE</tracking-mode> <!-- This disables URL rewriting. -->
|
||||
</session-config>
|
||||
<welcome-file-list>
|
||||
<welcome-file>/login.xhtml</welcome-file>
|
||||
</welcome-file-list>
|
||||
</web-app>
|
||||
@@ -0,0 +1,31 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
||||
xmlns:p="http://primefaces.org/ui"
|
||||
xmlns:f="http://xmlns.jcp.org/jsf/core">
|
||||
<h:head>
|
||||
<title>Login Testpage</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h:form>
|
||||
ERROR
|
||||
<p:messages id="messages" globalOnly="true"/>
|
||||
|
||||
<p:panel header="Login Wellmann-Shop example" style="width: 350px; margin: auto; margin-top: 100px;">
|
||||
<h:panelGrid columns="2" cellpadding="5">
|
||||
<p:outputLabel for="username" value="Username:" />
|
||||
<p:inputText id="username" value="#{customerController.username}" required="true" label="username" />
|
||||
|
||||
<p:outputLabel for="password" value="Password:" />
|
||||
<p:password id="password" value="#{customerController.password}" required="true" label="password" />
|
||||
|
||||
<f:facet name="footer">
|
||||
<p:commandButton value="Login" action="#{customerController.login()}" ajax="false" />
|
||||
<p:link value="Registrieren" outcome="index.xhtml" style="text-align: right; color: blue; margin-left: 20px" />
|
||||
</f:facet>
|
||||
</h:panelGrid>
|
||||
</p:panel>
|
||||
</h:form>
|
||||
|
||||
</h:body>
|
||||
</html>
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Start Page</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello World!</h1>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
||||
xmlns:p="http://primefaces.org/ui"
|
||||
xmlns:f="http://xmlns.jcp.org/jsf/core">
|
||||
<h:head>
|
||||
<title>Login Testpage</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h:form>
|
||||
<p:messages id="messages" globalOnly="true"/>
|
||||
|
||||
<p:panel header="Login Wellmann-Shop example" style="width: 350px; margin: auto; margin-top: 100px;">
|
||||
<h:panelGrid columns="2" cellpadding="5">
|
||||
<p:outputLabel for="j_username" value="Username:" />
|
||||
<p:inputText id="j_username" value="#{customerController.username}" required="true" label="username" />
|
||||
|
||||
<p:outputLabel for="j_password" value="Password:" />
|
||||
<p:password id="j_password" value="#{customerController.password}" required="true" label="password" />
|
||||
|
||||
<f:facet name="footer">
|
||||
<p:commandButton value="Login" action="#{customerController.login()}" ajax="false" />
|
||||
<p:link value="Registrieren" outcome="resources/users/welcome.xhtml" style="text-align: right; color: blue; margin-left: 20px" />
|
||||
</f:facet>
|
||||
</h:panelGrid>
|
||||
</p:panel>
|
||||
</h:form>
|
||||
|
||||
</h:body>
|
||||
</html>
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
||||
xmlns:p="http://primefaces.org/ui"
|
||||
xmlns:f="http://xmlns.jcp.org/jsf/core">
|
||||
<h:head>
|
||||
<title>Login Testpage</title>
|
||||
</h:head>
|
||||
<h:body>
|
||||
<h:form id="loginForm">
|
||||
<p:messages id="messages" globalOnly="true"/>
|
||||
|
||||
<p:panel header="Login Wellmann-Shop example" style="width: 450px; margin: auto; margin-top: 100px;">
|
||||
<h:panelGrid columns="2" cellpadding="5">
|
||||
<p:outputLabel for="username" value="Username:" />
|
||||
<p:inputText id="username" value="#{loginBean.username}" required="true" label="username" />
|
||||
|
||||
<p:outputLabel for="password" value="Password:" />
|
||||
<p:password id="password" value="#{loginBean.password}" required="true" label="password" />
|
||||
|
||||
<f:facet name="footer">
|
||||
<p:commandButton value="Login" action="#{loginBean.login()}" ajax="false" update="messages"/>
|
||||
<p:link value="Registrieren" outcome="index.xhtml" style="text-align: right; color: blue; margin-left: 20px" />
|
||||
</f:facet>
|
||||
|
||||
<p:commandButton value="Demo" action="#{customerController.demo()}" ajax="false"/>
|
||||
<p:link value="Demo" outcome="/resources/manager/welcome.xhtml" style="text-align: right; color: blue; margin-left: 20px" />
|
||||
</h:panelGrid>
|
||||
</p:panel>
|
||||
</h:form>
|
||||
|
||||
</h:body>
|
||||
</html>
|
||||
|
||||
@@ -0,0 +1,104 @@
|
||||
.centeredMenuBar.ui-menubar {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.centeredMenuBar .ui-menu-list {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.stickyMenubar{
|
||||
text-align: center;
|
||||
width: 1300px;
|
||||
border: none;
|
||||
z-index: 9000
|
||||
}
|
||||
|
||||
.ui-sticky {
|
||||
width: 1300px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@media (max-width: 960px) {
|
||||
.ui-sticky {
|
||||
top: 0px !important;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
.panel {
|
||||
text-align: center;
|
||||
border: none;
|
||||
max-width: 1300px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.ui-noborder{
|
||||
padding: 0px 0px
|
||||
}
|
||||
|
||||
.ui-panelgrid td {
|
||||
padding: 0px 0px ;
|
||||
}
|
||||
|
||||
.tile:hover {
|
||||
border-color: #009999;
|
||||
border-style: solid;
|
||||
cursor: pointer;
|
||||
color: #009999;
|
||||
}
|
||||
|
||||
.tile:active{
|
||||
box-shadow: 0px 0px 0px silver inset;
|
||||
}
|
||||
|
||||
.tile{
|
||||
border: 2px solid silver;
|
||||
border-radius: 10px;
|
||||
box-shadow: 10px 10px 15px silver;
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
transition: opacity 2s ease, border-color 1s ease, color 1s ease;
|
||||
}
|
||||
|
||||
.tileCreator {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
.panelCreator{
|
||||
border: 2px solid silver;
|
||||
border-radius: 10px;
|
||||
box-shadow: 10px 10px 15px silver;
|
||||
-moz-border-radius: 10px;
|
||||
-webkit-border-radius: 10px;
|
||||
float: top;
|
||||
}
|
||||
|
||||
.picture {
|
||||
border-radius: 10px;
|
||||
padding: 0px 0px 0px 0px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.picture:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.creatorPicture{
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.productInfo {
|
||||
border-style: solid;
|
||||
border-color: silver;
|
||||
border-left: 2px;
|
||||
border-bottom: 0px;
|
||||
border-right: 0px;
|
||||
border-top: 0px;
|
||||
height: 100%;
|
||||
width: 350px;
|
||||
float: right;
|
||||
text-align: left;
|
||||
padding: 0px 0px 0px 0px;
|
||||
margin: 0px 0px 0px 0px;
|
||||
}
|
||||
@@ -0,0 +1,157 @@
|
||||
html{
|
||||
min-height:100%;
|
||||
min-width:100%;
|
||||
-ms-text-size-adjust:none;
|
||||
}
|
||||
body,div,dl,dt,dd,ul,ol,li,nav,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,a{
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
border-width:0px;
|
||||
border-style:solid;
|
||||
border-color:transparent;
|
||||
-webkit-transform-origin:left top;
|
||||
-ms-transform-origin:left top;-o-transform-origin:left top;
|
||||
transform-origin:left top;
|
||||
background-repeat:no-repeat;
|
||||
}
|
||||
button.submit-btn{
|
||||
-moz-box-sizing:content-box;
|
||||
-webkit-box-sizing:content-box;
|
||||
box-sizing:content-box;
|
||||
}
|
||||
.transition{
|
||||
-webkit-transition-property:background-image,background-position,background-color,border-color,border-radius,color,font-size,font-style,font-weight,letter-spacing,line-height,text-align,box-shadow,text-shadow,opacity;
|
||||
transition-property:background-image,background-position,background-color,border-color,border-radius,color,font-size,font-style,font-weight,letter-spacing,line-height,text-align,box-shadow,text-shadow,opacity;
|
||||
}
|
||||
.transition *{
|
||||
-webkit-transition:inherit;
|
||||
transition:inherit;
|
||||
}
|
||||
|
||||
table{
|
||||
border-collapse:collapse;
|
||||
border-spacing:0px;
|
||||
}
|
||||
|
||||
fieldset,img{
|
||||
border:0px;
|
||||
border-style:solid;
|
||||
-webkit-transform-origin:left top;
|
||||
-ms-transform-origin:left top;
|
||||
-o-transform-origin:left top;
|
||||
transform-origin:left top;
|
||||
}
|
||||
|
||||
address,caption,cite,code,dfn,em,strong,th,var,optgroup{
|
||||
font-style:inherit;
|
||||
font-weight:inherit;
|
||||
}
|
||||
|
||||
del,ins{
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
li{
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
caption,th{
|
||||
text-align:left;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6{
|
||||
font-size:100%;
|
||||
font-weight:inherit;
|
||||
}
|
||||
|
||||
input,button,textarea,select,optgroup,option{
|
||||
font-family:inherit;
|
||||
font-size:inherit;
|
||||
font-style:inherit;
|
||||
font-weight:inherit;
|
||||
}
|
||||
.form-grp input,.form-grp textarea{
|
||||
-webkit-appearance:none;
|
||||
-webkit-border-radius:0;
|
||||
}
|
||||
|
||||
body{
|
||||
font-family:Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||
text-align:left;
|
||||
font-size:14px;
|
||||
line-height:17px;
|
||||
word-wrap:break-word;text-rendering:optimizeLegibility;
|
||||
-moz-font-feature-settings:'liga';
|
||||
-ms-font-feature-settings:'liga';
|
||||
-webkit-font-feature-settings:'liga';
|
||||
font-feature-settings:'liga';
|
||||
}
|
||||
|
||||
a:link{
|
||||
color:#0000FF;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a:visited{
|
||||
color:#800080;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a:hover{
|
||||
color:#0000FF;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a:active{
|
||||
color:#EE0000;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a.nontext{
|
||||
color:black;
|
||||
text-decoration:none;
|
||||
font-style:normal;
|
||||
font-weight:normal;
|
||||
}
|
||||
.normal_text{
|
||||
color:#000000;
|
||||
direction:ltr;
|
||||
font-family:Arial, Helvetica Neue, Helvetica, sans-serif;
|
||||
font-size:14px;
|
||||
font-style:normal;
|
||||
font-weight:normal;
|
||||
letter-spacing:0px;
|
||||
line-height:17px;
|
||||
text-align:left;
|
||||
text-decoration:none;
|
||||
text-indent:0px;
|
||||
text-transform:none;
|
||||
vertical-align:0px;
|
||||
padding:0px;
|
||||
}
|
||||
.list0 li:before{
|
||||
position:absolute;
|
||||
right:100%;
|
||||
letter-spacing:0px;
|
||||
text-decoration:none;
|
||||
font-weight:normal;
|
||||
font-style:normal;
|
||||
}
|
||||
.rtl-list li:before{
|
||||
right:auto;
|
||||
left:100%;
|
||||
}
|
||||
.nls-None > li:before,.nls-None .list3 > li:before,.nls-None .list6 > li:before{
|
||||
margin-right:6px;
|
||||
content:'•';
|
||||
}
|
||||
.nls-None .list1 > li:before,.nls-None .list4 > li:before,.nls-None .list7 > li:before{
|
||||
margin-right:6px;
|
||||
content:'○';
|
||||
}
|
||||
.nls-None,.nls-None .list1,.nls-None .list2,.nls-None .list3,.nls-None .list4,.nls-None .list5,.nls-None .list6,.nls-None .list7,.nls-None .list8{
|
||||
padding-left:34px;
|
||||
}.nls-None.rtl-list,.nls-None .list1.rtl-list,.nls-None .list2.rtl-list,.nls-None .list3.rtl-list,.nls-None .list4.rtl-list,.nls-None .list5.rtl-list,.nls-None .list6.rtl-list,.nls-None .list7.rtl-list,.nls-None .list8.rtl-list{
|
||||
padding-left:0px;
|
||||
padding-right:34px;
|
||||
}.nls-None .list2 > li:before,.nls-None .list5 > li:before,.nls-None .list8 > li:before{margin-right:6px;content:'-';}.nls-None.rtl-list > li:before,.nls-None .list1.rtl-list > li:before,.nls-None .list2.rtl-list > li:before,.nls-None .list3.rtl-list > li:before,.nls-None .list4.rtl-list > li:before,.nls-None .list5.rtl-list > li:before,.nls-None .list6.rtl-list > li:before,.nls-None .list7.rtl-list > li:before,.nls-None .list8.rtl-list > li:before{margin-right:0px;margin-left:6px;}.TabbedPanelsTab{white-space:nowrap;}.MenuBar .MenuBarView,.MenuBar .SubMenuView{display:block;list-style:none;}.MenuBar .SubMenu{display:none;position:absolute;}.NoWrap{white-space:nowrap;word-wrap:normal;}.rootelem{margin-left:auto;margin-right:auto;}.colelem{display:inline;float:left;clear:both;}.clearfix:after{content:"\0020";visibility:hidden;display:block;height:0px;clear:both;}*:first-child+html .clearfix{zoom:1;}.clip_frame{overflow:hidden;}.popup_anchor{position:relative;width:0px;height:0px;}.allow_click_through *{pointer-events:auto;}.popup_element{z-index:100000;}.svg{display:block;vertical-align:top;}span.wrap{content:'';clear:left;display:block;}span.actAsInlineDiv{display:inline-block;}.position_content,.excludeFromNormalFlow{float:left;}.preload_images{position:absolute;overflow:hidden;left:-9999px;top:-9999px;height:1px;width:1px;}.preload{height:1px;width:1px;}.animateStates{-webkit-transition:0.3s ease-in-out;-moz-transition:0.3s ease-in-out;-o-transition:0.3s ease-in-out;transition:0.3s ease-in-out;}[data-whatinput="mouse"] *:focus,[data-whatinput="touch"] *:focus,input:focus,textarea:focus{outline:none;}textarea{resize:none;overflow:auto;}.allow_click_through,.fld-prompt{pointer-events:none;}.wrapped-input{position:absolute;top:0px;left:0px;background:transparent;border:none;}.submit-btn{z-index:50000;cursor:pointer;}.anchor_item{width:22px;height:18px;}.MenuBar .SubMenuVisible,.MenuBarVertical .SubMenuVisible,.MenuBar .SubMenu .SubMenuVisible,.popup_element.Active,span.actAsPara,.actAsDiv,a.nonblock.nontext,img.block{display:block;}.widget_invisible,.js .invi,.js .mse_pre_init{visibility:hidden;}.ose_ei{visibility:hidden;z-index:0;}.no_vert_scroll{overflow-y:hidden;}.always_vert_scroll{overflow-y:scroll;}.always_horz_scroll{overflow-x:scroll;}.fullscreen{overflow:hidden;left:0px;top:0px;position:fixed;height:100%;width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.fullwidth{position:absolute;}.borderbox{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.scroll_wrapper{position:absolute;overflow:auto;left:0px;right:0px;top:0px;bottom:0px;padding-top:0px;padding-bottom:0px;margin-top:0px;margin-bottom:0px;}.browser_width > *{position:absolute;left:0px;right:0px;}.grpelem,.accordion_wrapper{display:inline;float:left;}.fld-checkbox input[type=checkbox],.fld-radiobutton input[type=radio]{position:absolute;overflow:hidden;clip:rect(0px, 0px, 0px, 0px);height:1px;width:1px;margin:-1px;padding:0px;border:0px;}.fld-checkbox input[type=checkbox] + label,.fld-radiobutton input[type=radio] + label{display:inline-block;background-repeat:no-repeat;cursor:pointer;float:left;width:100%;height:100%;}.pointer_cursor,.fld-recaptcha-mode,.fld-recaptcha-refresh,.fld-recaptcha-help{cursor:pointer;}p,h1,h2,h3,h4,h5,h6,ol,ul,span.actAsPara{max-height:1000000px;}.superscript{vertical-align:super;font-size:66%;line-height:0px;}.subscript{vertical-align:sub;font-size:66%;line-height:0px;}.horizontalSlideShow{-ms-touch-action:pan-y;touch-action:pan-y;}.verticalSlideShow{-ms-touch-action:pan-x;touch-action:pan-x;}.colelem100,.verticalspacer{clear:both;}.list0 li,.MenuBar .MenuItemContainer,.SlideShowContentPanel .fullscreen img,.css_verticalspacer .verticalspacer{position:relative;}.popup_element.Inactive,.js .disn,.js .an_invi,.hidden,.breakpoint{display:none;}#muse_css_mq{position:absolute;display:none;background-color:#FFFFFE;}.fluid_height_spacer{width:0.01px;}.muse_check_css{display:none;position:fixed;}@media screen and (-webkit-min-device-pixel-ratio:0){body{text-rendering:auto;}}
|
||||
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 57 KiB |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 397 KiB |
|
After Width: | Height: | Size: 236 KiB |
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 852 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 103 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 60 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 49 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 452 B |
|
After Width: | Height: | Size: 451 B |
|
After Width: | Height: | Size: 416 B |
|
After Width: | Height: | Size: 331 B |
|
After Width: | Height: | Size: 324 B |
|
After Width: | Height: | Size: 304 B |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 203 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 768 B |
|
After Width: | Height: | Size: 768 B |
|
After Width: | Height: | Size: 768 B |
|
After Width: | Height: | Size: 768 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 637 B |
|
After Width: | Height: | Size: 637 B |
|
After Width: | Height: | Size: 637 B |
|
After Width: | Height: | Size: 637 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 24 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |